21761 lines
995 KiB
XML
21761 lines
995 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="742" onload="init(evt)" viewBox="0 0 1200 742" 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="742.0" fill="url(#background)" />
|
|
<text id="title" x="600.00" y="24" >Flame Graph</text>
|
|
<text id="details" x="10.00" y="725" > </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="725" > </text>
|
|
<g id="frames">
|
|
<g >
|
|
<title>http_doWithHost (4 samples, 0.02%)</title><rect x="145.2" y="405" width="0.2" height="15.0" fill="rgb(222,147,51)" rx="2" ry="2" />
|
|
<text x="148.16" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="704.2" y="405" width="0.1" height="15.0" fill="rgb(227,178,32)" rx="2" ry="2" />
|
|
<text x="707.22" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (2 samples, 0.01%)</title><rect x="223.1" y="229" width="0.1" height="15.0" fill="rgb(206,162,14)" rx="2" ry="2" />
|
|
<text x="226.12" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1096.9" y="245" width="0.1" height="15.0" fill="rgb(246,226,2)" rx="2" ry="2" />
|
|
<text x="1099.91" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="702.1" y="437" width="0.4" height="15.0" fill="rgb(221,77,46)" rx="2" ry="2" />
|
|
<text x="705.06" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>deal_socks_proxy (2 samples, 0.01%)</title><rect x="937.4" y="453" width="0.1" height="15.0" fill="rgb(232,159,52)" rx="2" ry="2" />
|
|
<text x="940.39" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="20.4" y="581" width="0.3" height="15.0" fill="rgb(211,42,32)" rx="2" ry="2" />
|
|
<text x="23.44" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (37 samples, 0.19%)</title><rect x="353.5" y="357" width="2.2" height="15.0" fill="rgb(226,16,25)" rx="2" ry="2" />
|
|
<text x="356.48" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (3 samples, 0.02%)</title><rect x="1074.5" y="293" width="0.1" height="15.0" fill="rgb(224,71,49)" rx="2" ry="2" />
|
|
<text x="1077.47" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___snprintf (2 samples, 0.01%)</title><rect x="224.9" y="421" width="0.1" height="15.0" fill="rgb(247,49,25)" rx="2" ry="2" />
|
|
<text x="227.86" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (2 samples, 0.01%)</title><rect x="1061.3" y="277" width="0.1" height="15.0" fill="rgb(254,167,27)" rx="2" ry="2" />
|
|
<text x="1064.26" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="413.4" y="245" width="0.3" height="15.0" fill="rgb(216,227,3)" rx="2" ry="2" />
|
|
<text x="416.38" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libosfp.so.1.3] (2 samples, 0.01%)</title><rect x="1148.3" y="469" width="0.2" height="15.0" fill="rgb(218,81,30)" rx="2" ry="2" />
|
|
<text x="1151.35" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="189.9" y="325" width="0.4" height="15.0" fill="rgb(212,53,51)" rx="2" ry="2" />
|
|
<text x="192.93" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (7 samples, 0.04%)</title><rect x="1185.9" y="389" width="0.4" height="15.0" fill="rgb(206,81,27)" rx="2" ry="2" />
|
|
<text x="1188.86" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (25 samples, 0.13%)</title><rect x="188.1" y="421" width="1.5" height="15.0" fill="rgb(235,104,27)" rx="2" ry="2" />
|
|
<text x="191.13" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (17 samples, 0.09%)</title><rect x="109.1" y="357" width="1.0" height="15.0" fill="rgb(245,20,40)" rx="2" ry="2" />
|
|
<text x="112.09" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="169.3" y="357" width="0.1" height="15.0" fill="rgb(234,14,27)" rx="2" ry="2" />
|
|
<text x="172.29" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (5 samples, 0.03%)</title><rect x="770.7" y="373" width="0.3" height="15.0" fill="rgb(220,172,3)" rx="2" ry="2" />
|
|
<text x="773.72" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (3 samples, 0.02%)</title><rect x="220.7" y="325" width="0.1" height="15.0" fill="rgb(205,86,53)" rx="2" ry="2" />
|
|
<text x="223.66" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="159.4" y="213" width="0.2" height="15.0" fill="rgb(216,50,49)" rx="2" ry="2" />
|
|
<text x="162.44" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpReqResHeader (31 samples, 0.16%)</title><rect x="917.4" y="421" width="1.9" height="15.0" fill="rgb(207,174,12)" rx="2" ry="2" />
|
|
<text x="920.40" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (4 samples, 0.02%)</title><rect x="960.6" y="293" width="0.2" height="15.0" fill="rgb(221,226,36)" rx="2" ry="2" />
|
|
<text x="963.55" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>magic_buffer (15 samples, 0.08%)</title><rect x="403.6" y="229" width="0.9" height="15.0" fill="rgb(223,142,36)" rx="2" ry="2" />
|
|
<text x="406.59" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop4 (10 samples, 0.05%)</title><rect x="184.8" y="405" width="0.6" height="15.0" fill="rgb(218,189,6)" rx="2" ry="2" />
|
|
<text x="187.77" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (10 samples, 0.05%)</title><rect x="211.9" y="421" width="0.6" height="15.0" fill="rgb(249,86,38)" rx="2" ry="2" />
|
|
<text x="214.90" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (19 samples, 0.10%)</title><rect x="917.8" y="293" width="1.2" height="15.0" fill="rgb(243,188,5)" rx="2" ry="2" />
|
|
<text x="920.82" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_avx2_movbe (2 samples, 0.01%)</title><rect x="1144.0" y="53" width="0.1" height="15.0" fill="rgb(216,186,33)" rx="2" ry="2" />
|
|
<text x="1146.97" y="63.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchrnul_avx2 (3 samples, 0.02%)</title><rect x="1146.4" y="389" width="0.1" height="15.0" fill="rgb(233,199,31)" rx="2" ry="2" />
|
|
<text x="1149.37" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="164.5" y="197" width="0.2" height="15.0" fill="rgb(229,100,30)" rx="2" ry="2" />
|
|
<text x="167.54" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (16 samples, 0.08%)</title><rect x="1144.6" y="373" width="1.0" height="15.0" fill="rgb(221,114,52)" rx="2" ry="2" />
|
|
<text x="1147.63" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_dos_traffic_tags_get (6 samples, 0.03%)</title><rect x="585.8" y="373" width="0.4" height="15.0" fill="rgb(240,151,14)" rx="2" ry="2" />
|
|
<text x="588.81" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (15 samples, 0.08%)</title><rect x="359.7" y="469" width="0.9" height="15.0" fill="rgb(239,27,13)" rx="2" ry="2" />
|
|
<text x="362.66" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (13 samples, 0.07%)</title><rect x="1141.9" y="517" width="0.8" height="15.0" fill="rgb(245,153,33)" rx="2" ry="2" />
|
|
<text x="1144.93" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock@plt (2 samples, 0.01%)</title><rect x="886.9" y="389" width="0.1" height="15.0" fill="rgb(249,159,31)" rx="2" ry="2" />
|
|
<text x="889.85" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (12 samples, 0.06%)</title><rect x="1183.3" y="629" width="0.7" height="15.0" fill="rgb(240,81,12)" rx="2" ry="2" />
|
|
<text x="1186.28" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (2 samples, 0.01%)</title><rect x="707.0" y="389" width="0.1" height="15.0" fill="rgb(233,150,22)" rx="2" ry="2" />
|
|
<text x="709.98" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="350.1" y="293" width="0.1" height="15.0" fill="rgb(241,115,25)" rx="2" ry="2" />
|
|
<text x="353.06" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (2 samples, 0.01%)</title><rect x="156.4" y="421" width="0.2" height="15.0" fill="rgb(233,63,32)" rx="2" ry="2" />
|
|
<text x="159.44" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>docanalyze_parsestream (7 samples, 0.04%)</title><rect x="408.3" y="341" width="0.5" height="15.0" fill="rgb(235,183,17)" rx="2" ry="2" />
|
|
<text x="411.33" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1050.3" y="357" width="0.2" height="15.0" fill="rgb(209,202,0)" rx="2" ry="2" />
|
|
<text x="1053.34" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="189.7" y="325" width="0.1" height="15.0" fill="rgb(216,156,54)" rx="2" ry="2" />
|
|
<text x="192.69" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1148.2" y="517" width="0.1" height="15.0" fill="rgb(215,198,41)" rx="2" ry="2" />
|
|
<text x="1151.17" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (956 samples, 4.86%)</title><rect x="469.1" y="517" width="57.4" height="15.0" fill="rgb(252,226,20)" rx="2" ry="2" />
|
|
<text x="472.13" y="527.5" >del_st..</text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (3 samples, 0.02%)</title><rect x="539.4" y="485" width="0.2" height="15.0" fill="rgb(212,215,49)" rx="2" ry="2" />
|
|
<text x="542.41" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (19 samples, 0.10%)</title><rect x="523.0" y="485" width="1.2" height="15.0" fill="rgb(224,159,11)" rx="2" ry="2" />
|
|
<text x="526.03" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (4 samples, 0.02%)</title><rect x="788.4" y="309" width="0.3" height="15.0" fill="rgb(206,183,50)" rx="2" ry="2" />
|
|
<text x="791.42" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (9 samples, 0.05%)</title><rect x="794.9" y="373" width="0.5" height="15.0" fill="rgb(220,48,27)" rx="2" ry="2" />
|
|
<text x="797.91" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="164.5" y="213" width="0.2" height="15.0" fill="rgb(205,107,29)" rx="2" ry="2" />
|
|
<text x="167.48" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (6 samples, 0.03%)</title><rect x="719.9" y="277" width="0.3" height="15.0" fill="rgb(253,164,17)" rx="2" ry="2" />
|
|
<text x="722.88" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (73 samples, 0.37%)</title><rect x="20.7" y="565" width="4.4" height="15.0" fill="rgb(222,72,52)" rx="2" ry="2" />
|
|
<text x="23.68" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="1142.9" y="485" width="0.7" height="15.0" fill="rgb(238,36,37)" rx="2" ry="2" />
|
|
<text x="1145.89" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (2 samples, 0.01%)</title><rect x="255.8" y="501" width="0.1" height="15.0" fill="rgb(207,223,35)" rx="2" ry="2" />
|
|
<text x="258.77" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_withSeed (2 samples, 0.01%)</title><rect x="1045.8" y="501" width="0.1" height="15.0" fill="rgb(206,67,45)" rx="2" ry="2" />
|
|
<text x="1048.78" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_9to16_128b (2 samples, 0.01%)</title><rect x="961.2" y="245" width="0.1" height="15.0" fill="rgb(249,100,21)" rx="2" ry="2" />
|
|
<text x="964.21" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell (6 samples, 0.03%)</title><rect x="705.4" y="341" width="0.3" height="15.0" fill="rgb(225,155,22)" rx="2" ry="2" />
|
|
<text x="708.36" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="189.9" y="357" width="0.4" height="15.0" fill="rgb(253,49,51)" rx="2" ry="2" />
|
|
<text x="192.93" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (63 samples, 0.32%)</title><rect x="110.8" y="549" width="3.8" height="15.0" fill="rgb(218,46,28)" rx="2" ry="2" />
|
|
<text x="113.77" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (10 samples, 0.05%)</title><rect x="144.2" y="437" width="0.6" height="15.0" fill="rgb(225,65,32)" rx="2" ry="2" />
|
|
<text x="147.20" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="226.8" y="373" width="0.2" height="15.0" fill="rgb(242,208,5)" rx="2" ry="2" />
|
|
<text x="229.84" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="733.4" y="341" width="0.2" height="15.0" fill="rgb(218,146,0)" rx="2" ry="2" />
|
|
<text x="736.39" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="1183.3" y="597" width="0.7" height="15.0" fill="rgb(247,72,9)" rx="2" ry="2" />
|
|
<text x="1186.28" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (22 samples, 0.11%)</title><rect x="1062.6" y="357" width="1.4" height="15.0" fill="rgb(231,136,23)" rx="2" ry="2" />
|
|
<text x="1065.64" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="146.2" y="405" width="0.2" height="15.0" fill="rgb(236,25,30)" rx="2" ry="2" />
|
|
<text x="149.24" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (12 samples, 0.06%)</title><rect x="723.1" y="277" width="0.7" height="15.0" fill="rgb(250,159,31)" rx="2" ry="2" />
|
|
<text x="726.07" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (8 samples, 0.04%)</title><rect x="1187.4" y="549" width="0.5" height="15.0" fill="rgb(210,73,1)" rx="2" ry="2" />
|
|
<text x="1190.42" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (288 samples, 1.46%)</title><rect x="172.6" y="437" width="17.3" height="15.0" fill="rgb(235,136,42)" rx="2" ry="2" />
|
|
<text x="175.59" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (8 samples, 0.04%)</title><rect x="954.3" y="277" width="0.4" height="15.0" fill="rgb(226,24,49)" rx="2" ry="2" />
|
|
<text x="957.25" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (12 samples, 0.06%)</title><rect x="961.2" y="277" width="0.7" height="15.0" fill="rgb(215,201,15)" rx="2" ry="2" />
|
|
<text x="964.21" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (8 samples, 0.04%)</title><rect x="251.3" y="437" width="0.4" height="15.0" fill="rgb(246,76,43)" rx="2" ry="2" />
|
|
<text x="254.27" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="476.8" y="405" width="0.1" height="15.0" fill="rgb(224,184,32)" rx="2" ry="2" />
|
|
<text x="479.81" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="255.1" y="437" width="0.1" height="15.0" fill="rgb(216,105,38)" rx="2" ry="2" />
|
|
<text x="258.11" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (11 samples, 0.06%)</title><rect x="1099.9" y="485" width="0.7" height="15.0" fill="rgb(205,39,2)" rx="2" ry="2" />
|
|
<text x="1102.91" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (3 samples, 0.02%)</title><rect x="1085.3" y="277" width="0.1" height="15.0" fill="rgb(243,64,4)" rx="2" ry="2" />
|
|
<text x="1088.27" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_zalloc (2 samples, 0.01%)</title><rect x="154.2" y="213" width="0.1" height="15.0" fill="rgb(254,9,52)" rx="2" ry="2" />
|
|
<text x="157.22" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_unlock@plt (2 samples, 0.01%)</title><rect x="874.1" y="373" width="0.1" height="15.0" fill="rgb(236,145,3)" rx="2" ry="2" />
|
|
<text x="877.13" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get0_current_packet (3 samples, 0.02%)</title><rect x="926.1" y="261" width="0.2" height="15.0" fill="rgb(244,169,6)" rx="2" ry="2" />
|
|
<text x="929.10" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="255.1" y="533" width="0.1" height="15.0" fill="rgb(211,57,12)" rx="2" ry="2" />
|
|
<text x="258.11" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="214.7" y="421" width="0.1" height="15.0" fill="rgb(232,113,1)" rx="2" ry="2" />
|
|
<text x="217.66" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2,001 samples, 10.18%)</title><rect x="543.0" y="469" width="120.1" height="15.0" fill="rgb(225,54,35)" rx="2" ry="2" />
|
|
<text x="546.01" y="479.5" >[stellar_on_sa..</text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (3 samples, 0.02%)</title><rect x="253.9" y="565" width="0.1" height="15.0" fill="rgb(226,5,49)" rx="2" ry="2" />
|
|
<text x="256.85" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_free (2 samples, 0.01%)</title><rect x="222.8" y="229" width="0.1" height="15.0" fill="rgb(233,11,20)" rx="2" ry="2" />
|
|
<text x="225.82" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (11 samples, 0.06%)</title><rect x="578.6" y="389" width="0.7" height="15.0" fill="rgb(233,162,40)" rx="2" ry="2" />
|
|
<text x="581.60" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="1155.5" y="373" width="0.7" height="15.0" fill="rgb(227,190,25)" rx="2" ry="2" />
|
|
<text x="1158.49" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (212 samples, 1.08%)</title><rect x="1081.8" y="533" width="12.7" height="15.0" fill="rgb(226,117,9)" rx="2" ry="2" />
|
|
<text x="1084.79" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (2 samples, 0.01%)</title><rect x="479.5" y="261" width="0.1" height="15.0" fill="rgb(222,58,2)" rx="2" ry="2" />
|
|
<text x="482.46" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (125 samples, 0.64%)</title><rect x="236.2" y="453" width="7.5" height="15.0" fill="rgb(253,224,6)" rx="2" ry="2" />
|
|
<text x="239.21" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (27 samples, 0.14%)</title><rect x="582.9" y="309" width="1.6" height="15.0" fill="rgb(227,43,53)" rx="2" ry="2" />
|
|
<text x="585.87" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="254.6" y="613" width="0.6" height="15.0" fill="rgb(232,33,2)" rx="2" ry="2" />
|
|
<text x="257.63" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (2 samples, 0.01%)</title><rect x="254.4" y="421" width="0.1" height="15.0" fill="rgb(253,60,7)" rx="2" ry="2" />
|
|
<text x="257.39" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="1153.0" y="501" width="0.5" height="15.0" fill="rgb(230,149,22)" rx="2" ry="2" />
|
|
<text x="1156.03" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (7 samples, 0.04%)</title><rect x="578.8" y="341" width="0.5" height="15.0" fill="rgb(233,142,42)" rx="2" ry="2" />
|
|
<text x="581.84" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="257.7" y="581" width="0.2" height="15.0" fill="rgb(235,32,34)" rx="2" ry="2" />
|
|
<text x="260.69" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (16 samples, 0.08%)</title><rect x="1178.3" y="453" width="1.0" height="15.0" fill="rgb(251,81,14)" rx="2" ry="2" />
|
|
<text x="1181.30" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (256 samples, 1.30%)</title><rect x="915.8" y="453" width="15.4" height="15.0" fill="rgb(219,22,36)" rx="2" ry="2" />
|
|
<text x="918.84" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="206.9" y="485" width="0.5" height="15.0" fill="rgb(219,4,29)" rx="2" ry="2" />
|
|
<text x="209.92" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="145.5" y="389" width="0.3" height="15.0" fill="rgb(216,80,35)" rx="2" ry="2" />
|
|
<text x="148.52" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (9 samples, 0.05%)</title><rect x="791.7" y="325" width="0.6" height="15.0" fill="rgb(229,143,44)" rx="2" ry="2" />
|
|
<text x="794.73" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="153.9" y="277" width="0.5" height="15.0" fill="rgb(246,228,21)" rx="2" ry="2" />
|
|
<text x="156.92" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (3 samples, 0.02%)</title><rect x="1003.6" y="245" width="0.2" height="15.0" fill="rgb(226,215,39)" rx="2" ry="2" />
|
|
<text x="1006.59" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssh.so] (8 samples, 0.04%)</title><rect x="424.8" y="437" width="0.5" height="15.0" fill="rgb(228,219,18)" rx="2" ry="2" />
|
|
<text x="427.78" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (7 samples, 0.04%)</title><rect x="170.1" y="405" width="0.4" height="15.0" fill="rgb(234,221,9)" rx="2" ry="2" />
|
|
<text x="173.13" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (32 samples, 0.16%)</title><rect x="221.7" y="341" width="2.0" height="15.0" fill="rgb(238,223,50)" rx="2" ry="2" />
|
|
<text x="224.74" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (11 samples, 0.06%)</title><rect x="1145.9" y="629" width="0.6" height="15.0" fill="rgb(232,228,48)" rx="2" ry="2" />
|
|
<text x="1148.89" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_entry_dying (5 samples, 0.03%)</title><rect x="995.5" y="277" width="0.3" height="15.0" fill="rgb(205,74,40)" rx="2" ry="2" />
|
|
<text x="998.54" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (5 samples, 0.03%)</title><rect x="144.8" y="405" width="0.3" height="15.0" fill="rgb(249,7,9)" rx="2" ry="2" />
|
|
<text x="147.80" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="214.4" y="325" width="0.2" height="15.0" fill="rgb(221,200,20)" rx="2" ry="2" />
|
|
<text x="217.42" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="979.9" y="405" width="0.2" height="15.0" fill="rgb(232,165,31)" rx="2" ry="2" />
|
|
<text x="982.94" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="176.4" y="245" width="0.2" height="15.0" fill="rgb(213,200,47)" rx="2" ry="2" />
|
|
<text x="179.43" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (69 samples, 0.35%)</title><rect x="106.6" y="453" width="4.2" height="15.0" fill="rgb(209,92,34)" rx="2" ry="2" />
|
|
<text x="109.63" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (45 samples, 0.23%)</title><rect x="216.6" y="485" width="2.7" height="15.0" fill="rgb(221,213,22)" rx="2" ry="2" />
|
|
<text x="219.58" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="166.1" y="181" width="0.1" height="15.0" fill="rgb(206,90,7)" rx="2" ry="2" />
|
|
<text x="169.10" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (38 samples, 0.19%)</title><rect x="154.5" y="453" width="2.2" height="15.0" fill="rgb(225,21,33)" rx="2" ry="2" />
|
|
<text x="157.46" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (190 samples, 0.97%)</title><rect x="132.8" y="469" width="11.4" height="15.0" fill="rgb(215,118,17)" rx="2" ry="2" />
|
|
<text x="135.80" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="169.2" y="277" width="0.1" height="15.0" fill="rgb(209,16,21)" rx="2" ry="2" />
|
|
<text x="172.17" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_ipv4_port (5 samples, 0.03%)</title><rect x="26.2" y="581" width="0.3" height="15.0" fill="rgb(227,194,20)" rx="2" ry="2" />
|
|
<text x="29.20" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="109.2" y="325" width="0.1" height="15.0" fill="rgb(245,166,6)" rx="2" ry="2" />
|
|
<text x="112.21" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (10 samples, 0.05%)</title><rect x="169.5" y="325" width="0.6" height="15.0" fill="rgb(207,76,22)" rx="2" ry="2" />
|
|
<text x="172.53" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (3 samples, 0.02%)</title><rect x="175.0" y="405" width="0.2" height="15.0" fill="rgb(230,160,1)" rx="2" ry="2" />
|
|
<text x="178.05" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_xorshift64 (2 samples, 0.01%)</title><rect x="1041.8" y="229" width="0.1" height="15.0" fill="rgb(235,82,0)" rx="2" ry="2" />
|
|
<text x="1044.76" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="984.2" y="389" width="0.1" height="15.0" fill="rgb(241,29,44)" rx="2" ry="2" />
|
|
<text x="987.20" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="219.3" y="229" width="0.2" height="15.0" fill="rgb(215,41,6)" rx="2" ry="2" />
|
|
<text x="222.34" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (10 samples, 0.05%)</title><rect x="574.2" y="325" width="0.6" height="15.0" fill="rgb(237,201,39)" rx="2" ry="2" />
|
|
<text x="577.16" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (9 samples, 0.05%)</title><rect x="1032.0" y="437" width="0.5" height="15.0" fill="rgb(239,100,8)" rx="2" ry="2" />
|
|
<text x="1034.97" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="206.9" y="469" width="0.5" height="15.0" fill="rgb(253,164,52)" rx="2" ry="2" />
|
|
<text x="209.92" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (3 samples, 0.02%)</title><rect x="1100.2" y="325" width="0.2" height="15.0" fill="rgb(209,186,26)" rx="2" ry="2" />
|
|
<text x="1103.21" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get@plt (2 samples, 0.01%)</title><rect x="985.0" y="405" width="0.1" height="15.0" fill="rgb(226,150,18)" rx="2" ry="2" />
|
|
<text x="987.98" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (33 samples, 0.17%)</title><rect x="414.4" y="277" width="2.0" height="15.0" fill="rgb(215,122,43)" rx="2" ry="2" />
|
|
<text x="417.40" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="1188.7" y="453" width="0.5" height="15.0" fill="rgb(207,189,8)" rx="2" ry="2" />
|
|
<text x="1191.74" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vdso_clock_gettime (18 samples, 0.09%)</title><rect x="771.4" y="373" width="1.1" height="15.0" fill="rgb(235,96,50)" rx="2" ry="2" />
|
|
<text x="774.38" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="253.0" y="277" width="0.1" height="15.0" fill="rgb(251,131,1)" rx="2" ry="2" />
|
|
<text x="256.01" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="146.8" y="421" width="0.2" height="15.0" fill="rgb(243,10,5)" rx="2" ry="2" />
|
|
<text x="149.78" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="249.7" y="325" width="0.1" height="15.0" fill="rgb(240,220,42)" rx="2" ry="2" />
|
|
<text x="252.71" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (3 samples, 0.02%)</title><rect x="144.6" y="421" width="0.1" height="15.0" fill="rgb(244,224,35)" rx="2" ry="2" />
|
|
<text x="147.56" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (6 samples, 0.03%)</title><rect x="503.7" y="245" width="0.4" height="15.0" fill="rgb(248,128,30)" rx="2" ry="2" />
|
|
<text x="506.70" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (3 samples, 0.02%)</title><rect x="666.2" y="309" width="0.2" height="15.0" fill="rgb(247,17,40)" rx="2" ry="2" />
|
|
<text x="669.23" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (88 samples, 0.45%)</title><rect x="124.0" y="437" width="5.3" height="15.0" fill="rgb(234,197,1)" rx="2" ry="2" />
|
|
<text x="127.03" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="172.2" y="389" width="0.1" height="15.0" fill="rgb(235,200,39)" rx="2" ry="2" />
|
|
<text x="175.17" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (3 samples, 0.02%)</title><rect x="100.4" y="581" width="0.2" height="15.0" fill="rgb(241,229,9)" rx="2" ry="2" />
|
|
<text x="103.45" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="1148.5" y="549" width="0.1" height="15.0" fill="rgb(238,172,39)" rx="2" ry="2" />
|
|
<text x="1151.47" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (3 samples, 0.02%)</title><rect x="1144.1" y="581" width="0.2" height="15.0" fill="rgb(249,225,36)" rx="2" ry="2" />
|
|
<text x="1147.15" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (4 samples, 0.02%)</title><rect x="707.6" y="293" width="0.2" height="15.0" fill="rgb(238,48,17)" rx="2" ry="2" />
|
|
<text x="710.58" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="159.4" y="245" width="0.2" height="15.0" fill="rgb(239,26,54)" rx="2" ry="2" />
|
|
<text x="162.38" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_del (29 samples, 0.15%)</title><rect x="528.2" y="501" width="1.7" height="15.0" fill="rgb(248,63,49)" rx="2" ry="2" />
|
|
<text x="531.19" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="157.9" y="373" width="0.3" height="15.0" fill="rgb(217,205,46)" rx="2" ry="2" />
|
|
<text x="160.88" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (2 samples, 0.01%)</title><rect x="106.0" y="437" width="0.1" height="15.0" fill="rgb(222,205,11)" rx="2" ry="2" />
|
|
<text x="108.97" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (18 samples, 0.09%)</title><rect x="885.7" y="373" width="1.1" height="15.0" fill="rgb(210,54,32)" rx="2" ry="2" />
|
|
<text x="888.71" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (39 samples, 0.20%)</title><rect x="243.8" y="437" width="2.3" height="15.0" fill="rgb(229,22,11)" rx="2" ry="2" />
|
|
<text x="246.77" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (4 samples, 0.02%)</title><rect x="159.4" y="293" width="0.2" height="15.0" fill="rgb(208,78,15)" rx="2" ry="2" />
|
|
<text x="162.38" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (10 samples, 0.05%)</title><rect x="1085.1" y="325" width="0.6" height="15.0" fill="rgb(246,49,54)" rx="2" ry="2" />
|
|
<text x="1088.09" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (2 samples, 0.01%)</title><rect x="166.1" y="229" width="0.1" height="15.0" fill="rgb(205,56,46)" rx="2" ry="2" />
|
|
<text x="169.10" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="164.9" y="181" width="0.1" height="15.0" fill="rgb(234,193,2)" rx="2" ry="2" />
|
|
<text x="167.90" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (3 samples, 0.02%)</title><rect x="1084.2" y="309" width="0.2" height="15.0" fill="rgb(207,83,38)" rx="2" ry="2" />
|
|
<text x="1087.25" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (4 samples, 0.02%)</title><rect x="1074.2" y="293" width="0.2" height="15.0" fill="rgb(242,185,22)" rx="2" ry="2" />
|
|
<text x="1077.17" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (190 samples, 0.97%)</title><rect x="132.8" y="533" width="11.4" height="15.0" fill="rgb(206,95,42)" rx="2" ry="2" />
|
|
<text x="135.80" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (3 samples, 0.02%)</title><rect x="256.8" y="565" width="0.2" height="15.0" fill="rgb(230,222,17)" rx="2" ry="2" />
|
|
<text x="259.79" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (19 samples, 0.10%)</title><rect x="917.8" y="325" width="1.2" height="15.0" fill="rgb(229,204,27)" rx="2" ry="2" />
|
|
<text x="920.82" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="931.1" y="277" width="0.1" height="15.0" fill="rgb(205,62,20)" rx="2" ry="2" />
|
|
<text x="934.09" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (8 samples, 0.04%)</title><rect x="783.6" y="277" width="0.4" height="15.0" fill="rgb(251,152,0)" rx="2" ry="2" />
|
|
<text x="786.56" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (74 samples, 0.38%)</title><rect x="248.7" y="581" width="4.4" height="15.0" fill="rgb(253,46,10)" rx="2" ry="2" />
|
|
<text x="251.69" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (2 samples, 0.01%)</title><rect x="1099.2" y="357" width="0.1" height="15.0" fill="rgb(242,96,7)" rx="2" ry="2" />
|
|
<text x="1102.19" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (225 samples, 1.14%)</title><rect x="79.0" y="613" width="13.5" height="15.0" fill="rgb(251,121,16)" rx="2" ry="2" />
|
|
<text x="81.96" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (6 samples, 0.03%)</title><rect x="229.8" y="421" width="0.4" height="15.0" fill="rgb(247,76,12)" rx="2" ry="2" />
|
|
<text x="232.84" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (10 samples, 0.05%)</title><rect x="353.8" y="277" width="0.6" height="15.0" fill="rgb(221,8,28)" rx="2" ry="2" />
|
|
<text x="356.84" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (5 samples, 0.03%)</title><rect x="1089.7" y="309" width="0.3" height="15.0" fill="rgb(226,219,54)" rx="2" ry="2" />
|
|
<text x="1092.71" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findLineEnd (3 samples, 0.02%)</title><rect x="375.0" y="373" width="0.1" height="15.0" fill="rgb(254,219,34)" rx="2" ry="2" />
|
|
<text x="377.97" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="912.5" y="469" width="0.6" height="15.0" fill="rgb(251,214,43)" rx="2" ry="2" />
|
|
<text x="915.54" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="251.0" y="405" width="0.1" height="15.0" fill="rgb(241,167,14)" rx="2" ry="2" />
|
|
<text x="253.97" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_current_worker_thread_id (3 samples, 0.02%)</title><rect x="1160.3" y="533" width="0.2" height="15.0" fill="rgb(214,188,53)" rx="2" ry="2" />
|
|
<text x="1163.29" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_____strtoll_l_internal (2 samples, 0.01%)</title><rect x="928.0" y="341" width="0.1" height="15.0" fill="rgb(239,202,40)" rx="2" ry="2" />
|
|
<text x="931.02" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="176.4" y="293" width="0.2" height="15.0" fill="rgb(232,73,15)" rx="2" ry="2" />
|
|
<text x="179.43" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchrnul_avx2 (2 samples, 0.01%)</title><rect x="171.1" y="373" width="0.1" height="15.0" fill="rgb(227,90,42)" rx="2" ry="2" />
|
|
<text x="174.09" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (127 samples, 0.65%)</title><rect x="84.8" y="565" width="7.7" height="15.0" fill="rgb(206,118,20)" rx="2" ry="2" />
|
|
<text x="87.84" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="1155.6" y="293" width="0.4" height="15.0" fill="rgb(215,113,34)" rx="2" ry="2" />
|
|
<text x="1158.61" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (5 samples, 0.03%)</title><rect x="246.7" y="405" width="0.3" height="15.0" fill="rgb(245,196,25)" rx="2" ry="2" />
|
|
<text x="249.71" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="558.6" y="405" width="0.1" height="15.0" fill="rgb(220,187,45)" rx="2" ry="2" />
|
|
<text x="561.56" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (23 samples, 0.12%)</title><rect x="910.3" y="517" width="1.4" height="15.0" fill="rgb(211,93,38)" rx="2" ry="2" />
|
|
<text x="913.32" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (9 samples, 0.05%)</title><rect x="1079.8" y="373" width="0.5" height="15.0" fill="rgb(238,124,40)" rx="2" ry="2" />
|
|
<text x="1082.81" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_palloc (2 samples, 0.01%)</title><rect x="217.3" y="405" width="0.1" height="15.0" fill="rgb(213,126,14)" rx="2" ry="2" />
|
|
<text x="220.30" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::vector<_TDocCallBackItem_t, std::allocator<_TDocCallBackItem_t> >::_M_realloc_insert<_TDocCallBackItem_t const&> (2 samples, 0.01%)</title><rect x="408.6" y="293" width="0.1" height="15.0" fill="rgb(214,13,37)" rx="2" ry="2" />
|
|
<text x="411.57" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (246 samples, 1.25%)</title><rect x="114.6" y="453" width="14.7" height="15.0" fill="rgb(244,137,10)" rx="2" ry="2" />
|
|
<text x="117.55" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (16 samples, 0.08%)</title><rect x="1088.2" y="293" width="1.0" height="15.0" fill="rgb(209,25,49)" rx="2" ry="2" />
|
|
<text x="1091.21" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (5 samples, 0.03%)</title><rect x="105.7" y="437" width="0.3" height="15.0" fill="rgb(249,104,50)" rx="2" ry="2" />
|
|
<text x="108.67" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="377.8" y="101" width="0.1" height="15.0" fill="rgb(250,210,20)" rx="2" ry="2" />
|
|
<text x="380.79" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_new (2 samples, 0.01%)</title><rect x="222.6" y="229" width="0.1" height="15.0" fill="rgb(233,201,31)" rx="2" ry="2" />
|
|
<text x="225.58" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1141.0" y="501" width="0.2" height="15.0" fill="rgb(234,83,25)" rx="2" ry="2" />
|
|
<text x="1144.03" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1058.0" y="405" width="0.2" height="15.0" fill="rgb(206,107,24)" rx="2" ry="2" />
|
|
<text x="1061.02" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_64bits_reset_withSeed (2 samples, 0.01%)</title><rect x="632.9" y="293" width="0.1" height="15.0" fill="rgb(212,191,1)" rx="2" ry="2" />
|
|
<text x="635.92" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="927.8" y="293" width="0.2" height="15.0" fill="rgb(234,95,46)" rx="2" ry="2" />
|
|
<text x="930.78" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="744.4" y="341" width="0.1" height="15.0" fill="rgb(226,195,20)" rx="2" ry="2" />
|
|
<text x="747.37" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (4 samples, 0.02%)</title><rect x="97.4" y="565" width="0.2" height="15.0" fill="rgb(213,127,40)" rx="2" ry="2" />
|
|
<text x="100.39" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (21 samples, 0.11%)</title><rect x="665.9" y="421" width="1.2" height="15.0" fill="rgb(253,72,50)" rx="2" ry="2" />
|
|
<text x="668.87" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="255.1" y="501" width="0.1" height="15.0" fill="rgb(233,195,0)" rx="2" ry="2" />
|
|
<text x="258.11" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_avx2_movbe (2 samples, 0.01%)</title><rect x="556.2" y="341" width="0.1" height="15.0" fill="rgb(210,140,19)" rx="2" ry="2" />
|
|
<text x="559.16" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_raw_spin_lock (4 samples, 0.02%)</title><rect x="131.1" y="277" width="0.3" height="15.0" fill="rgb(241,219,0)" rx="2" ry="2" />
|
|
<text x="134.11" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smtp_entry_fun (5 samples, 0.03%)</title><rect x="424.2" y="437" width="0.3" height="15.0" fill="rgb(217,149,8)" rx="2" ry="2" />
|
|
<text x="427.18" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_application_data (10 samples, 0.05%)</title><rect x="932.9" y="421" width="0.6" height="15.0" fill="rgb(248,70,4)" rx="2" ry="2" />
|
|
<text x="935.89" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (23 samples, 0.12%)</title><rect x="665.7" y="453" width="1.4" height="15.0" fill="rgb(222,170,45)" rx="2" ry="2" />
|
|
<text x="668.75" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (2,096 samples, 10.66%)</title><rect x="539.6" y="501" width="125.8" height="15.0" fill="rgb(226,46,1)" rx="2" ry="2" />
|
|
<text x="542.59" y="511.5" >call_streamentry</text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="186.3" y="405" width="0.3" height="15.0" fill="rgb(234,103,29)" rx="2" ry="2" />
|
|
<text x="189.33" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (7 samples, 0.04%)</title><rect x="1188.7" y="501" width="0.5" height="15.0" fill="rgb(214,181,43)" rx="2" ry="2" />
|
|
<text x="1191.74" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="1165.4" y="517" width="0.4" height="15.0" fill="rgb(223,172,7)" rx="2" ry="2" />
|
|
<text x="1168.39" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="107.7" y="405" width="0.4" height="15.0" fill="rgb(248,31,40)" rx="2" ry="2" />
|
|
<text x="110.71" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (49 samples, 0.25%)</title><rect x="630.0" y="293" width="2.9" height="15.0" fill="rgb(254,37,44)" rx="2" ry="2" />
|
|
<text x="632.98" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (16 samples, 0.08%)</title><rect x="1185.5" y="421" width="1.0" height="15.0" fill="rgb(228,66,20)" rx="2" ry="2" />
|
|
<text x="1188.50" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (171 samples, 0.87%)</title><rect x="1083.8" y="437" width="10.3" height="15.0" fill="rgb(243,103,45)" rx="2" ry="2" />
|
|
<text x="1086.83" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (14 samples, 0.07%)</title><rect x="1186.6" y="469" width="0.8" height="15.0" fill="rgb(246,204,14)" rx="2" ry="2" />
|
|
<text x="1189.58" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="469.7" y="485" width="0.1" height="15.0" fill="rgb(251,180,22)" rx="2" ry="2" />
|
|
<text x="472.67" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (3 samples, 0.02%)</title><rect x="1063.2" y="277" width="0.2" height="15.0" fill="rgb(230,10,14)" rx="2" ry="2" />
|
|
<text x="1066.24" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (16 samples, 0.08%)</title><rect x="928.4" y="277" width="1.0" height="15.0" fill="rgb(238,67,3)" rx="2" ry="2" />
|
|
<text x="931.44" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="220.9" y="325" width="0.5" height="15.0" fill="rgb(240,132,39)" rx="2" ry="2" />
|
|
<text x="223.90" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (5 samples, 0.03%)</title><rect x="1145.6" y="533" width="0.3" height="15.0" fill="rgb(250,114,31)" rx="2" ry="2" />
|
|
<text x="1148.59" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_min_count (2 samples, 0.01%)</title><rect x="1073.3" y="293" width="0.1" height="15.0" fill="rgb(211,11,34)" rx="2" ry="2" />
|
|
<text x="1076.27" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (2 samples, 0.01%)</title><rect x="479.2" y="325" width="0.1" height="15.0" fill="rgb(239,26,27)" rx="2" ry="2" />
|
|
<text x="482.22" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (4 samples, 0.02%)</title><rect x="350.1" y="421" width="0.2" height="15.0" fill="rgb(223,181,9)" rx="2" ry="2" />
|
|
<text x="353.06" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (4 samples, 0.02%)</title><rect x="223.8" y="325" width="0.2" height="15.0" fill="rgb(206,218,46)" rx="2" ry="2" />
|
|
<text x="226.78" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (1,134 samples, 5.77%)</title><rect x="589.7" y="373" width="68.1" height="15.0" fill="rgb(251,62,49)" rx="2" ry="2" />
|
|
<text x="592.71" y="383.5" >fieldst..</text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (4 samples, 0.02%)</title><rect x="157.9" y="325" width="0.2" height="15.0" fill="rgb(216,137,28)" rx="2" ry="2" />
|
|
<text x="160.88" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (2 samples, 0.01%)</title><rect x="145.0" y="293" width="0.1" height="15.0" fill="rgb(215,208,33)" rx="2" ry="2" />
|
|
<text x="147.98" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_initHttpConnection (39 samples, 0.20%)</title><rect x="419.3" y="421" width="2.4" height="15.0" fill="rgb(245,120,5)" rx="2" ry="2" />
|
|
<text x="422.32" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="189.9" y="277" width="0.4" height="15.0" fill="rgb(254,66,21)" rx="2" ry="2" />
|
|
<text x="192.93" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (4 samples, 0.02%)</title><rect x="384.3" y="293" width="0.2" height="15.0" fill="rgb(209,146,22)" rx="2" ry="2" />
|
|
<text x="387.27" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (2 samples, 0.01%)</title><rect x="709.5" y="293" width="0.1" height="15.0" fill="rgb(248,162,47)" rx="2" ry="2" />
|
|
<text x="712.50" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (3 samples, 0.02%)</title><rect x="132.4" y="405" width="0.2" height="15.0" fill="rgb(222,217,21)" rx="2" ry="2" />
|
|
<text x="135.44" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="254.7" y="309" width="0.1" height="15.0" fill="rgb(233,130,53)" rx="2" ry="2" />
|
|
<text x="257.69" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="145.5" y="421" width="0.4" height="15.0" fill="rgb(215,104,1)" rx="2" ry="2" />
|
|
<text x="148.52" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (2 samples, 0.01%)</title><rect x="1141.6" y="645" width="0.1" height="15.0" fill="rgb(224,166,54)" rx="2" ry="2" />
|
|
<text x="1144.57" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="384.0" y="133" width="0.1" height="15.0" fill="rgb(237,198,28)" rx="2" ry="2" />
|
|
<text x="386.97" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_get (3 samples, 0.02%)</title><rect x="1030.4" y="501" width="0.1" height="15.0" fill="rgb(247,205,54)" rx="2" ry="2" />
|
|
<text x="1033.35" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_and_record_popped_back (8 samples, 0.04%)</title><rect x="1003.3" y="293" width="0.5" height="15.0" fill="rgb(239,61,48)" rx="2" ry="2" />
|
|
<text x="1006.29" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_xorshift64 (3 samples, 0.02%)</title><rect x="509.4" y="229" width="0.2" height="15.0" fill="rgb(222,182,20)" rx="2" ry="2" />
|
|
<text x="512.40" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1141.4" y="597" width="0.1" height="15.0" fill="rgb(241,94,23)" rx="2" ry="2" />
|
|
<text x="1144.39" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="1148.5" y="533" width="0.1" height="15.0" fill="rgb(205,54,25)" rx="2" ry="2" />
|
|
<text x="1151.47" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2,275 samples, 11.57%)</title><rect x="742.8" y="485" width="136.5" height="15.0" fill="rgb(214,227,7)" rx="2" ry="2" />
|
|
<text x="745.75" y="495.5" >plugin_call_strea..</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="217.0" y="293" width="0.1" height="15.0" fill="rgb(217,176,36)" rx="2" ry="2" />
|
|
<text x="220.00" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop4 (3 samples, 0.02%)</title><rect x="105.7" y="261" width="0.1" height="15.0" fill="rgb(215,193,41)" rx="2" ry="2" />
|
|
<text x="108.67" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_ipv6_port (5 samples, 0.03%)</title><rect x="26.5" y="581" width="0.3" height="15.0" fill="rgb(219,201,2)" rx="2" ry="2" />
|
|
<text x="29.50" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (113 samples, 0.57%)</title><rect x="1087.1" y="389" width="6.8" height="15.0" fill="rgb(237,52,1)" rx="2" ry="2" />
|
|
<text x="1090.13" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="377.7" y="181" width="0.2" height="15.0" fill="rgb(220,99,29)" rx="2" ry="2" />
|
|
<text x="380.73" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (8 samples, 0.04%)</title><rect x="1184.2" y="421" width="0.5" height="15.0" fill="rgb(217,162,54)" rx="2" ry="2" />
|
|
<text x="1187.24" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (94 samples, 0.48%)</title><rect x="219.8" y="533" width="5.6" height="15.0" fill="rgb(238,119,33)" rx="2" ry="2" />
|
|
<text x="222.76" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_get_type (5 samples, 0.03%)</title><rect x="1067.3" y="341" width="0.3" height="15.0" fill="rgb(253,105,44)" rx="2" ry="2" />
|
|
<text x="1070.26" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (6 samples, 0.03%)</title><rect x="213.9" y="421" width="0.4" height="15.0" fill="rgb(237,31,2)" rx="2" ry="2" />
|
|
<text x="216.94" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (33 samples, 0.17%)</title><rect x="1141.7" y="645" width="2.0" height="15.0" fill="rgb(245,68,31)" rx="2" ry="2" />
|
|
<text x="1144.75" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="1141.9" y="469" width="0.3" height="15.0" fill="rgb(235,15,53)" rx="2" ry="2" />
|
|
<text x="1144.93" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="920.8" y="293" width="0.1" height="15.0" fill="rgb(251,199,15)" rx="2" ry="2" />
|
|
<text x="923.76" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_calloc (6 samples, 0.03%)</title><rect x="665.4" y="501" width="0.3" height="15.0" fill="rgb(248,2,27)" rx="2" ry="2" />
|
|
<text x="668.39" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (88 samples, 0.45%)</title><rect x="921.4" y="373" width="5.3" height="15.0" fill="rgb(246,155,25)" rx="2" ry="2" />
|
|
<text x="924.42" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (16 samples, 0.08%)</title><rect x="917.9" y="261" width="0.9" height="15.0" fill="rgb(229,135,6)" rx="2" ry="2" />
|
|
<text x="920.88" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="160.9" y="357" width="0.3" height="15.0" fill="rgb(236,101,1)" rx="2" ry="2" />
|
|
<text x="163.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libosfp.so.1.3] (104 samples, 0.53%)</title><rect x="195.2" y="421" width="6.2" height="15.0" fill="rgb(247,105,9)" rx="2" ry="2" />
|
|
<text x="198.15" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_create_pool (4 samples, 0.02%)</title><rect x="159.4" y="325" width="0.2" height="15.0" fill="rgb(249,171,8)" rx="2" ry="2" />
|
|
<text x="162.38" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_dp_trace_measurements_can_emit (51 samples, 0.26%)</title><rect x="1136.3" y="565" width="3.1" height="15.0" fill="rgb(232,77,51)" rx="2" ry="2" />
|
|
<text x="1139.34" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="1149.1" y="469" width="0.1" height="15.0" fill="rgb(218,176,7)" rx="2" ry="2" />
|
|
<text x="1152.07" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (4 samples, 0.02%)</title><rect x="1097.0" y="517" width="0.3" height="15.0" fill="rgb(209,112,30)" rx="2" ry="2" />
|
|
<text x="1100.03" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (7 samples, 0.04%)</title><rect x="933.0" y="389" width="0.4" height="15.0" fill="rgb(243,32,41)" rx="2" ry="2" />
|
|
<text x="936.01" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (5 samples, 0.03%)</title><rect x="1035.1" y="341" width="0.3" height="15.0" fill="rgb(223,18,4)" rx="2" ry="2" />
|
|
<text x="1038.10" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1083.5" y="469" width="0.1" height="15.0" fill="rgb(217,22,25)" rx="2" ry="2" />
|
|
<text x="1086.53" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (15 samples, 0.08%)</title><rect x="109.2" y="341" width="0.9" height="15.0" fill="rgb(237,121,24)" rx="2" ry="2" />
|
|
<text x="112.21" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (3 samples, 0.02%)</title><rect x="1084.1" y="341" width="0.1" height="15.0" fill="rgb(232,185,22)" rx="2" ry="2" />
|
|
<text x="1087.07" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (221 samples, 1.12%)</title><rect x="952.8" y="373" width="13.3" height="15.0" fill="rgb(225,174,15)" rx="2" ry="2" />
|
|
<text x="955.81" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (8 samples, 0.04%)</title><rect x="583.3" y="293" width="0.5" height="15.0" fill="rgb(239,95,11)" rx="2" ry="2" />
|
|
<text x="586.35" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (264 samples, 1.34%)</title><rect x="156.7" y="517" width="15.9" height="15.0" fill="rgb(246,26,5)" rx="2" ry="2" />
|
|
<text x="159.74" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (15 samples, 0.08%)</title><rect x="1078.9" y="341" width="0.9" height="15.0" fill="rgb(238,30,40)" rx="2" ry="2" />
|
|
<text x="1081.91" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="145.2" y="357" width="0.2" height="15.0" fill="rgb(250,177,28)" rx="2" ry="2" />
|
|
<text x="148.16" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_obj2txt (3 samples, 0.02%)</title><rect x="110.3" y="405" width="0.2" height="15.0" fill="rgb(242,92,18)" rx="2" ry="2" />
|
|
<text x="113.29" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (33 samples, 0.17%)</title><rect x="214.6" y="565" width="2.0" height="15.0" fill="rgb(207,27,40)" rx="2" ry="2" />
|
|
<text x="217.60" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeResponseEntityPresent (9 samples, 0.05%)</title><rect x="408.9" y="405" width="0.5" height="15.0" fill="rgb(209,23,44)" rx="2" ry="2" />
|
|
<text x="411.87" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (24 samples, 0.12%)</title><rect x="1001.8" y="277" width="1.4" height="15.0" fill="rgb(253,66,3)" rx="2" ry="2" />
|
|
<text x="1004.79" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1148.3" y="517" width="0.2" height="15.0" fill="rgb(215,221,13)" rx="2" ry="2" />
|
|
<text x="1151.29" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1095.1" y="453" width="0.1" height="15.0" fill="rgb(243,145,39)" rx="2" ry="2" />
|
|
<text x="1098.05" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="227.7" y="229" width="0.2" height="15.0" fill="rgb(252,160,6)" rx="2" ry="2" />
|
|
<text x="230.68" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (7 samples, 0.04%)</title><rect x="349.5" y="421" width="0.4" height="15.0" fill="rgb(233,104,14)" rx="2" ry="2" />
|
|
<text x="352.46" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (284 samples, 1.44%)</title><rect x="598.2" y="277" width="17.1" height="15.0" fill="rgb(226,110,24)" rx="2" ry="2" />
|
|
<text x="601.23" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (2 samples, 0.01%)</title><rect x="1096.9" y="405" width="0.1" height="15.0" fill="rgb(213,36,12)" rx="2" ry="2" />
|
|
<text x="1099.91" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (13 samples, 0.07%)</title><rect x="210.5" y="421" width="0.7" height="15.0" fill="rgb(245,204,12)" rx="2" ry="2" />
|
|
<text x="213.46" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (24 samples, 0.12%)</title><rect x="416.5" y="309" width="1.4" height="15.0" fill="rgb(215,122,38)" rx="2" ry="2" />
|
|
<text x="419.50" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2,523 samples, 12.83%)</title><rect x="104.5" y="661" width="151.5" height="15.0" fill="rgb(219,10,34)" rx="2" ry="2" />
|
|
<text x="107.53" y="671.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="223.3" y="213" width="0.2" height="15.0" fill="rgb(209,149,53)" rx="2" ry="2" />
|
|
<text x="226.30" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="912.5" y="501" width="0.6" height="15.0" fill="rgb(215,162,46)" rx="2" ry="2" />
|
|
<text x="915.48" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (101 samples, 0.51%)</title><rect x="147.4" y="581" width="6.0" height="15.0" fill="rgb(233,177,3)" rx="2" ry="2" />
|
|
<text x="150.38" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="144.9" y="229" width="0.1" height="15.0" fill="rgb(239,153,19)" rx="2" ry="2" />
|
|
<text x="147.86" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (29 samples, 0.15%)</title><rect x="573.7" y="357" width="1.7" height="15.0" fill="rgb(249,126,12)" rx="2" ry="2" />
|
|
<text x="576.68" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (6 samples, 0.03%)</title><rect x="559.9" y="357" width="0.3" height="15.0" fill="rgb(214,162,23)" rx="2" ry="2" />
|
|
<text x="562.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_current_rawpkt_from_streaminfo (6 samples, 0.03%)</title><rect x="875.8" y="437" width="0.4" height="15.0" fill="rgb(223,201,0)" rx="2" ry="2" />
|
|
<text x="878.81" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="107.2" y="373" width="0.5" height="15.0" fill="rgb(222,175,46)" rx="2" ry="2" />
|
|
<text x="110.17" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1142.2" y="405" width="0.3" height="15.0" fill="rgb(206,220,35)" rx="2" ry="2" />
|
|
<text x="1145.17" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (2 samples, 0.01%)</title><rect x="220.4" y="325" width="0.1" height="15.0" fill="rgb(226,169,9)" rx="2" ry="2" />
|
|
<text x="223.42" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_9to16_128b (10 samples, 0.05%)</title><rect x="724.4" y="245" width="0.6" height="15.0" fill="rgb(218,167,25)" rx="2" ry="2" />
|
|
<text x="727.39" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (5 samples, 0.03%)</title><rect x="1186.0" y="357" width="0.3" height="15.0" fill="rgb(228,85,4)" rx="2" ry="2" />
|
|
<text x="1188.98" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (17 samples, 0.09%)</title><rect x="794.8" y="389" width="1.1" height="15.0" fill="rgb(235,103,40)" rx="2" ry="2" />
|
|
<text x="797.85" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (570 samples, 2.90%)</title><rect x="903.4" y="533" width="34.2" height="15.0" fill="rgb(208,14,40)" rx="2" ry="2" />
|
|
<text x="906.42" y="543.5" >[s..</text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (2 samples, 0.01%)</title><rect x="986.7" y="261" width="0.1" height="15.0" fill="rgb(227,162,38)" rx="2" ry="2" />
|
|
<text x="989.66" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (4 samples, 0.02%)</title><rect x="92.5" y="613" width="0.2" height="15.0" fill="rgb(233,118,35)" rx="2" ry="2" />
|
|
<text x="95.46" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (2 samples, 0.01%)</title><rect x="539.5" y="437" width="0.1" height="15.0" fill="rgb(229,161,53)" rx="2" ry="2" />
|
|
<text x="542.47" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (2 samples, 0.01%)</title><rect x="384.0" y="261" width="0.1" height="15.0" fill="rgb(219,58,2)" rx="2" ry="2" />
|
|
<text x="386.97" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (3 samples, 0.02%)</title><rect x="110.1" y="389" width="0.2" height="15.0" fill="rgb(248,163,13)" rx="2" ry="2" />
|
|
<text x="113.11" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="219.3" y="373" width="0.2" height="15.0" fill="rgb(217,74,3)" rx="2" ry="2" />
|
|
<text x="222.28" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (35 samples, 0.18%)</title><rect x="221.6" y="405" width="2.1" height="15.0" fill="rgb(243,167,14)" rx="2" ry="2" />
|
|
<text x="224.56" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (7 samples, 0.04%)</title><rect x="1188.7" y="517" width="0.5" height="15.0" fill="rgb(214,200,29)" rx="2" ry="2" />
|
|
<text x="1191.74" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (6 samples, 0.03%)</title><rect x="415.4" y="213" width="0.4" height="15.0" fill="rgb(219,102,52)" rx="2" ry="2" />
|
|
<text x="418.42" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (23 samples, 0.12%)</title><rect x="832.5" y="261" width="1.4" height="15.0" fill="rgb(241,163,14)" rx="2" ry="2" />
|
|
<text x="835.54" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1141.6" y="597" width="0.1" height="15.0" fill="rgb(229,85,50)" rx="2" ry="2" />
|
|
<text x="1144.57" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509_NAME_get_index_by_OBJ (4 samples, 0.02%)</title><rect x="429.6" y="357" width="0.2" height="15.0" fill="rgb(216,157,48)" rx="2" ry="2" />
|
|
<text x="432.58" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (3 samples, 0.02%)</title><rect x="1041.9" y="309" width="0.2" height="15.0" fill="rgb(253,57,39)" rx="2" ry="2" />
|
|
<text x="1044.88" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="156.7" y="197" width="0.2" height="15.0" fill="rgb(252,162,45)" rx="2" ry="2" />
|
|
<text x="159.74" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (32 samples, 0.16%)</title><rect x="358.9" y="517" width="1.9" height="15.0" fill="rgb(228,197,18)" rx="2" ry="2" />
|
|
<text x="361.88" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (19 samples, 0.10%)</title><rect x="156.7" y="501" width="1.2" height="15.0" fill="rgb(240,177,33)" rx="2" ry="2" />
|
|
<text x="159.74" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (4 samples, 0.02%)</title><rect x="502.6" y="261" width="0.3" height="15.0" fill="rgb(242,36,26)" rx="2" ry="2" />
|
|
<text x="505.62" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="178.3" y="325" width="0.8" height="15.0" fill="rgb(220,36,10)" rx="2" ry="2" />
|
|
<text x="181.35" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_delete_cell (3 samples, 0.02%)</title><rect x="1005.5" y="341" width="0.2" height="15.0" fill="rgb(225,168,22)" rx="2" ry="2" />
|
|
<text x="1008.51" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="1155.5" y="421" width="0.7" height="15.0" fill="rgb(251,201,24)" rx="2" ry="2" />
|
|
<text x="1158.49" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (3 samples, 0.02%)</title><rect x="1177.6" y="533" width="0.2" height="15.0" fill="rgb(249,62,35)" rx="2" ry="2" />
|
|
<text x="1180.64" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mix16B (2 samples, 0.01%)</title><rect x="1041.5" y="229" width="0.1" height="15.0" fill="rgb(238,17,29)" rx="2" ry="2" />
|
|
<text x="1044.52" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>AP_bloom_add (4 samples, 0.02%)</title><rect x="879.5" y="501" width="0.3" height="15.0" fill="rgb(227,88,36)" rx="2" ry="2" />
|
|
<text x="882.53" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="377.8" y="53" width="0.1" height="15.0" fill="rgb(238,211,6)" rx="2" ry="2" />
|
|
<text x="380.79" y="63.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (6 samples, 0.03%)</title><rect x="181.6" y="341" width="0.4" height="15.0" fill="rgb(242,203,4)" rx="2" ry="2" />
|
|
<text x="184.65" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (14 samples, 0.07%)</title><rect x="238.4" y="437" width="0.8" height="15.0" fill="rgb(213,112,44)" rx="2" ry="2" />
|
|
<text x="241.37" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (2 samples, 0.01%)</title><rect x="143.9" y="421" width="0.1" height="15.0" fill="rgb(246,165,7)" rx="2" ry="2" />
|
|
<text x="146.90" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH128_mix32B (3 samples, 0.02%)</title><rect x="355.2" y="245" width="0.1" height="15.0" fill="rgb(209,92,40)" rx="2" ry="2" />
|
|
<text x="358.16" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1171.3" y="501" width="0.2" height="15.0" fill="rgb(254,116,20)" rx="2" ry="2" />
|
|
<text x="1174.33" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="220.1" y="389" width="0.1" height="15.0" fill="rgb(205,63,24)" rx="2" ry="2" />
|
|
<text x="223.06" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (6 samples, 0.03%)</title><rect x="787.3" y="261" width="0.4" height="15.0" fill="rgb(239,99,45)" rx="2" ry="2" />
|
|
<text x="790.34" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (3 samples, 0.02%)</title><rect x="1095.0" y="533" width="0.2" height="15.0" fill="rgb(250,184,49)" rx="2" ry="2" />
|
|
<text x="1097.99" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_tcp_pkt_opts (2 samples, 0.01%)</title><rect x="338.5" y="533" width="0.1" height="15.0" fill="rgb(221,61,11)" rx="2" ry="2" />
|
|
<text x="341.47" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="168.9" y="325" width="0.1" height="15.0" fill="rgb(235,191,16)" rx="2" ry="2" />
|
|
<text x="171.87" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (2 samples, 0.01%)</title><rect x="1097.3" y="421" width="0.2" height="15.0" fill="rgb(244,90,33)" rx="2" ry="2" />
|
|
<text x="1100.33" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (15 samples, 0.08%)</title><rect x="157.0" y="421" width="0.9" height="15.0" fill="rgb(250,185,54)" rx="2" ry="2" />
|
|
<text x="159.98" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (4 samples, 0.02%)</title><rect x="179.7" y="389" width="0.2" height="15.0" fill="rgb(213,130,13)" rx="2" ry="2" />
|
|
<text x="182.67" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_MONT_CTX_set (3 samples, 0.02%)</title><rect x="166.9" y="181" width="0.2" height="15.0" fill="rgb(205,19,20)" rx="2" ry="2" />
|
|
<text x="169.89" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_primitive_free (2 samples, 0.01%)</title><rect x="169.2" y="309" width="0.1" height="15.0" fill="rgb(246,168,45)" rx="2" ry="2" />
|
|
<text x="172.17" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="469.7" y="469" width="0.1" height="15.0" fill="rgb(214,205,18)" rx="2" ry="2" />
|
|
<text x="472.67" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_server_hello (5 samples, 0.03%)</title><rect x="254.8" y="469" width="0.3" height="15.0" fill="rgb(214,219,24)" rx="2" ry="2" />
|
|
<text x="257.81" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="145.9" y="405" width="0.1" height="15.0" fill="rgb(221,196,16)" rx="2" ry="2" />
|
|
<text x="148.88" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="385.0" y="165" width="0.2" height="15.0" fill="rgb(226,5,3)" rx="2" ry="2" />
|
|
<text x="388.05" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (2 samples, 0.01%)</title><rect x="959.9" y="229" width="0.1" height="15.0" fill="rgb(235,133,8)" rx="2" ry="2" />
|
|
<text x="962.89" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (176 samples, 0.90%)</title><rect x="937.7" y="533" width="10.6" height="15.0" fill="rgb(246,156,14)" rx="2" ry="2" />
|
|
<text x="940.75" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_l_avx (7 samples, 0.04%)</title><rect x="412.3" y="341" width="0.4" height="15.0" fill="rgb(218,180,12)" rx="2" ry="2" />
|
|
<text x="415.30" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="556.4" y="405" width="0.2" height="15.0" fill="rgb(243,181,28)" rx="2" ry="2" />
|
|
<text x="559.40" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (2 samples, 0.01%)</title><rect x="1098.2" y="309" width="0.2" height="15.0" fill="rgb(207,141,6)" rx="2" ry="2" />
|
|
<text x="1101.23" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findCRLF_Chunk (4 samples, 0.02%)</title><rect x="385.7" y="357" width="0.2" height="15.0" fill="rgb(222,10,22)" rx="2" ry="2" />
|
|
<text x="388.71" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (75 samples, 0.38%)</title><rect x="922.1" y="309" width="4.5" height="15.0" fill="rgb(219,40,2)" rx="2" ry="2" />
|
|
<text x="925.14" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (19 samples, 0.10%)</title><rect x="733.0" y="469" width="1.2" height="15.0" fill="rgb(211,64,52)" rx="2" ry="2" />
|
|
<text x="736.03" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (246 samples, 1.25%)</title><rect x="114.6" y="565" width="14.7" height="15.0" fill="rgb(231,193,36)" rx="2" ry="2" />
|
|
<text x="117.55" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (9 samples, 0.05%)</title><rect x="108.1" y="341" width="0.6" height="15.0" fill="rgb(213,55,18)" rx="2" ry="2" />
|
|
<text x="111.13" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (13 samples, 0.07%)</title><rect x="193.6" y="421" width="0.8" height="15.0" fill="rgb(249,145,20)" rx="2" ry="2" />
|
|
<text x="196.59" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (27 samples, 0.14%)</title><rect x="1147.6" y="661" width="1.6" height="15.0" fill="rgb(242,165,53)" rx="2" ry="2" />
|
|
<text x="1150.57" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (2 samples, 0.01%)</title><rect x="1063.4" y="261" width="0.1" height="15.0" fill="rgb(226,211,42)" rx="2" ry="2" />
|
|
<text x="1066.42" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (2 samples, 0.01%)</title><rect x="349.5" y="341" width="0.1" height="15.0" fill="rgb(229,59,21)" rx="2" ry="2" />
|
|
<text x="352.46" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (5 samples, 0.03%)</title><rect x="1145.6" y="629" width="0.3" height="15.0" fill="rgb(213,80,28)" rx="2" ry="2" />
|
|
<text x="1148.59" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (7 samples, 0.04%)</title><rect x="1188.7" y="549" width="0.5" height="15.0" fill="rgb(217,89,2)" rx="2" ry="2" />
|
|
<text x="1191.74" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="382.3" y="245" width="0.1" height="15.0" fill="rgb(216,61,11)" rx="2" ry="2" />
|
|
<text x="385.29" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (5 samples, 0.03%)</title><rect x="1144.3" y="453" width="0.3" height="15.0" fill="rgb(249,70,21)" rx="2" ry="2" />
|
|
<text x="1147.33" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (10 samples, 0.05%)</title><rect x="1188.0" y="437" width="0.6" height="15.0" fill="rgb(211,180,19)" rx="2" ry="2" />
|
|
<text x="1191.02" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (4 samples, 0.02%)</title><rect x="1096.8" y="437" width="0.2" height="15.0" fill="rgb(237,121,0)" rx="2" ry="2" />
|
|
<text x="1099.79" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (4 samples, 0.02%)</title><rect x="989.2" y="341" width="0.3" height="15.0" fill="rgb(209,52,44)" rx="2" ry="2" />
|
|
<text x="992.24" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="473.9" y="405" width="0.2" height="15.0" fill="rgb(227,151,50)" rx="2" ry="2" />
|
|
<text x="476.93" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="522.8" y="341" width="0.2" height="15.0" fill="rgb(218,157,5)" rx="2" ry="2" />
|
|
<text x="525.85" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_polling_inject_context (12 samples, 0.06%)</title><rect x="667.2" y="533" width="0.7" height="15.0" fill="rgb(254,4,21)" rx="2" ry="2" />
|
|
<text x="670.19" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (7 samples, 0.04%)</title><rect x="1044.8" y="485" width="0.4" height="15.0" fill="rgb(219,120,20)" rx="2" ry="2" />
|
|
<text x="1047.82" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH128_mix32B (3 samples, 0.02%)</title><rect x="583.1" y="229" width="0.2" height="15.0" fill="rgb(208,193,17)" rx="2" ry="2" />
|
|
<text x="586.11" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (38 samples, 0.19%)</title><rect x="58.0" y="597" width="2.2" height="15.0" fill="rgb(251,58,2)" rx="2" ry="2" />
|
|
<text x="60.95" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (3 samples, 0.02%)</title><rect x="1074.2" y="277" width="0.2" height="15.0" fill="rgb(217,75,29)" rx="2" ry="2" />
|
|
<text x="1077.23" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (9 samples, 0.05%)</title><rect x="1147.6" y="613" width="0.6" height="15.0" fill="rgb(232,9,29)" rx="2" ry="2" />
|
|
<text x="1150.63" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (12 samples, 0.06%)</title><rect x="505.7" y="293" width="0.7" height="15.0" fill="rgb(230,161,5)" rx="2" ry="2" />
|
|
<text x="508.68" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.07%)</title><rect x="49.6" y="533" width="0.8" height="15.0" fill="rgb(205,105,31)" rx="2" ry="2" />
|
|
<text x="52.61" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (119 samples, 0.61%)</title><rect x="1086.9" y="405" width="7.1" height="15.0" fill="rgb(222,128,41)" rx="2" ry="2" />
|
|
<text x="1089.89" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (22 samples, 0.11%)</title><rect x="919.3" y="373" width="1.3" height="15.0" fill="rgb(251,185,38)" rx="2" ry="2" />
|
|
<text x="922.32" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (4 samples, 0.02%)</title><rect x="927.7" y="357" width="0.3" height="15.0" fill="rgb(251,165,53)" rx="2" ry="2" />
|
|
<text x="930.72" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="401.7" y="213" width="0.1" height="15.0" fill="rgb(217,48,26)" rx="2" ry="2" />
|
|
<text x="404.67" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="1188.4" y="405" width="0.2" height="15.0" fill="rgb(225,39,7)" rx="2" ry="2" />
|
|
<text x="1191.44" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (3 samples, 0.02%)</title><rect x="224.1" y="389" width="0.2" height="15.0" fill="rgb(222,112,44)" rx="2" ry="2" />
|
|
<text x="227.08" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (3 samples, 0.02%)</title><rect x="1148.5" y="613" width="0.1" height="15.0" fill="rgb(211,200,0)" rx="2" ry="2" />
|
|
<text x="1151.47" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="159.1" y="309" width="0.2" height="15.0" fill="rgb(210,103,30)" rx="2" ry="2" />
|
|
<text x="162.14" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_calloc (4 samples, 0.02%)</title><rect x="1081.5" y="501" width="0.3" height="15.0" fill="rgb(253,16,47)" rx="2" ry="2" />
|
|
<text x="1084.55" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop4 (2 samples, 0.01%)</title><rect x="255.1" y="421" width="0.1" height="15.0" fill="rgb(239,110,45)" rx="2" ry="2" />
|
|
<text x="258.11" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>DNS_TCP_ENTRY (2 samples, 0.01%)</title><rect x="915.7" y="453" width="0.1" height="15.0" fill="rgb(243,192,2)" rx="2" ry="2" />
|
|
<text x="918.72" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (5 samples, 0.03%)</title><rect x="583.0" y="245" width="0.3" height="15.0" fill="rgb(232,38,24)" rx="2" ry="2" />
|
|
<text x="585.99" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (26 samples, 0.13%)</title><rect x="373.4" y="389" width="1.6" height="15.0" fill="rgb(238,197,24)" rx="2" ry="2" />
|
|
<text x="376.40" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (4 samples, 0.02%)</title><rect x="1084.2" y="341" width="0.3" height="15.0" fill="rgb(220,118,5)" rx="2" ry="2" />
|
|
<text x="1087.25" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (43 samples, 0.22%)</title><rect x="246.1" y="501" width="2.6" height="15.0" fill="rgb(209,137,42)" rx="2" ry="2" />
|
|
<text x="249.11" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>file_trycdf (2 samples, 0.01%)</title><rect x="404.1" y="197" width="0.1" height="15.0" fill="rgb(226,37,8)" rx="2" ry="2" />
|
|
<text x="407.07" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_0to16_128b (4 samples, 0.02%)</title><rect x="1005.8" y="261" width="0.2" height="15.0" fill="rgb(224,54,1)" rx="2" ry="2" />
|
|
<text x="1008.81" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (16 samples, 0.08%)</title><rect x="41.2" y="565" width="1.0" height="15.0" fill="rgb(209,178,15)" rx="2" ry="2" />
|
|
<text x="44.21" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (8 samples, 0.04%)</title><rect x="932.9" y="405" width="0.5" height="15.0" fill="rgb(236,48,20)" rx="2" ry="2" />
|
|
<text x="935.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (6 samples, 0.03%)</title><rect x="418.8" y="389" width="0.4" height="15.0" fill="rgb(254,113,47)" rx="2" ry="2" />
|
|
<text x="421.84" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (16 samples, 0.08%)</title><rect x="359.6" y="501" width="1.0" height="15.0" fill="rgb(217,56,44)" rx="2" ry="2" />
|
|
<text x="362.60" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop4 (2 samples, 0.01%)</title><rect x="382.3" y="229" width="0.1" height="15.0" fill="rgb(246,218,28)" rx="2" ry="2" />
|
|
<text x="385.29" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithStartLine (89 samples, 0.45%)</title><rect x="373.4" y="405" width="5.3" height="15.0" fill="rgb(240,27,20)" rx="2" ry="2" />
|
|
<text x="376.40" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (3 samples, 0.02%)</title><rect x="105.7" y="277" width="0.1" height="15.0" fill="rgb(217,130,35)" rx="2" ry="2" />
|
|
<text x="108.67" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (7 samples, 0.04%)</title><rect x="929.5" y="373" width="0.4" height="15.0" fill="rgb(210,31,36)" rx="2" ry="2" />
|
|
<text x="932.46" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="161.1" y="309" width="0.1" height="15.0" fill="rgb(241,159,25)" rx="2" ry="2" />
|
|
<text x="164.06" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (63 samples, 0.32%)</title><rect x="110.8" y="533" width="3.8" height="15.0" fill="rgb(215,166,35)" rx="2" ry="2" />
|
|
<text x="113.77" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="351.9" y="469" width="0.1" height="15.0" fill="rgb(243,29,34)" rx="2" ry="2" />
|
|
<text x="354.92" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (8 samples, 0.04%)</title><rect x="165.2" y="197" width="0.5" height="15.0" fill="rgb(207,38,37)" rx="2" ry="2" />
|
|
<text x="168.20" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (23 samples, 0.12%)</title><rect x="665.7" y="517" width="1.4" height="15.0" fill="rgb(225,191,50)" rx="2" ry="2" />
|
|
<text x="668.75" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (1,641 samples, 8.35%)</title><rect x="562.6" y="421" width="98.5" height="15.0" fill="rgb(218,167,39)" rx="2" ry="2" />
|
|
<text x="565.64" y="431.5" >metric_traf..</text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (3 samples, 0.02%)</title><rect x="1023.3" y="485" width="0.2" height="15.0" fill="rgb(249,4,44)" rx="2" ry="2" />
|
|
<text x="1026.27" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (7 samples, 0.04%)</title><rect x="666.1" y="357" width="0.4" height="15.0" fill="rgb(208,130,46)" rx="2" ry="2" />
|
|
<text x="669.11" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (57 samples, 0.29%)</title><rect x="129.4" y="517" width="3.4" height="15.0" fill="rgb(248,182,28)" rx="2" ry="2" />
|
|
<text x="132.37" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="476.8" y="421" width="0.1" height="15.0" fill="rgb(250,27,1)" rx="2" ry="2" />
|
|
<text x="479.81" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="219.8" y="229" width="0.3" height="15.0" fill="rgb(219,109,35)" rx="2" ry="2" />
|
|
<text x="222.82" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (88 samples, 0.45%)</title><rect x="352.3" y="485" width="5.3" height="15.0" fill="rgb(253,20,31)" rx="2" ry="2" />
|
|
<text x="355.28" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (117 samples, 0.60%)</title><rect x="1067.6" y="341" width="7.0" height="15.0" fill="rgb(250,154,0)" rx="2" ry="2" />
|
|
<text x="1070.62" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="703.7" y="405" width="0.2" height="15.0" fill="rgb(215,61,14)" rx="2" ry="2" />
|
|
<text x="706.74" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>strncmp_one_word_mesa (3 samples, 0.02%)</title><rect x="423.6" y="405" width="0.2" height="15.0" fill="rgb(247,110,6)" rx="2" ry="2" />
|
|
<text x="426.58" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (2 samples, 0.01%)</title><rect x="1099.3" y="325" width="0.1" height="15.0" fill="rgb(223,40,15)" rx="2" ry="2" />
|
|
<text x="1102.31" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_cardinality (2 samples, 0.01%)</title><rect x="1069.2" y="277" width="0.1" height="15.0" fill="rgb(226,130,48)" rx="2" ry="2" />
|
|
<text x="1072.19" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (6 samples, 0.03%)</title><rect x="208.1" y="373" width="0.4" height="15.0" fill="rgb(235,38,48)" rx="2" ry="2" />
|
|
<text x="211.12" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (23 samples, 0.12%)</title><rect x="373.4" y="341" width="1.4" height="15.0" fill="rgb(238,8,36)" rx="2" ry="2" />
|
|
<text x="376.40" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="144.9" y="373" width="0.2" height="15.0" fill="rgb(229,75,34)" rx="2" ry="2" />
|
|
<text x="147.86" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (5 samples, 0.03%)</title><rect x="788.9" y="293" width="0.3" height="15.0" fill="rgb(231,225,51)" rx="2" ry="2" />
|
|
<text x="791.90" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (4 samples, 0.02%)</title><rect x="231.5" y="421" width="0.3" height="15.0" fill="rgb(209,13,3)" rx="2" ry="2" />
|
|
<text x="234.52" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_is_outer_tunnel (6 samples, 0.03%)</title><rect x="1148.7" y="485" width="0.4" height="15.0" fill="rgb(237,49,6)" rx="2" ry="2" />
|
|
<text x="1151.71" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (24 samples, 0.12%)</title><rect x="960.9" y="325" width="1.5" height="15.0" fill="rgb(214,108,6)" rx="2" ry="2" />
|
|
<text x="963.91" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="351.9" y="437" width="0.1" height="15.0" fill="rgb(208,38,44)" rx="2" ry="2" />
|
|
<text x="354.92" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.8] (2 samples, 0.01%)</title><rect x="1107.7" y="549" width="0.1" height="15.0" fill="rgb(229,51,34)" rx="2" ry="2" />
|
|
<text x="1110.66" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (7 samples, 0.04%)</title><rect x="162.1" y="149" width="0.4" height="15.0" fill="rgb(207,148,24)" rx="2" ry="2" />
|
|
<text x="165.08" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_9to16_128b (2 samples, 0.01%)</title><rect x="885.2" y="261" width="0.2" height="15.0" fill="rgb(210,103,9)" rx="2" ry="2" />
|
|
<text x="888.23" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (6 samples, 0.03%)</title><rect x="223.7" y="405" width="0.3" height="15.0" fill="rgb(249,142,36)" rx="2" ry="2" />
|
|
<text x="226.66" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (10 samples, 0.05%)</title><rect x="153.9" y="485" width="0.6" height="15.0" fill="rgb(207,46,45)" rx="2" ry="2" />
|
|
<text x="156.86" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (3 samples, 0.02%)</title><rect x="615.1" y="245" width="0.2" height="15.0" fill="rgb(253,207,42)" rx="2" ry="2" />
|
|
<text x="618.09" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="261" width="0.2" height="15.0" fill="rgb(227,56,23)" rx="2" ry="2" />
|
|
<text x="1145.47" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (29 samples, 0.15%)</title><rect x="157.9" y="437" width="1.7" height="15.0" fill="rgb(245,11,22)" rx="2" ry="2" />
|
|
<text x="160.88" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (9 samples, 0.05%)</title><rect x="791.7" y="341" width="0.6" height="15.0" fill="rgb(205,29,27)" rx="2" ry="2" />
|
|
<text x="794.73" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_itoa_word (2 samples, 0.01%)</title><rect x="171.2" y="373" width="0.1" height="15.0" fill="rgb(230,220,10)" rx="2" ry="2" />
|
|
<text x="174.21" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (3 samples, 0.02%)</title><rect x="251.4" y="389" width="0.2" height="15.0" fill="rgb(223,45,9)" rx="2" ry="2" />
|
|
<text x="254.45" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (57 samples, 0.29%)</title><rect x="922.7" y="261" width="3.4" height="15.0" fill="rgb(228,157,48)" rx="2" ry="2" />
|
|
<text x="925.68" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (13 samples, 0.07%)</title><rect x="427.7" y="405" width="0.8" height="15.0" fill="rgb(217,209,5)" rx="2" ry="2" />
|
|
<text x="430.72" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="178.5" y="197" width="0.5" height="15.0" fill="rgb(223,51,20)" rx="2" ry="2" />
|
|
<text x="181.53" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="219.5" y="469" width="0.3" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
|
|
<text x="222.46" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="254.0" y="613" width="0.4" height="15.0" fill="rgb(227,194,43)" rx="2" ry="2" />
|
|
<text x="257.03" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (34 samples, 0.17%)</title><rect x="1062.5" y="389" width="2.1" height="15.0" fill="rgb(220,48,2)" rx="2" ry="2" />
|
|
<text x="1065.52" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (17 samples, 0.09%)</title><rect x="664.1" y="453" width="1.0" height="15.0" fill="rgb(214,82,38)" rx="2" ry="2" />
|
|
<text x="667.13" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (112 samples, 0.57%)</title><rect x="225.4" y="453" width="6.7" height="15.0" fill="rgb(233,2,17)" rx="2" ry="2" />
|
|
<text x="228.40" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (2 samples, 0.01%)</title><rect x="732.3" y="373" width="0.1" height="15.0" fill="rgb(208,126,31)" rx="2" ry="2" />
|
|
<text x="735.31" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (89 samples, 0.45%)</title><rect x="220.1" y="469" width="5.3" height="15.0" fill="rgb(243,201,26)" rx="2" ry="2" />
|
|
<text x="223.06" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_type_new (2 samples, 0.01%)</title><rect x="164.5" y="181" width="0.2" height="15.0" fill="rgb(236,223,17)" rx="2" ry="2" />
|
|
<text x="167.54" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="224.1" y="293" width="0.2" height="15.0" fill="rgb(213,179,17)" rx="2" ry="2" />
|
|
<text x="227.08" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (40 samples, 0.20%)</title><rect x="1012.4" y="341" width="2.4" height="15.0" fill="rgb(247,55,2)" rx="2" ry="2" />
|
|
<text x="1015.41" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (13 samples, 0.07%)</title><rect x="1146.5" y="613" width="0.8" height="15.0" fill="rgb(212,74,11)" rx="2" ry="2" />
|
|
<text x="1149.55" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_set_scan_district (6 samples, 0.03%)</title><rect x="415.8" y="213" width="0.3" height="15.0" fill="rgb(217,73,29)" rx="2" ry="2" />
|
|
<text x="418.78" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (732 samples, 3.72%)</title><rect x="478.2" y="421" width="43.9" height="15.0" fill="rgb(233,181,12)" rx="2" ry="2" />
|
|
<text x="481.19" y="431.5" >metr..</text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (6 samples, 0.03%)</title><rect x="213.0" y="389" width="0.4" height="15.0" fill="rgb(209,162,32)" rx="2" ry="2" />
|
|
<text x="216.04" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (22 samples, 0.11%)</title><rect x="416.6" y="261" width="1.3" height="15.0" fill="rgb(230,171,24)" rx="2" ry="2" />
|
|
<text x="419.56" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="157.0" y="261" width="0.5" height="15.0" fill="rgb(240,7,42)" rx="2" ry="2" />
|
|
<text x="159.98" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (10 samples, 0.05%)</title><rect x="883.6" y="293" width="0.6" height="15.0" fill="rgb(250,148,17)" rx="2" ry="2" />
|
|
<text x="886.61" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (10 samples, 0.05%)</title><rect x="881.5" y="325" width="0.6" height="15.0" fill="rgb(245,24,24)" rx="2" ry="2" />
|
|
<text x="884.51" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="930.2" y="309" width="0.3" height="15.0" fill="rgb(211,6,44)" rx="2" ry="2" />
|
|
<text x="933.25" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="219.5" y="453" width="0.3" height="15.0" fill="rgb(244,17,6)" rx="2" ry="2" />
|
|
<text x="222.46" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="145.2" y="309" width="0.2" height="15.0" fill="rgb(210,84,36)" rx="2" ry="2" />
|
|
<text x="148.16" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="189.9" y="245" width="0.4" height="15.0" fill="rgb(251,108,15)" rx="2" ry="2" />
|
|
<text x="192.93" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="1184.3" y="341" width="0.4" height="15.0" fill="rgb(245,104,49)" rx="2" ry="2" />
|
|
<text x="1187.30" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="1179.8" y="549" width="0.4" height="15.0" fill="rgb(209,186,19)" rx="2" ry="2" />
|
|
<text x="1182.80" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (3 samples, 0.02%)</title><rect x="353.0" y="373" width="0.2" height="15.0" fill="rgb(214,8,13)" rx="2" ry="2" />
|
|
<text x="356.00" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_memcpy (2 samples, 0.01%)</title><rect x="575.1" y="277" width="0.1" height="15.0" fill="rgb(228,41,35)" rx="2" ry="2" />
|
|
<text x="578.06" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (2 samples, 0.01%)</title><rect x="1085.9" y="309" width="0.1" height="15.0" fill="rgb(249,141,3)" rx="2" ry="2" />
|
|
<text x="1088.87" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="1083.2" y="469" width="0.3" height="15.0" fill="rgb(223,109,10)" rx="2" ry="2" />
|
|
<text x="1086.17" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="225.0" y="405" width="0.2" height="15.0" fill="rgb(220,118,23)" rx="2" ry="2" />
|
|
<text x="228.04" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pop_heap (16 samples, 0.08%)</title><rect x="622.2" y="261" width="1.0" height="15.0" fill="rgb(212,83,53)" rx="2" ry="2" />
|
|
<text x="625.24" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (23 samples, 0.12%)</title><rect x="964.7" y="341" width="1.4" height="15.0" fill="rgb(248,215,24)" rx="2" ry="2" />
|
|
<text x="967.70" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (632 samples, 3.21%)</title><rect x="697.8" y="533" width="37.9" height="15.0" fill="rgb(230,18,35)" rx="2" ry="2" />
|
|
<text x="700.80" y="543.5" >lru..</text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (6 samples, 0.03%)</title><rect x="209.7" y="405" width="0.4" height="15.0" fill="rgb(237,188,34)" rx="2" ry="2" />
|
|
<text x="212.74" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="384.0" y="149" width="0.1" height="15.0" fill="rgb(218,212,5)" rx="2" ry="2" />
|
|
<text x="386.97" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (8 samples, 0.04%)</title><rect x="214.8" y="421" width="0.5" height="15.0" fill="rgb(214,105,54)" rx="2" ry="2" />
|
|
<text x="217.78" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="106.0" y="325" width="0.1" height="15.0" fill="rgb(209,194,42)" rx="2" ry="2" />
|
|
<text x="108.97" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="145.9" y="341" width="0.1" height="15.0" fill="rgb(221,31,32)" rx="2" ry="2" />
|
|
<text x="148.88" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (4 samples, 0.02%)</title><rect x="476.4" y="405" width="0.2" height="15.0" fill="rgb(205,33,6)" rx="2" ry="2" />
|
|
<text x="479.39" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_add_proto_tag (65 samples, 0.33%)</title><rect x="368.5" y="437" width="3.9" height="15.0" fill="rgb(227,135,4)" rx="2" ry="2" />
|
|
<text x="371.48" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (3 samples, 0.02%)</title><rect x="216.9" y="405" width="0.2" height="15.0" fill="rgb(212,163,17)" rx="2" ry="2" />
|
|
<text x="219.94" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (5 samples, 0.03%)</title><rect x="201.6" y="437" width="0.3" height="15.0" fill="rgb(250,170,9)" rx="2" ry="2" />
|
|
<text x="204.58" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="239.0" y="373" width="0.1" height="15.0" fill="rgb(241,175,10)" rx="2" ry="2" />
|
|
<text x="242.03" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (2 samples, 0.01%)</title><rect x="1003.3" y="277" width="0.1" height="15.0" fill="rgb(232,8,31)" rx="2" ry="2" />
|
|
<text x="1006.29" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (4 samples, 0.02%)</title><rect x="141.3" y="405" width="0.3" height="15.0" fill="rgb(236,225,7)" rx="2" ry="2" />
|
|
<text x="144.32" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (7 samples, 0.04%)</title><rect x="555.6" y="325" width="0.4" height="15.0" fill="rgb(208,148,5)" rx="2" ry="2" />
|
|
<text x="558.56" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="1178.8" y="325" width="0.4" height="15.0" fill="rgb(212,199,18)" rx="2" ry="2" />
|
|
<text x="1181.84" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (2 samples, 0.01%)</title><rect x="1061.3" y="293" width="0.1" height="15.0" fill="rgb(222,33,25)" rx="2" ry="2" />
|
|
<text x="1064.26" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (5 samples, 0.03%)</title><rect x="1147.9" y="469" width="0.3" height="15.0" fill="rgb(227,72,4)" rx="2" ry="2" />
|
|
<text x="1150.87" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_initHttpLinkInfor (8 samples, 0.04%)</title><rect x="421.2" y="405" width="0.5" height="15.0" fill="rgb(232,168,26)" rx="2" ry="2" />
|
|
<text x="424.18" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.8] (240 samples, 1.22%)</title><rect x="1125.4" y="581" width="14.4" height="15.0" fill="rgb(244,0,12)" rx="2" ry="2" />
|
|
<text x="1128.36" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (11 samples, 0.06%)</title><rect x="1145.9" y="549" width="0.6" height="15.0" fill="rgb(247,46,3)" rx="2" ry="2" />
|
|
<text x="1148.89" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (8 samples, 0.04%)</title><rect x="577.0" y="389" width="0.5" height="15.0" fill="rgb(217,109,41)" rx="2" ry="2" />
|
|
<text x="580.04" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (3 samples, 0.02%)</title><rect x="144.0" y="421" width="0.2" height="15.0" fill="rgb(247,38,6)" rx="2" ry="2" />
|
|
<text x="147.02" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="384.0" y="213" width="0.1" height="15.0" fill="rgb(219,42,30)" rx="2" ry="2" />
|
|
<text x="386.97" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_obj2nid (5 samples, 0.03%)</title><rect x="167.4" y="197" width="0.3" height="15.0" fill="rgb(213,19,6)" rx="2" ry="2" />
|
|
<text x="170.43" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="156.7" y="341" width="0.2" height="15.0" fill="rgb(229,110,45)" rx="2" ry="2" />
|
|
<text x="159.74" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (8 samples, 0.04%)</title><rect x="1187.4" y="485" width="0.5" height="15.0" fill="rgb(230,45,42)" rx="2" ry="2" />
|
|
<text x="1190.42" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (261 samples, 1.33%)</title><rect x="1030.1" y="533" width="15.7" height="15.0" fill="rgb(233,229,22)" rx="2" ry="2" />
|
|
<text x="1033.11" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (62 samples, 0.32%)</title><rect x="883.1" y="389" width="3.7" height="15.0" fill="rgb(231,151,42)" rx="2" ry="2" />
|
|
<text x="886.07" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (14 samples, 0.07%)</title><rect x="220.1" y="437" width="0.8" height="15.0" fill="rgb(205,24,12)" rx="2" ry="2" />
|
|
<text x="223.06" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (11 samples, 0.06%)</title><rect x="255.3" y="581" width="0.7" height="15.0" fill="rgb(235,137,43)" rx="2" ry="2" />
|
|
<text x="258.29" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="384.3" y="229" width="0.2" height="15.0" fill="rgb(240,43,5)" rx="2" ry="2" />
|
|
<text x="387.27" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (63 samples, 0.32%)</title><rect x="110.8" y="517" width="3.8" height="15.0" fill="rgb(225,27,10)" rx="2" ry="2" />
|
|
<text x="113.77" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_entry_dying (3 samples, 0.02%)</title><rect x="809.6" y="277" width="0.2" height="15.0" fill="rgb(227,12,45)" rx="2" ry="2" />
|
|
<text x="812.61" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="229" width="0.3" height="15.0" fill="rgb(235,2,50)" rx="2" ry="2" />
|
|
<text x="1146.85" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (5 samples, 0.03%)</title><rect x="1089.7" y="325" width="0.3" height="15.0" fill="rgb(239,197,19)" rx="2" ry="2" />
|
|
<text x="1092.71" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (12 samples, 0.06%)</title><rect x="178.3" y="373" width="0.8" height="15.0" fill="rgb(240,58,47)" rx="2" ry="2" />
|
|
<text x="181.35" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="224.3" y="277" width="0.1" height="15.0" fill="rgb(253,40,28)" rx="2" ry="2" />
|
|
<text x="227.32" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime_2 (44 samples, 0.22%)</title><rect x="568.7" y="389" width="2.6" height="15.0" fill="rgb(244,19,19)" rx="2" ry="2" />
|
|
<text x="571.70" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="1142.7" y="517" width="0.2" height="15.0" fill="rgb(208,161,5)" rx="2" ry="2" />
|
|
<text x="1145.71" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (16 samples, 0.08%)</title><rect x="108.1" y="405" width="0.9" height="15.0" fill="rgb(248,100,14)" rx="2" ry="2" />
|
|
<text x="111.07" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="254.4" y="341" width="0.1" height="15.0" fill="rgb(225,182,25)" rx="2" ry="2" />
|
|
<text x="257.39" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="152.7" y="453" width="0.7" height="15.0" fill="rgb(239,102,20)" rx="2" ry="2" />
|
|
<text x="155.72" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (9 samples, 0.05%)</title><rect x="408.9" y="357" width="0.5" height="15.0" fill="rgb(239,9,7)" rx="2" ry="2" />
|
|
<text x="411.87" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (22 samples, 0.11%)</title><rect x="1184.0" y="549" width="1.3" height="15.0" fill="rgb(248,102,52)" rx="2" ry="2" />
|
|
<text x="1187.00" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>file_getbuffer (9 samples, 0.05%)</title><rect x="403.0" y="229" width="0.5" height="15.0" fill="rgb(247,132,39)" rx="2" ry="2" />
|
|
<text x="405.99" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (4 samples, 0.02%)</title><rect x="1179.9" y="469" width="0.2" height="15.0" fill="rgb(227,192,44)" rx="2" ry="2" />
|
|
<text x="1182.86" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mix16B (3 samples, 0.02%)</title><rect x="1006.6" y="229" width="0.2" height="15.0" fill="rgb(216,117,15)" rx="2" ry="2" />
|
|
<text x="1009.59" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpStream (12 samples, 0.06%)</title><rect x="422.6" y="437" width="0.7" height="15.0" fill="rgb(211,34,51)" rx="2" ry="2" />
|
|
<text x="425.62" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="183.4" y="357" width="0.2" height="15.0" fill="rgb(252,133,34)" rx="2" ry="2" />
|
|
<text x="186.39" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (138 samples, 0.70%)</title><rect x="649.3" y="341" width="8.3" height="15.0" fill="rgb(219,77,48)" rx="2" ry="2" />
|
|
<text x="652.30" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_updatePktOffset (2 samples, 0.01%)</title><rect x="926.9" y="405" width="0.1" height="15.0" fill="rgb(234,110,42)" rx="2" ry="2" />
|
|
<text x="929.88" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (7 samples, 0.04%)</title><rect x="1044.2" y="373" width="0.4" height="15.0" fill="rgb(226,103,43)" rx="2" ry="2" />
|
|
<text x="1047.16" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="793.6" y="325" width="0.1" height="15.0" fill="rgb(243,136,13)" rx="2" ry="2" />
|
|
<text x="796.59" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (5 samples, 0.03%)</title><rect x="415.5" y="197" width="0.3" height="15.0" fill="rgb(250,141,8)" rx="2" ry="2" />
|
|
<text x="418.48" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_stream (29 samples, 0.15%)</title><rect x="935.3" y="437" width="1.8" height="15.0" fill="rgb(253,137,50)" rx="2" ry="2" />
|
|
<text x="938.35" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="678.3" y="485" width="0.1" height="15.0" fill="rgb(224,226,49)" rx="2" ry="2" />
|
|
<text x="681.29" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="212.6" y="373" width="0.1" height="15.0" fill="rgb(214,129,0)" rx="2" ry="2" />
|
|
<text x="215.56" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (8 samples, 0.04%)</title><rect x="787.3" y="277" width="0.5" height="15.0" fill="rgb(241,37,17)" rx="2" ry="2" />
|
|
<text x="790.34" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (70 samples, 0.36%)</title><rect x="844.0" y="293" width="4.2" height="15.0" fill="rgb(246,163,22)" rx="2" ry="2" />
|
|
<text x="847.00" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (17 samples, 0.09%)</title><rect x="146.4" y="453" width="1.0" height="15.0" fill="rgb(243,181,48)" rx="2" ry="2" />
|
|
<text x="149.36" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddStringToObject (3 samples, 0.02%)</title><rect x="245.4" y="421" width="0.2" height="15.0" fill="rgb(221,115,31)" rx="2" ry="2" />
|
|
<text x="248.45" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_zalloc (2 samples, 0.01%)</title><rect x="164.5" y="165" width="0.2" height="15.0" fill="rgb(246,127,34)" rx="2" ry="2" />
|
|
<text x="167.54" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="231.9" y="325" width="0.2" height="15.0" fill="rgb(240,103,4)" rx="2" ry="2" />
|
|
<text x="234.94" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (3 samples, 0.02%)</title><rect x="209.3" y="373" width="0.2" height="15.0" fill="rgb(237,100,29)" rx="2" ry="2" />
|
|
<text x="212.32" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="1155.7" y="277" width="0.3" height="15.0" fill="rgb(205,136,0)" rx="2" ry="2" />
|
|
<text x="1158.73" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="218.1" y="437" width="0.2" height="15.0" fill="rgb(224,196,25)" rx="2" ry="2" />
|
|
<text x="221.08" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_get_type (4 samples, 0.02%)</title><rect x="573.4" y="341" width="0.3" height="15.0" fill="rgb(230,100,47)" rx="2" ry="2" />
|
|
<text x="576.44" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (4 samples, 0.02%)</title><rect x="201.6" y="421" width="0.3" height="15.0" fill="rgb(221,96,53)" rx="2" ry="2" />
|
|
<text x="204.64" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (5 samples, 0.03%)</title><rect x="573.4" y="357" width="0.3" height="15.0" fill="rgb(208,121,51)" rx="2" ry="2" />
|
|
<text x="576.38" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (8 samples, 0.04%)</title><rect x="254.6" y="533" width="0.5" height="15.0" fill="rgb(241,93,46)" rx="2" ry="2" />
|
|
<text x="257.63" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (23 samples, 0.12%)</title><rect x="1034.1" y="389" width="1.4" height="15.0" fill="rgb(230,206,51)" rx="2" ry="2" />
|
|
<text x="1037.08" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="707.0" y="373" width="0.1" height="15.0" fill="rgb(226,156,40)" rx="2" ry="2" />
|
|
<text x="709.98" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_polling (4 samples, 0.02%)</title><rect x="1139.8" y="613" width="0.2" height="15.0" fill="rgb(216,140,0)" rx="2" ry="2" />
|
|
<text x="1142.77" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (2 samples, 0.01%)</title><rect x="1001.4" y="261" width="0.1" height="15.0" fill="rgb(233,95,5)" rx="2" ry="2" />
|
|
<text x="1004.37" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (6 samples, 0.03%)</title><rect x="578.9" y="325" width="0.4" height="15.0" fill="rgb(213,102,40)" rx="2" ry="2" />
|
|
<text x="581.90" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__tls_get_addr (8 samples, 0.04%)</title><rect x="1016.2" y="437" width="0.5" height="15.0" fill="rgb(239,107,47)" rx="2" ry="2" />
|
|
<text x="1019.25" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (31 samples, 0.16%)</title><rect x="1141.7" y="629" width="1.9" height="15.0" fill="rgb(222,219,1)" rx="2" ry="2" />
|
|
<text x="1144.75" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (194 samples, 0.99%)</title><rect x="232.1" y="501" width="11.7" height="15.0" fill="rgb(221,88,15)" rx="2" ry="2" />
|
|
<text x="235.12" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="1141.9" y="437" width="0.3" height="15.0" fill="rgb(220,153,26)" rx="2" ry="2" />
|
|
<text x="1144.93" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[mail.so] (4 samples, 0.02%)</title><rect x="424.2" y="421" width="0.3" height="15.0" fill="rgb(237,17,27)" rx="2" ry="2" />
|
|
<text x="427.24" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (39 samples, 0.20%)</title><rect x="788.7" y="325" width="2.4" height="15.0" fill="rgb(248,228,29)" rx="2" ry="2" />
|
|
<text x="791.72" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (3 samples, 0.02%)</title><rect x="960.2" y="293" width="0.2" height="15.0" fill="rgb(231,123,1)" rx="2" ry="2" />
|
|
<text x="963.19" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="253.0" y="325" width="0.1" height="15.0" fill="rgb(228,111,7)" rx="2" ry="2" />
|
|
<text x="256.01" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="157.5" y="229" width="0.3" height="15.0" fill="rgb(228,69,43)" rx="2" ry="2" />
|
|
<text x="160.52" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_9to16_128b (5 samples, 0.03%)</title><rect x="1041.1" y="245" width="0.3" height="15.0" fill="rgb(236,177,52)" rx="2" ry="2" />
|
|
<text x="1044.10" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (7 samples, 0.04%)</title><rect x="1017.1" y="437" width="0.4" height="15.0" fill="rgb(252,74,13)" rx="2" ry="2" />
|
|
<text x="1020.09" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_to_UTF8 (2 samples, 0.01%)</title><rect x="222.2" y="245" width="0.1" height="15.0" fill="rgb(250,179,9)" rx="2" ry="2" />
|
|
<text x="225.16" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>map_flow_id_hash_to_bucket (2 samples, 0.01%)</title><rect x="489.7" y="293" width="0.1" height="15.0" fill="rgb(218,167,23)" rx="2" ry="2" />
|
|
<text x="492.72" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (2 samples, 0.01%)</title><rect x="582.7" y="277" width="0.2" height="15.0" fill="rgb(239,44,31)" rx="2" ry="2" />
|
|
<text x="585.75" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (4 samples, 0.02%)</title><rect x="1040.1" y="277" width="0.2" height="15.0" fill="rgb(212,106,6)" rx="2" ry="2" />
|
|
<text x="1043.08" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="350.4" y="405" width="0.1" height="15.0" fill="rgb(227,199,24)" rx="2" ry="2" />
|
|
<text x="353.36" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (57 samples, 0.29%)</title><rect x="129.4" y="565" width="3.4" height="15.0" fill="rgb(238,18,30)" rx="2" ry="2" />
|
|
<text x="132.37" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="219.8" y="373" width="0.3" height="15.0" fill="rgb(234,178,48)" rx="2" ry="2" />
|
|
<text x="222.82" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (230 samples, 1.17%)</title><rect x="917.2" y="437" width="13.8" height="15.0" fill="rgb(236,187,49)" rx="2" ry="2" />
|
|
<text x="920.16" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="1165.0" y="549" width="0.1" height="15.0" fill="rgb(223,120,51)" rx="2" ry="2" />
|
|
<text x="1167.97" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="1059.2" y="405" width="0.1" height="15.0" fill="rgb(237,105,18)" rx="2" ry="2" />
|
|
<text x="1062.22" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libosfp.so.1.3] (10 samples, 0.05%)</title><rect x="1145.9" y="469" width="0.6" height="15.0" fill="rgb(216,142,43)" rx="2" ry="2" />
|
|
<text x="1148.95" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (264 samples, 1.34%)</title><rect x="156.7" y="533" width="15.9" height="15.0" fill="rgb(240,135,34)" rx="2" ry="2" />
|
|
<text x="159.74" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>docanalyze_parsestream (2 samples, 0.01%)</title><rect x="1141.8" y="421" width="0.1" height="15.0" fill="rgb(205,219,11)" rx="2" ry="2" />
|
|
<text x="1144.81" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (3 samples, 0.02%)</title><rect x="884.9" y="293" width="0.2" height="15.0" fill="rgb(250,228,12)" rx="2" ry="2" />
|
|
<text x="887.93" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="1180.5" y="581" width="0.4" height="15.0" fill="rgb(205,186,18)" rx="2" ry="2" />
|
|
<text x="1183.52" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (9 samples, 0.05%)</title><rect x="1148.6" y="597" width="0.6" height="15.0" fill="rgb(235,98,22)" rx="2" ry="2" />
|
|
<text x="1151.65" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (3 samples, 0.02%)</title><rect x="909.3" y="373" width="0.2" height="15.0" fill="rgb(244,34,43)" rx="2" ry="2" />
|
|
<text x="912.30" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="383.7" y="261" width="0.1" height="15.0" fill="rgb(211,131,6)" rx="2" ry="2" />
|
|
<text x="386.67" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="1179.9" y="485" width="0.2" height="15.0" fill="rgb(253,46,18)" rx="2" ry="2" />
|
|
<text x="1182.86" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (24 samples, 0.12%)</title><rect x="1054.2" y="421" width="1.4" height="15.0" fill="rgb(227,48,46)" rx="2" ry="2" />
|
|
<text x="1057.18" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_reset_internal (3 samples, 0.02%)</title><rect x="509.6" y="261" width="0.2" height="15.0" fill="rgb(247,101,42)" rx="2" ry="2" />
|
|
<text x="512.58" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_readChunkedLength (2 samples, 0.01%)</title><rect x="920.9" y="373" width="0.1" height="15.0" fill="rgb(228,70,47)" rx="2" ry="2" />
|
|
<text x="923.88" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="231.4" y="325" width="0.1" height="15.0" fill="rgb(238,98,13)" rx="2" ry="2" />
|
|
<text x="234.40" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="937.6" y="517" width="0.1" height="15.0" fill="rgb(253,22,54)" rx="2" ry="2" />
|
|
<text x="940.63" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (7 samples, 0.04%)</title><rect x="555.6" y="309" width="0.4" height="15.0" fill="rgb(243,203,15)" rx="2" ry="2" />
|
|
<text x="558.56" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (691 samples, 3.51%)</title><rect x="975.3" y="453" width="41.4" height="15.0" fill="rgb(236,65,12)" rx="2" ry="2" />
|
|
<text x="978.26" y="463.5" >[st..</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="156.7" y="277" width="0.2" height="15.0" fill="rgb(233,203,37)" rx="2" ry="2" />
|
|
<text x="159.74" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (233 samples, 1.19%)</title><rect x="1031.3" y="501" width="13.9" height="15.0" fill="rgb(222,205,13)" rx="2" ry="2" />
|
|
<text x="1034.25" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (41 samples, 0.21%)</title><rect x="838.8" y="309" width="2.5" height="15.0" fill="rgb(248,136,26)" rx="2" ry="2" />
|
|
<text x="841.84" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddStringToObject (3 samples, 0.02%)</title><rect x="229.7" y="421" width="0.1" height="15.0" fill="rgb(215,185,53)" rx="2" ry="2" />
|
|
<text x="232.66" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_mult64to128 (2 samples, 0.01%)</title><rect x="1041.5" y="197" width="0.1" height="15.0" fill="rgb(250,88,53)" rx="2" ry="2" />
|
|
<text x="1044.52" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (20 samples, 0.10%)</title><rect x="1185.3" y="549" width="1.2" height="15.0" fill="rgb(242,17,34)" rx="2" ry="2" />
|
|
<text x="1188.32" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (6 samples, 0.03%)</title><rect x="1141.0" y="629" width="0.4" height="15.0" fill="rgb(223,216,43)" rx="2" ry="2" />
|
|
<text x="1144.03" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_numa_page (4 samples, 0.02%)</title><rect x="181.7" y="309" width="0.2" height="15.0" fill="rgb(217,226,52)" rx="2" ry="2" />
|
|
<text x="184.71" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (277 samples, 1.41%)</title><rect x="190.3" y="581" width="16.6" height="15.0" fill="rgb(231,4,43)" rx="2" ry="2" />
|
|
<text x="193.29" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (2 samples, 0.01%)</title><rect x="1018.2" y="485" width="0.1" height="15.0" fill="rgb(239,8,45)" rx="2" ry="2" />
|
|
<text x="1021.17" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (3 samples, 0.02%)</title><rect x="909.3" y="341" width="0.2" height="15.0" fill="rgb(239,209,14)" rx="2" ry="2" />
|
|
<text x="912.30" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (955 samples, 4.86%)</title><rect x="366.0" y="453" width="57.3" height="15.0" fill="rgb(218,120,2)" rx="2" ry="2" />
|
|
<text x="369.02" y="463.5" >HTTP_E..</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="224.3" y="309" width="0.1" height="15.0" fill="rgb(205,9,31)" rx="2" ry="2" />
|
|
<text x="227.32" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="1142.5" y="293" width="0.2" height="15.0" fill="rgb(225,173,17)" rx="2" ry="2" />
|
|
<text x="1145.47" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (2 samples, 0.01%)</title><rect x="1066.2" y="389" width="0.2" height="15.0" fill="rgb(218,57,25)" rx="2" ry="2" />
|
|
<text x="1069.24" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="360.7" y="501" width="0.1" height="15.0" fill="rgb(209,115,36)" rx="2" ry="2" />
|
|
<text x="363.68" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="950.0" y="437" width="0.1" height="15.0" fill="rgb(216,108,52)" rx="2" ry="2" />
|
|
<text x="952.99" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (63 samples, 0.32%)</title><rect x="110.8" y="453" width="3.8" height="15.0" fill="rgb(241,221,39)" rx="2" ry="2" />
|
|
<text x="113.77" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (38 samples, 0.19%)</title><rect x="154.5" y="485" width="2.2" height="15.0" fill="rgb(213,138,13)" rx="2" ry="2" />
|
|
<text x="157.46" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (13 samples, 0.07%)</title><rect x="807.7" y="245" width="0.8" height="15.0" fill="rgb(223,165,45)" rx="2" ry="2" />
|
|
<text x="810.69" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (6 samples, 0.03%)</title><rect x="92.7" y="613" width="0.4" height="15.0" fill="rgb(245,23,38)" rx="2" ry="2" />
|
|
<text x="95.70" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (2 samples, 0.01%)</title><rect x="381.6" y="197" width="0.1" height="15.0" fill="rgb(244,214,49)" rx="2" ry="2" />
|
|
<text x="384.57" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_memcpy (3 samples, 0.02%)</title><rect x="776.4" y="277" width="0.2" height="15.0" fill="rgb(228,114,26)" rx="2" ry="2" />
|
|
<text x="779.42" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="153.9" y="325" width="0.5" height="15.0" fill="rgb(252,64,23)" rx="2" ry="2" />
|
|
<text x="156.92" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="261" width="0.3" height="15.0" fill="rgb(252,90,9)" rx="2" ry="2" />
|
|
<text x="1146.85" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (67 samples, 0.34%)</title><rect x="707.1" y="389" width="4.0" height="15.0" fill="rgb(237,12,49)" rx="2" ry="2" />
|
|
<text x="710.10" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="224.4" y="405" width="0.2" height="15.0" fill="rgb(213,103,40)" rx="2" ry="2" />
|
|
<text x="227.44" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="159.9" y="293" width="0.1" height="15.0" fill="rgb(229,130,45)" rx="2" ry="2" />
|
|
<text x="162.86" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (4 samples, 0.02%)</title><rect x="216.3" y="421" width="0.2" height="15.0" fill="rgb(229,228,34)" rx="2" ry="2" />
|
|
<text x="219.28" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (112 samples, 0.57%)</title><rect x="225.4" y="533" width="6.7" height="15.0" fill="rgb(251,3,13)" rx="2" ry="2" />
|
|
<text x="228.40" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (268 samples, 1.36%)</title><rect x="992.3" y="357" width="16.1" height="15.0" fill="rgb(222,180,49)" rx="2" ry="2" />
|
|
<text x="995.30" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="255.4" y="469" width="0.3" height="15.0" fill="rgb(237,187,29)" rx="2" ry="2" />
|
|
<text x="258.41" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (3 samples, 0.02%)</title><rect x="1141.5" y="661" width="0.2" height="15.0" fill="rgb(208,109,42)" rx="2" ry="2" />
|
|
<text x="1144.51" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="253.0" y="229" width="0.1" height="15.0" fill="rgb(225,21,31)" rx="2" ry="2" />
|
|
<text x="256.01" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (4 samples, 0.02%)</title><rect x="145.2" y="421" width="0.2" height="15.0" fill="rgb(211,219,21)" rx="2" ry="2" />
|
|
<text x="148.16" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (3 samples, 0.02%)</title><rect x="1087.3" y="373" width="0.1" height="15.0" fill="rgb(248,164,23)" rx="2" ry="2" />
|
|
<text x="1090.25" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_trunk_free (4 samples, 0.02%)</title><rect x="431.7" y="421" width="0.3" height="15.0" fill="rgb(210,148,34)" rx="2" ry="2" />
|
|
<text x="434.74" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_mult64to128 (3 samples, 0.02%)</title><rect x="725.4" y="197" width="0.2" height="15.0" fill="rgb(205,169,36)" rx="2" ry="2" />
|
|
<text x="728.41" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_query_one (6 samples, 0.03%)</title><rect x="1040.3" y="325" width="0.4" height="15.0" fill="rgb(243,158,14)" rx="2" ry="2" />
|
|
<text x="1043.32" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="208.1" y="325" width="0.4" height="15.0" fill="rgb(241,192,54)" rx="2" ry="2" />
|
|
<text x="211.12" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (43 samples, 0.22%)</title><rect x="1141.7" y="661" width="2.6" height="15.0" fill="rgb(253,189,4)" rx="2" ry="2" />
|
|
<text x="1144.75" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (32 samples, 0.16%)</title><rect x="776.9" y="357" width="1.9" height="15.0" fill="rgb(220,18,23)" rx="2" ry="2" />
|
|
<text x="779.90" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (115 samples, 0.58%)</title><rect x="880.2" y="485" width="6.9" height="15.0" fill="rgb(230,175,20)" rx="2" ry="2" />
|
|
<text x="883.19" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mul128_fold64 (4 samples, 0.02%)</title><rect x="847.5" y="213" width="0.3" height="15.0" fill="rgb(225,174,26)" rx="2" ry="2" />
|
|
<text x="850.54" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="325.8" y="485" width="0.1" height="15.0" fill="rgb(235,147,20)" rx="2" ry="2" />
|
|
<text x="328.75" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="153.4" y="533" width="0.2" height="15.0" fill="rgb(253,185,7)" rx="2" ry="2" />
|
|
<text x="156.44" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_avx (3 samples, 0.02%)</title><rect x="412.1" y="341" width="0.2" height="15.0" fill="rgb(252,0,28)" rx="2" ry="2" />
|
|
<text x="415.12" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (20 samples, 0.10%)</title><rect x="1185.3" y="469" width="1.2" height="15.0" fill="rgb(241,146,41)" rx="2" ry="2" />
|
|
<text x="1188.32" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1154.0" y="405" width="0.2" height="15.0" fill="rgb(249,173,49)" rx="2" ry="2" />
|
|
<text x="1157.05" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (14 samples, 0.07%)</title><rect x="145.5" y="453" width="0.9" height="15.0" fill="rgb(236,114,52)" rx="2" ry="2" />
|
|
<text x="148.52" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="105.8" y="261" width="0.2" height="15.0" fill="rgb(216,80,47)" rx="2" ry="2" />
|
|
<text x="108.85" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.02%)</title><rect x="909.1" y="357" width="0.2" height="15.0" fill="rgb(226,180,50)" rx="2" ry="2" />
|
|
<text x="912.12" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (2 samples, 0.01%)</title><rect x="706.9" y="373" width="0.1" height="15.0" fill="rgb(233,50,19)" rx="2" ry="2" />
|
|
<text x="709.86" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="414.0" y="245" width="0.3" height="15.0" fill="rgb(215,40,26)" rx="2" ry="2" />
|
|
<text x="417.04" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (4 samples, 0.02%)</title><rect x="1061.1" y="325" width="0.3" height="15.0" fill="rgb(225,142,5)" rx="2" ry="2" />
|
|
<text x="1064.14" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (6 samples, 0.03%)</title><rect x="349.5" y="389" width="0.3" height="15.0" fill="rgb(209,115,22)" rx="2" ry="2" />
|
|
<text x="352.46" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (2 samples, 0.01%)</title><rect x="156.9" y="453" width="0.1" height="15.0" fill="rgb(209,62,10)" rx="2" ry="2" />
|
|
<text x="159.86" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="144.9" y="357" width="0.2" height="15.0" fill="rgb(251,181,15)" rx="2" ry="2" />
|
|
<text x="147.86" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (4 samples, 0.02%)</title><rect x="1089.5" y="293" width="0.2" height="15.0" fill="rgb(211,123,22)" rx="2" ry="2" />
|
|
<text x="1092.47" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (7 samples, 0.04%)</title><rect x="170.1" y="389" width="0.4" height="15.0" fill="rgb(229,102,35)" rx="2" ry="2" />
|
|
<text x="173.13" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (12 samples, 0.06%)</title><rect x="1142.9" y="597" width="0.7" height="15.0" fill="rgb(238,6,52)" rx="2" ry="2" />
|
|
<text x="1145.89" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (131 samples, 0.67%)</title><rect x="879.4" y="533" width="7.8" height="15.0" fill="rgb(241,13,53)" rx="2" ry="2" />
|
|
<text x="882.35" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (86 samples, 0.44%)</title><rect x="105.6" y="517" width="5.2" height="15.0" fill="rgb(239,13,28)" rx="2" ry="2" />
|
|
<text x="108.61" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="231.9" y="373" width="0.2" height="15.0" fill="rgb(253,136,28)" rx="2" ry="2" />
|
|
<text x="234.88" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="907.9" y="501" width="0.3" height="15.0" fill="rgb(249,61,47)" rx="2" ry="2" />
|
|
<text x="910.86" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (4 samples, 0.02%)</title><rect x="1085.2" y="293" width="0.2" height="15.0" fill="rgb(212,167,18)" rx="2" ry="2" />
|
|
<text x="1088.21" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (69 samples, 0.35%)</title><rect x="353.3" y="389" width="4.1" height="15.0" fill="rgb(209,86,46)" rx="2" ry="2" />
|
|
<text x="356.30" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (2 samples, 0.01%)</title><rect x="1039.2" y="293" width="0.1" height="15.0" fill="rgb(237,150,6)" rx="2" ry="2" />
|
|
<text x="1042.18" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (6 samples, 0.03%)</title><rect x="187.1" y="389" width="0.4" height="15.0" fill="rgb(210,70,51)" rx="2" ry="2" />
|
|
<text x="190.11" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (15 samples, 0.08%)</title><rect x="157.0" y="325" width="0.9" height="15.0" fill="rgb(208,52,14)" rx="2" ry="2" />
|
|
<text x="159.98" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_mod_inverse (3 samples, 0.02%)</title><rect x="166.9" y="165" width="0.2" height="15.0" fill="rgb(236,30,47)" rx="2" ry="2" />
|
|
<text x="169.89" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="141.4" y="373" width="0.2" height="15.0" fill="rgb(211,127,51)" rx="2" ry="2" />
|
|
<text x="144.44" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (2 samples, 0.01%)</title><rect x="249.7" y="389" width="0.1" height="15.0" fill="rgb(250,52,39)" rx="2" ry="2" />
|
|
<text x="252.71" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (39 samples, 0.20%)</title><rect x="1012.4" y="325" width="2.3" height="15.0" fill="rgb(226,215,20)" rx="2" ry="2" />
|
|
<text x="1015.41" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="700.3" y="485" width="0.1" height="15.0" fill="rgb(206,225,54)" rx="2" ry="2" />
|
|
<text x="703.26" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="144.9" y="245" width="0.1" height="15.0" fill="rgb(219,149,45)" rx="2" ry="2" />
|
|
<text x="147.86" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (10 samples, 0.05%)</title><rect x="1188.0" y="453" width="0.6" height="15.0" fill="rgb(239,161,29)" rx="2" ry="2" />
|
|
<text x="1191.02" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (4 samples, 0.02%)</title><rect x="377.4" y="229" width="0.3" height="15.0" fill="rgb(242,121,19)" rx="2" ry="2" />
|
|
<text x="380.43" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="373" width="0.3" height="15.0" fill="rgb(250,0,40)" rx="2" ry="2" />
|
|
<text x="1146.85" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="249.7" y="245" width="0.1" height="15.0" fill="rgb(224,223,41)" rx="2" ry="2" />
|
|
<text x="252.71" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="254.4" y="373" width="0.1" height="15.0" fill="rgb(254,157,3)" rx="2" ry="2" />
|
|
<text x="257.39" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__errno_location (8 samples, 0.04%)</title><rect x="371.8" y="405" width="0.5" height="15.0" fill="rgb(220,152,54)" rx="2" ry="2" />
|
|
<text x="374.84" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="1032.4" y="405" width="0.1" height="15.0" fill="rgb(241,150,51)" rx="2" ry="2" />
|
|
<text x="1035.39" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_streamindex (2 samples, 0.01%)</title><rect x="949.6" y="485" width="0.1" height="15.0" fill="rgb(243,69,39)" rx="2" ry="2" />
|
|
<text x="952.57" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (3 samples, 0.02%)</title><rect x="225.0" y="437" width="0.2" height="15.0" fill="rgb(254,207,46)" rx="2" ry="2" />
|
|
<text x="227.98" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (14 samples, 0.07%)</title><rect x="1186.6" y="437" width="0.8" height="15.0" fill="rgb(236,167,49)" rx="2" ry="2" />
|
|
<text x="1189.58" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_l_avx (3 samples, 0.02%)</title><rect x="436.1" y="405" width="0.2" height="15.0" fill="rgb(236,93,35)" rx="2" ry="2" />
|
|
<text x="439.12" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (10 samples, 0.05%)</title><rect x="216.6" y="421" width="0.6" height="15.0" fill="rgb(234,59,47)" rx="2" ry="2" />
|
|
<text x="219.58" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (3 samples, 0.02%)</title><rect x="762.7" y="357" width="0.2" height="15.0" fill="rgb(219,105,40)" rx="2" ry="2" />
|
|
<text x="765.74" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1142.2" y="293" width="0.1" height="15.0" fill="rgb(206,125,23)" rx="2" ry="2" />
|
|
<text x="1145.23" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (8 samples, 0.04%)</title><rect x="1073.4" y="277" width="0.5" height="15.0" fill="rgb(207,87,16)" rx="2" ry="2" />
|
|
<text x="1076.39" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (9 samples, 0.05%)</title><rect x="1147.6" y="533" width="0.6" height="15.0" fill="rgb(251,138,35)" rx="2" ry="2" />
|
|
<text x="1150.63" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (3 samples, 0.02%)</title><rect x="176.4" y="373" width="0.2" height="15.0" fill="rgb(230,0,18)" rx="2" ry="2" />
|
|
<text x="179.43" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_memcpy (6 samples, 0.03%)</title><rect x="510.4" y="277" width="0.3" height="15.0" fill="rgb(223,82,35)" rx="2" ry="2" />
|
|
<text x="513.36" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_easy_counter_incrby (6 samples, 0.03%)</title><rect x="881.0" y="405" width="0.3" height="15.0" fill="rgb(214,98,9)" rx="2" ry="2" />
|
|
<text x="883.97" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (5 samples, 0.03%)</title><rect x="1143.8" y="501" width="0.3" height="15.0" fill="rgb(234,158,23)" rx="2" ry="2" />
|
|
<text x="1146.79" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (39 samples, 0.20%)</title><rect x="22.7" y="549" width="2.4" height="15.0" fill="rgb(241,147,37)" rx="2" ry="2" />
|
|
<text x="25.72" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (2 samples, 0.01%)</title><rect x="1091.3" y="325" width="0.1" height="15.0" fill="rgb(233,172,0)" rx="2" ry="2" />
|
|
<text x="1094.27" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="255.8" y="469" width="0.1" height="15.0" fill="rgb(251,26,3)" rx="2" ry="2" />
|
|
<text x="258.77" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (12 samples, 0.06%)</title><rect x="1142.9" y="437" width="0.7" height="15.0" fill="rgb(205,182,46)" rx="2" ry="2" />
|
|
<text x="1145.89" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (5 samples, 0.03%)</title><rect x="1143.8" y="533" width="0.3" height="15.0" fill="rgb(249,165,6)" rx="2" ry="2" />
|
|
<text x="1146.79" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="215.3" y="405" width="0.2" height="15.0" fill="rgb(234,29,30)" rx="2" ry="2" />
|
|
<text x="218.32" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[glimpse_detector.so] (64 samples, 0.33%)</title><rect x="557.1" y="421" width="3.9" height="15.0" fill="rgb(249,80,11)" rx="2" ry="2" />
|
|
<text x="560.12" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell (18 samples, 0.09%)</title><rect x="573.7" y="341" width="1.1" height="15.0" fill="rgb(212,61,31)" rx="2" ry="2" />
|
|
<text x="576.68" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="189.7" y="229" width="0.1" height="15.0" fill="rgb(212,213,15)" rx="2" ry="2" />
|
|
<text x="192.69" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (51 samples, 0.26%)</title><rect x="97.6" y="645" width="3.1" height="15.0" fill="rgb(243,107,26)" rx="2" ry="2" />
|
|
<text x="100.63" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (5 samples, 0.03%)</title><rect x="229.8" y="405" width="0.3" height="15.0" fill="rgb(254,205,2)" rx="2" ry="2" />
|
|
<text x="232.84" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (3 samples, 0.02%)</title><rect x="153.4" y="597" width="0.2" height="15.0" fill="rgb(206,58,15)" rx="2" ry="2" />
|
|
<text x="156.44" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_pop_free (2 samples, 0.01%)</title><rect x="223.7" y="325" width="0.1" height="15.0" fill="rgb(231,88,13)" rx="2" ry="2" />
|
|
<text x="226.66" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_app_and_proto_update (102 samples, 0.52%)</title><rect x="572.4" y="405" width="6.1" height="15.0" fill="rgb(250,20,40)" rx="2" ry="2" />
|
|
<text x="575.42" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (23 samples, 0.12%)</title><rect x="883.4" y="325" width="1.4" height="15.0" fill="rgb(230,76,40)" rx="2" ry="2" />
|
|
<text x="886.37" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (106 samples, 0.54%)</title><rect x="161.8" y="277" width="6.4" height="15.0" fill="rgb(210,168,32)" rx="2" ry="2" />
|
|
<text x="164.84" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_current_worker_thread_id (2 samples, 0.01%)</title><rect x="175.2" y="405" width="0.1" height="15.0" fill="rgb(254,68,0)" rx="2" ry="2" />
|
|
<text x="178.23" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="1144.3" y="341" width="0.3" height="15.0" fill="rgb(216,105,30)" rx="2" ry="2" />
|
|
<text x="1147.33" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (22 samples, 0.11%)</title><rect x="1097.6" y="373" width="1.3" height="15.0" fill="rgb(237,150,49)" rx="2" ry="2" />
|
|
<text x="1100.57" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="1167.3" y="485" width="0.7" height="15.0" fill="rgb(221,7,40)" rx="2" ry="2" />
|
|
<text x="1170.25" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock@plt (2 samples, 0.01%)</title><rect x="874.0" y="373" width="0.1" height="15.0" fill="rgb(238,30,15)" rx="2" ry="2" />
|
|
<text x="877.01" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (3 samples, 0.02%)</title><rect x="144.0" y="437" width="0.2" height="15.0" fill="rgb(244,147,1)" rx="2" ry="2" />
|
|
<text x="147.02" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (19 samples, 0.10%)</title><rect x="791.2" y="357" width="1.1" height="15.0" fill="rgb(237,152,28)" rx="2" ry="2" />
|
|
<text x="794.19" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (25 samples, 0.13%)</title><rect x="634.0" y="309" width="1.5" height="15.0" fill="rgb(210,76,36)" rx="2" ry="2" />
|
|
<text x="637.00" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="253.9" y="325" width="0.1" height="15.0" fill="rgb(209,166,51)" rx="2" ry="2" />
|
|
<text x="256.91" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (6 samples, 0.03%)</title><rect x="187.1" y="421" width="0.4" height="15.0" fill="rgb(249,165,26)" rx="2" ry="2" />
|
|
<text x="190.11" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (16 samples, 0.08%)</title><rect x="1144.6" y="501" width="1.0" height="15.0" fill="rgb(246,0,46)" rx="2" ry="2" />
|
|
<text x="1147.63" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (6 samples, 0.03%)</title><rect x="632.6" y="245" width="0.3" height="15.0" fill="rgb(249,16,31)" rx="2" ry="2" />
|
|
<text x="635.56" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddStringToObject (9 samples, 0.05%)</title><rect x="212.5" y="421" width="0.5" height="15.0" fill="rgb(213,158,2)" rx="2" ry="2" />
|
|
<text x="215.50" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_new (6 samples, 0.03%)</title><rect x="164.4" y="245" width="0.3" height="15.0" fill="rgb(252,189,43)" rx="2" ry="2" />
|
|
<text x="167.36" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="224.3" y="373" width="0.1" height="15.0" fill="rgb(214,29,26)" rx="2" ry="2" />
|
|
<text x="227.26" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_server_hello (14 samples, 0.07%)</title><rect x="171.7" y="453" width="0.9" height="15.0" fill="rgb(217,22,25)" rx="2" ry="2" />
|
|
<text x="174.75" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (5 samples, 0.03%)</title><rect x="724.7" y="229" width="0.3" height="15.0" fill="rgb(248,34,16)" rx="2" ry="2" />
|
|
<text x="727.69" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (2 samples, 0.01%)</title><rect x="189.7" y="389" width="0.1" height="15.0" fill="rgb(224,3,43)" rx="2" ry="2" />
|
|
<text x="192.69" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (6 samples, 0.03%)</title><rect x="210.1" y="405" width="0.4" height="15.0" fill="rgb(252,184,44)" rx="2" ry="2" />
|
|
<text x="213.10" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (6 samples, 0.03%)</title><rect x="886.4" y="341" width="0.4" height="15.0" fill="rgb(239,107,50)" rx="2" ry="2" />
|
|
<text x="889.43" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_cardinality (2 samples, 0.01%)</title><rect x="836.7" y="293" width="0.1" height="15.0" fill="rgb(233,179,11)" rx="2" ry="2" />
|
|
<text x="839.68" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (2 samples, 0.01%)</title><rect x="349.5" y="309" width="0.1" height="15.0" fill="rgb(245,66,37)" rx="2" ry="2" />
|
|
<text x="352.46" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_zalloc (2 samples, 0.01%)</title><rect x="222.6" y="165" width="0.1" height="15.0" fill="rgb(221,155,11)" rx="2" ry="2" />
|
|
<text x="225.58" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_9to16_128b (9 samples, 0.05%)</title><rect x="507.8" y="245" width="0.6" height="15.0" fill="rgb(240,21,1)" rx="2" ry="2" />
|
|
<text x="510.84" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log_level_enabled (5 samples, 0.03%)</title><rect x="1105.0" y="565" width="0.3" height="15.0" fill="rgb(240,5,20)" rx="2" ry="2" />
|
|
<text x="1108.02" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1167.7" y="341" width="0.2" height="15.0" fill="rgb(221,109,40)" rx="2" ry="2" />
|
|
<text x="1170.67" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (4 samples, 0.02%)</title><rect x="1073.0" y="293" width="0.3" height="15.0" fill="rgb(215,76,18)" rx="2" ry="2" />
|
|
<text x="1076.03" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (20 samples, 0.10%)</title><rect x="919.4" y="293" width="1.2" height="15.0" fill="rgb(206,143,52)" rx="2" ry="2" />
|
|
<text x="922.38" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_query_one (8 samples, 0.04%)</title><rect x="1090.0" y="341" width="0.5" height="15.0" fill="rgb(239,96,39)" rx="2" ry="2" />
|
|
<text x="1093.01" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop4 (4 samples, 0.02%)</title><rect x="793.5" y="373" width="0.3" height="15.0" fill="rgb(205,176,2)" rx="2" ry="2" />
|
|
<text x="796.53" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get@plt (2 samples, 0.01%)</title><rect x="127.8" y="421" width="0.1" height="15.0" fill="rgb(209,43,51)" rx="2" ry="2" />
|
|
<text x="130.75" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (47 samples, 0.24%)</title><rect x="617.6" y="261" width="2.8" height="15.0" fill="rgb(242,153,48)" rx="2" ry="2" />
|
|
<text x="620.56" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (2 samples, 0.01%)</title><rect x="920.9" y="357" width="0.1" height="15.0" fill="rgb(223,45,31)" rx="2" ry="2" />
|
|
<text x="923.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memchr_avx2 (4 samples, 0.02%)</title><rect x="411.5" y="373" width="0.3" height="15.0" fill="rgb(228,199,20)" rx="2" ry="2" />
|
|
<text x="414.52" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (3 samples, 0.02%)</title><rect x="214.4" y="405" width="0.2" height="15.0" fill="rgb(253,48,41)" rx="2" ry="2" />
|
|
<text x="217.42" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_CTX_free (2 samples, 0.01%)</title><rect x="166.5" y="197" width="0.1" height="15.0" fill="rgb(253,188,15)" rx="2" ry="2" />
|
|
<text x="169.47" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::vector<_TDocCallBackItem_t, std::allocator<_TDocCallBackItem_t> >::_M_realloc_insert<_TDocCallBackItem_t const&> (2 samples, 0.01%)</title><rect x="385.2" y="261" width="0.1" height="15.0" fill="rgb(218,23,42)" rx="2" ry="2" />
|
|
<text x="388.17" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (217 samples, 1.10%)</title><rect x="393.8" y="261" width="13.0" height="15.0" fill="rgb(240,107,10)" rx="2" ry="2" />
|
|
<text x="396.81" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="145.4" y="261" width="0.1" height="15.0" fill="rgb(218,91,49)" rx="2" ry="2" />
|
|
<text x="148.40" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (2 samples, 0.01%)</title><rect x="1033.2" y="325" width="0.1" height="15.0" fill="rgb(251,213,54)" rx="2" ry="2" />
|
|
<text x="1036.17" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="1187.7" y="421" width="0.1" height="15.0" fill="rgb(249,87,48)" rx="2" ry="2" />
|
|
<text x="1190.66" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="145.9" y="357" width="0.1" height="15.0" fill="rgb(220,158,11)" rx="2" ry="2" />
|
|
<text x="148.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (21 samples, 0.11%)</title><rect x="665.9" y="437" width="1.2" height="15.0" fill="rgb(213,187,32)" rx="2" ry="2" />
|
|
<text x="668.87" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop4 (7 samples, 0.04%)</title><rect x="578.8" y="373" width="0.5" height="15.0" fill="rgb(235,195,7)" rx="2" ry="2" />
|
|
<text x="581.84" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (3 samples, 0.02%)</title><rect x="350.1" y="389" width="0.1" height="15.0" fill="rgb(219,88,42)" rx="2" ry="2" />
|
|
<text x="353.06" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (25 samples, 0.13%)</title><rect x="373.4" y="357" width="1.5" height="15.0" fill="rgb(220,91,21)" rx="2" ry="2" />
|
|
<text x="376.40" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (2 samples, 0.01%)</title><rect x="1041.3" y="229" width="0.1" height="15.0" fill="rgb(239,68,8)" rx="2" ry="2" />
|
|
<text x="1044.28" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="194.0" y="373" width="0.4" height="15.0" fill="rgb(242,140,52)" rx="2" ry="2" />
|
|
<text x="197.01" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="1144.1" y="549" width="0.2" height="15.0" fill="rgb(242,229,38)" rx="2" ry="2" />
|
|
<text x="1147.15" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="925.2" y="229" width="0.2" height="15.0" fill="rgb(236,122,29)" rx="2" ry="2" />
|
|
<text x="928.20" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="254.5" y="549" width="0.1" height="15.0" fill="rgb(230,3,38)" rx="2" ry="2" />
|
|
<text x="257.51" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (7 samples, 0.04%)</title><rect x="1039.9" y="293" width="0.4" height="15.0" fill="rgb(210,79,1)" rx="2" ry="2" />
|
|
<text x="1042.90" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (51 samples, 0.26%)</title><rect x="932.3" y="437" width="3.0" height="15.0" fill="rgb(210,61,38)" rx="2" ry="2" />
|
|
<text x="935.29" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (2 samples, 0.01%)</title><rect x="1065.8" y="389" width="0.1" height="15.0" fill="rgb(208,26,50)" rx="2" ry="2" />
|
|
<text x="1068.76" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (4 samples, 0.02%)</title><rect x="1033.8" y="373" width="0.2" height="15.0" fill="rgb(227,83,3)" rx="2" ry="2" />
|
|
<text x="1036.77" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (1,306 samples, 6.64%)</title><rect x="795.9" y="389" width="78.3" height="15.0" fill="rgb(212,33,33)" rx="2" ry="2" />
|
|
<text x="798.87" y="399.5" >traffic_c..</text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (119 samples, 0.61%)</title><rect x="864.2" y="341" width="7.1" height="15.0" fill="rgb(232,205,4)" rx="2" ry="2" />
|
|
<text x="867.17" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="422.9" y="261" width="0.3" height="15.0" fill="rgb(208,142,47)" rx="2" ry="2" />
|
|
<text x="425.86" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (6 samples, 0.03%)</title><rect x="183.6" y="357" width="0.3" height="15.0" fill="rgb(244,79,36)" rx="2" ry="2" />
|
|
<text x="186.57" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="935.2" y="389" width="0.1" height="15.0" fill="rgb(222,228,54)" rx="2" ry="2" />
|
|
<text x="938.23" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (171 samples, 0.87%)</title><rect x="782.1" y="373" width="10.2" height="15.0" fill="rgb(227,87,22)" rx="2" ry="2" />
|
|
<text x="785.06" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (19 samples, 0.10%)</title><rect x="428.7" y="405" width="1.2" height="15.0" fill="rgb(238,199,14)" rx="2" ry="2" />
|
|
<text x="431.74" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="733.4" y="357" width="0.2" height="15.0" fill="rgb(218,199,44)" rx="2" ry="2" />
|
|
<text x="736.39" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (582 samples, 2.96%)</title><rect x="981.3" y="421" width="34.9" height="15.0" fill="rgb(245,48,46)" rx="2" ry="2" />
|
|
<text x="984.32" y="431.5" >me..</text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (3 samples, 0.02%)</title><rect x="253.9" y="517" width="0.1" height="15.0" fill="rgb(241,33,41)" rx="2" ry="2" />
|
|
<text x="256.85" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libosfp.so.1.3] (2 samples, 0.01%)</title><rect x="1148.3" y="453" width="0.2" height="15.0" fill="rgb(252,162,17)" rx="2" ry="2" />
|
|
<text x="1151.35" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>md5_block_asm_data_order (4 samples, 0.02%)</title><rect x="430.7" y="357" width="0.3" height="15.0" fill="rgb(233,95,26)" rx="2" ry="2" />
|
|
<text x="433.72" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (21 samples, 0.11%)</title><rect x="386.3" y="293" width="1.3" height="15.0" fill="rgb(221,70,6)" rx="2" ry="2" />
|
|
<text x="389.31" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="933.3" y="293" width="0.1" height="15.0" fill="rgb(216,59,17)" rx="2" ry="2" />
|
|
<text x="936.31" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="145.4" y="357" width="0.1" height="15.0" fill="rgb(211,135,32)" rx="2" ry="2" />
|
|
<text x="148.40" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (756 samples, 3.85%)</title><rect x="10.0" y="629" width="45.4" height="15.0" fill="rgb(247,48,52)" rx="2" ry="2" />
|
|
<text x="13.00" y="639.5" >[fir..</text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (10 samples, 0.05%)</title><rect x="1093.3" y="357" width="0.6" height="15.0" fill="rgb(215,221,9)" rx="2" ry="2" />
|
|
<text x="1096.31" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="220.7" y="309" width="0.1" height="15.0" fill="rgb(235,6,11)" rx="2" ry="2" />
|
|
<text x="223.72" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1188.0" y="357" width="0.1" height="15.0" fill="rgb(216,192,27)" rx="2" ry="2" />
|
|
<text x="1191.02" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (5 samples, 0.03%)</title><rect x="252.6" y="421" width="0.4" height="15.0" fill="rgb(210,98,53)" rx="2" ry="2" />
|
|
<text x="255.65" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="186.4" y="373" width="0.1" height="15.0" fill="rgb(242,129,12)" rx="2" ry="2" />
|
|
<text x="189.39" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (2 samples, 0.01%)</title><rect x="1086.4" y="341" width="0.1" height="15.0" fill="rgb(240,143,43)" rx="2" ry="2" />
|
|
<text x="1089.41" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="470.7" y="405" width="0.1" height="15.0" fill="rgb(228,121,8)" rx="2" ry="2" />
|
|
<text x="473.69" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="1141.0" y="469" width="0.2" height="15.0" fill="rgb(218,205,7)" rx="2" ry="2" />
|
|
<text x="1144.03" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (22 samples, 0.11%)</title><rect x="919.3" y="357" width="1.3" height="15.0" fill="rgb(254,46,35)" rx="2" ry="2" />
|
|
<text x="922.32" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (6 samples, 0.03%)</title><rect x="712.4" y="357" width="0.3" height="15.0" fill="rgb(252,46,37)" rx="2" ry="2" />
|
|
<text x="715.38" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (8 samples, 0.04%)</title><rect x="885.2" y="341" width="0.5" height="15.0" fill="rgb(227,187,17)" rx="2" ry="2" />
|
|
<text x="888.17" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_num_bits (2 samples, 0.01%)</title><rect x="169.3" y="325" width="0.1" height="15.0" fill="rgb(250,9,49)" rx="2" ry="2" />
|
|
<text x="172.29" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (10 samples, 0.05%)</title><rect x="928.7" y="229" width="0.6" height="15.0" fill="rgb(222,122,51)" rx="2" ry="2" />
|
|
<text x="931.74" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (32 samples, 0.16%)</title><rect x="214.6" y="453" width="1.9" height="15.0" fill="rgb(230,8,6)" rx="2" ry="2" />
|
|
<text x="217.60" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH128_mix32B (3 samples, 0.02%)</title><rect x="1075.7" y="245" width="0.1" height="15.0" fill="rgb(243,191,42)" rx="2" ry="2" />
|
|
<text x="1078.67" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (8 samples, 0.04%)</title><rect x="422.9" y="357" width="0.4" height="15.0" fill="rgb(218,17,24)" rx="2" ry="2" />
|
|
<text x="425.86" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="1184.3" y="357" width="0.4" height="15.0" fill="rgb(205,8,2)" rx="2" ry="2" />
|
|
<text x="1187.30" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (16 samples, 0.08%)</title><rect x="928.4" y="293" width="1.0" height="15.0" fill="rgb(218,36,36)" rx="2" ry="2" />
|
|
<text x="931.44" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="53.1" y="533" width="0.1" height="15.0" fill="rgb(221,89,52)" rx="2" ry="2" />
|
|
<text x="56.09" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (6 samples, 0.03%)</title><rect x="107.7" y="421" width="0.4" height="15.0" fill="rgb(232,110,6)" rx="2" ry="2" />
|
|
<text x="110.71" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_calloc (2 samples, 0.01%)</title><rect x="358.8" y="517" width="0.1" height="15.0" fill="rgb(249,191,49)" rx="2" ry="2" />
|
|
<text x="361.76" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (15 samples, 0.08%)</title><rect x="183.0" y="389" width="0.9" height="15.0" fill="rgb(253,53,54)" rx="2" ry="2" />
|
|
<text x="186.03" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (3 samples, 0.02%)</title><rect x="1188.9" y="389" width="0.2" height="15.0" fill="rgb(234,138,51)" rx="2" ry="2" />
|
|
<text x="1191.92" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (2 samples, 0.01%)</title><rect x="1184.1" y="389" width="0.1" height="15.0" fill="rgb(218,214,39)" rx="2" ry="2" />
|
|
<text x="1187.06" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (161 samples, 0.82%)</title><rect x="160.9" y="437" width="9.6" height="15.0" fill="rgb(243,2,14)" rx="2" ry="2" />
|
|
<text x="163.88" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (39 samples, 0.20%)</title><rect x="806.1" y="261" width="2.4" height="15.0" fill="rgb(214,37,29)" rx="2" ry="2" />
|
|
<text x="809.13" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1171.8" y="405" width="0.1" height="15.0" fill="rgb(245,89,51)" rx="2" ry="2" />
|
|
<text x="1174.75" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (447 samples, 2.27%)</title><rect x="484.6" y="357" width="26.8" height="15.0" fill="rgb(224,218,50)" rx="2" ry="2" />
|
|
<text x="487.56" y="367.5" >f..</text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (748 samples, 3.80%)</title><rect x="477.2" y="437" width="44.9" height="15.0" fill="rgb(205,79,21)" rx="2" ry="2" />
|
|
<text x="480.23" y="447.5" >[ste..</text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Rb_tree_increment (5 samples, 0.03%)</title><rect x="762.9" y="373" width="0.3" height="15.0" fill="rgb(236,11,1)" rx="2" ry="2" />
|
|
<text x="765.92" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (2 samples, 0.01%)</title><rect x="705.7" y="325" width="0.1" height="15.0" fill="rgb(209,91,17)" rx="2" ry="2" />
|
|
<text x="708.72" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (16 samples, 0.08%)</title><rect x="181.0" y="373" width="1.0" height="15.0" fill="rgb(221,60,6)" rx="2" ry="2" />
|
|
<text x="184.05" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (2 samples, 0.01%)</title><rect x="1096.9" y="421" width="0.1" height="15.0" fill="rgb(219,133,40)" rx="2" ry="2" />
|
|
<text x="1099.91" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="255.3" y="501" width="0.5" height="15.0" fill="rgb(246,22,41)" rx="2" ry="2" />
|
|
<text x="258.29" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (12 samples, 0.06%)</title><rect x="152.7" y="549" width="0.7" height="15.0" fill="rgb(228,70,30)" rx="2" ry="2" />
|
|
<text x="155.72" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (2 samples, 0.01%)</title><rect x="1159.8" y="517" width="0.1" height="15.0" fill="rgb(237,173,9)" rx="2" ry="2" />
|
|
<text x="1162.81" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (291 samples, 1.48%)</title><rect x="1150.6" y="629" width="17.4" height="15.0" fill="rgb(210,171,36)" rx="2" ry="2" />
|
|
<text x="1153.57" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>find_or_add_metric (6 samples, 0.03%)</title><rect x="635.9" y="357" width="0.3" height="15.0" fill="rgb(222,209,23)" rx="2" ry="2" />
|
|
<text x="638.86" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>packet_get_direction (3 samples, 0.02%)</title><rect x="152.1" y="421" width="0.2" height="15.0" fill="rgb(219,82,29)" rx="2" ry="2" />
|
|
<text x="155.12" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc@plt (3 samples, 0.02%)</title><rect x="49.4" y="597" width="0.2" height="15.0" fill="rgb(228,128,37)" rx="2" ry="2" />
|
|
<text x="52.37" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (94 samples, 0.48%)</title><rect x="219.8" y="549" width="5.6" height="15.0" fill="rgb(225,117,26)" rx="2" ry="2" />
|
|
<text x="222.76" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (3 samples, 0.02%)</title><rect x="1186.9" y="405" width="0.2" height="15.0" fill="rgb(226,220,40)" rx="2" ry="2" />
|
|
<text x="1189.94" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (33 samples, 0.17%)</title><rect x="380.3" y="245" width="2.0" height="15.0" fill="rgb(247,208,15)" rx="2" ry="2" />
|
|
<text x="383.31" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (2 samples, 0.01%)</title><rect x="145.4" y="293" width="0.1" height="15.0" fill="rgb(232,63,47)" rx="2" ry="2" />
|
|
<text x="148.40" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (3 samples, 0.02%)</title><rect x="1090.3" y="293" width="0.2" height="15.0" fill="rgb(235,42,13)" rx="2" ry="2" />
|
|
<text x="1093.31" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="189.7" y="293" width="0.1" height="15.0" fill="rgb(233,140,53)" rx="2" ry="2" />
|
|
<text x="192.69" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (3 samples, 0.02%)</title><rect x="1099.3" y="389" width="0.2" height="15.0" fill="rgb(233,100,29)" rx="2" ry="2" />
|
|
<text x="1102.31" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (13 samples, 0.07%)</title><rect x="215.5" y="421" width="0.8" height="15.0" fill="rgb(247,167,41)" rx="2" ry="2" />
|
|
<text x="218.50" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (366 samples, 1.86%)</title><rect x="948.3" y="533" width="22.0" height="15.0" fill="rgb(217,53,37)" rx="2" ry="2" />
|
|
<text x="951.31" y="543.5" >l..</text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (2 samples, 0.01%)</title><rect x="666.7" y="293" width="0.1" height="15.0" fill="rgb(222,44,51)" rx="2" ry="2" />
|
|
<text x="669.71" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (6 samples, 0.03%)</title><rect x="775.9" y="277" width="0.4" height="15.0" fill="rgb(208,125,47)" rx="2" ry="2" />
|
|
<text x="778.94" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (3 samples, 0.02%)</title><rect x="666.6" y="325" width="0.2" height="15.0" fill="rgb(206,19,24)" rx="2" ry="2" />
|
|
<text x="669.65" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (7 samples, 0.04%)</title><rect x="472.6" y="485" width="0.4" height="15.0" fill="rgb(228,52,21)" rx="2" ry="2" />
|
|
<text x="475.55" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (7 samples, 0.04%)</title><rect x="1185.9" y="405" width="0.4" height="15.0" fill="rgb(233,140,24)" rx="2" ry="2" />
|
|
<text x="1188.86" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Rb_tree_increment (2 samples, 0.01%)</title><rect x="1057.4" y="373" width="0.1" height="15.0" fill="rgb(244,100,30)" rx="2" ry="2" />
|
|
<text x="1060.42" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (3 samples, 0.02%)</title><rect x="910.8" y="277" width="0.2" height="15.0" fill="rgb(225,35,12)" rx="2" ry="2" />
|
|
<text x="913.80" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (6 samples, 0.03%)</title><rect x="1141.0" y="581" width="0.4" height="15.0" fill="rgb(230,43,30)" rx="2" ry="2" />
|
|
<text x="1144.03" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithConnection (2 samples, 0.01%)</title><rect x="927.5" y="373" width="0.2" height="15.0" fill="rgb(240,128,26)" rx="2" ry="2" />
|
|
<text x="930.54" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (14 samples, 0.07%)</title><rect x="916.3" y="421" width="0.9" height="15.0" fill="rgb(205,12,51)" rx="2" ry="2" />
|
|
<text x="919.32" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="190.0" y="229" width="0.2" height="15.0" fill="rgb(249,209,11)" rx="2" ry="2" />
|
|
<text x="192.99" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_CreateString (6 samples, 0.03%)</title><rect x="186.6" y="405" width="0.3" height="15.0" fill="rgb(205,156,41)" rx="2" ry="2" />
|
|
<text x="189.57" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_query_one (20 samples, 0.10%)</title><rect x="722.6" y="325" width="1.2" height="15.0" fill="rgb(225,170,20)" rx="2" ry="2" />
|
|
<text x="725.59" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (4 samples, 0.02%)</title><rect x="1096.8" y="469" width="0.2" height="15.0" fill="rgb(228,181,47)" rx="2" ry="2" />
|
|
<text x="1099.79" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (3 samples, 0.02%)</title><rect x="350.1" y="405" width="0.1" height="15.0" fill="rgb(218,86,5)" rx="2" ry="2" />
|
|
<text x="353.06" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (6 samples, 0.03%)</title><rect x="39.2" y="581" width="0.4" height="15.0" fill="rgb(226,64,4)" rx="2" ry="2" />
|
|
<text x="42.23" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (147 samples, 0.75%)</title><rect x="395.9" y="245" width="8.8" height="15.0" fill="rgb(225,167,36)" rx="2" ry="2" />
|
|
<text x="398.91" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_group (2 samples, 0.01%)</title><rect x="156.7" y="245" width="0.2" height="15.0" fill="rgb(212,11,36)" rx="2" ry="2" />
|
|
<text x="159.74" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (3 samples, 0.02%)</title><rect x="1050.3" y="421" width="0.2" height="15.0" fill="rgb(239,205,35)" rx="2" ry="2" />
|
|
<text x="1053.34" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (295 samples, 1.50%)</title><rect x="172.6" y="549" width="17.7" height="15.0" fill="rgb(219,58,29)" rx="2" ry="2" />
|
|
<text x="175.59" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (8 samples, 0.04%)</title><rect x="230.9" y="421" width="0.4" height="15.0" fill="rgb(218,213,40)" rx="2" ry="2" />
|
|
<text x="233.86" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (70 samples, 0.36%)</title><rect x="1036.5" y="341" width="4.2" height="15.0" fill="rgb(252,18,27)" rx="2" ry="2" />
|
|
<text x="1039.48" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (2 samples, 0.01%)</title><rect x="244.3" y="389" width="0.1" height="15.0" fill="rgb(233,218,3)" rx="2" ry="2" />
|
|
<text x="247.31" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mul128_fold64 (4 samples, 0.02%)</title><rect x="632.3" y="213" width="0.3" height="15.0" fill="rgb(224,186,22)" rx="2" ry="2" />
|
|
<text x="635.32" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (7 samples, 0.04%)</title><rect x="412.8" y="357" width="0.5" height="15.0" fill="rgb(219,162,2)" rx="2" ry="2" />
|
|
<text x="415.84" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="376.8" y="213" width="0.1" height="15.0" fill="rgb(216,117,18)" rx="2" ry="2" />
|
|
<text x="379.77" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="1167.4" y="405" width="0.6" height="15.0" fill="rgb(247,180,20)" rx="2" ry="2" />
|
|
<text x="1170.43" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_memcpy (4 samples, 0.02%)</title><rect x="583.6" y="261" width="0.2" height="15.0" fill="rgb(220,25,53)" rx="2" ry="2" />
|
|
<text x="586.59" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (26 samples, 0.13%)</title><rect x="595.6" y="261" width="1.5" height="15.0" fill="rgb(211,147,13)" rx="2" ry="2" />
|
|
<text x="598.59" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (35 samples, 0.18%)</title><rect x="246.1" y="437" width="2.1" height="15.0" fill="rgb(214,147,39)" rx="2" ry="2" />
|
|
<text x="249.11" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="704.2" y="389" width="0.1" height="15.0" fill="rgb(237,45,36)" rx="2" ry="2" />
|
|
<text x="707.22" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="178.8" y="181" width="0.2" height="15.0" fill="rgb(250,200,54)" rx="2" ry="2" />
|
|
<text x="181.83" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (2 samples, 0.01%)</title><rect x="189.7" y="373" width="0.1" height="15.0" fill="rgb(219,166,53)" rx="2" ry="2" />
|
|
<text x="192.69" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (79 samples, 0.40%)</title><rect x="774.1" y="373" width="4.7" height="15.0" fill="rgb(254,142,26)" rx="2" ry="2" />
|
|
<text x="777.08" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (5 samples, 0.03%)</title><rect x="219.5" y="565" width="0.3" height="15.0" fill="rgb(251,36,27)" rx="2" ry="2" />
|
|
<text x="222.46" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="178.5" y="229" width="0.6" height="15.0" fill="rgb(246,42,22)" rx="2" ry="2" />
|
|
<text x="181.47" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mix16B (4 samples, 0.02%)</title><rect x="632.3" y="229" width="0.3" height="15.0" fill="rgb(241,83,43)" rx="2" ry="2" />
|
|
<text x="635.32" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (12 samples, 0.06%)</title><rect x="1148.5" y="645" width="0.7" height="15.0" fill="rgb(210,91,54)" rx="2" ry="2" />
|
|
<text x="1151.47" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (73 samples, 0.37%)</title><rect x="148.3" y="565" width="4.4" height="15.0" fill="rgb(245,147,50)" rx="2" ry="2" />
|
|
<text x="151.34" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (40 samples, 0.20%)</title><rect x="871.6" y="373" width="2.4" height="15.0" fill="rgb(221,219,37)" rx="2" ry="2" />
|
|
<text x="874.61" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="211.0" y="389" width="0.2" height="15.0" fill="rgb(241,83,19)" rx="2" ry="2" />
|
|
<text x="214.00" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="561.6" y="373" width="0.1" height="15.0" fill="rgb(207,146,23)" rx="2" ry="2" />
|
|
<text x="564.56" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="1189.2" y="485" width="0.7" height="15.0" fill="rgb(205,117,25)" rx="2" ry="2" />
|
|
<text x="1192.16" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH128_mix32B (5 samples, 0.03%)</title><rect x="509.1" y="245" width="0.3" height="15.0" fill="rgb(228,82,45)" rx="2" ry="2" />
|
|
<text x="512.10" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (3 samples, 0.02%)</title><rect x="884.0" y="277" width="0.2" height="15.0" fill="rgb(247,199,10)" rx="2" ry="2" />
|
|
<text x="887.03" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (2 samples, 0.01%)</title><rect x="881.8" y="277" width="0.1" height="15.0" fill="rgb(249,116,0)" rx="2" ry="2" />
|
|
<text x="884.81" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (4 samples, 0.02%)</title><rect x="950.7" y="405" width="0.3" height="15.0" fill="rgb(253,164,46)" rx="2" ry="2" />
|
|
<text x="953.71" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="157.9" y="341" width="0.3" height="15.0" fill="rgb(233,68,13)" rx="2" ry="2" />
|
|
<text x="160.88" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="145.2" y="277" width="0.2" height="15.0" fill="rgb(235,97,21)" rx="2" ry="2" />
|
|
<text x="148.16" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (251 samples, 1.28%)</title><rect x="1030.2" y="517" width="15.0" height="15.0" fill="rgb(232,146,39)" rx="2" ry="2" />
|
|
<text x="1033.17" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (42 samples, 0.21%)</title><rect x="883.1" y="373" width="2.6" height="15.0" fill="rgb(206,70,31)" rx="2" ry="2" />
|
|
<text x="886.13" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__st_pkt_proc_context_check_timeout (2 samples, 0.01%)</title><rect x="1139.8" y="597" width="0.1" height="15.0" fill="rgb(235,60,13)" rx="2" ry="2" />
|
|
<text x="1142.77" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (7 samples, 0.04%)</title><rect x="917.4" y="357" width="0.4" height="15.0" fill="rgb(254,184,15)" rx="2" ry="2" />
|
|
<text x="920.40" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_datalen (3 samples, 0.02%)</title><rect x="1108.5" y="597" width="0.2" height="15.0" fill="rgb(228,10,21)" rx="2" ry="2" />
|
|
<text x="1111.50" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_ip_plugin_table_get_ex_data (5 samples, 0.03%)</title><rect x="257.0" y="597" width="0.3" height="15.0" fill="rgb(241,14,12)" rx="2" ry="2" />
|
|
<text x="259.97" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pop_heap (5 samples, 0.03%)</title><rect x="835.5" y="261" width="0.3" height="15.0" fill="rgb(242,18,43)" rx="2" ry="2" />
|
|
<text x="838.48" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (2 samples, 0.01%)</title><rect x="788.3" y="277" width="0.1" height="15.0" fill="rgb(239,78,33)" rx="2" ry="2" />
|
|
<text x="791.30" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (18 samples, 0.09%)</title><rect x="1184.2" y="469" width="1.1" height="15.0" fill="rgb(249,188,54)" rx="2" ry="2" />
|
|
<text x="1187.24" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1148.2" y="549" width="0.1" height="15.0" fill="rgb(235,127,44)" rx="2" ry="2" />
|
|
<text x="1151.17" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (9 samples, 0.05%)</title><rect x="107.2" y="389" width="0.5" height="15.0" fill="rgb(227,202,21)" rx="2" ry="2" />
|
|
<text x="110.17" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (18 samples, 0.09%)</title><rect x="1049.5" y="453" width="1.1" height="15.0" fill="rgb(249,173,29)" rx="2" ry="2" />
|
|
<text x="1052.50" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="561.6" y="389" width="0.1" height="15.0" fill="rgb(216,103,3)" rx="2" ry="2" />
|
|
<text x="564.56" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (39 samples, 0.20%)</title><rect x="243.8" y="533" width="2.3" height="15.0" fill="rgb(223,78,31)" rx="2" ry="2" />
|
|
<text x="246.77" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="912.7" y="453" width="0.4" height="15.0" fill="rgb(212,121,6)" rx="2" ry="2" />
|
|
<text x="915.72" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (41 samples, 0.21%)</title><rect x="55.5" y="597" width="2.5" height="15.0" fill="rgb(214,220,27)" rx="2" ry="2" />
|
|
<text x="58.49" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1096.9" y="261" width="0.1" height="15.0" fill="rgb(221,214,50)" rx="2" ry="2" />
|
|
<text x="1099.91" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="146.2" y="421" width="0.2" height="15.0" fill="rgb(252,50,36)" rx="2" ry="2" />
|
|
<text x="149.24" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (8 samples, 0.04%)</title><rect x="422.9" y="405" width="0.4" height="15.0" fill="rgb(235,51,36)" rx="2" ry="2" />
|
|
<text x="425.86" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1189.9" y="517" width="0.1" height="15.0" fill="rgb(212,195,8)" rx="2" ry="2" />
|
|
<text x="1192.88" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.02%)</title><rect x="1188.0" y="405" width="0.2" height="15.0" fill="rgb(247,188,54)" rx="2" ry="2" />
|
|
<text x="1191.02" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (4 samples, 0.02%)</title><rect x="835.1" y="261" width="0.2" height="15.0" fill="rgb(205,160,45)" rx="2" ry="2" />
|
|
<text x="838.06" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (748 samples, 3.80%)</title><rect x="477.2" y="453" width="44.9" height="15.0" fill="rgb(254,223,18)" rx="2" ry="2" />
|
|
<text x="480.23" y="463.5" >[ste..</text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (5 samples, 0.03%)</title><rect x="228.5" y="341" width="0.3" height="15.0" fill="rgb(239,172,21)" rx="2" ry="2" />
|
|
<text x="231.52" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (11 samples, 0.06%)</title><rect x="1145.9" y="533" width="0.6" height="15.0" fill="rgb(250,59,42)" rx="2" ry="2" />
|
|
<text x="1148.89" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (40 samples, 0.20%)</title><rect x="108.1" y="421" width="2.4" height="15.0" fill="rgb(208,43,10)" rx="2" ry="2" />
|
|
<text x="111.07" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (5 samples, 0.03%)</title><rect x="171.4" y="389" width="0.3" height="15.0" fill="rgb(230,80,34)" rx="2" ry="2" />
|
|
<text x="174.39" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (16 samples, 0.08%)</title><rect x="840.3" y="261" width="1.0" height="15.0" fill="rgb(220,196,25)" rx="2" ry="2" />
|
|
<text x="843.34" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (16 samples, 0.08%)</title><rect x="147.4" y="533" width="0.9" height="15.0" fill="rgb(227,184,0)" rx="2" ry="2" />
|
|
<text x="150.38" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1142.2" y="373" width="0.3" height="15.0" fill="rgb(234,123,20)" rx="2" ry="2" />
|
|
<text x="1145.17" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_min_count (13 samples, 0.07%)</title><rect x="499.9" y="293" width="0.8" height="15.0" fill="rgb(221,133,30)" rx="2" ry="2" />
|
|
<text x="502.92" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_numa_page (2 samples, 0.01%)</title><rect x="1186.1" y="325" width="0.1" height="15.0" fill="rgb(233,15,25)" rx="2" ry="2" />
|
|
<text x="1189.10" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_dl_io_get1_rawpkt_meta (4 samples, 0.02%)</title><rect x="667.7" y="517" width="0.2" height="15.0" fill="rgb(232,76,6)" rx="2" ry="2" />
|
|
<text x="670.67" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="224.1" y="325" width="0.2" height="15.0" fill="rgb(242,179,1)" rx="2" ry="2" />
|
|
<text x="227.08" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (16 samples, 0.08%)</title><rect x="1034.1" y="309" width="1.0" height="15.0" fill="rgb(208,94,52)" rx="2" ry="2" />
|
|
<text x="1037.14" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (16 samples, 0.08%)</title><rect x="721.0" y="261" width="1.0" height="15.0" fill="rgb(238,187,3)" rx="2" ry="2" />
|
|
<text x="724.02" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_merge (3 samples, 0.02%)</title><rect x="409.2" y="293" width="0.2" height="15.0" fill="rgb(220,16,11)" rx="2" ry="2" />
|
|
<text x="412.24" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (155 samples, 0.79%)</title><rect x="953.1" y="357" width="9.3" height="15.0" fill="rgb(229,3,53)" rx="2" ry="2" />
|
|
<text x="956.11" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (7 samples, 0.04%)</title><rect x="779.5" y="389" width="0.4" height="15.0" fill="rgb(214,144,42)" rx="2" ry="2" />
|
|
<text x="782.48" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (57 samples, 0.29%)</title><rect x="129.4" y="533" width="3.4" height="15.0" fill="rgb(216,44,33)" rx="2" ry="2" />
|
|
<text x="132.37" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="222.4" y="197" width="0.1" height="15.0" fill="rgb(232,100,54)" rx="2" ry="2" />
|
|
<text x="225.40" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="1085.3" y="261" width="0.1" height="15.0" fill="rgb(207,196,31)" rx="2" ry="2" />
|
|
<text x="1088.33" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (11 samples, 0.06%)</title><rect x="1099.9" y="501" width="0.7" height="15.0" fill="rgb(246,199,27)" rx="2" ry="2" />
|
|
<text x="1102.91" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_pop_and_record_popped_back (5 samples, 0.03%)</title><rect x="835.5" y="277" width="0.3" height="15.0" fill="rgb(243,62,36)" rx="2" ry="2" />
|
|
<text x="838.48" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (6 samples, 0.03%)</title><rect x="211.3" y="405" width="0.4" height="15.0" fill="rgb(241,186,17)" rx="2" ry="2" />
|
|
<text x="214.30" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (10 samples, 0.05%)</title><rect x="908.9" y="437" width="0.6" height="15.0" fill="rgb(249,207,27)" rx="2" ry="2" />
|
|
<text x="911.94" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (13 samples, 0.07%)</title><rect x="1146.5" y="629" width="0.8" height="15.0" fill="rgb(254,80,41)" rx="2" ry="2" />
|
|
<text x="1149.55" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (2 samples, 0.01%)</title><rect x="473.2" y="405" width="0.1" height="15.0" fill="rgb(229,188,27)" rx="2" ry="2" />
|
|
<text x="476.15" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="1187.9" y="549" width="0.7" height="15.0" fill="rgb(237,140,33)" rx="2" ry="2" />
|
|
<text x="1190.90" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="110.5" y="421" width="0.2" height="15.0" fill="rgb(253,166,30)" rx="2" ry="2" />
|
|
<text x="113.47" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (1,240 samples, 6.31%)</title><rect x="362.2" y="501" width="74.4" height="15.0" fill="rgb(252,208,18)" rx="2" ry="2" />
|
|
<text x="365.18" y="511.5" >stream_p..</text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (45 samples, 0.23%)</title><rect x="985.5" y="373" width="2.7" height="15.0" fill="rgb(231,114,13)" rx="2" ry="2" />
|
|
<text x="988.46" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (6 samples, 0.03%)</title><rect x="252.6" y="437" width="0.4" height="15.0" fill="rgb(245,11,46)" rx="2" ry="2" />
|
|
<text x="255.65" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (12 samples, 0.06%)</title><rect x="1189.2" y="517" width="0.7" height="15.0" fill="rgb(208,211,13)" rx="2" ry="2" />
|
|
<text x="1192.16" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (33 samples, 0.17%)</title><rect x="221.7" y="357" width="2.0" height="15.0" fill="rgb(226,20,53)" rx="2" ry="2" />
|
|
<text x="224.68" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (2 samples, 0.01%)</title><rect x="709.0" y="261" width="0.1" height="15.0" fill="rgb(243,203,32)" rx="2" ry="2" />
|
|
<text x="711.96" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (8 samples, 0.04%)</title><rect x="666.0" y="373" width="0.5" height="15.0" fill="rgb(211,137,17)" rx="2" ry="2" />
|
|
<text x="669.05" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="988.6" y="373" width="0.1" height="15.0" fill="rgb(227,153,50)" rx="2" ry="2" />
|
|
<text x="991.58" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (5 samples, 0.03%)</title><rect x="1143.8" y="597" width="0.3" height="15.0" fill="rgb(237,221,28)" rx="2" ry="2" />
|
|
<text x="1146.79" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (7 samples, 0.04%)</title><rect x="880.3" y="453" width="0.4" height="15.0" fill="rgb(219,53,51)" rx="2" ry="2" />
|
|
<text x="883.25" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="214.4" y="261" width="0.2" height="15.0" fill="rgb(249,217,33)" rx="2" ry="2" />
|
|
<text x="217.42" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (27 samples, 0.14%)</title><rect x="1060.5" y="373" width="1.6" height="15.0" fill="rgb(211,137,32)" rx="2" ry="2" />
|
|
<text x="1063.48" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (6 samples, 0.03%)</title><rect x="1141.0" y="613" width="0.4" height="15.0" fill="rgb(224,2,7)" rx="2" ry="2" />
|
|
<text x="1144.03" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (20 samples, 0.10%)</title><rect x="373.6" y="309" width="1.2" height="15.0" fill="rgb(228,167,46)" rx="2" ry="2" />
|
|
<text x="376.58" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (11 samples, 0.06%)</title><rect x="789.2" y="293" width="0.7" height="15.0" fill="rgb(240,218,31)" rx="2" ry="2" />
|
|
<text x="792.20" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (7 samples, 0.04%)</title><rect x="1090.9" y="309" width="0.4" height="15.0" fill="rgb(229,151,10)" rx="2" ry="2" />
|
|
<text x="1093.85" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="1147.6" y="453" width="0.3" height="15.0" fill="rgb(236,121,50)" rx="2" ry="2" />
|
|
<text x="1150.63" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="1184.1" y="325" width="0.1" height="15.0" fill="rgb(249,32,45)" rx="2" ry="2" />
|
|
<text x="1187.06" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (9 samples, 0.05%)</title><rect x="250.3" y="405" width="0.5" height="15.0" fill="rgb(244,96,3)" rx="2" ry="2" />
|
|
<text x="253.31" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (26 samples, 0.13%)</title><rect x="883.3" y="341" width="1.6" height="15.0" fill="rgb(235,185,7)" rx="2" ry="2" />
|
|
<text x="886.31" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1142.2" y="309" width="0.1" height="15.0" fill="rgb(213,163,13)" rx="2" ry="2" />
|
|
<text x="1145.23" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="145.4" y="341" width="0.1" height="15.0" fill="rgb(236,26,32)" rx="2" ry="2" />
|
|
<text x="148.40" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (3 samples, 0.02%)</title><rect x="219.0" y="437" width="0.2" height="15.0" fill="rgb(238,225,11)" rx="2" ry="2" />
|
|
<text x="221.98" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1142.8" y="421" width="0.1" height="15.0" fill="rgb(218,68,35)" rx="2" ry="2" />
|
|
<text x="1145.77" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_CreateString (5 samples, 0.03%)</title><rect x="212.7" y="405" width="0.3" height="15.0" fill="rgb(229,193,41)" rx="2" ry="2" />
|
|
<text x="215.68" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (38 samples, 0.19%)</title><rect x="154.5" y="501" width="2.2" height="15.0" fill="rgb(244,69,47)" rx="2" ry="2" />
|
|
<text x="157.46" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (10 samples, 0.05%)</title><rect x="1145.9" y="405" width="0.6" height="15.0" fill="rgb(241,192,33)" rx="2" ry="2" />
|
|
<text x="1148.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_reseaseHttpInfor (6 samples, 0.03%)</title><rect x="409.4" y="405" width="0.4" height="15.0" fill="rgb(241,169,46)" rx="2" ry="2" />
|
|
<text x="412.42" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (76 samples, 0.39%)</title><rect x="579.9" y="341" width="4.6" height="15.0" fill="rgb(210,37,51)" rx="2" ry="2" />
|
|
<text x="582.92" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (1,839 samples, 9.35%)</title><rect x="765.1" y="421" width="110.4" height="15.0" fill="rgb(252,166,34)" rx="2" ry="2" />
|
|
<text x="768.14" y="431.5" >metric_traffi..</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="206.9" y="453" width="0.2" height="15.0" fill="rgb(210,28,8)" rx="2" ry="2" />
|
|
<text x="209.92" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (9 samples, 0.05%)</title><rect x="1147.6" y="597" width="0.6" height="15.0" fill="rgb(205,117,35)" rx="2" ry="2" />
|
|
<text x="1150.63" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (11 samples, 0.06%)</title><rect x="1145.9" y="613" width="0.6" height="15.0" fill="rgb(223,158,18)" rx="2" ry="2" />
|
|
<text x="1148.89" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (65 samples, 0.33%)</title><rect x="1184.0" y="581" width="3.9" height="15.0" fill="rgb(231,20,19)" rx="2" ry="2" />
|
|
<text x="1187.00" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="979.9" y="421" width="0.3" height="15.0" fill="rgb(222,148,49)" rx="2" ry="2" />
|
|
<text x="982.88" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (5 samples, 0.03%)</title><rect x="929.6" y="341" width="0.3" height="15.0" fill="rgb(221,228,11)" rx="2" ry="2" />
|
|
<text x="932.58" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime_2 (12 samples, 0.06%)</title><rect x="1059.5" y="389" width="0.7" height="15.0" fill="rgb(233,186,54)" rx="2" ry="2" />
|
|
<text x="1062.46" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="245" width="0.3" height="15.0" fill="rgb(241,158,45)" rx="2" ry="2" />
|
|
<text x="1146.85" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (9 samples, 0.05%)</title><rect x="1147.6" y="565" width="0.6" height="15.0" fill="rgb(212,135,52)" rx="2" ry="2" />
|
|
<text x="1150.63" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (13 samples, 0.07%)</title><rect x="936.3" y="421" width="0.8" height="15.0" fill="rgb(215,83,23)" rx="2" ry="2" />
|
|
<text x="939.31" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (11 samples, 0.06%)</title><rect x="596.5" y="245" width="0.6" height="15.0" fill="rgb(215,104,8)" rx="2" ry="2" />
|
|
<text x="599.49" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (2 samples, 0.01%)</title><rect x="222.9" y="197" width="0.2" height="15.0" fill="rgb(244,226,27)" rx="2" ry="2" />
|
|
<text x="225.94" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (173 samples, 0.88%)</title><rect x="1168.9" y="565" width="10.4" height="15.0" fill="rgb(231,10,0)" rx="2" ry="2" />
|
|
<text x="1171.87" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_trunk_free (5 samples, 0.03%)</title><rect x="935.0" y="421" width="0.3" height="15.0" fill="rgb(241,139,45)" rx="2" ry="2" />
|
|
<text x="938.05" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="473.6" y="437" width="0.5" height="15.0" fill="rgb(241,57,17)" rx="2" ry="2" />
|
|
<text x="476.63" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (2 samples, 0.01%)</title><rect x="1063.7" y="293" width="0.1" height="15.0" fill="rgb(248,184,7)" rx="2" ry="2" />
|
|
<text x="1066.72" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_session_decode (3 samples, 0.02%)</title><rect x="793.8" y="405" width="0.2" height="15.0" fill="rgb(238,221,18)" rx="2" ry="2" />
|
|
<text x="796.83" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="106.8" y="325" width="0.4" height="15.0" fill="rgb(217,198,3)" rx="2" ry="2" />
|
|
<text x="109.81" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (20 samples, 0.10%)</title><rect x="1185.3" y="517" width="1.2" height="15.0" fill="rgb(225,116,1)" rx="2" ry="2" />
|
|
<text x="1188.32" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (5 samples, 0.03%)</title><rect x="478.5" y="373" width="0.3" height="15.0" fill="rgb(212,24,10)" rx="2" ry="2" />
|
|
<text x="481.49" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (10 samples, 0.05%)</title><rect x="883.6" y="309" width="0.6" height="15.0" fill="rgb(233,5,11)" rx="2" ry="2" />
|
|
<text x="886.61" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (22 samples, 0.11%)</title><rect x="1034.1" y="357" width="1.3" height="15.0" fill="rgb(227,123,18)" rx="2" ry="2" />
|
|
<text x="1037.08" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (2 samples, 0.01%)</title><rect x="1145.3" y="341" width="0.2" height="15.0" fill="rgb(225,179,42)" rx="2" ry="2" />
|
|
<text x="1148.35" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_trunk_cache (7 samples, 0.04%)</title><rect x="431.3" y="421" width="0.4" height="15.0" fill="rgb(248,73,4)" rx="2" ry="2" />
|
|
<text x="434.32" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (24 samples, 0.12%)</title><rect x="158.2" y="357" width="1.4" height="15.0" fill="rgb(242,184,14)" rx="2" ry="2" />
|
|
<text x="161.18" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data@plt (2 samples, 0.01%)</title><rect x="243.5" y="437" width="0.1" height="15.0" fill="rgb(228,13,32)" rx="2" ry="2" />
|
|
<text x="246.53" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_buildHttpInforLink (27 samples, 0.14%)</title><rect x="419.6" y="405" width="1.6" height="15.0" fill="rgb(249,117,29)" rx="2" ry="2" />
|
|
<text x="422.56" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (2 samples, 0.01%)</title><rect x="884.2" y="309" width="0.1" height="15.0" fill="rgb(226,167,28)" rx="2" ry="2" />
|
|
<text x="887.21" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="733.5" y="309" width="0.1" height="15.0" fill="rgb(232,28,32)" rx="2" ry="2" />
|
|
<text x="736.51" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="189.9" y="341" width="0.4" height="15.0" fill="rgb(223,207,26)" rx="2" ry="2" />
|
|
<text x="192.93" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="928.3" y="309" width="0.1" height="15.0" fill="rgb(235,227,14)" rx="2" ry="2" />
|
|
<text x="931.26" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (21 samples, 0.11%)</title><rect x="159.6" y="389" width="1.3" height="15.0" fill="rgb(240,100,46)" rx="2" ry="2" />
|
|
<text x="162.62" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_mq_publish_message (26 samples, 0.13%)</title><rect x="49.6" y="597" width="1.6" height="15.0" fill="rgb(251,200,13)" rx="2" ry="2" />
|
|
<text x="52.61" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (120 samples, 0.61%)</title><rect x="207.4" y="517" width="7.2" height="15.0" fill="rgb(212,181,2)" rx="2" ry="2" />
|
|
<text x="210.40" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="254.5" y="597" width="0.1" height="15.0" fill="rgb(212,146,37)" rx="2" ry="2" />
|
|
<text x="257.51" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (9 samples, 0.05%)</title><rect x="253.2" y="469" width="0.5" height="15.0" fill="rgb(223,78,36)" rx="2" ry="2" />
|
|
<text x="256.19" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (7 samples, 0.04%)</title><rect x="246.6" y="421" width="0.4" height="15.0" fill="rgb(253,109,24)" rx="2" ry="2" />
|
|
<text x="249.59" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_min_count (13 samples, 0.07%)</title><rect x="831.0" y="293" width="0.8" height="15.0" fill="rgb(247,165,16)" rx="2" ry="2" />
|
|
<text x="833.98" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (4 samples, 0.02%)</title><rect x="1147.6" y="469" width="0.3" height="15.0" fill="rgb(231,19,47)" rx="2" ry="2" />
|
|
<text x="1150.63" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (5 samples, 0.03%)</title><rect x="929.6" y="293" width="0.3" height="15.0" fill="rgb(244,18,48)" rx="2" ry="2" />
|
|
<text x="932.58" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (12 samples, 0.06%)</title><rect x="620.4" y="261" width="0.8" height="15.0" fill="rgb(236,11,3)" rx="2" ry="2" />
|
|
<text x="623.44" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (16 samples, 0.08%)</title><rect x="622.2" y="245" width="1.0" height="15.0" fill="rgb(215,174,17)" rx="2" ry="2" />
|
|
<text x="625.24" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (17 samples, 0.09%)</title><rect x="37.1" y="597" width="1.0" height="15.0" fill="rgb(209,88,42)" rx="2" ry="2" />
|
|
<text x="40.07" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (9 samples, 0.05%)</title><rect x="223.1" y="245" width="0.5" height="15.0" fill="rgb(248,120,20)" rx="2" ry="2" />
|
|
<text x="226.06" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vdso_clock_gettime (11 samples, 0.06%)</title><rect x="984.3" y="373" width="0.7" height="15.0" fill="rgb(236,164,40)" rx="2" ry="2" />
|
|
<text x="987.32" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1189.9" y="549" width="0.1" height="15.0" fill="rgb(231,70,29)" rx="2" ry="2" />
|
|
<text x="1192.88" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>process_ipv4_pkt (45 samples, 0.23%)</title><rect x="890.4" y="549" width="2.7" height="15.0" fill="rgb(230,183,5)" rx="2" ry="2" />
|
|
<text x="893.39" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>c2i_ASN1_OBJECT (4 samples, 0.02%)</title><rect x="1143.8" y="101" width="0.3" height="15.0" fill="rgb(250,217,31)" rx="2" ry="2" />
|
|
<text x="1146.85" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (11 samples, 0.06%)</title><rect x="909.6" y="517" width="0.7" height="15.0" fill="rgb(227,94,11)" rx="2" ry="2" />
|
|
<text x="912.60" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="253.0" y="245" width="0.1" height="15.0" fill="rgb(207,55,21)" rx="2" ry="2" />
|
|
<text x="256.01" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (123 samples, 0.63%)</title><rect x="879.8" y="517" width="7.4" height="15.0" fill="rgb(217,169,21)" rx="2" ry="2" />
|
|
<text x="882.83" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (10 samples, 0.05%)</title><rect x="349.9" y="501" width="0.6" height="15.0" fill="rgb(251,98,19)" rx="2" ry="2" />
|
|
<text x="352.88" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (5 samples, 0.03%)</title><rect x="407.8" y="277" width="0.3" height="15.0" fill="rgb(217,94,0)" rx="2" ry="2" />
|
|
<text x="410.79" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (80 samples, 0.41%)</title><rect x="727.0" y="357" width="4.8" height="15.0" fill="rgb(230,146,41)" rx="2" ry="2" />
|
|
<text x="730.03" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (6 samples, 0.03%)</title><rect x="228.5" y="389" width="0.4" height="15.0" fill="rgb(251,162,9)" rx="2" ry="2" />
|
|
<text x="231.52" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="206.9" y="501" width="0.5" height="15.0" fill="rgb(224,90,7)" rx="2" ry="2" />
|
|
<text x="209.92" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="561.0" y="421" width="0.4" height="15.0" fill="rgb(233,88,26)" rx="2" ry="2" />
|
|
<text x="563.96" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (5 samples, 0.03%)</title><rect x="216.0" y="405" width="0.3" height="15.0" fill="rgb(228,165,24)" rx="2" ry="2" />
|
|
<text x="218.98" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (4 samples, 0.02%)</title><rect x="1034.6" y="277" width="0.3" height="15.0" fill="rgb(225,130,45)" rx="2" ry="2" />
|
|
<text x="1037.62" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="1001.4" y="245" width="0.1" height="15.0" fill="rgb(238,131,24)" rx="2" ry="2" />
|
|
<text x="1004.37" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="349.3" y="469" width="0.2" height="15.0" fill="rgb(208,143,15)" rx="2" ry="2" />
|
|
<text x="352.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="158.7" y="309" width="0.1" height="15.0" fill="rgb(216,20,50)" rx="2" ry="2" />
|
|
<text x="161.66" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="219.8" y="341" width="0.3" height="15.0" fill="rgb(240,112,1)" rx="2" ry="2" />
|
|
<text x="222.82" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="253.0" y="213" width="0.1" height="15.0" fill="rgb(248,111,36)" rx="2" ry="2" />
|
|
<text x="256.01" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_add_proto_tag (17 samples, 0.09%)</title><rect x="916.1" y="437" width="1.1" height="15.0" fill="rgb(220,59,13)" rx="2" ry="2" />
|
|
<text x="919.14" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (32 samples, 0.16%)</title><rect x="1157.2" y="517" width="2.0" height="15.0" fill="rgb(222,32,16)" rx="2" ry="2" />
|
|
<text x="1160.23" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_query_one (4 samples, 0.02%)</title><rect x="1074.4" y="325" width="0.2" height="15.0" fill="rgb(205,117,25)" rx="2" ry="2" />
|
|
<text x="1077.41" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="704.2" y="421" width="0.1" height="15.0" fill="rgb(232,46,54)" rx="2" ry="2" />
|
|
<text x="707.16" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="225.6" y="421" width="0.1" height="15.0" fill="rgb(246,71,18)" rx="2" ry="2" />
|
|
<text x="228.58" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="178.4" y="309" width="0.7" height="15.0" fill="rgb(225,180,15)" rx="2" ry="2" />
|
|
<text x="181.41" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="110.3" y="357" width="0.1" height="15.0" fill="rgb(212,214,25)" rx="2" ry="2" />
|
|
<text x="113.29" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (13 samples, 0.07%)</title><rect x="700.6" y="485" width="0.7" height="15.0" fill="rgb(236,34,4)" rx="2" ry="2" />
|
|
<text x="703.56" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libosfp.so.1.3] (43 samples, 0.22%)</title><rect x="198.5" y="405" width="2.5" height="15.0" fill="rgb(218,159,42)" rx="2" ry="2" />
|
|
<text x="201.45" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (11 samples, 0.06%)</title><rect x="989.8" y="357" width="0.6" height="15.0" fill="rgb(231,34,14)" rx="2" ry="2" />
|
|
<text x="992.78" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_is_outer_tunnel (2 samples, 0.01%)</title><rect x="1145.8" y="469" width="0.1" height="15.0" fill="rgb(247,48,36)" rx="2" ry="2" />
|
|
<text x="1148.77" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___vasprintf_chk (2 samples, 0.01%)</title><rect x="1184.1" y="181" width="0.1" height="15.0" fill="rgb(236,185,9)" rx="2" ry="2" />
|
|
<text x="1187.06" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_dl_io_get1_rawpkt_meta (3 samples, 0.02%)</title><rect x="1023.6" y="501" width="0.2" height="15.0" fill="rgb(233,16,29)" rx="2" ry="2" />
|
|
<text x="1026.63" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (245 samples, 1.25%)</title><rect x="157.9" y="469" width="14.7" height="15.0" fill="rgb(253,143,29)" rx="2" ry="2" />
|
|
<text x="160.88" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (23 samples, 0.12%)</title><rect x="665.7" y="469" width="1.4" height="15.0" fill="rgb(242,161,16)" rx="2" ry="2" />
|
|
<text x="668.75" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_and_copy_streamindex (3 samples, 0.02%)</title><rect x="678.2" y="517" width="0.2" height="15.0" fill="rgb(229,78,31)" rx="2" ry="2" />
|
|
<text x="681.23" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (2 samples, 0.01%)</title><rect x="223.7" y="293" width="0.1" height="15.0" fill="rgb(253,8,3)" rx="2" ry="2" />
|
|
<text x="226.66" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (25 samples, 0.13%)</title><rect x="216.6" y="437" width="1.5" height="15.0" fill="rgb(214,142,5)" rx="2" ry="2" />
|
|
<text x="219.58" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stellar_on_sapp_ip6_entry (6 samples, 0.03%)</title><rect x="1095.9" y="533" width="0.4" height="15.0" fill="rgb(215,166,4)" rx="2" ry="2" />
|
|
<text x="1098.89" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.07%)</title><rect x="35.4" y="549" width="0.8" height="15.0" fill="rgb(228,223,33)" rx="2" ry="2" />
|
|
<text x="38.45" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (8 samples, 0.04%)</title><rect x="422.9" y="373" width="0.4" height="15.0" fill="rgb(240,185,37)" rx="2" ry="2" />
|
|
<text x="425.86" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1185.1" y="373" width="0.2" height="15.0" fill="rgb(231,119,18)" rx="2" ry="2" />
|
|
<text x="1188.08" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (7 samples, 0.04%)</title><rect x="92.0" y="549" width="0.5" height="15.0" fill="rgb(238,142,53)" rx="2" ry="2" />
|
|
<text x="95.04" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (3 samples, 0.02%)</title><rect x="95.2" y="613" width="0.2" height="15.0" fill="rgb(209,226,3)" rx="2" ry="2" />
|
|
<text x="98.22" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (3 samples, 0.02%)</title><rect x="209.3" y="389" width="0.2" height="15.0" fill="rgb(223,192,24)" rx="2" ry="2" />
|
|
<text x="212.32" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (6 samples, 0.03%)</title><rect x="376.2" y="181" width="0.4" height="15.0" fill="rgb(212,70,7)" rx="2" ry="2" />
|
|
<text x="379.23" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (5 samples, 0.03%)</title><rect x="770.7" y="405" width="0.3" height="15.0" fill="rgb(232,166,32)" rx="2" ry="2" />
|
|
<text x="773.72" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="254.4" y="501" width="0.1" height="15.0" fill="rgb(223,47,40)" rx="2" ry="2" />
|
|
<text x="257.39" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vdso_clock_gettime (26 samples, 0.13%)</title><rect x="141.8" y="389" width="1.6" height="15.0" fill="rgb(240,146,31)" rx="2" ry="2" />
|
|
<text x="144.80" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (49 samples, 0.25%)</title><rect x="831.8" y="293" width="2.9" height="15.0" fill="rgb(232,206,34)" rx="2" ry="2" />
|
|
<text x="834.76" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (12 samples, 0.06%)</title><rect x="624.5" y="277" width="0.7" height="15.0" fill="rgb(219,190,41)" rx="2" ry="2" />
|
|
<text x="627.52" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_update (7 samples, 0.04%)</title><rect x="1082.3" y="517" width="0.4" height="15.0" fill="rgb(252,148,47)" rx="2" ry="2" />
|
|
<text x="1085.27" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (14,684 samples, 74.69%)</title><rect x="258.5" y="613" width="881.3" height="15.0" fill="rgb(226,184,46)" rx="2" ry="2" />
|
|
<text x="261.47" y="623.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (2 samples, 0.01%)</title><rect x="419.1" y="261" width="0.1" height="15.0" fill="rgb(223,22,24)" rx="2" ry="2" />
|
|
<text x="422.08" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_session_exdata_free (4 samples, 0.02%)</title><rect x="732.8" y="453" width="0.2" height="15.0" fill="rgb(218,165,50)" rx="2" ry="2" />
|
|
<text x="735.79" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="937.6" y="501" width="0.1" height="15.0" fill="rgb(220,96,7)" rx="2" ry="2" />
|
|
<text x="940.63" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (220 samples, 1.12%)</title><rect x="1031.6" y="485" width="13.2" height="15.0" fill="rgb(244,86,52)" rx="2" ry="2" />
|
|
<text x="1034.61" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (473 samples, 2.41%)</title><rect x="704.1" y="437" width="28.4" height="15.0" fill="rgb(209,167,46)" rx="2" ry="2" />
|
|
<text x="707.10" y="447.5" >[s..</text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (4 samples, 0.02%)</title><rect x="254.4" y="613" width="0.2" height="15.0" fill="rgb(252,70,6)" rx="2" ry="2" />
|
|
<text x="257.39" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (25 samples, 0.13%)</title><rect x="416.4" y="357" width="1.5" height="15.0" fill="rgb(230,173,13)" rx="2" ry="2" />
|
|
<text x="419.44" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (18 samples, 0.09%)</title><rect x="949.9" y="453" width="1.1" height="15.0" fill="rgb(223,5,25)" rx="2" ry="2" />
|
|
<text x="952.93" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="110.5" y="405" width="0.2" height="15.0" fill="rgb(212,76,21)" rx="2" ry="2" />
|
|
<text x="113.47" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (7 samples, 0.04%)</title><rect x="666.5" y="373" width="0.4" height="15.0" fill="rgb(210,150,49)" rx="2" ry="2" />
|
|
<text x="669.53" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_create_pool (18 samples, 0.09%)</title><rect x="1178.2" y="533" width="1.1" height="15.0" fill="rgb(222,20,33)" rx="2" ry="2" />
|
|
<text x="1181.18" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (16 samples, 0.08%)</title><rect x="1034.1" y="325" width="1.0" height="15.0" fill="rgb(227,129,7)" rx="2" ry="2" />
|
|
<text x="1037.14" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (12 samples, 0.06%)</title><rect x="1142.9" y="517" width="0.7" height="15.0" fill="rgb(243,106,27)" rx="2" ry="2" />
|
|
<text x="1145.89" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (3 samples, 0.02%)</title><rect x="1082.7" y="501" width="0.2" height="15.0" fill="rgb(229,102,45)" rx="2" ry="2" />
|
|
<text x="1085.75" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (10 samples, 0.05%)</title><rect x="144.2" y="485" width="0.6" height="15.0" fill="rgb(227,178,11)" rx="2" ry="2" />
|
|
<text x="147.20" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (4 samples, 0.02%)</title><rect x="1147.3" y="597" width="0.3" height="15.0" fill="rgb(218,52,4)" rx="2" ry="2" />
|
|
<text x="1150.33" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_primitive_free (2 samples, 0.01%)</title><rect x="222.9" y="165" width="0.2" height="15.0" fill="rgb(215,49,46)" rx="2" ry="2" />
|
|
<text x="225.94" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (7 samples, 0.04%)</title><rect x="967.0" y="469" width="0.5" height="15.0" fill="rgb(225,57,47)" rx="2" ry="2" />
|
|
<text x="970.04" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (4 samples, 0.02%)</title><rect x="251.4" y="421" width="0.2" height="15.0" fill="rgb(214,112,21)" rx="2" ry="2" />
|
|
<text x="254.39" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CZipFormat::AddDocData (2 samples, 0.01%)</title><rect x="1141.8" y="405" width="0.1" height="15.0" fill="rgb(236,0,51)" rx="2" ry="2" />
|
|
<text x="1144.81" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (3 samples, 0.02%)</title><rect x="990.1" y="261" width="0.2" height="15.0" fill="rgb(248,53,6)" rx="2" ry="2" />
|
|
<text x="993.08" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="166.1" y="149" width="0.1" height="15.0" fill="rgb(245,172,29)" rx="2" ry="2" />
|
|
<text x="169.10" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseRegion (17 samples, 0.09%)</title><rect x="411.8" y="373" width="1.0" height="15.0" fill="rgb(213,164,6)" rx="2" ry="2" />
|
|
<text x="414.76" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_del (15 samples, 0.08%)</title><rect x="969.4" y="501" width="0.9" height="15.0" fill="rgb(248,21,52)" rx="2" ry="2" />
|
|
<text x="972.38" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bloomfilter_stat_polling_entry (2 samples, 0.01%)</title><rect x="1139.9" y="597" width="0.1" height="15.0" fill="rgb(208,0,46)" rx="2" ry="2" />
|
|
<text x="1142.89" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (3 samples, 0.02%)</title><rect x="1099.7" y="485" width="0.2" height="15.0" fill="rgb(230,50,23)" rx="2" ry="2" />
|
|
<text x="1102.73" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (7 samples, 0.04%)</title><rect x="412.8" y="293" width="0.5" height="15.0" fill="rgb(226,0,9)" rx="2" ry="2" />
|
|
<text x="415.84" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (2 samples, 0.01%)</title><rect x="667.0" y="373" width="0.1" height="15.0" fill="rgb(229,86,15)" rx="2" ry="2" />
|
|
<text x="670.01" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (12 samples, 0.06%)</title><rect x="774.9" y="325" width="0.7" height="15.0" fill="rgb(248,105,23)" rx="2" ry="2" />
|
|
<text x="777.92" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInflate2::fn_iDecodeHuffmanCodeBlock (2 samples, 0.01%)</title><rect x="408.4" y="293" width="0.1" height="15.0" fill="rgb(241,107,31)" rx="2" ry="2" />
|
|
<text x="411.39" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="408.9" y="309" width="0.5" height="15.0" fill="rgb(249,225,41)" rx="2" ry="2" />
|
|
<text x="411.93" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="254.0" y="517" width="0.3" height="15.0" fill="rgb(251,172,24)" rx="2" ry="2" />
|
|
<text x="257.03" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (10 samples, 0.05%)</title><rect x="353.8" y="293" width="0.6" height="15.0" fill="rgb(221,163,45)" rx="2" ry="2" />
|
|
<text x="356.84" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (18 samples, 0.09%)</title><rect x="799.0" y="357" width="1.1" height="15.0" fill="rgb(216,148,4)" rx="2" ry="2" />
|
|
<text x="802.05" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="153.4" y="549" width="0.2" height="15.0" fill="rgb(212,200,19)" rx="2" ry="2" />
|
|
<text x="156.44" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (1,246 samples, 6.34%)</title><rect x="1020.2" y="549" width="74.8" height="15.0" fill="rgb(223,79,1)" rx="2" ry="2" />
|
|
<text x="1023.21" y="559.5" >dealipv6..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="1147.1" y="469" width="0.2" height="15.0" fill="rgb(240,144,14)" rx="2" ry="2" />
|
|
<text x="1150.09" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (129 samples, 0.66%)</title><rect x="919.3" y="421" width="7.7" height="15.0" fill="rgb(215,188,4)" rx="2" ry="2" />
|
|
<text x="922.26" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_app_and_proto_update (148 samples, 0.75%)</title><rect x="772.5" y="405" width="8.9" height="15.0" fill="rgb(227,14,2)" rx="2" ry="2" />
|
|
<text x="775.52" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (24 samples, 0.12%)</title><rect x="488.3" y="293" width="1.4" height="15.0" fill="rgb(207,152,17)" rx="2" ry="2" />
|
|
<text x="491.28" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (71 samples, 0.36%)</title><rect x="882.8" y="421" width="4.2" height="15.0" fill="rgb(205,152,20)" rx="2" ry="2" />
|
|
<text x="885.77" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="309" width="0.3" height="15.0" fill="rgb(250,54,9)" rx="2" ry="2" />
|
|
<text x="1146.85" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (11 samples, 0.06%)</title><rect x="255.3" y="533" width="0.7" height="15.0" fill="rgb(253,175,12)" rx="2" ry="2" />
|
|
<text x="258.29" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="966.9" y="453" width="0.1" height="15.0" fill="rgb(231,27,52)" rx="2" ry="2" />
|
|
<text x="969.86" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6tcppkt (19 samples, 0.10%)</title><rect x="1019.1" y="549" width="1.1" height="15.0" fill="rgb(211,124,1)" rx="2" ry="2" />
|
|
<text x="1022.07" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (5 samples, 0.03%)</title><rect x="418.9" y="373" width="0.3" height="15.0" fill="rgb(206,122,38)" rx="2" ry="2" />
|
|
<text x="421.90" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (5 samples, 0.03%)</title><rect x="1063.7" y="325" width="0.3" height="15.0" fill="rgb(245,9,16)" rx="2" ry="2" />
|
|
<text x="1066.66" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (6 samples, 0.03%)</title><rect x="706.5" y="341" width="0.4" height="15.0" fill="rgb(220,47,27)" rx="2" ry="2" />
|
|
<text x="709.50" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (51 samples, 0.26%)</title><rect x="612.0" y="245" width="3.1" height="15.0" fill="rgb(228,183,2)" rx="2" ry="2" />
|
|
<text x="615.03" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="254.5" y="517" width="0.1" height="15.0" fill="rgb(245,162,12)" rx="2" ry="2" />
|
|
<text x="257.51" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>file_buffer (10 samples, 0.05%)</title><rect x="403.6" y="213" width="0.6" height="15.0" fill="rgb(249,209,4)" rx="2" ry="2" />
|
|
<text x="406.59" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.03%)</title><rect x="1143.8" y="549" width="0.3" height="15.0" fill="rgb(252,80,10)" rx="2" ry="2" />
|
|
<text x="1146.79" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_dl_io_get1_rawpkt_meta (2 samples, 0.01%)</title><rect x="1094.8" y="517" width="0.1" height="15.0" fill="rgb(219,139,2)" rx="2" ry="2" />
|
|
<text x="1097.81" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_easy_counter_incrby (63 samples, 0.32%)</title><rect x="573.3" y="389" width="3.7" height="15.0" fill="rgb(230,192,9)" rx="2" ry="2" />
|
|
<text x="576.26" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (400 samples, 2.03%)</title><rect x="105.4" y="581" width="24.0" height="15.0" fill="rgb(243,167,36)" rx="2" ry="2" />
|
|
<text x="108.37" y="591.5" >[..</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (13 samples, 0.07%)</title><rect x="733.4" y="437" width="0.8" height="15.0" fill="rgb(220,46,39)" rx="2" ry="2" />
|
|
<text x="736.39" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (39 samples, 0.20%)</title><rect x="500.7" y="293" width="2.3" height="15.0" fill="rgb(205,218,40)" rx="2" ry="2" />
|
|
<text x="503.70" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stellar_on_sapp_defer_entry (15 samples, 0.08%)</title><rect x="1080.5" y="469" width="0.9" height="15.0" fill="rgb(229,76,52)" rx="2" ry="2" />
|
|
<text x="1083.53" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (19 samples, 0.10%)</title><rect x="910.5" y="469" width="1.1" height="15.0" fill="rgb(212,184,7)" rx="2" ry="2" />
|
|
<text x="913.50" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CUNZIP::fn_iUnGZ (8 samples, 0.04%)</title><rect x="384.5" y="277" width="0.5" height="15.0" fill="rgb(242,130,17)" rx="2" ry="2" />
|
|
<text x="387.51" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (2 samples, 0.01%)</title><rect x="470.7" y="389" width="0.1" height="15.0" fill="rgb(225,213,13)" rx="2" ry="2" />
|
|
<text x="473.69" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (11 samples, 0.06%)</title><rect x="1043.4" y="341" width="0.6" height="15.0" fill="rgb(214,90,11)" rx="2" ry="2" />
|
|
<text x="1046.38" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (2 samples, 0.01%)</title><rect x="677.9" y="517" width="0.1" height="15.0" fill="rgb(254,225,42)" rx="2" ry="2" />
|
|
<text x="680.87" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="105.8" y="245" width="0.2" height="15.0" fill="rgb(237,169,31)" rx="2" ry="2" />
|
|
<text x="108.85" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (57 samples, 0.29%)</title><rect x="129.4" y="437" width="3.4" height="15.0" fill="rgb(238,155,18)" rx="2" ry="2" />
|
|
<text x="132.37" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (4 samples, 0.02%)</title><rect x="1097.0" y="501" width="0.3" height="15.0" fill="rgb(218,183,30)" rx="2" ry="2" />
|
|
<text x="1100.03" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.07%)</title><rect x="193.6" y="405" width="0.8" height="15.0" fill="rgb(209,28,30)" rx="2" ry="2" />
|
|
<text x="196.59" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pop_heap (2 samples, 0.01%)</title><rect x="884.6" y="277" width="0.2" height="15.0" fill="rgb(222,64,40)" rx="2" ry="2" />
|
|
<text x="887.63" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (352 samples, 1.79%)</title><rect x="387.7" y="389" width="21.1" height="15.0" fill="rgb(234,8,14)" rx="2" ry="2" />
|
|
<text x="390.69" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (14 samples, 0.07%)</title><rect x="1031.7" y="453" width="0.8" height="15.0" fill="rgb(238,165,39)" rx="2" ry="2" />
|
|
<text x="1034.67" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_dos_traffic_tags_get (9 samples, 0.05%)</title><rect x="792.7" y="389" width="0.6" height="15.0" fill="rgb(234,133,33)" rx="2" ry="2" />
|
|
<text x="795.75" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (9 samples, 0.05%)</title><rect x="1099.0" y="453" width="0.6" height="15.0" fill="rgb(215,120,28)" rx="2" ry="2" />
|
|
<text x="1102.01" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (2 samples, 0.01%)</title><rect x="989.6" y="373" width="0.1" height="15.0" fill="rgb(222,16,50)" rx="2" ry="2" />
|
|
<text x="992.60" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (3 samples, 0.02%)</title><rect x="219.3" y="389" width="0.2" height="15.0" fill="rgb(247,144,3)" rx="2" ry="2" />
|
|
<text x="222.28" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (50 samples, 0.25%)</title><rect x="927.0" y="389" width="3.0" height="15.0" fill="rgb(247,201,35)" rx="2" ry="2" />
|
|
<text x="930.00" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (2 samples, 0.01%)</title><rect x="144.4" y="421" width="0.2" height="15.0" fill="rgb(205,38,43)" rx="2" ry="2" />
|
|
<text x="147.44" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_entry_dying (2 samples, 0.01%)</title><rect x="834.8" y="277" width="0.1" height="15.0" fill="rgb(245,199,51)" rx="2" ry="2" />
|
|
<text x="837.76" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (4 samples, 0.02%)</title><rect x="1141.9" y="453" width="0.3" height="15.0" fill="rgb(228,53,4)" rx="2" ry="2" />
|
|
<text x="1144.93" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_ip_address_set (19 samples, 0.10%)</title><rect x="1064.6" y="405" width="1.2" height="15.0" fill="rgb(239,34,18)" rx="2" ry="2" />
|
|
<text x="1067.62" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (4 samples, 0.02%)</title><rect x="230.5" y="405" width="0.2" height="15.0" fill="rgb(219,0,11)" rx="2" ry="2" />
|
|
<text x="233.50" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (2 samples, 0.01%)</title><rect x="1063.4" y="277" width="0.1" height="15.0" fill="rgb(239,32,9)" rx="2" ry="2" />
|
|
<text x="1066.42" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="107.8" y="341" width="0.3" height="15.0" fill="rgb(225,229,11)" rx="2" ry="2" />
|
|
<text x="110.77" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get0_current_payload (5 samples, 0.03%)</title><rect x="143.6" y="421" width="0.3" height="15.0" fill="rgb(219,130,25)" rx="2" ry="2" />
|
|
<text x="146.60" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (4 samples, 0.02%)</title><rect x="1037.0" y="293" width="0.2" height="15.0" fill="rgb(217,128,1)" rx="2" ry="2" />
|
|
<text x="1039.96" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (11 samples, 0.06%)</title><rect x="106.0" y="453" width="0.6" height="15.0" fill="rgb(209,70,40)" rx="2" ry="2" />
|
|
<text x="108.97" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (21 samples, 0.11%)</title><rect x="159.6" y="421" width="1.3" height="15.0" fill="rgb(218,138,41)" rx="2" ry="2" />
|
|
<text x="162.62" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (3 samples, 0.02%)</title><rect x="429.0" y="357" width="0.2" height="15.0" fill="rgb(232,119,54)" rx="2" ry="2" />
|
|
<text x="431.98" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>packet_get_direction (2 samples, 0.01%)</title><rect x="205.9" y="437" width="0.1" height="15.0" fill="rgb(223,65,8)" rx="2" ry="2" />
|
|
<text x="208.90" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (21 samples, 0.11%)</title><rect x="159.6" y="341" width="1.3" height="15.0" fill="rgb(241,185,44)" rx="2" ry="2" />
|
|
<text x="162.62" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1054.8" y="341" width="0.1" height="15.0" fill="rgb(213,86,13)" rx="2" ry="2" />
|
|
<text x="1057.78" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (2 samples, 0.01%)</title><rect x="920.9" y="325" width="0.1" height="15.0" fill="rgb(232,183,2)" rx="2" ry="2" />
|
|
<text x="923.88" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (2 samples, 0.01%)</title><rect x="881.6" y="293" width="0.1" height="15.0" fill="rgb(246,164,52)" rx="2" ry="2" />
|
|
<text x="884.57" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="1180.3" y="645" width="0.2" height="15.0" fill="rgb(253,64,37)" rx="2" ry="2" />
|
|
<text x="1183.34" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (86 samples, 0.44%)</title><rect x="1184.0" y="629" width="5.2" height="15.0" fill="rgb(226,60,35)" rx="2" ry="2" />
|
|
<text x="1187.00" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="1062.3" y="373" width="0.1" height="15.0" fill="rgb(219,50,42)" rx="2" ry="2" />
|
|
<text x="1065.28" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___snprintf (2 samples, 0.01%)</title><rect x="224.4" y="421" width="0.2" height="15.0" fill="rgb(234,216,53)" rx="2" ry="2" />
|
|
<text x="227.44" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_current_rawpkt_from_streaminfo@plt (2 samples, 0.01%)</title><rect x="662.1" y="437" width="0.2" height="15.0" fill="rgb(227,116,26)" rx="2" ry="2" />
|
|
<text x="665.15" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="159.4" y="149" width="0.2" height="15.0" fill="rgb(252,82,47)" rx="2" ry="2" />
|
|
<text x="162.44" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (91 samples, 0.46%)</title><rect x="579.9" y="357" width="5.5" height="15.0" fill="rgb(211,177,38)" rx="2" ry="2" />
|
|
<text x="582.92" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="931.1" y="293" width="0.1" height="15.0" fill="rgb(213,15,32)" rx="2" ry="2" />
|
|
<text x="934.09" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (3,373 samples, 17.16%)</title><rect x="894.0" y="565" width="202.4" height="15.0" fill="rgb(216,144,37)" rx="2" ry="2" />
|
|
<text x="896.99" y="575.5" >ipv6_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (15 samples, 0.08%)</title><rect x="157.0" y="293" width="0.9" height="15.0" fill="rgb(215,164,53)" rx="2" ry="2" />
|
|
<text x="159.98" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="153.4" y="565" width="0.2" height="15.0" fill="rgb(228,11,31)" rx="2" ry="2" />
|
|
<text x="156.44" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (8 samples, 0.04%)</title><rect x="705.4" y="357" width="0.4" height="15.0" fill="rgb(206,94,14)" rx="2" ry="2" />
|
|
<text x="708.36" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_palloc (4 samples, 0.02%)</title><rect x="176.8" y="389" width="0.3" height="15.0" fill="rgb(220,104,38)" rx="2" ry="2" />
|
|
<text x="179.85" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_memcpy (3 samples, 0.02%)</title><rect x="1076.3" y="277" width="0.2" height="15.0" fill="rgb(206,38,15)" rx="2" ry="2" />
|
|
<text x="1079.33" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_group (3 samples, 0.02%)</title><rect x="158.7" y="325" width="0.1" height="15.0" fill="rgb(247,173,50)" rx="2" ry="2" />
|
|
<text x="161.66" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mix16B (3 samples, 0.02%)</title><rect x="725.4" y="229" width="0.2" height="15.0" fill="rgb(239,211,26)" rx="2" ry="2" />
|
|
<text x="728.41" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_enc_free (3 samples, 0.02%)</title><rect x="165.4" y="181" width="0.2" height="15.0" fill="rgb(216,67,6)" rx="2" ry="2" />
|
|
<text x="168.38" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="350.1" y="309" width="0.1" height="15.0" fill="rgb(220,226,8)" rx="2" ry="2" />
|
|
<text x="353.06" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.07%)</title><rect x="1178.5" y="389" width="0.8" height="15.0" fill="rgb(238,196,3)" rx="2" ry="2" />
|
|
<text x="1181.48" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="255.1" y="565" width="0.1" height="15.0" fill="rgb(223,156,35)" rx="2" ry="2" />
|
|
<text x="258.11" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_readChunkedLength (9 samples, 0.05%)</title><rect x="385.4" y="373" width="0.5" height="15.0" fill="rgb(240,60,25)" rx="2" ry="2" />
|
|
<text x="388.41" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (4 samples, 0.02%)</title><rect x="481.4" y="373" width="0.3" height="15.0" fill="rgb(218,132,35)" rx="2" ry="2" />
|
|
<text x="484.44" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (47 samples, 0.24%)</title><rect x="375.3" y="373" width="2.8" height="15.0" fill="rgb(240,228,50)" rx="2" ry="2" />
|
|
<text x="378.33" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1148.3" y="501" width="0.2" height="15.0" fill="rgb(215,139,50)" rx="2" ry="2" />
|
|
<text x="1151.29" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (39 samples, 0.20%)</title><rect x="243.8" y="453" width="2.3" height="15.0" fill="rgb(244,100,49)" rx="2" ry="2" />
|
|
<text x="246.77" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ap_slice_add_hash (4 samples, 0.02%)</title><rect x="879.5" y="485" width="0.3" height="15.0" fill="rgb(208,175,23)" rx="2" ry="2" />
|
|
<text x="882.53" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="760.5" y="405" width="0.1" height="15.0" fill="rgb(208,78,33)" rx="2" ry="2" />
|
|
<text x="763.46" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (46 samples, 0.23%)</title><rect x="375.4" y="357" width="2.7" height="15.0" fill="rgb(209,146,10)" rx="2" ry="2" />
|
|
<text x="378.39" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="226.8" y="389" width="0.2" height="15.0" fill="rgb(240,89,2)" rx="2" ry="2" />
|
|
<text x="229.84" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_merge (21 samples, 0.11%)</title><rect x="1165.9" y="565" width="1.2" height="15.0" fill="rgb(207,158,15)" rx="2" ry="2" />
|
|
<text x="1168.87" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="105.7" y="325" width="0.3" height="15.0" fill="rgb(242,68,31)" rx="2" ry="2" />
|
|
<text x="108.67" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="208.1" y="309" width="0.4" height="15.0" fill="rgb(235,84,18)" rx="2" ry="2" />
|
|
<text x="211.12" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get0_current_packet (9 samples, 0.05%)</title><rect x="406.8" y="261" width="0.6" height="15.0" fill="rgb(252,0,4)" rx="2" ry="2" />
|
|
<text x="409.83" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="230.0" y="373" width="0.1" height="15.0" fill="rgb(205,221,18)" rx="2" ry="2" />
|
|
<text x="232.96" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (14 samples, 0.07%)</title><rect x="1056.7" y="405" width="0.8" height="15.0" fill="rgb(205,28,30)" rx="2" ry="2" />
|
|
<text x="1059.70" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="1061.0" y="309" width="0.1" height="15.0" fill="rgb(218,61,45)" rx="2" ry="2" />
|
|
<text x="1063.96" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (6 samples, 0.03%)</title><rect x="792.8" y="373" width="0.4" height="15.0" fill="rgb(218,47,43)" rx="2" ry="2" />
|
|
<text x="795.81" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (5 samples, 0.03%)</title><rect x="407.5" y="261" width="0.3" height="15.0" fill="rgb(247,139,50)" rx="2" ry="2" />
|
|
<text x="410.49" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (11 samples, 0.06%)</title><rect x="427.8" y="373" width="0.6" height="15.0" fill="rgb(214,2,41)" rx="2" ry="2" />
|
|
<text x="430.78" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (14 samples, 0.07%)</title><rect x="908.7" y="501" width="0.8" height="15.0" fill="rgb(253,176,42)" rx="2" ry="2" />
|
|
<text x="911.70" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="244.7" y="373" width="0.1" height="15.0" fill="rgb(222,8,19)" rx="2" ry="2" />
|
|
<text x="247.73" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (61 samples, 0.31%)</title><rect x="674.9" y="533" width="3.7" height="15.0" fill="rgb(217,11,34)" rx="2" ry="2" />
|
|
<text x="677.93" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (4 samples, 0.02%)</title><rect x="1033.3" y="325" width="0.2" height="15.0" fill="rgb(237,192,28)" rx="2" ry="2" />
|
|
<text x="1036.29" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1141.0" y="485" width="0.2" height="15.0" fill="rgb(218,115,21)" rx="2" ry="2" />
|
|
<text x="1144.03" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (5 samples, 0.03%)</title><rect x="882.2" y="357" width="0.3" height="15.0" fill="rgb(206,224,33)" rx="2" ry="2" />
|
|
<text x="885.17" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ap_slice_check_hash (4 samples, 0.02%)</title><rect x="736.0" y="501" width="0.2" height="15.0" fill="rgb(229,42,20)" rx="2" ry="2" />
|
|
<text x="738.97" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (4 samples, 0.02%)</title><rect x="574.5" y="309" width="0.2" height="15.0" fill="rgb(235,54,21)" rx="2" ry="2" />
|
|
<text x="577.46" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (4 samples, 0.02%)</title><rect x="144.9" y="389" width="0.2" height="15.0" fill="rgb(254,128,19)" rx="2" ry="2" />
|
|
<text x="147.86" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="935.2" y="373" width="0.1" height="15.0" fill="rgb(236,153,28)" rx="2" ry="2" />
|
|
<text x="938.23" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="254.0" y="485" width="0.3" height="15.0" fill="rgb(227,2,0)" rx="2" ry="2" />
|
|
<text x="257.03" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_dns_query_question (9 samples, 0.05%)</title><rect x="1181.5" y="629" width="0.5" height="15.0" fill="rgb(232,226,44)" rx="2" ry="2" />
|
|
<text x="1184.48" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (2 samples, 0.01%)</title><rect x="709.4" y="309" width="0.1" height="15.0" fill="rgb(220,82,38)" rx="2" ry="2" />
|
|
<text x="712.38" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.07%)</title><rect x="35.4" y="565" width="0.8" height="15.0" fill="rgb(232,217,42)" rx="2" ry="2" />
|
|
<text x="38.45" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (246 samples, 1.25%)</title><rect x="114.6" y="549" width="14.7" height="15.0" fill="rgb(250,23,14)" rx="2" ry="2" />
|
|
<text x="117.55" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (6 samples, 0.03%)</title><rect x="1023.8" y="501" width="0.4" height="15.0" fill="rgb(248,157,6)" rx="2" ry="2" />
|
|
<text x="1026.81" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>push_heap (3 samples, 0.02%)</title><rect x="503.5" y="261" width="0.2" height="15.0" fill="rgb(208,96,17)" rx="2" ry="2" />
|
|
<text x="506.52" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="277" width="0.3" height="15.0" fill="rgb(245,14,35)" rx="2" ry="2" />
|
|
<text x="1146.85" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (5 samples, 0.03%)</title><rect x="1142.2" y="453" width="0.3" height="15.0" fill="rgb(240,17,46)" rx="2" ry="2" />
|
|
<text x="1145.17" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (2 samples, 0.01%)</title><rect x="106.0" y="421" width="0.1" height="15.0" fill="rgb(205,210,23)" rx="2" ry="2" />
|
|
<text x="108.97" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (9 samples, 0.05%)</title><rect x="1000.9" y="277" width="0.6" height="15.0" fill="rgb(227,113,2)" rx="2" ry="2" />
|
|
<text x="1003.95" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="153.6" y="469" width="0.3" height="15.0" fill="rgb(254,229,34)" rx="2" ry="2" />
|
|
<text x="156.62" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (825 samples, 4.20%)</title><rect x="473.3" y="485" width="49.5" height="15.0" fill="rgb(212,21,18)" rx="2" ry="2" />
|
|
<text x="476.27" y="495.5" >stre..</text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (17 samples, 0.09%)</title><rect x="111.5" y="405" width="1.1" height="15.0" fill="rgb(225,191,1)" rx="2" ry="2" />
|
|
<text x="114.55" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (8 samples, 0.04%)</title><rect x="355.0" y="293" width="0.5" height="15.0" fill="rgb(252,6,14)" rx="2" ry="2" />
|
|
<text x="358.04" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (3 samples, 0.02%)</title><rect x="630.7" y="229" width="0.2" height="15.0" fill="rgb(241,23,24)" rx="2" ry="2" />
|
|
<text x="633.70" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (2 samples, 0.01%)</title><rect x="1149.1" y="501" width="0.1" height="15.0" fill="rgb(253,28,13)" rx="2" ry="2" />
|
|
<text x="1152.07" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CZipFormat::AddOneSection (2 samples, 0.01%)</title><rect x="1141.8" y="389" width="0.1" height="15.0" fill="rgb(225,62,8)" rx="2" ry="2" />
|
|
<text x="1144.81" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get (30 samples, 0.15%)</title><rect x="141.6" y="421" width="1.8" height="15.0" fill="rgb(222,12,30)" rx="2" ry="2" />
|
|
<text x="144.56" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (2 samples, 0.01%)</title><rect x="1167.1" y="549" width="0.2" height="15.0" fill="rgb(228,3,51)" rx="2" ry="2" />
|
|
<text x="1170.13" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (19 samples, 0.10%)</title><rect x="910.5" y="485" width="1.1" height="15.0" fill="rgb(232,149,2)" rx="2" ry="2" />
|
|
<text x="913.50" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (203 samples, 1.03%)</title><rect x="1032.5" y="437" width="12.2" height="15.0" fill="rgb(225,227,54)" rx="2" ry="2" />
|
|
<text x="1035.51" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.02%)</title><rect x="1144.1" y="597" width="0.2" height="15.0" fill="rgb(231,106,1)" rx="2" ry="2" />
|
|
<text x="1147.15" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (8 samples, 0.04%)</title><rect x="481.7" y="389" width="0.5" height="15.0" fill="rgb(243,111,44)" rx="2" ry="2" />
|
|
<text x="484.68" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (9 samples, 0.05%)</title><rect x="1142.2" y="485" width="0.5" height="15.0" fill="rgb(211,95,44)" rx="2" ry="2" />
|
|
<text x="1145.17" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="159.4" y="229" width="0.2" height="15.0" fill="rgb(216,57,39)" rx="2" ry="2" />
|
|
<text x="162.44" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="218.1" y="421" width="0.2" height="15.0" fill="rgb(214,54,1)" rx="2" ry="2" />
|
|
<text x="221.08" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="106.6" y="357" width="0.6" height="15.0" fill="rgb(247,186,45)" rx="2" ry="2" />
|
|
<text x="109.63" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="214.4" y="229" width="0.2" height="15.0" fill="rgb(250,115,23)" rx="2" ry="2" />
|
|
<text x="217.42" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_stream_add (4 samples, 0.02%)</title><rect x="879.5" y="517" width="0.3" height="15.0" fill="rgb(213,22,35)" rx="2" ry="2" />
|
|
<text x="882.53" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (1,670 samples, 8.49%)</title><rect x="153.6" y="629" width="100.3" height="15.0" fill="rgb(248,165,44)" rx="2" ry="2" />
|
|
<text x="156.62" y="639.5" >eth_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (2 samples, 0.01%)</title><rect x="574.8" y="309" width="0.1" height="15.0" fill="rgb(215,21,50)" rx="2" ry="2" />
|
|
<text x="577.82" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1050.3" y="389" width="0.2" height="15.0" fill="rgb(213,135,13)" rx="2" ry="2" />
|
|
<text x="1053.34" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (3 samples, 0.02%)</title><rect x="1016.0" y="373" width="0.2" height="15.0" fill="rgb(240,29,31)" rx="2" ry="2" />
|
|
<text x="1019.01" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="470.2" y="453" width="0.1" height="15.0" fill="rgb(214,109,50)" rx="2" ry="2" />
|
|
<text x="473.21" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="212.5" y="405" width="0.2" height="15.0" fill="rgb(230,10,5)" rx="2" ry="2" />
|
|
<text x="215.50" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="224.6" y="421" width="0.3" height="15.0" fill="rgb(245,42,2)" rx="2" ry="2" />
|
|
<text x="227.56" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (17 samples, 0.09%)</title><rect x="1014.8" y="373" width="1.0" height="15.0" fill="rgb(248,81,35)" rx="2" ry="2" />
|
|
<text x="1017.81" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (6 samples, 0.03%)</title><rect x="228.5" y="373" width="0.4" height="15.0" fill="rgb(248,168,7)" rx="2" ry="2" />
|
|
<text x="231.52" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (2 samples, 0.01%)</title><rect x="794.1" y="389" width="0.1" height="15.0" fill="rgb(206,51,19)" rx="2" ry="2" />
|
|
<text x="797.13" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1166.6" y="549" width="0.2" height="15.0" fill="rgb(210,226,20)" rx="2" ry="2" />
|
|
<text x="1169.59" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_session_exdata_fetch (6 samples, 0.03%)</title><rect x="990.6" y="405" width="0.4" height="15.0" fill="rgb(217,171,13)" rx="2" ry="2" />
|
|
<text x="993.62" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="106.0" y="261" width="0.1" height="15.0" fill="rgb(224,202,1)" rx="2" ry="2" />
|
|
<text x="108.97" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (73 samples, 0.37%)</title><rect x="148.3" y="533" width="4.4" height="15.0" fill="rgb(205,213,29)" rx="2" ry="2" />
|
|
<text x="151.34" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dns.so] (9 samples, 0.05%)</title><rect x="1179.6" y="645" width="0.6" height="15.0" fill="rgb(216,84,17)" rx="2" ry="2" />
|
|
<text x="1182.62" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="127.2" y="421" width="0.1" height="15.0" fill="rgb(210,41,34)" rx="2" ry="2" />
|
|
<text x="130.21" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="1172.4" y="517" width="0.1" height="15.0" fill="rgb(246,24,2)" rx="2" ry="2" />
|
|
<text x="1175.35" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (9 samples, 0.05%)</title><rect x="1148.6" y="581" width="0.6" height="15.0" fill="rgb(212,224,37)" rx="2" ry="2" />
|
|
<text x="1151.65" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="176.4" y="341" width="0.2" height="15.0" fill="rgb(206,9,22)" rx="2" ry="2" />
|
|
<text x="179.43" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_session_exdata_fetch (14 samples, 0.07%)</title><rect x="586.2" y="405" width="0.8" height="15.0" fill="rgb(234,181,22)" rx="2" ry="2" />
|
|
<text x="589.17" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[glimpse_detector.so] (35 samples, 0.18%)</title><rect x="1055.6" y="421" width="2.1" height="15.0" fill="rgb(232,183,47)" rx="2" ry="2" />
|
|
<text x="1058.62" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock@plt (2 samples, 0.01%)</title><rect x="660.6" y="373" width="0.1" height="15.0" fill="rgb(245,152,18)" rx="2" ry="2" />
|
|
<text x="663.59" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (3 samples, 0.02%)</title><rect x="105.7" y="245" width="0.1" height="15.0" fill="rgb(215,17,11)" rx="2" ry="2" />
|
|
<text x="108.67" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (4 samples, 0.02%)</title><rect x="109.9" y="309" width="0.2" height="15.0" fill="rgb(253,84,48)" rx="2" ry="2" />
|
|
<text x="112.87" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="1180.0" y="453" width="0.1" height="15.0" fill="rgb(240,5,13)" rx="2" ry="2" />
|
|
<text x="1182.98" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::__throw_bad_alloc@plt (3 samples, 0.02%)</title><rect x="104.3" y="645" width="0.2" height="15.0" fill="rgb(245,129,14)" rx="2" ry="2" />
|
|
<text x="107.35" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (38 samples, 0.19%)</title><rect x="154.5" y="549" width="2.2" height="15.0" fill="rgb(211,35,22)" rx="2" ry="2" />
|
|
<text x="157.46" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (4 samples, 0.02%)</title><rect x="1162.8" y="517" width="0.2" height="15.0" fill="rgb(232,67,10)" rx="2" ry="2" />
|
|
<text x="1165.75" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="145.4" y="277" width="0.1" height="15.0" fill="rgb(215,16,33)" rx="2" ry="2" />
|
|
<text x="148.40" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (2 samples, 0.01%)</title><rect x="349.5" y="357" width="0.1" height="15.0" fill="rgb(254,174,49)" rx="2" ry="2" />
|
|
<text x="352.46" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="931.1" y="405" width="0.1" height="15.0" fill="rgb(232,164,10)" rx="2" ry="2" />
|
|
<text x="934.09" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (11 samples, 0.06%)</title><rect x="1188.0" y="517" width="0.6" height="15.0" fill="rgb(251,3,0)" rx="2" ry="2" />
|
|
<text x="1190.96" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (34 samples, 0.17%)</title><rect x="850.1" y="309" width="2.1" height="15.0" fill="rgb(206,182,38)" rx="2" ry="2" />
|
|
<text x="853.12" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>find_or_add_metric (2 samples, 0.01%)</title><rect x="511.4" y="357" width="0.1" height="15.0" fill="rgb(214,180,36)" rx="2" ry="2" />
|
|
<text x="514.38" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (14 samples, 0.07%)</title><rect x="153.6" y="565" width="0.9" height="15.0" fill="rgb(233,112,43)" rx="2" ry="2" />
|
|
<text x="156.62" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="166.1" y="133" width="0.1" height="15.0" fill="rgb(245,24,53)" rx="2" ry="2" />
|
|
<text x="169.10" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (11 samples, 0.06%)</title><rect x="255.3" y="565" width="0.7" height="15.0" fill="rgb(212,191,31)" rx="2" ry="2" />
|
|
<text x="258.29" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pop_heap (3 samples, 0.02%)</title><rect x="1003.6" y="261" width="0.2" height="15.0" fill="rgb(231,22,52)" rx="2" ry="2" />
|
|
<text x="1006.59" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (3 samples, 0.02%)</title><rect x="219.3" y="453" width="0.2" height="15.0" fill="rgb(251,175,29)" rx="2" ry="2" />
|
|
<text x="222.28" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="890.2" y="469" width="0.1" height="15.0" fill="rgb(225,58,4)" rx="2" ry="2" />
|
|
<text x="893.15" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_to_UTF8 (2 samples, 0.01%)</title><rect x="154.0" y="229" width="0.2" height="15.0" fill="rgb(208,157,19)" rx="2" ry="2" />
|
|
<text x="157.04" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="167.2" y="213" width="0.2" height="15.0" fill="rgb(217,213,37)" rx="2" ry="2" />
|
|
<text x="170.19" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add@plt (2 samples, 0.01%)</title><rect x="1077.0" y="357" width="0.2" height="15.0" fill="rgb(252,55,48)" rx="2" ry="2" />
|
|
<text x="1080.05" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (4 samples, 0.02%)</title><rect x="621.7" y="245" width="0.2" height="15.0" fill="rgb(245,156,8)" rx="2" ry="2" />
|
|
<text x="624.70" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (10 samples, 0.05%)</title><rect x="744.1" y="453" width="0.6" height="15.0" fill="rgb(210,41,18)" rx="2" ry="2" />
|
|
<text x="747.07" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (8 samples, 0.04%)</title><rect x="1076.0" y="309" width="0.5" height="15.0" fill="rgb(236,139,9)" rx="2" ry="2" />
|
|
<text x="1079.03" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.02%)</title><rect x="921.0" y="325" width="0.2" height="15.0" fill="rgb(230,42,6)" rx="2" ry="2" />
|
|
<text x="924.00" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (6 samples, 0.03%)</title><rect x="244.5" y="405" width="0.3" height="15.0" fill="rgb(248,175,7)" rx="2" ry="2" />
|
|
<text x="247.49" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="219.3" y="309" width="0.2" height="15.0" fill="rgb(233,108,32)" rx="2" ry="2" />
|
|
<text x="222.28" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (116 samples, 0.59%)</title><rect x="207.4" y="437" width="7.0" height="15.0" fill="rgb(225,139,47)" rx="2" ry="2" />
|
|
<text x="210.40" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (11 samples, 0.06%)</title><rect x="255.3" y="517" width="0.7" height="15.0" fill="rgb(210,116,17)" rx="2" ry="2" />
|
|
<text x="258.29" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (4 samples, 0.02%)</title><rect x="1184.0" y="469" width="0.2" height="15.0" fill="rgb(247,67,9)" rx="2" ry="2" />
|
|
<text x="1187.00" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_new (4 samples, 0.02%)</title><rect x="231.9" y="437" width="0.2" height="15.0" fill="rgb(247,88,14)" rx="2" ry="2" />
|
|
<text x="234.88" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>save_polling_inject_context (9 samples, 0.05%)</title><rect x="1023.6" y="517" width="0.6" height="15.0" fill="rgb(242,155,28)" rx="2" ry="2" />
|
|
<text x="1026.63" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (2 samples, 0.01%)</title><rect x="986.7" y="277" width="0.1" height="15.0" fill="rgb(219,215,35)" rx="2" ry="2" />
|
|
<text x="989.66" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (17 samples, 0.09%)</title><rect x="146.4" y="517" width="1.0" height="15.0" fill="rgb(216,160,2)" rx="2" ry="2" />
|
|
<text x="149.36" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (6 samples, 0.03%)</title><rect x="1046.1" y="533" width="0.3" height="15.0" fill="rgb(252,79,24)" rx="2" ry="2" />
|
|
<text x="1049.08" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="111.1" y="373" width="0.2" height="15.0" fill="rgb(223,178,16)" rx="2" ry="2" />
|
|
<text x="114.13" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (3 samples, 0.02%)</title><rect x="586.5" y="373" width="0.2" height="15.0" fill="rgb(228,61,35)" rx="2" ry="2" />
|
|
<text x="589.53" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (4 samples, 0.02%)</title><rect x="131.1" y="325" width="0.3" height="15.0" fill="rgb(252,87,20)" rx="2" ry="2" />
|
|
<text x="134.11" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="667.9" y="549" width="0.1" height="15.0" fill="rgb(208,155,6)" rx="2" ry="2" />
|
|
<text x="670.91" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (15 samples, 0.08%)</title><rect x="157.0" y="357" width="0.9" height="15.0" fill="rgb(223,66,34)" rx="2" ry="2" />
|
|
<text x="159.98" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="246.2" y="421" width="0.2" height="15.0" fill="rgb(223,159,16)" rx="2" ry="2" />
|
|
<text x="249.17" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1142.8" y="389" width="0.1" height="15.0" fill="rgb(245,171,0)" rx="2" ry="2" />
|
|
<text x="1145.77" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="223.1" y="149" width="0.1" height="15.0" fill="rgb(207,137,41)" rx="2" ry="2" />
|
|
<text x="226.12" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (2 samples, 0.01%)</title><rect x="105.8" y="293" width="0.2" height="15.0" fill="rgb(206,0,8)" rx="2" ry="2" />
|
|
<text x="108.85" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (4 samples, 0.02%)</title><rect x="219.8" y="437" width="0.3" height="15.0" fill="rgb(254,26,14)" rx="2" ry="2" />
|
|
<text x="222.82" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (14 samples, 0.07%)</title><rect x="1186.6" y="549" width="0.8" height="15.0" fill="rgb(206,171,32)" rx="2" ry="2" />
|
|
<text x="1189.58" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="212.7" y="341" width="0.2" height="15.0" fill="rgb(215,211,8)" rx="2" ry="2" />
|
|
<text x="215.68" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (3 samples, 0.02%)</title><rect x="1058.2" y="421" width="0.2" height="15.0" fill="rgb(247,156,34)" rx="2" ry="2" />
|
|
<text x="1061.20" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (4 samples, 0.02%)</title><rect x="1096.8" y="501" width="0.2" height="15.0" fill="rgb(231,139,22)" rx="2" ry="2" />
|
|
<text x="1099.79" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (18 samples, 0.09%)</title><rect x="207.7" y="405" width="1.1" height="15.0" fill="rgb(251,209,47)" rx="2" ry="2" />
|
|
<text x="210.70" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (14 samples, 0.07%)</title><rect x="1186.6" y="517" width="0.8" height="15.0" fill="rgb(240,130,7)" rx="2" ry="2" />
|
|
<text x="1189.58" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_make_jhash (13 samples, 0.07%)</title><rect x="947.5" y="517" width="0.8" height="15.0" fill="rgb(227,137,45)" rx="2" ry="2" />
|
|
<text x="950.53" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (5 samples, 0.03%)</title><rect x="1177.8" y="533" width="0.3" height="15.0" fill="rgb(207,37,35)" rx="2" ry="2" />
|
|
<text x="1180.82" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (4 samples, 0.02%)</title><rect x="153.6" y="549" width="0.3" height="15.0" fill="rgb(233,30,9)" rx="2" ry="2" />
|
|
<text x="156.62" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="23.9" y="517" width="0.6" height="15.0" fill="rgb(249,184,45)" rx="2" ry="2" />
|
|
<text x="26.92" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (3 samples, 0.02%)</title><rect x="1142.7" y="597" width="0.2" height="15.0" fill="rgb(210,205,20)" rx="2" ry="2" />
|
|
<text x="1145.71" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_dos_dimension_get (2 samples, 0.01%)</title><rect x="792.6" y="389" width="0.1" height="15.0" fill="rgb(208,13,50)" rx="2" ry="2" />
|
|
<text x="795.63" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="402.0" y="165" width="0.2" height="15.0" fill="rgb(240,206,10)" rx="2" ry="2" />
|
|
<text x="405.03" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (9 samples, 0.05%)</title><rect x="1100.0" y="421" width="0.6" height="15.0" fill="rgb(243,18,37)" rx="2" ry="2" />
|
|
<text x="1103.03" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (16 samples, 0.08%)</title><rect x="1144.6" y="437" width="1.0" height="15.0" fill="rgb(207,150,47)" rx="2" ry="2" />
|
|
<text x="1147.63" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (17 samples, 0.09%)</title><rect x="1140.0" y="645" width="1.0" height="15.0" fill="rgb(228,25,39)" rx="2" ry="2" />
|
|
<text x="1143.01" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="385.0" y="149" width="0.2" height="15.0" fill="rgb(251,207,43)" rx="2" ry="2" />
|
|
<text x="388.05" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (74 samples, 0.38%)</title><rect x="248.7" y="565" width="4.4" height="15.0" fill="rgb(207,83,47)" rx="2" ry="2" />
|
|
<text x="251.69" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (2 samples, 0.01%)</title><rect x="920.8" y="357" width="0.1" height="15.0" fill="rgb(248,48,47)" rx="2" ry="2" />
|
|
<text x="923.76" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_positioningACompleteLine (4 samples, 0.02%)</title><rect x="930.0" y="389" width="0.2" height="15.0" fill="rgb(206,141,45)" rx="2" ry="2" />
|
|
<text x="933.01" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ja3_md5sum (2 samples, 0.01%)</title><rect x="224.9" y="437" width="0.1" height="15.0" fill="rgb(219,227,9)" rx="2" ry="2" />
|
|
<text x="227.86" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (2 samples, 0.01%)</title><rect x="155.3" y="405" width="0.1" height="15.0" fill="rgb(213,131,22)" rx="2" ry="2" />
|
|
<text x="158.30" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MAIL_TCP_ENTRY (5 samples, 0.03%)</title><rect x="931.2" y="453" width="0.3" height="15.0" fill="rgb(234,69,46)" rx="2" ry="2" />
|
|
<text x="934.21" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (3 samples, 0.02%)</title><rect x="1146.2" y="389" width="0.2" height="15.0" fill="rgb(208,162,25)" rx="2" ry="2" />
|
|
<text x="1149.19" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_mutex_trylock (2 samples, 0.01%)</title><rect x="1156.0" y="293" width="0.2" height="15.0" fill="rgb(243,104,40)" rx="2" ry="2" />
|
|
<text x="1159.03" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (13 samples, 0.07%)</title><rect x="1041.1" y="309" width="0.8" height="15.0" fill="rgb(251,223,31)" rx="2" ry="2" />
|
|
<text x="1044.10" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSH_ENTRY (8 samples, 0.04%)</title><rect x="424.8" y="453" width="0.5" height="15.0" fill="rgb(205,118,11)" rx="2" ry="2" />
|
|
<text x="427.78" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (3 samples, 0.02%)</title><rect x="916.1" y="421" width="0.2" height="15.0" fill="rgb(239,192,41)" rx="2" ry="2" />
|
|
<text x="919.14" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="145.9" y="373" width="0.1" height="15.0" fill="rgb(234,202,30)" rx="2" ry="2" />
|
|
<text x="148.88" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="178.4" y="277" width="0.7" height="15.0" fill="rgb(248,196,46)" rx="2" ry="2" />
|
|
<text x="181.41" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exit_to_user_mode_prepare (12 samples, 0.06%)</title><rect x="247.5" y="325" width="0.7" height="15.0" fill="rgb(230,141,27)" rx="2" ry="2" />
|
|
<text x="250.49" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (2 samples, 0.01%)</title><rect x="479.5" y="293" width="0.1" height="15.0" fill="rgb(245,183,29)" rx="2" ry="2" />
|
|
<text x="482.46" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (11 samples, 0.06%)</title><rect x="152.7" y="437" width="0.7" height="15.0" fill="rgb(248,118,28)" rx="2" ry="2" />
|
|
<text x="155.72" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="1147.3" y="549" width="0.3" height="15.0" fill="rgb(210,226,38)" rx="2" ry="2" />
|
|
<text x="1150.33" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1185.2" y="357" width="0.1" height="15.0" fill="rgb(233,19,14)" rx="2" ry="2" />
|
|
<text x="1188.20" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (13 samples, 0.07%)</title><rect x="1146.5" y="565" width="0.8" height="15.0" fill="rgb(212,90,0)" rx="2" ry="2" />
|
|
<text x="1149.55" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (4 samples, 0.02%)</title><rect x="105.4" y="533" width="0.2" height="15.0" fill="rgb(219,219,44)" rx="2" ry="2" />
|
|
<text x="108.37" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (7 samples, 0.04%)</title><rect x="1090.9" y="293" width="0.4" height="15.0" fill="rgb(249,78,6)" rx="2" ry="2" />
|
|
<text x="1093.85" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (22 samples, 0.11%)</title><rect x="985.6" y="357" width="1.4" height="15.0" fill="rgb(205,116,5)" rx="2" ry="2" />
|
|
<text x="988.64" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (41 samples, 0.21%)</title><rect x="380.1" y="261" width="2.5" height="15.0" fill="rgb(211,201,30)" rx="2" ry="2" />
|
|
<text x="383.13" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (4 samples, 0.02%)</title><rect x="884.3" y="293" width="0.3" height="15.0" fill="rgb(254,118,54)" rx="2" ry="2" />
|
|
<text x="887.33" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="405" width="0.2" height="15.0" fill="rgb(226,114,53)" rx="2" ry="2" />
|
|
<text x="1145.47" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (4 samples, 0.02%)</title><rect x="1094.2" y="501" width="0.3" height="15.0" fill="rgb(217,16,23)" rx="2" ry="2" />
|
|
<text x="1097.21" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (7 samples, 0.04%)</title><rect x="833.9" y="261" width="0.4" height="15.0" fill="rgb(229,175,26)" rx="2" ry="2" />
|
|
<text x="836.92" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_entry_dying (2 samples, 0.01%)</title><rect x="715.1" y="277" width="0.1" height="15.0" fill="rgb(210,103,53)" rx="2" ry="2" />
|
|
<text x="718.08" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (2 samples, 0.01%)</title><rect x="1185.0" y="373" width="0.1" height="15.0" fill="rgb(215,43,28)" rx="2" ry="2" />
|
|
<text x="1187.96" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (77 samples, 0.39%)</title><rect x="352.9" y="421" width="4.6" height="15.0" fill="rgb(224,190,40)" rx="2" ry="2" />
|
|
<text x="355.88" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="1141.9" y="293" width="0.3" height="15.0" fill="rgb(212,96,18)" rx="2" ry="2" />
|
|
<text x="1144.93" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (4 samples, 0.02%)</title><rect x="726.5" y="309" width="0.2" height="15.0" fill="rgb(242,188,21)" rx="2" ry="2" />
|
|
<text x="729.49" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (21 samples, 0.11%)</title><rect x="1040.9" y="325" width="1.2" height="15.0" fill="rgb(234,165,34)" rx="2" ry="2" />
|
|
<text x="1043.86" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (8 samples, 0.04%)</title><rect x="33.2" y="581" width="0.5" height="15.0" fill="rgb(254,209,3)" rx="2" ry="2" />
|
|
<text x="36.23" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="159.9" y="309" width="0.1" height="15.0" fill="rgb(248,5,46)" rx="2" ry="2" />
|
|
<text x="162.86" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (82 samples, 0.42%)</title><rect x="714.9" y="293" width="4.9" height="15.0" fill="rgb(250,18,41)" rx="2" ry="2" />
|
|
<text x="717.90" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (49 samples, 0.25%)</title><rect x="630.0" y="277" width="2.9" height="15.0" fill="rgb(236,165,52)" rx="2" ry="2" />
|
|
<text x="632.98" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_add (2 samples, 0.01%)</title><rect x="436.9" y="501" width="0.1" height="15.0" fill="rgb(213,107,0)" rx="2" ry="2" />
|
|
<text x="439.90" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (4 samples, 0.02%)</title><rect x="884.3" y="309" width="0.3" height="15.0" fill="rgb(214,109,13)" rx="2" ry="2" />
|
|
<text x="887.33" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_stream_free (3 samples, 0.02%)</title><rect x="476.8" y="437" width="0.1" height="15.0" fill="rgb(213,16,12)" rx="2" ry="2" />
|
|
<text x="479.75" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (21 samples, 0.11%)</title><rect x="1144.3" y="517" width="1.3" height="15.0" fill="rgb(247,138,42)" rx="2" ry="2" />
|
|
<text x="1147.33" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (13 samples, 0.07%)</title><rect x="479.1" y="357" width="0.8" height="15.0" fill="rgb(227,118,53)" rx="2" ry="2" />
|
|
<text x="482.10" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="255.8" y="485" width="0.1" height="15.0" fill="rgb(238,121,33)" rx="2" ry="2" />
|
|
<text x="258.77" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="1155.5" y="437" width="0.7" height="15.0" fill="rgb(252,168,52)" rx="2" ry="2" />
|
|
<text x="1158.49" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (9 samples, 0.05%)</title><rect x="479.3" y="341" width="0.6" height="15.0" fill="rgb(211,0,17)" rx="2" ry="2" />
|
|
<text x="482.34" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (5 samples, 0.03%)</title><rect x="882.5" y="373" width="0.3" height="15.0" fill="rgb(251,168,36)" rx="2" ry="2" />
|
|
<text x="885.47" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_integer (19 samples, 0.10%)</title><rect x="25.1" y="581" width="1.1" height="15.0" fill="rgb(220,173,3)" rx="2" ry="2" />
|
|
<text x="28.06" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (30 samples, 0.15%)</title><rect x="51.4" y="597" width="1.8" height="15.0" fill="rgb(211,100,8)" rx="2" ry="2" />
|
|
<text x="54.41" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (3 samples, 0.02%)</title><rect x="709.0" y="293" width="0.1" height="15.0" fill="rgb(219,90,33)" rx="2" ry="2" />
|
|
<text x="711.96" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="227.7" y="293" width="0.2" height="15.0" fill="rgb(244,177,36)" rx="2" ry="2" />
|
|
<text x="230.68" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (4 samples, 0.02%)</title><rect x="351.9" y="485" width="0.2" height="15.0" fill="rgb(227,213,1)" rx="2" ry="2" />
|
|
<text x="354.86" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_update (2 samples, 0.01%)</title><rect x="1098.9" y="485" width="0.1" height="15.0" fill="rgb(213,85,19)" rx="2" ry="2" />
|
|
<text x="1101.89" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_memcpy (7 samples, 0.04%)</title><rect x="633.6" y="277" width="0.4" height="15.0" fill="rgb(209,71,7)" rx="2" ry="2" />
|
|
<text x="636.58" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="1155.5" y="405" width="0.7" height="15.0" fill="rgb(243,157,45)" rx="2" ry="2" />
|
|
<text x="1158.49" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (4 samples, 0.02%)</title><rect x="349.6" y="373" width="0.2" height="15.0" fill="rgb(227,29,38)" rx="2" ry="2" />
|
|
<text x="352.58" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (286 samples, 1.45%)</title><rect x="949.9" y="485" width="17.1" height="15.0" fill="rgb(227,77,43)" rx="2" ry="2" />
|
|
<text x="952.87" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_scheme_counter_free (7 samples, 0.04%)</title><rect x="627.5" y="325" width="0.4" height="15.0" fill="rgb(220,191,22)" rx="2" ry="2" />
|
|
<text x="630.52" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (3 samples, 0.02%)</title><rect x="110.1" y="357" width="0.2" height="15.0" fill="rgb(227,221,30)" rx="2" ry="2" />
|
|
<text x="113.11" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (18 samples, 0.09%)</title><rect x="789.9" y="309" width="1.0" height="15.0" fill="rgb(221,171,20)" rx="2" ry="2" />
|
|
<text x="792.86" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RSA_free (2 samples, 0.01%)</title><rect x="109.4" y="277" width="0.1" height="15.0" fill="rgb(237,86,36)" rx="2" ry="2" />
|
|
<text x="112.39" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (9 samples, 0.05%)</title><rect x="1148.6" y="613" width="0.6" height="15.0" fill="rgb(226,149,14)" rx="2" ry="2" />
|
|
<text x="1151.65" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="253.9" y="389" width="0.1" height="15.0" fill="rgb(207,40,39)" rx="2" ry="2" />
|
|
<text x="256.85" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (38 samples, 0.19%)</title><rect x="701.7" y="453" width="2.3" height="15.0" fill="rgb(206,141,1)" rx="2" ry="2" />
|
|
<text x="704.70" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (123 samples, 0.63%)</title><rect x="161.2" y="341" width="7.4" height="15.0" fill="rgb(217,228,18)" rx="2" ry="2" />
|
|
<text x="164.18" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (2 samples, 0.01%)</title><rect x="416.1" y="213" width="0.2" height="15.0" fill="rgb(236,156,0)" rx="2" ry="2" />
|
|
<text x="419.14" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2,351 samples, 11.96%)</title><rect x="738.2" y="517" width="141.2" height="15.0" fill="rgb(236,74,2)" rx="2" ry="2" />
|
|
<text x="741.25" y="527.5" >stream_process</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (70 samples, 0.36%)</title><rect x="379.9" y="325" width="4.2" height="15.0" fill="rgb(244,162,53)" rx="2" ry="2" />
|
|
<text x="382.89" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="931.1" y="325" width="0.1" height="15.0" fill="rgb(207,54,44)" rx="2" ry="2" />
|
|
<text x="934.09" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (4 samples, 0.02%)</title><rect x="1147.3" y="613" width="0.3" height="15.0" fill="rgb(229,71,33)" rx="2" ry="2" />
|
|
<text x="1150.33" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (10 samples, 0.05%)</title><rect x="131.8" y="405" width="0.6" height="15.0" fill="rgb(221,102,1)" rx="2" ry="2" />
|
|
<text x="134.84" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509V3_get_d2i (3 samples, 0.02%)</title><rect x="429.2" y="373" width="0.2" height="15.0" fill="rgb(248,12,15)" rx="2" ry="2" />
|
|
<text x="432.22" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (11 samples, 0.06%)</title><rect x="1033.1" y="373" width="0.7" height="15.0" fill="rgb(221,218,36)" rx="2" ry="2" />
|
|
<text x="1036.11" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="1144.1" y="405" width="0.2" height="15.0" fill="rgb(220,65,17)" rx="2" ry="2" />
|
|
<text x="1147.15" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="422.9" y="341" width="0.4" height="15.0" fill="rgb(240,149,23)" rx="2" ry="2" />
|
|
<text x="425.86" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>QUIC_ENTRY (12 samples, 0.06%)</title><rect x="744.0" y="469" width="0.7" height="15.0" fill="rgb(235,87,53)" rx="2" ry="2" />
|
|
<text x="746.95" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (76 samples, 0.39%)</title><rect x="506.8" y="325" width="4.5" height="15.0" fill="rgb(214,205,41)" rx="2" ry="2" />
|
|
<text x="509.76" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_mq_publish_message (2 samples, 0.01%)</title><rect x="556.0" y="357" width="0.1" height="15.0" fill="rgb(248,195,5)" rx="2" ry="2" />
|
|
<text x="558.98" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (11 samples, 0.06%)</title><rect x="581.1" y="277" width="0.6" height="15.0" fill="rgb(215,218,54)" rx="2" ry="2" />
|
|
<text x="584.06" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (60 samples, 0.31%)</title><rect x="962.5" y="357" width="3.6" height="15.0" fill="rgb(249,63,13)" rx="2" ry="2" />
|
|
<text x="965.47" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (5 samples, 0.03%)</title><rect x="1145.6" y="549" width="0.3" height="15.0" fill="rgb(245,191,13)" rx="2" ry="2" />
|
|
<text x="1148.59" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="26.3" y="565" width="0.2" height="15.0" fill="rgb(242,175,7)" rx="2" ry="2" />
|
|
<text x="29.26" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (11 samples, 0.06%)</title><rect x="220.9" y="389" width="0.7" height="15.0" fill="rgb(233,21,6)" rx="2" ry="2" />
|
|
<text x="223.90" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stellar_on_sapp_defer_entry (37 samples, 0.19%)</title><rect x="663.1" y="469" width="2.2" height="15.0" fill="rgb(236,226,15)" rx="2" ry="2" />
|
|
<text x="666.11" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MAIL_TCP_ENTRY (19 samples, 0.10%)</title><rect x="423.3" y="453" width="1.2" height="15.0" fill="rgb(208,190,15)" rx="2" ry="2" />
|
|
<text x="426.34" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (1,222 samples, 6.22%)</title><rect x="798.2" y="373" width="73.3" height="15.0" fill="rgb(233,126,7)" rx="2" ry="2" />
|
|
<text x="801.21" y="383.5" >fieldsta..</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="929.6" y="277" width="0.3" height="15.0" fill="rgb(254,181,20)" rx="2" ry="2" />
|
|
<text x="932.58" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="224.1" y="341" width="0.2" height="15.0" fill="rgb(239,42,5)" rx="2" ry="2" />
|
|
<text x="227.08" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_make_jhash (5 samples, 0.03%)</title><rect x="697.5" y="517" width="0.3" height="15.0" fill="rgb(240,122,9)" rx="2" ry="2" />
|
|
<text x="700.50" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (12 samples, 0.06%)</title><rect x="1142.9" y="549" width="0.7" height="15.0" fill="rgb(220,70,2)" rx="2" ry="2" />
|
|
<text x="1145.89" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (345 samples, 1.75%)</title><rect x="711.6" y="389" width="20.7" height="15.0" fill="rgb(210,166,13)" rx="2" ry="2" />
|
|
<text x="714.60" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (3,646 samples, 18.54%)</title><rect x="671.6" y="549" width="218.8" height="15.0" fill="rgb(246,5,11)" rx="2" ry="2" />
|
|
<text x="674.57" y="559.5" >dealipv4udppkt</text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (7 samples, 0.04%)</title><rect x="1064.1" y="357" width="0.4" height="15.0" fill="rgb(236,137,14)" rx="2" ry="2" />
|
|
<text x="1067.08" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (9 samples, 0.05%)</title><rect x="1148.6" y="629" width="0.6" height="15.0" fill="rgb(228,181,5)" rx="2" ry="2" />
|
|
<text x="1151.65" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (11 samples, 0.06%)</title><rect x="615.3" y="277" width="0.6" height="15.0" fill="rgb(245,151,50)" rx="2" ry="2" />
|
|
<text x="618.27" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="144.9" y="277" width="0.1" height="15.0" fill="rgb(212,11,45)" rx="2" ry="2" />
|
|
<text x="147.86" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithContentLength (11 samples, 0.06%)</title><rect x="413.3" y="373" width="0.6" height="15.0" fill="rgb(226,69,24)" rx="2" ry="2" />
|
|
<text x="416.26" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="352.5" y="421" width="0.2" height="15.0" fill="rgb(233,7,50)" rx="2" ry="2" />
|
|
<text x="355.46" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (45 samples, 0.23%)</title><rect x="216.6" y="533" width="2.7" height="15.0" fill="rgb(253,79,36)" rx="2" ry="2" />
|
|
<text x="219.58" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (6 samples, 0.03%)</title><rect x="228.5" y="357" width="0.4" height="15.0" fill="rgb(227,63,41)" rx="2" ry="2" />
|
|
<text x="231.52" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (2 samples, 0.01%)</title><rect x="477.8" y="405" width="0.1" height="15.0" fill="rgb(231,117,34)" rx="2" ry="2" />
|
|
<text x="480.77" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (13 samples, 0.07%)</title><rect x="1146.5" y="501" width="0.8" height="15.0" fill="rgb(206,99,1)" rx="2" ry="2" />
|
|
<text x="1149.55" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (15 samples, 0.08%)</title><rect x="584.5" y="341" width="0.9" height="15.0" fill="rgb(224,159,8)" rx="2" ry="2" />
|
|
<text x="587.49" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="701.5" y="469" width="0.1" height="15.0" fill="rgb(215,134,26)" rx="2" ry="2" />
|
|
<text x="704.46" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (38 samples, 0.19%)</title><rect x="154.5" y="565" width="2.2" height="15.0" fill="rgb(231,93,46)" rx="2" ry="2" />
|
|
<text x="157.46" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_zalloc (4 samples, 0.02%)</title><rect x="164.9" y="229" width="0.2" height="15.0" fill="rgb(252,128,43)" rx="2" ry="2" />
|
|
<text x="167.90" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>magic_buffer (2 samples, 0.01%)</title><rect x="1184.1" y="245" width="0.1" height="15.0" fill="rgb(228,50,49)" rx="2" ry="2" />
|
|
<text x="1187.06" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (45 samples, 0.23%)</title><rect x="216.6" y="565" width="2.7" height="15.0" fill="rgb(254,157,1)" rx="2" ry="2" />
|
|
<text x="219.58" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (14 samples, 0.07%)</title><rect x="910.7" y="373" width="0.8" height="15.0" fill="rgb(245,200,15)" rx="2" ry="2" />
|
|
<text x="913.68" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (3 samples, 0.02%)</title><rect x="770.8" y="357" width="0.2" height="15.0" fill="rgb(208,126,51)" rx="2" ry="2" />
|
|
<text x="773.84" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (33 samples, 0.17%)</title><rect x="414.4" y="293" width="2.0" height="15.0" fill="rgb(206,160,8)" rx="2" ry="2" />
|
|
<text x="417.40" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1171.8" y="373" width="0.1" height="15.0" fill="rgb(219,121,25)" rx="2" ry="2" />
|
|
<text x="1174.75" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (7 samples, 0.04%)</title><rect x="412.8" y="309" width="0.5" height="15.0" fill="rgb(205,90,9)" rx="2" ry="2" />
|
|
<text x="415.84" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (14 samples, 0.07%)</title><rect x="359.7" y="453" width="0.9" height="15.0" fill="rgb(215,76,26)" rx="2" ry="2" />
|
|
<text x="362.72" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (3 samples, 0.02%)</title><rect x="1058.0" y="421" width="0.2" height="15.0" fill="rgb(226,189,48)" rx="2" ry="2" />
|
|
<text x="1061.02" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (21 samples, 0.11%)</title><rect x="1187.9" y="581" width="1.3" height="15.0" fill="rgb(234,50,36)" rx="2" ry="2" />
|
|
<text x="1190.90" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="951.1" y="421" width="0.2" height="15.0" fill="rgb(206,104,24)" rx="2" ry="2" />
|
|
<text x="954.13" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH128_mix32B (3 samples, 0.02%)</title><rect x="725.4" y="245" width="0.2" height="15.0" fill="rgb(232,112,32)" rx="2" ry="2" />
|
|
<text x="728.41" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="930.4" y="245" width="0.1" height="15.0" fill="rgb(210,105,29)" rx="2" ry="2" />
|
|
<text x="933.37" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (4 samples, 0.02%)</title><rect x="105.4" y="517" width="0.2" height="15.0" fill="rgb(241,47,44)" rx="2" ry="2" />
|
|
<text x="108.37" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="885.5" y="325" width="0.2" height="15.0" fill="rgb(250,103,15)" rx="2" ry="2" />
|
|
<text x="888.53" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (219 samples, 1.11%)</title><rect x="1031.6" y="469" width="13.2" height="15.0" fill="rgb(240,138,34)" rx="2" ry="2" />
|
|
<text x="1034.61" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (516 samples, 2.62%)</title><rect x="379.3" y="421" width="31.0" height="15.0" fill="rgb(239,182,14)" rx="2" ry="2" />
|
|
<text x="382.29" y="431.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="678.3" y="501" width="0.1" height="15.0" fill="rgb(222,21,47)" rx="2" ry="2" />
|
|
<text x="681.29" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (3 samples, 0.02%)</title><rect x="110.1" y="373" width="0.2" height="15.0" fill="rgb(241,185,5)" rx="2" ry="2" />
|
|
<text x="113.11" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithGzipData (2 samples, 0.01%)</title><rect x="1141.8" y="437" width="0.1" height="15.0" fill="rgb(212,84,0)" rx="2" ry="2" />
|
|
<text x="1144.81" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="249.7" y="309" width="0.1" height="15.0" fill="rgb(236,143,31)" rx="2" ry="2" />
|
|
<text x="252.71" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (2 samples, 0.01%)</title><rect x="830.9" y="261" width="0.1" height="15.0" fill="rgb(241,49,21)" rx="2" ry="2" />
|
|
<text x="833.86" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (73 samples, 0.37%)</title><rect x="148.3" y="549" width="4.4" height="15.0" fill="rgb(236,198,21)" rx="2" ry="2" />
|
|
<text x="151.34" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (39 samples, 0.20%)</title><rect x="806.1" y="277" width="2.4" height="15.0" fill="rgb(235,108,3)" rx="2" ry="2" />
|
|
<text x="809.13" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_mult64to128 (3 samples, 0.02%)</title><rect x="776.1" y="197" width="0.2" height="15.0" fill="rgb(207,42,41)" rx="2" ry="2" />
|
|
<text x="779.12" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_reset_withSeed (2 samples, 0.01%)</title><rect x="1075.9" y="309" width="0.1" height="15.0" fill="rgb(220,164,17)" rx="2" ry="2" />
|
|
<text x="1078.91" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (5 samples, 0.03%)</title><rect x="1143.3" y="389" width="0.3" height="15.0" fill="rgb(222,80,9)" rx="2" ry="2" />
|
|
<text x="1146.31" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (8 samples, 0.04%)</title><rect x="731.8" y="373" width="0.5" height="15.0" fill="rgb(240,175,41)" rx="2" ry="2" />
|
|
<text x="734.83" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_primitive_free (3 samples, 0.02%)</title><rect x="110.1" y="341" width="0.2" height="15.0" fill="rgb(249,134,36)" rx="2" ry="2" />
|
|
<text x="113.11" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (2 samples, 0.01%)</title><rect x="169.2" y="325" width="0.1" height="15.0" fill="rgb(226,90,54)" rx="2" ry="2" />
|
|
<text x="172.17" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (329 samples, 1.67%)</title><rect x="388.6" y="357" width="19.7" height="15.0" fill="rgb(234,61,37)" rx="2" ry="2" />
|
|
<text x="391.59" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="931.1" y="389" width="0.1" height="15.0" fill="rgb(228,95,23)" rx="2" ry="2" />
|
|
<text x="934.09" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (249 samples, 1.27%)</title><rect x="392.9" y="277" width="14.9" height="15.0" fill="rgb(232,11,30)" rx="2" ry="2" />
|
|
<text x="395.85" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (2 samples, 0.01%)</title><rect x="1039.7" y="277" width="0.1" height="15.0" fill="rgb(217,140,31)" rx="2" ry="2" />
|
|
<text x="1042.72" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (5 samples, 0.03%)</title><rect x="522.1" y="453" width="0.3" height="15.0" fill="rgb(253,85,6)" rx="2" ry="2" />
|
|
<text x="525.13" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_create_pool (3 samples, 0.02%)</title><rect x="214.4" y="421" width="0.2" height="15.0" fill="rgb(237,96,21)" rx="2" ry="2" />
|
|
<text x="217.42" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (3 samples, 0.02%)</title><rect x="1085.8" y="325" width="0.2" height="15.0" fill="rgb(208,37,21)" rx="2" ry="2" />
|
|
<text x="1088.81" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_and_record_popped_back (7 samples, 0.04%)</title><rect x="959.7" y="293" width="0.4" height="15.0" fill="rgb(220,128,18)" rx="2" ry="2" />
|
|
<text x="962.65" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.02%)</title><rect x="928.2" y="325" width="0.2" height="15.0" fill="rgb(238,8,19)" rx="2" ry="2" />
|
|
<text x="931.20" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (4 samples, 0.02%)</title><rect x="701.1" y="453" width="0.2" height="15.0" fill="rgb(252,33,32)" rx="2" ry="2" />
|
|
<text x="704.10" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>map_flow_id_hash_to_bucket (4 samples, 0.02%)</title><rect x="597.1" y="293" width="0.3" height="15.0" fill="rgb(235,221,35)" rx="2" ry="2" />
|
|
<text x="600.15" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (9 samples, 0.05%)</title><rect x="621.4" y="277" width="0.5" height="15.0" fill="rgb(232,173,52)" rx="2" ry="2" />
|
|
<text x="624.40" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (3 samples, 0.02%)</title><rect x="909.1" y="341" width="0.2" height="15.0" fill="rgb(254,150,45)" rx="2" ry="2" />
|
|
<text x="912.12" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop4 (4 samples, 0.02%)</title><rect x="211.7" y="405" width="0.2" height="15.0" fill="rgb(242,57,53)" rx="2" ry="2" />
|
|
<text x="214.66" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_deleteEmptyRow (2 samples, 0.01%)</title><rect x="373.3" y="405" width="0.1" height="15.0" fill="rgb(234,143,12)" rx="2" ry="2" />
|
|
<text x="376.28" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (10 samples, 0.05%)</title><rect x="1099.0" y="517" width="0.6" height="15.0" fill="rgb(239,173,20)" rx="2" ry="2" />
|
|
<text x="1102.01" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (4 samples, 0.02%)</title><rect x="1184.8" y="389" width="0.3" height="15.0" fill="rgb(242,8,50)" rx="2" ry="2" />
|
|
<text x="1187.84" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="111.1" y="389" width="0.2" height="15.0" fill="rgb(223,110,41)" rx="2" ry="2" />
|
|
<text x="114.13" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (3 samples, 0.02%)</title><rect x="1034.9" y="277" width="0.2" height="15.0" fill="rgb(219,115,20)" rx="2" ry="2" />
|
|
<text x="1037.92" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="360.6" y="501" width="0.1" height="15.0" fill="rgb(214,65,33)" rx="2" ry="2" />
|
|
<text x="363.56" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (13 samples, 0.07%)</title><rect x="994.5" y="293" width="0.8" height="15.0" fill="rgb(237,144,43)" rx="2" ry="2" />
|
|
<text x="997.52" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="176.4" y="277" width="0.2" height="15.0" fill="rgb(231,25,17)" rx="2" ry="2" />
|
|
<text x="179.43" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="351.9" y="421" width="0.1" height="15.0" fill="rgb(213,136,3)" rx="2" ry="2" />
|
|
<text x="354.92" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (5 samples, 0.03%)</title><rect x="219.5" y="549" width="0.3" height="15.0" fill="rgb(223,147,19)" rx="2" ry="2" />
|
|
<text x="222.46" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (2 samples, 0.01%)</title><rect x="254.3" y="549" width="0.1" height="15.0" fill="rgb(211,200,52)" rx="2" ry="2" />
|
|
<text x="257.27" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (21 samples, 0.11%)</title><rect x="386.3" y="277" width="1.3" height="15.0" fill="rgb(207,100,41)" rx="2" ry="2" />
|
|
<text x="389.31" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="1187.1" y="389" width="0.1" height="15.0" fill="rgb(242,85,52)" rx="2" ry="2" />
|
|
<text x="1190.12" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (43 samples, 0.22%)</title><rect x="724.2" y="325" width="2.6" height="15.0" fill="rgb(238,15,11)" rx="2" ry="2" />
|
|
<text x="727.21" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (16 samples, 0.08%)</title><rect x="1144.6" y="469" width="1.0" height="15.0" fill="rgb(214,222,39)" rx="2" ry="2" />
|
|
<text x="1147.63" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (15 samples, 0.08%)</title><rect x="157.0" y="469" width="0.9" height="15.0" fill="rgb(248,15,46)" rx="2" ry="2" />
|
|
<text x="159.98" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (4 samples, 0.02%)</title><rect x="1156.5" y="501" width="0.3" height="15.0" fill="rgb(234,181,39)" rx="2" ry="2" />
|
|
<text x="1159.51" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (70 samples, 0.36%)</title><rect x="43.5" y="565" width="4.2" height="15.0" fill="rgb(251,65,54)" rx="2" ry="2" />
|
|
<text x="46.49" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (3 samples, 0.02%)</title><rect x="218.3" y="437" width="0.2" height="15.0" fill="rgb(205,170,1)" rx="2" ry="2" />
|
|
<text x="221.32" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>EVP_PKEY_free (3 samples, 0.02%)</title><rect x="109.3" y="293" width="0.2" height="15.0" fill="rgb(241,81,37)" rx="2" ry="2" />
|
|
<text x="112.33" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (3 samples, 0.02%)</title><rect x="918.7" y="197" width="0.1" height="15.0" fill="rgb(243,121,49)" rx="2" ry="2" />
|
|
<text x="921.66" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (63 samples, 0.32%)</title><rect x="110.8" y="485" width="3.8" height="15.0" fill="rgb(223,144,23)" rx="2" ry="2" />
|
|
<text x="113.77" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (39 samples, 0.20%)</title><rect x="907.3" y="517" width="2.3" height="15.0" fill="rgb(229,167,16)" rx="2" ry="2" />
|
|
<text x="910.26" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (18 samples, 0.09%)</title><rect x="928.4" y="341" width="1.1" height="15.0" fill="rgb(214,16,52)" rx="2" ry="2" />
|
|
<text x="931.38" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (19 samples, 0.10%)</title><rect x="1085.0" y="373" width="1.2" height="15.0" fill="rgb(209,77,16)" rx="2" ry="2" />
|
|
<text x="1088.03" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (5 samples, 0.03%)</title><rect x="1143.8" y="581" width="0.3" height="15.0" fill="rgb(226,226,32)" rx="2" ry="2" />
|
|
<text x="1146.79" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="341" width="0.2" height="15.0" fill="rgb(232,26,9)" rx="2" ry="2" />
|
|
<text x="1145.47" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (6 samples, 0.03%)</title><rect x="985.9" y="325" width="0.3" height="15.0" fill="rgb(216,108,25)" rx="2" ry="2" />
|
|
<text x="988.88" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="933.2" y="325" width="0.2" height="15.0" fill="rgb(209,71,35)" rx="2" ry="2" />
|
|
<text x="936.25" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (23 samples, 0.12%)</title><rect x="386.2" y="309" width="1.4" height="15.0" fill="rgb(231,188,6)" rx="2" ry="2" />
|
|
<text x="389.19" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (17 samples, 0.09%)</title><rect x="705.8" y="357" width="1.1" height="15.0" fill="rgb(245,91,34)" rx="2" ry="2" />
|
|
<text x="708.84" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (5 samples, 0.03%)</title><rect x="1143.8" y="485" width="0.3" height="15.0" fill="rgb(226,35,44)" rx="2" ry="2" />
|
|
<text x="1146.79" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (217 samples, 1.10%)</title><rect x="992.5" y="341" width="13.0" height="15.0" fill="rgb(219,73,19)" rx="2" ry="2" />
|
|
<text x="995.48" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (5 samples, 0.03%)</title><rect x="219.8" y="485" width="0.3" height="15.0" fill="rgb(253,183,18)" rx="2" ry="2" />
|
|
<text x="222.76" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (622 samples, 3.16%)</title><rect x="801.4" y="325" width="37.4" height="15.0" fill="rgb(216,166,48)" rx="2" ry="2" />
|
|
<text x="804.45" y="335.5" >hea..</text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="733.9" y="357" width="0.1" height="15.0" fill="rgb(205,195,31)" rx="2" ry="2" />
|
|
<text x="736.93" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (16 samples, 0.08%)</title><rect x="249.9" y="421" width="0.9" height="15.0" fill="rgb(249,197,34)" rx="2" ry="2" />
|
|
<text x="252.89" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (412 samples, 2.10%)</title><rect x="991.3" y="389" width="24.7" height="15.0" fill="rgb(209,32,16)" rx="2" ry="2" />
|
|
<text x="994.28" y="399.5" >t..</text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="161.7" y="261" width="0.1" height="15.0" fill="rgb(253,150,44)" rx="2" ry="2" />
|
|
<text x="164.66" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="917.6" y="277" width="0.2" height="15.0" fill="rgb(249,76,45)" rx="2" ry="2" />
|
|
<text x="920.58" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (42 samples, 0.21%)</title><rect x="1087.5" y="341" width="2.5" height="15.0" fill="rgb(212,209,22)" rx="2" ry="2" />
|
|
<text x="1090.49" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (4 samples, 0.02%)</title><rect x="560.5" y="405" width="0.2" height="15.0" fill="rgb(205,57,9)" rx="2" ry="2" />
|
|
<text x="563.48" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>find_or_add_metric (3 samples, 0.02%)</title><rect x="726.8" y="357" width="0.2" height="15.0" fill="rgb(246,116,23)" rx="2" ry="2" />
|
|
<text x="729.85" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (33 samples, 0.17%)</title><rect x="883.1" y="357" width="2.0" height="15.0" fill="rgb(219,4,54)" rx="2" ry="2" />
|
|
<text x="886.13" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="1189.9" y="645" width="0.1" height="15.0" fill="rgb(250,71,52)" rx="2" ry="2" />
|
|
<text x="1192.88" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="254.4" y="437" width="0.1" height="15.0" fill="rgb(229,220,14)" rx="2" ry="2" />
|
|
<text x="257.39" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509_NAME_get_text_by_OBJ (8 samples, 0.04%)</title><rect x="429.4" y="373" width="0.5" height="15.0" fill="rgb(235,223,8)" rx="2" ry="2" />
|
|
<text x="432.40" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (523 samples, 2.66%)</title><rect x="701.6" y="469" width="31.4" height="15.0" fill="rgb(217,140,42)" rx="2" ry="2" />
|
|
<text x="704.64" y="479.5" >[s..</text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (2 samples, 0.01%)</title><rect x="254.3" y="485" width="0.1" height="15.0" fill="rgb(239,199,26)" rx="2" ry="2" />
|
|
<text x="257.27" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="223.1" y="197" width="0.1" height="15.0" fill="rgb(249,36,14)" rx="2" ry="2" />
|
|
<text x="226.12" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (11 samples, 0.06%)</title><rect x="714.0" y="293" width="0.7" height="15.0" fill="rgb(238,154,34)" rx="2" ry="2" />
|
|
<text x="717.00" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="384.0" y="197" width="0.1" height="15.0" fill="rgb(206,67,21)" rx="2" ry="2" />
|
|
<text x="386.97" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (7 samples, 0.04%)</title><rect x="1100.2" y="357" width="0.4" height="15.0" fill="rgb(210,109,37)" rx="2" ry="2" />
|
|
<text x="1103.15" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (92 samples, 0.47%)</title><rect x="921.2" y="389" width="5.5" height="15.0" fill="rgb(214,160,22)" rx="2" ry="2" />
|
|
<text x="924.18" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssh.so] (3 samples, 0.02%)</title><rect x="931.5" y="437" width="0.2" height="15.0" fill="rgb(250,215,15)" rx="2" ry="2" />
|
|
<text x="934.51" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (6 samples, 0.03%)</title><rect x="1085.8" y="341" width="0.4" height="15.0" fill="rgb(209,92,51)" rx="2" ry="2" />
|
|
<text x="1088.81" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (9 samples, 0.05%)</title><rect x="106.1" y="437" width="0.5" height="15.0" fill="rgb(209,146,46)" rx="2" ry="2" />
|
|
<text x="109.09" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (19 samples, 0.10%)</title><rect x="917.8" y="341" width="1.2" height="15.0" fill="rgb(249,193,6)" rx="2" ry="2" />
|
|
<text x="920.82" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (9 samples, 0.05%)</title><rect x="830.4" y="293" width="0.6" height="15.0" fill="rgb(249,96,40)" rx="2" ry="2" />
|
|
<text x="833.44" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (3 samples, 0.02%)</title><rect x="539.4" y="469" width="0.2" height="15.0" fill="rgb(212,2,12)" rx="2" ry="2" />
|
|
<text x="542.41" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (4 samples, 0.02%)</title><rect x="503.3" y="245" width="0.2" height="15.0" fill="rgb(212,84,45)" rx="2" ry="2" />
|
|
<text x="506.28" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (4 samples, 0.02%)</title><rect x="145.2" y="389" width="0.2" height="15.0" fill="rgb(221,8,13)" rx="2" ry="2" />
|
|
<text x="148.16" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="105.4" y="437" width="0.2" height="15.0" fill="rgb(248,125,31)" rx="2" ry="2" />
|
|
<text x="108.37" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (71 samples, 0.36%)</title><rect x="353.2" y="405" width="4.3" height="15.0" fill="rgb(253,222,44)" rx="2" ry="2" />
|
|
<text x="356.24" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.8] (68 samples, 0.35%)</title><rect x="1132.3" y="565" width="4.0" height="15.0" fill="rgb(212,99,54)" rx="2" ry="2" />
|
|
<text x="1135.26" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="1165.1" y="533" width="0.7" height="15.0" fill="rgb(223,179,19)" rx="2" ry="2" />
|
|
<text x="1168.09" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (4 samples, 0.02%)</title><rect x="154.8" y="405" width="0.2" height="15.0" fill="rgb(226,115,16)" rx="2" ry="2" />
|
|
<text x="157.76" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_bsearch_ex_ (5 samples, 0.03%)</title><rect x="167.4" y="181" width="0.3" height="15.0" fill="rgb(209,97,39)" rx="2" ry="2" />
|
|
<text x="170.43" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (23 samples, 0.12%)</title><rect x="353.6" y="341" width="1.4" height="15.0" fill="rgb(252,218,37)" rx="2" ry="2" />
|
|
<text x="356.60" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_dos_metric_update (28 samples, 0.14%)</title><rect x="1084.9" y="421" width="1.7" height="15.0" fill="rgb(205,63,24)" rx="2" ry="2" />
|
|
<text x="1087.91" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (6 samples, 0.03%)</title><rect x="208.1" y="357" width="0.4" height="15.0" fill="rgb(239,196,29)" rx="2" ry="2" />
|
|
<text x="211.12" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="1181.0" y="645" width="0.1" height="15.0" fill="rgb(251,37,40)" rx="2" ry="2" />
|
|
<text x="1184.00" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (3 samples, 0.02%)</title><rect x="481.2" y="325" width="0.2" height="15.0" fill="rgb(227,168,33)" rx="2" ry="2" />
|
|
<text x="484.20" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1141.9" y="421" width="0.3" height="15.0" fill="rgb(205,135,39)" rx="2" ry="2" />
|
|
<text x="1144.93" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (42 samples, 0.21%)</title><rect x="1091.4" y="373" width="2.5" height="15.0" fill="rgb(216,93,42)" rx="2" ry="2" />
|
|
<text x="1094.39" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (43 samples, 0.22%)</title><rect x="760.7" y="405" width="2.6" height="15.0" fill="rgb(241,78,52)" rx="2" ry="2" />
|
|
<text x="763.70" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>DNS_UDP_ENTRY (4 samples, 0.02%)</title><rect x="1044.9" y="421" width="0.2" height="15.0" fill="rgb(209,197,27)" rx="2" ry="2" />
|
|
<text x="1047.88" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (2 samples, 0.01%)</title><rect x="725.6" y="245" width="0.1" height="15.0" fill="rgb(215,113,7)" rx="2" ry="2" />
|
|
<text x="728.59" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (16 samples, 0.08%)</title><rect x="147.4" y="549" width="0.9" height="15.0" fill="rgb(219,166,27)" rx="2" ry="2" />
|
|
<text x="150.38" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="168.6" y="341" width="0.3" height="15.0" fill="rgb(216,17,4)" rx="2" ry="2" />
|
|
<text x="171.63" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="179.1" y="389" width="0.1" height="15.0" fill="rgb(214,131,54)" rx="2" ry="2" />
|
|
<text x="182.07" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="245.6" y="389" width="0.1" height="15.0" fill="rgb(210,95,9)" rx="2" ry="2" />
|
|
<text x="248.63" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="222.6" y="197" width="0.1" height="15.0" fill="rgb(215,181,28)" rx="2" ry="2" />
|
|
<text x="225.58" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1147.7" y="325" width="0.2" height="15.0" fill="rgb(231,209,52)" rx="2" ry="2" />
|
|
<text x="1150.75" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="227.7" y="245" width="0.2" height="15.0" fill="rgb(210,117,25)" rx="2" ry="2" />
|
|
<text x="230.68" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (3 samples, 0.02%)</title><rect x="244.0" y="405" width="0.2" height="15.0" fill="rgb(236,154,14)" rx="2" ry="2" />
|
|
<text x="247.01" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (5 samples, 0.03%)</title><rect x="960.1" y="309" width="0.3" height="15.0" fill="rgb(208,188,45)" rx="2" ry="2" />
|
|
<text x="963.07" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (3 samples, 0.02%)</title><rect x="1089.5" y="277" width="0.2" height="15.0" fill="rgb(238,205,23)" rx="2" ry="2" />
|
|
<text x="1092.53" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (2 samples, 0.01%)</title><rect x="881.6" y="309" width="0.1" height="15.0" fill="rgb(232,150,52)" rx="2" ry="2" />
|
|
<text x="884.57" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (13 samples, 0.07%)</title><rect x="499.1" y="277" width="0.8" height="15.0" fill="rgb(240,26,37)" rx="2" ry="2" />
|
|
<text x="502.14" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_propluginfo_plugid (2 samples, 0.01%)</title><rect x="933.1" y="373" width="0.1" height="15.0" fill="rgb(219,115,19)" rx="2" ry="2" />
|
|
<text x="936.13" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (23 samples, 0.12%)</title><rect x="416.5" y="277" width="1.4" height="15.0" fill="rgb(208,82,37)" rx="2" ry="2" />
|
|
<text x="419.50" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="351.9" y="453" width="0.1" height="15.0" fill="rgb(241,226,34)" rx="2" ry="2" />
|
|
<text x="354.92" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (11 samples, 0.06%)</title><rect x="211.2" y="421" width="0.7" height="15.0" fill="rgb(212,188,54)" rx="2" ry="2" />
|
|
<text x="214.24" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1189.5" y="389" width="0.2" height="15.0" fill="rgb(232,153,24)" rx="2" ry="2" />
|
|
<text x="1192.46" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (3 samples, 0.02%)</title><rect x="1057.5" y="405" width="0.2" height="15.0" fill="rgb(249,76,32)" rx="2" ry="2" />
|
|
<text x="1060.54" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="227.7" y="341" width="0.2" height="15.0" fill="rgb(224,217,48)" rx="2" ry="2" />
|
|
<text x="230.68" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_div (2 samples, 0.01%)</title><rect x="166.9" y="117" width="0.2" height="15.0" fill="rgb(215,55,12)" rx="2" ry="2" />
|
|
<text x="169.95" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (3 samples, 0.02%)</title><rect x="201.0" y="405" width="0.2" height="15.0" fill="rgb(253,155,12)" rx="2" ry="2" />
|
|
<text x="204.04" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (9 samples, 0.05%)</title><rect x="253.2" y="501" width="0.5" height="15.0" fill="rgb(249,135,2)" rx="2" ry="2" />
|
|
<text x="256.19" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (82 samples, 0.42%)</title><rect x="921.8" y="341" width="4.9" height="15.0" fill="rgb(252,128,24)" rx="2" ry="2" />
|
|
<text x="924.78" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_query_one (4 samples, 0.02%)</title><rect x="884.9" y="341" width="0.2" height="15.0" fill="rgb(237,46,17)" rx="2" ry="2" />
|
|
<text x="887.87" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (2 samples, 0.01%)</title><rect x="990.3" y="277" width="0.1" height="15.0" fill="rgb(219,209,2)" rx="2" ry="2" />
|
|
<text x="993.26" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (3 samples, 0.02%)</title><rect x="1141.7" y="485" width="0.2" height="15.0" fill="rgb(231,183,9)" rx="2" ry="2" />
|
|
<text x="1144.75" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="158.2" y="309" width="0.2" height="15.0" fill="rgb(253,201,23)" rx="2" ry="2" />
|
|
<text x="161.24" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1056.6" y="373" width="0.1" height="15.0" fill="rgb(206,118,22)" rx="2" ry="2" />
|
|
<text x="1059.58" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1147.6" y="421" width="0.3" height="15.0" fill="rgb(235,55,2)" rx="2" ry="2" />
|
|
<text x="1150.63" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>int_bn_mod_inverse (3 samples, 0.02%)</title><rect x="166.9" y="149" width="0.2" height="15.0" fill="rgb(231,224,51)" rx="2" ry="2" />
|
|
<text x="169.89" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="153.7" y="437" width="0.2" height="15.0" fill="rgb(231,102,40)" rx="2" ry="2" />
|
|
<text x="156.74" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_up_ (3 samples, 0.02%)</title><rect x="503.5" y="245" width="0.2" height="15.0" fill="rgb(224,6,0)" rx="2" ry="2" />
|
|
<text x="506.52" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (3 samples, 0.02%)</title><rect x="980.7" y="373" width="0.1" height="15.0" fill="rgb(208,223,52)" rx="2" ry="2" />
|
|
<text x="983.66" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (21 samples, 0.11%)</title><rect x="736.3" y="533" width="1.3" height="15.0" fill="rgb(240,97,29)" rx="2" ry="2" />
|
|
<text x="739.33" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (5 samples, 0.03%)</title><rect x="929.6" y="309" width="0.3" height="15.0" fill="rgb(222,92,18)" rx="2" ry="2" />
|
|
<text x="932.58" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_calloc (2 samples, 0.01%)</title><rect x="1018.2" y="501" width="0.1" height="15.0" fill="rgb(213,153,15)" rx="2" ry="2" />
|
|
<text x="1021.17" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (5 samples, 0.03%)</title><rect x="583.0" y="277" width="0.3" height="15.0" fill="rgb(246,89,44)" rx="2" ry="2" />
|
|
<text x="585.99" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (57 samples, 0.29%)</title><rect x="473.5" y="453" width="3.4" height="15.0" fill="rgb(245,196,52)" rx="2" ry="2" />
|
|
<text x="476.51" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_easy_counter_incrby (3 samples, 0.02%)</title><rect x="353.0" y="389" width="0.2" height="15.0" fill="rgb(238,58,13)" rx="2" ry="2" />
|
|
<text x="356.00" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="156.7" y="293" width="0.2" height="15.0" fill="rgb(225,103,1)" rx="2" ry="2" />
|
|
<text x="159.74" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="921.0" y="245" width="0.2" height="15.0" fill="rgb(246,195,30)" rx="2" ry="2" />
|
|
<text x="924.00" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (4 samples, 0.02%)</title><rect x="1142.5" y="469" width="0.2" height="15.0" fill="rgb(227,175,5)" rx="2" ry="2" />
|
|
<text x="1145.47" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (295 samples, 1.50%)</title><rect x="172.6" y="453" width="17.7" height="15.0" fill="rgb(230,104,16)" rx="2" ry="2" />
|
|
<text x="175.59" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="476.9" y="453" width="0.3" height="15.0" fill="rgb(219,104,40)" rx="2" ry="2" />
|
|
<text x="479.93" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="909.3" y="245" width="0.2" height="15.0" fill="rgb(217,188,40)" rx="2" ry="2" />
|
|
<text x="912.30" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (2 samples, 0.01%)</title><rect x="1143.6" y="629" width="0.1" height="15.0" fill="rgb(245,59,37)" rx="2" ry="2" />
|
|
<text x="1146.61" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (10 samples, 0.05%)</title><rect x="989.8" y="325" width="0.6" height="15.0" fill="rgb(232,69,44)" rx="2" ry="2" />
|
|
<text x="992.78" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (11 samples, 0.06%)</title><rect x="1099.9" y="469" width="0.7" height="15.0" fill="rgb(254,87,45)" rx="2" ry="2" />
|
|
<text x="1102.91" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (70 samples, 0.36%)</title><rect x="844.0" y="277" width="4.2" height="15.0" fill="rgb(206,192,42)" rx="2" ry="2" />
|
|
<text x="847.00" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (2 samples, 0.01%)</title><rect x="381.6" y="181" width="0.1" height="15.0" fill="rgb(220,208,21)" rx="2" ry="2" />
|
|
<text x="384.57" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_numa_page (4 samples, 0.02%)</title><rect x="131.1" y="293" width="0.3" height="15.0" fill="rgb(243,37,6)" rx="2" ry="2" />
|
|
<text x="134.11" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (29 samples, 0.15%)</title><rect x="1097.3" y="517" width="1.7" height="15.0" fill="rgb(247,113,34)" rx="2" ry="2" />
|
|
<text x="1100.27" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="145.8" y="373" width="0.1" height="15.0" fill="rgb(231,191,11)" rx="2" ry="2" />
|
|
<text x="148.76" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="229.7" y="389" width="0.1" height="15.0" fill="rgb(219,195,31)" rx="2" ry="2" />
|
|
<text x="232.72" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_del (6 samples, 0.03%)</title><rect x="1045.4" y="501" width="0.4" height="15.0" fill="rgb(253,96,40)" rx="2" ry="2" />
|
|
<text x="1048.42" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (9 samples, 0.05%)</title><rect x="253.2" y="533" width="0.5" height="15.0" fill="rgb(225,155,3)" rx="2" ry="2" />
|
|
<text x="256.19" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (10 samples, 0.05%)</title><rect x="590.2" y="357" width="0.6" height="15.0" fill="rgb(220,195,5)" rx="2" ry="2" />
|
|
<text x="593.25" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (2 samples, 0.01%)</title><rect x="1035.0" y="261" width="0.1" height="15.0" fill="rgb(234,90,25)" rx="2" ry="2" />
|
|
<text x="1037.98" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="166.1" y="165" width="0.1" height="15.0" fill="rgb(216,2,54)" rx="2" ry="2" />
|
|
<text x="169.10" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_mtod (30 samples, 0.15%)</title><rect x="1108.9" y="597" width="1.8" height="15.0" fill="rgb(209,188,14)" rx="2" ry="2" />
|
|
<text x="1111.86" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (4 samples, 0.02%)</title><rect x="211.4" y="373" width="0.3" height="15.0" fill="rgb(228,181,26)" rx="2" ry="2" />
|
|
<text x="214.42" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (95 samples, 0.48%)</title><rect x="782.4" y="309" width="5.7" height="15.0" fill="rgb(205,207,30)" rx="2" ry="2" />
|
|
<text x="785.42" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_min_count (5 samples, 0.03%)</title><rect x="787.0" y="293" width="0.3" height="15.0" fill="rgb(252,47,25)" rx="2" ry="2" />
|
|
<text x="790.04" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_CreateObject (2 samples, 0.01%)</title><rect x="187.0" y="421" width="0.1" height="15.0" fill="rgb(222,66,43)" rx="2" ry="2" />
|
|
<text x="189.99" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (14 samples, 0.07%)</title><rect x="1144.6" y="357" width="0.9" height="15.0" fill="rgb(210,57,17)" rx="2" ry="2" />
|
|
<text x="1147.63" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="223.7" y="341" width="0.1" height="15.0" fill="rgb(254,41,47)" rx="2" ry="2" />
|
|
<text x="226.66" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_polling_inject_context (6 samples, 0.03%)</title><rect x="1094.6" y="533" width="0.4" height="15.0" fill="rgb(217,195,29)" rx="2" ry="2" />
|
|
<text x="1097.63" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (22 samples, 0.11%)</title><rect x="1184.0" y="501" width="1.3" height="15.0" fill="rgb(254,56,20)" rx="2" ry="2" />
|
|
<text x="1187.00" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_num_bits_word (2 samples, 0.01%)</title><rect x="169.3" y="309" width="0.1" height="15.0" fill="rgb(254,211,44)" rx="2" ry="2" />
|
|
<text x="172.29" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_ipv6 (18 samples, 0.09%)</title><rect x="1095.2" y="549" width="1.1" height="15.0" fill="rgb(245,81,44)" rx="2" ry="2" />
|
|
<text x="1098.17" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (14 samples, 0.07%)</title><rect x="145.5" y="485" width="0.9" height="15.0" fill="rgb(214,225,0)" rx="2" ry="2" />
|
|
<text x="148.52" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (4 samples, 0.02%)</title><rect x="219.8" y="405" width="0.3" height="15.0" fill="rgb(245,82,21)" rx="2" ry="2" />
|
|
<text x="222.82" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="222.4" y="165" width="0.1" height="15.0" fill="rgb(208,14,21)" rx="2" ry="2" />
|
|
<text x="225.40" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (12 samples, 0.06%)</title><rect x="152.7" y="501" width="0.7" height="15.0" fill="rgb(228,95,4)" rx="2" ry="2" />
|
|
<text x="155.72" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="208.5" y="389" width="0.2" height="15.0" fill="rgb(247,8,39)" rx="2" ry="2" />
|
|
<text x="211.54" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (11 samples, 0.06%)</title><rect x="1145.9" y="581" width="0.6" height="15.0" fill="rgb(242,125,1)" rx="2" ry="2" />
|
|
<text x="1148.89" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1144.1" y="501" width="0.2" height="15.0" fill="rgb(212,44,50)" rx="2" ry="2" />
|
|
<text x="1147.15" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_and_record_popped_back (2 samples, 0.01%)</title><rect x="788.0" y="293" width="0.1" height="15.0" fill="rgb(254,20,47)" rx="2" ry="2" />
|
|
<text x="791.00" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (3 samples, 0.02%)</title><rect x="1099.3" y="373" width="0.2" height="15.0" fill="rgb(239,110,47)" rx="2" ry="2" />
|
|
<text x="1102.31" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (81 samples, 0.41%)</title><rect x="55.4" y="629" width="4.8" height="15.0" fill="rgb(231,192,33)" rx="2" ry="2" />
|
|
<text x="58.37" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mix16B (6 samples, 0.03%)</title><rect x="847.4" y="229" width="0.4" height="15.0" fill="rgb(213,224,32)" rx="2" ry="2" />
|
|
<text x="850.42" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get (24 samples, 0.12%)</title><rect x="771.0" y="405" width="1.5" height="15.0" fill="rgb(209,167,22)" rx="2" ry="2" />
|
|
<text x="774.02" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (17 samples, 0.09%)</title><rect x="1140.0" y="661" width="1.0" height="15.0" fill="rgb(237,84,7)" rx="2" ry="2" />
|
|
<text x="1143.01" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log_level_enabled@plt (2 samples, 0.01%)</title><rect x="1105.3" y="565" width="0.1" height="15.0" fill="rgb(244,196,40)" rx="2" ry="2" />
|
|
<text x="1108.32" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (8 samples, 0.04%)</title><rect x="578.0" y="373" width="0.5" height="15.0" fill="rgb(205,110,5)" rx="2" ry="2" />
|
|
<text x="581.00" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (44 samples, 0.22%)</title><rect x="1005.7" y="325" width="2.7" height="15.0" fill="rgb(240,113,11)" rx="2" ry="2" />
|
|
<text x="1008.75" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_stream_scan (4 samples, 0.02%)</title><rect x="925.2" y="213" width="0.2" height="15.0" fill="rgb(226,136,24)" rx="2" ry="2" />
|
|
<text x="928.20" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (6 samples, 0.03%)</title><rect x="775.3" y="309" width="0.3" height="15.0" fill="rgb(244,3,32)" rx="2" ry="2" />
|
|
<text x="778.28" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (12 samples, 0.06%)</title><rect x="355.0" y="325" width="0.7" height="15.0" fill="rgb(227,147,7)" rx="2" ry="2" />
|
|
<text x="357.98" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_session_exdata_free (5 samples, 0.03%)</title><rect x="522.4" y="453" width="0.3" height="15.0" fill="rgb(231,3,4)" rx="2" ry="2" />
|
|
<text x="525.43" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (6 samples, 0.03%)</title><rect x="834.3" y="261" width="0.4" height="15.0" fill="rgb(244,155,48)" rx="2" ry="2" />
|
|
<text x="837.34" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="254.4" y="517" width="0.1" height="15.0" fill="rgb(219,53,13)" rx="2" ry="2" />
|
|
<text x="257.39" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_mult64to128 (3 samples, 0.02%)</title><rect x="847.6" y="197" width="0.2" height="15.0" fill="rgb(211,32,53)" rx="2" ry="2" />
|
|
<text x="850.60" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Rb_tree_increment (2 samples, 0.01%)</title><rect x="560.2" y="373" width="0.2" height="15.0" fill="rgb(251,100,24)" rx="2" ry="2" />
|
|
<text x="563.24" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (4 samples, 0.02%)</title><rect x="168.6" y="309" width="0.3" height="15.0" fill="rgb(220,159,31)" rx="2" ry="2" />
|
|
<text x="171.63" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (10 samples, 0.05%)</title><rect x="989.8" y="293" width="0.6" height="15.0" fill="rgb(229,82,19)" rx="2" ry="2" />
|
|
<text x="992.78" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (3 samples, 0.02%)</title><rect x="219.3" y="549" width="0.2" height="15.0" fill="rgb(233,111,51)" rx="2" ry="2" />
|
|
<text x="222.28" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (11 samples, 0.06%)</title><rect x="255.3" y="645" width="0.7" height="15.0" fill="rgb(252,165,54)" rx="2" ry="2" />
|
|
<text x="258.29" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>docanalyze_parsestream (15 samples, 0.08%)</title><rect x="384.5" y="325" width="0.9" height="15.0" fill="rgb(235,205,41)" rx="2" ry="2" />
|
|
<text x="387.51" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (2 samples, 0.01%)</title><rect x="1097.6" y="261" width="0.2" height="15.0" fill="rgb(238,4,8)" rx="2" ry="2" />
|
|
<text x="1100.63" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1189.9" y="613" width="0.1" height="15.0" fill="rgb(218,14,25)" rx="2" ry="2" />
|
|
<text x="1192.88" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (9 samples, 0.05%)</title><rect x="165.1" y="213" width="0.6" height="15.0" fill="rgb(236,170,53)" rx="2" ry="2" />
|
|
<text x="168.14" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="214.4" y="373" width="0.2" height="15.0" fill="rgb(252,41,19)" rx="2" ry="2" />
|
|
<text x="217.42" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_resetHttpStream (5 samples, 0.03%)</title><rect x="422.1" y="421" width="0.3" height="15.0" fill="rgb(209,66,30)" rx="2" ry="2" />
|
|
<text x="425.14" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (3 samples, 0.02%)</title><rect x="884.9" y="309" width="0.2" height="15.0" fill="rgb(207,141,42)" rx="2" ry="2" />
|
|
<text x="887.93" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_new (4 samples, 0.02%)</title><rect x="161.6" y="277" width="0.2" height="15.0" fill="rgb(248,176,29)" rx="2" ry="2" />
|
|
<text x="164.60" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1189.5" y="373" width="0.2" height="15.0" fill="rgb(223,74,39)" rx="2" ry="2" />
|
|
<text x="1192.46" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (81 samples, 0.41%)</title><rect x="27.6" y="565" width="4.8" height="15.0" fill="rgb(252,154,11)" rx="2" ry="2" />
|
|
<text x="30.59" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="189.7" y="261" width="0.1" height="15.0" fill="rgb(239,20,54)" rx="2" ry="2" />
|
|
<text x="192.69" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="910.5" y="453" width="0.1" height="15.0" fill="rgb(222,39,17)" rx="2" ry="2" />
|
|
<text x="913.50" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (33 samples, 0.17%)</title><rect x="102.4" y="613" width="1.9" height="15.0" fill="rgb(208,169,30)" rx="2" ry="2" />
|
|
<text x="105.37" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (43 samples, 0.22%)</title><rect x="246.1" y="581" width="2.6" height="15.0" fill="rgb(241,221,54)" rx="2" ry="2" />
|
|
<text x="249.11" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (25 samples, 0.13%)</title><rect x="166.2" y="229" width="1.5" height="15.0" fill="rgb(236,38,33)" rx="2" ry="2" />
|
|
<text x="169.23" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (5 samples, 0.03%)</title><rect x="1158.5" y="453" width="0.3" height="15.0" fill="rgb(214,60,11)" rx="2" ry="2" />
|
|
<text x="1161.49" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="253.0" y="341" width="0.1" height="15.0" fill="rgb(207,117,0)" rx="2" ry="2" />
|
|
<text x="256.01" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>file_printf (2 samples, 0.01%)</title><rect x="1184.1" y="213" width="0.1" height="15.0" fill="rgb(222,208,23)" rx="2" ry="2" />
|
|
<text x="1187.06" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (8 samples, 0.04%)</title><rect x="510.7" y="309" width="0.5" height="15.0" fill="rgb(240,203,42)" rx="2" ry="2" />
|
|
<text x="513.72" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (4 samples, 0.02%)</title><rect x="131.5" y="405" width="0.2" height="15.0" fill="rgb(243,187,38)" rx="2" ry="2" />
|
|
<text x="134.48" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (70 samples, 0.36%)</title><rect x="379.9" y="373" width="4.2" height="15.0" fill="rgb(245,132,29)" rx="2" ry="2" />
|
|
<text x="382.89" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (7 samples, 0.04%)</title><rect x="352.4" y="437" width="0.4" height="15.0" fill="rgb(229,207,43)" rx="2" ry="2" />
|
|
<text x="355.40" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (11 samples, 0.06%)</title><rect x="933.5" y="421" width="0.6" height="15.0" fill="rgb(218,23,17)" rx="2" ry="2" />
|
|
<text x="936.49" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (22 samples, 0.11%)</title><rect x="724.4" y="293" width="1.3" height="15.0" fill="rgb(252,36,16)" rx="2" ry="2" />
|
|
<text x="727.39" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (589 samples, 3.00%)</title><rect x="1046.4" y="533" width="35.4" height="15.0" fill="rgb(218,160,3)" rx="2" ry="2" />
|
|
<text x="1049.44" y="543.5" >st..</text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (52 samples, 0.26%)</title><rect x="94.5" y="629" width="3.1" height="15.0" fill="rgb(242,93,36)" rx="2" ry="2" />
|
|
<text x="97.50" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (11 samples, 0.06%)</title><rect x="574.8" y="325" width="0.6" height="15.0" fill="rgb(237,101,4)" rx="2" ry="2" />
|
|
<text x="577.76" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_get_type (2 samples, 0.01%)</title><rect x="953.0" y="341" width="0.1" height="15.0" fill="rgb(234,165,12)" rx="2" ry="2" />
|
|
<text x="955.99" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (3 samples, 0.02%)</title><rect x="472.8" y="469" width="0.2" height="15.0" fill="rgb(229,132,27)" rx="2" ry="2" />
|
|
<text x="475.79" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mix16B (2 samples, 0.01%)</title><rect x="355.2" y="229" width="0.1" height="15.0" fill="rgb(248,8,32)" rx="2" ry="2" />
|
|
<text x="358.22" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (7 samples, 0.04%)</title><rect x="1150.0" y="645" width="0.4" height="15.0" fill="rgb(241,95,48)" rx="2" ry="2" />
|
|
<text x="1152.97" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (35 samples, 0.18%)</title><rect x="414.3" y="341" width="2.1" height="15.0" fill="rgb(229,227,54)" rx="2" ry="2" />
|
|
<text x="417.34" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="374.8" y="277" width="0.1" height="15.0" fill="rgb(230,47,13)" rx="2" ry="2" />
|
|
<text x="377.79" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (74 samples, 0.38%)</title><rect x="248.7" y="533" width="4.4" height="15.0" fill="rgb(237,229,18)" rx="2" ry="2" />
|
|
<text x="251.69" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (652 samples, 3.32%)</title><rect x="482.6" y="389" width="39.2" height="15.0" fill="rgb(222,165,16)" rx="2" ry="2" />
|
|
<text x="485.64" y="399.5" >tra..</text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (19 samples, 0.10%)</title><rect x="917.8" y="357" width="1.2" height="15.0" fill="rgb(243,80,54)" rx="2" ry="2" />
|
|
<text x="920.82" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (3 samples, 0.02%)</title><rect x="1100.2" y="309" width="0.2" height="15.0" fill="rgb(242,117,46)" rx="2" ry="2" />
|
|
<text x="1103.21" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="909.3" y="261" width="0.2" height="15.0" fill="rgb(238,10,53)" rx="2" ry="2" />
|
|
<text x="912.30" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="249.7" y="293" width="0.1" height="15.0" fill="rgb(205,112,37)" rx="2" ry="2" />
|
|
<text x="252.71" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="221.9" y="261" width="0.2" height="15.0" fill="rgb(223,201,29)" rx="2" ry="2" />
|
|
<text x="224.86" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (21 samples, 0.11%)</title><rect x="957.2" y="261" width="1.3" height="15.0" fill="rgb(207,71,39)" rx="2" ry="2" />
|
|
<text x="960.19" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1095.1" y="437" width="0.1" height="15.0" fill="rgb(220,218,13)" rx="2" ry="2" />
|
|
<text x="1098.05" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (5 samples, 0.03%)</title><rect x="503.2" y="261" width="0.3" height="15.0" fill="rgb(242,43,27)" rx="2" ry="2" />
|
|
<text x="506.22" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (5 samples, 0.03%)</title><rect x="770.7" y="389" width="0.3" height="15.0" fill="rgb(216,68,35)" rx="2" ry="2" />
|
|
<text x="773.72" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_buflen (4 samples, 0.02%)</title><rect x="1108.3" y="597" width="0.2" height="15.0" fill="rgb(232,26,53)" rx="2" ry="2" />
|
|
<text x="1111.26" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (290 samples, 1.48%)</title><rect x="1150.6" y="613" width="17.4" height="15.0" fill="rgb(213,4,15)" rx="2" ry="2" />
|
|
<text x="1153.63" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (16 samples, 0.08%)</title><rect x="21.7" y="549" width="1.0" height="15.0" fill="rgb(254,113,13)" rx="2" ry="2" />
|
|
<text x="24.70" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (8 samples, 0.04%)</title><rect x="991.8" y="357" width="0.5" height="15.0" fill="rgb(243,156,33)" rx="2" ry="2" />
|
|
<text x="994.82" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_update (4 samples, 0.02%)</title><rect x="968.3" y="501" width="0.2" height="15.0" fill="rgb(227,72,52)" rx="2" ry="2" />
|
|
<text x="971.30" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (13 samples, 0.07%)</title><rect x="725.7" y="309" width="0.8" height="15.0" fill="rgb(206,72,30)" rx="2" ry="2" />
|
|
<text x="728.71" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (5 samples, 0.03%)</title><rect x="908.2" y="501" width="0.3" height="15.0" fill="rgb(212,136,17)" rx="2" ry="2" />
|
|
<text x="911.22" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (15 samples, 0.08%)</title><rect x="505.5" y="309" width="0.9" height="15.0" fill="rgb(252,130,24)" rx="2" ry="2" />
|
|
<text x="508.50" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (4 samples, 0.02%)</title><rect x="1081.5" y="485" width="0.3" height="15.0" fill="rgb(228,120,35)" rx="2" ry="2" />
|
|
<text x="1084.55" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (12 samples, 0.06%)</title><rect x="950.2" y="421" width="0.8" height="15.0" fill="rgb(246,41,15)" rx="2" ry="2" />
|
|
<text x="953.23" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (364 samples, 1.85%)</title><rect x="915.7" y="469" width="21.8" height="15.0" fill="rgb(218,168,36)" rx="2" ry="2" />
|
|
<text x="918.66" y="479.5" >p..</text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (2 samples, 0.01%)</title><rect x="881.2" y="389" width="0.1" height="15.0" fill="rgb(244,85,28)" rx="2" ry="2" />
|
|
<text x="884.21" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="422.9" y="325" width="0.4" height="15.0" fill="rgb(221,90,11)" rx="2" ry="2" />
|
|
<text x="425.86" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (2 samples, 0.01%)</title><rect x="255.1" y="549" width="0.1" height="15.0" fill="rgb(222,66,45)" rx="2" ry="2" />
|
|
<text x="258.11" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="106.0" y="357" width="0.1" height="15.0" fill="rgb(242,158,26)" rx="2" ry="2" />
|
|
<text x="108.97" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (3 samples, 0.02%)</title><rect x="429.0" y="373" width="0.2" height="15.0" fill="rgb(244,52,50)" rx="2" ry="2" />
|
|
<text x="431.98" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_create_pool (6 samples, 0.03%)</title><rect x="189.9" y="421" width="0.4" height="15.0" fill="rgb(251,208,47)" rx="2" ry="2" />
|
|
<text x="192.93" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (4 samples, 0.02%)</title><rect x="254.0" y="549" width="0.3" height="15.0" fill="rgb(214,9,18)" rx="2" ry="2" />
|
|
<text x="257.03" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_direction (10 samples, 0.05%)</title><rect x="54.8" y="613" width="0.6" height="15.0" fill="rgb(227,49,46)" rx="2" ry="2" />
|
|
<text x="57.77" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (10 samples, 0.05%)</title><rect x="153.9" y="501" width="0.6" height="15.0" fill="rgb(218,43,23)" rx="2" ry="2" />
|
|
<text x="156.86" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (2 samples, 0.01%)</title><rect x="986.7" y="309" width="0.1" height="15.0" fill="rgb(229,131,32)" rx="2" ry="2" />
|
|
<text x="989.66" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="1096.7" y="517" width="0.3" height="15.0" fill="rgb(220,57,24)" rx="2" ry="2" />
|
|
<text x="1099.73" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (15 samples, 0.08%)</title><rect x="247.3" y="389" width="0.9" height="15.0" fill="rgb(209,101,29)" rx="2" ry="2" />
|
|
<text x="250.31" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (5 samples, 0.03%)</title><rect x="1073.4" y="261" width="0.3" height="15.0" fill="rgb(225,68,16)" rx="2" ry="2" />
|
|
<text x="1076.45" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_string_embed_free (2 samples, 0.01%)</title><rect x="169.2" y="293" width="0.1" height="15.0" fill="rgb(211,157,33)" rx="2" ry="2" />
|
|
<text x="172.17" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_dp_trace_measurements_can_emit@plt (6 samples, 0.03%)</title><rect x="1139.4" y="565" width="0.4" height="15.0" fill="rgb(254,106,40)" rx="2" ry="2" />
|
|
<text x="1142.41" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sip.so] (12 samples, 0.06%)</title><rect x="745.0" y="469" width="0.7" height="15.0" fill="rgb(207,182,23)" rx="2" ry="2" />
|
|
<text x="747.97" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_group (8 samples, 0.04%)</title><rect x="376.1" y="197" width="0.5" height="15.0" fill="rgb(208,91,28)" rx="2" ry="2" />
|
|
<text x="379.11" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (5 samples, 0.03%)</title><rect x="583.0" y="293" width="0.3" height="15.0" fill="rgb(210,175,21)" rx="2" ry="2" />
|
|
<text x="585.99" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (46 samples, 0.23%)</title><rect x="461.8" y="501" width="2.7" height="15.0" fill="rgb(215,171,45)" rx="2" ry="2" />
|
|
<text x="464.75" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH128_mix32B (6 samples, 0.03%)</title><rect x="632.2" y="245" width="0.4" height="15.0" fill="rgb(244,189,34)" rx="2" ry="2" />
|
|
<text x="635.20" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (21 samples, 0.11%)</title><rect x="254.0" y="645" width="1.3" height="15.0" fill="rgb(205,14,41)" rx="2" ry="2" />
|
|
<text x="257.03" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (24 samples, 0.12%)</title><rect x="158.2" y="405" width="1.4" height="15.0" fill="rgb(242,138,37)" rx="2" ry="2" />
|
|
<text x="161.18" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>find_or_add_metric (4 samples, 0.02%)</title><rect x="852.8" y="357" width="0.3" height="15.0" fill="rgb(243,49,53)" rx="2" ry="2" />
|
|
<text x="855.82" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="219.3" y="293" width="0.2" height="15.0" fill="rgb(217,198,10)" rx="2" ry="2" />
|
|
<text x="222.28" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="920.8" y="341" width="0.1" height="15.0" fill="rgb(231,188,45)" rx="2" ry="2" />
|
|
<text x="923.76" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="414.0" y="325" width="0.3" height="15.0" fill="rgb(232,89,6)" rx="2" ry="2" />
|
|
<text x="416.98" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (2 samples, 0.01%)</title><rect x="223.7" y="309" width="0.1" height="15.0" fill="rgb(220,170,36)" rx="2" ry="2" />
|
|
<text x="226.66" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (17 samples, 0.09%)</title><rect x="488.6" y="277" width="1.1" height="15.0" fill="rgb(205,41,48)" rx="2" ry="2" />
|
|
<text x="491.64" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (5 samples, 0.03%)</title><rect x="558.3" y="405" width="0.3" height="15.0" fill="rgb(217,228,19)" rx="2" ry="2" />
|
|
<text x="561.26" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stringA_to_stringa (3 samples, 0.02%)</title><rect x="418.0" y="373" width="0.2" height="15.0" fill="rgb(234,29,28)" rx="2" ry="2" />
|
|
<text x="421.00" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (33 samples, 0.17%)</title><rect x="214.6" y="549" width="2.0" height="15.0" fill="rgb(245,33,33)" rx="2" ry="2" />
|
|
<text x="217.60" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_min_count (5 samples, 0.03%)</title><rect x="1089.2" y="309" width="0.3" height="15.0" fill="rgb(244,207,9)" rx="2" ry="2" />
|
|
<text x="1092.17" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (3 samples, 0.02%)</title><rect x="253.9" y="469" width="0.1" height="15.0" fill="rgb(238,104,13)" rx="2" ry="2" />
|
|
<text x="256.85" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="930.2" y="325" width="0.3" height="15.0" fill="rgb(213,37,50)" rx="2" ry="2" />
|
|
<text x="933.25" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (3 samples, 0.02%)</title><rect x="974.7" y="469" width="0.1" height="15.0" fill="rgb(233,99,41)" rx="2" ry="2" />
|
|
<text x="977.66" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (3 samples, 0.02%)</title><rect x="558.4" y="389" width="0.2" height="15.0" fill="rgb(221,29,53)" rx="2" ry="2" />
|
|
<text x="561.38" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (5 samples, 0.03%)</title><rect x="722.3" y="293" width="0.3" height="15.0" fill="rgb(222,175,42)" rx="2" ry="2" />
|
|
<text x="725.29" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1056.6" y="389" width="0.1" height="15.0" fill="rgb(212,94,0)" rx="2" ry="2" />
|
|
<text x="1059.58" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_string_embed_free (4 samples, 0.02%)</title><rect x="109.6" y="277" width="0.3" height="15.0" fill="rgb(216,139,54)" rx="2" ry="2" />
|
|
<text x="112.63" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (9 samples, 0.05%)</title><rect x="427.9" y="357" width="0.5" height="15.0" fill="rgb(209,206,4)" rx="2" ry="2" />
|
|
<text x="430.90" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (2 samples, 0.01%)</title><rect x="881.1" y="373" width="0.1" height="15.0" fill="rgb(229,209,22)" rx="2" ry="2" />
|
|
<text x="884.09" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (92 samples, 0.47%)</title><rect x="352.1" y="501" width="5.5" height="15.0" fill="rgb(234,8,39)" rx="2" ry="2" />
|
|
<text x="355.10" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1189.5" y="357" width="0.2" height="15.0" fill="rgb(236,141,50)" rx="2" ry="2" />
|
|
<text x="1192.46" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (3 samples, 0.02%)</title><rect x="1171.8" y="453" width="0.1" height="15.0" fill="rgb(234,190,39)" rx="2" ry="2" />
|
|
<text x="1174.75" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (565 samples, 2.87%)</title><rect x="219.3" y="613" width="33.9" height="15.0" fill="rgb(253,161,45)" rx="2" ry="2" />
|
|
<text x="222.28" y="623.5" >ip..</text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (2 samples, 0.01%)</title><rect x="382.9" y="261" width="0.2" height="15.0" fill="rgb(232,172,32)" rx="2" ry="2" />
|
|
<text x="385.95" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="377.7" y="165" width="0.2" height="15.0" fill="rgb(228,171,38)" rx="2" ry="2" />
|
|
<text x="380.73" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1147.3" y="533" width="0.3" height="15.0" fill="rgb(221,47,16)" rx="2" ry="2" />
|
|
<text x="1150.33" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (5 samples, 0.03%)</title><rect x="1143.8" y="565" width="0.3" height="15.0" fill="rgb(215,93,51)" rx="2" ry="2" />
|
|
<text x="1146.79" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>packet_get_direction (2 samples, 0.01%)</title><rect x="143.4" y="421" width="0.1" height="15.0" fill="rgb(227,11,33)" rx="2" ry="2" />
|
|
<text x="146.42" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (12 samples, 0.06%)</title><rect x="168.6" y="421" width="0.7" height="15.0" fill="rgb(213,172,37)" rx="2" ry="2" />
|
|
<text x="171.57" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="254.3" y="581" width="0.1" height="15.0" fill="rgb(239,154,4)" rx="2" ry="2" />
|
|
<text x="257.27" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (2 samples, 0.01%)</title><rect x="1086.4" y="357" width="0.1" height="15.0" fill="rgb(236,101,14)" rx="2" ry="2" />
|
|
<text x="1089.41" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="1183.3" y="565" width="0.7" height="15.0" fill="rgb(226,222,31)" rx="2" ry="2" />
|
|
<text x="1186.28" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ftp.so] (8 samples, 0.04%)</title><rect x="435.2" y="421" width="0.5" height="15.0" fill="rgb(231,66,46)" rx="2" ry="2" />
|
|
<text x="438.22" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1148.2" y="533" width="0.1" height="15.0" fill="rgb(219,80,42)" rx="2" ry="2" />
|
|
<text x="1151.17" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (92 samples, 0.47%)</title><rect x="42.2" y="597" width="5.5" height="15.0" fill="rgb(246,84,52)" rx="2" ry="2" />
|
|
<text x="45.17" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (20 samples, 0.10%)</title><rect x="785.8" y="293" width="1.2" height="15.0" fill="rgb(244,184,37)" rx="2" ry="2" />
|
|
<text x="788.84" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (19 samples, 0.10%)</title><rect x="188.3" y="405" width="1.2" height="15.0" fill="rgb(214,49,49)" rx="2" ry="2" />
|
|
<text x="191.31" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="255.1" y="517" width="0.1" height="15.0" fill="rgb(236,144,3)" rx="2" ry="2" />
|
|
<text x="258.11" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___snprintf (5 samples, 0.03%)</title><rect x="1189.2" y="405" width="0.3" height="15.0" fill="rgb(238,10,36)" rx="2" ry="2" />
|
|
<text x="1192.16" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.07%)</title><rect x="1178.5" y="405" width="0.8" height="15.0" fill="rgb(254,155,52)" rx="2" ry="2" />
|
|
<text x="1181.48" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="106.0" y="341" width="0.1" height="15.0" fill="rgb(242,186,50)" rx="2" ry="2" />
|
|
<text x="108.97" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_0to16_128b (2 samples, 0.01%)</title><rect x="961.2" y="261" width="0.1" height="15.0" fill="rgb(207,211,2)" rx="2" ry="2" />
|
|
<text x="964.21" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (21 samples, 0.11%)</title><rect x="159.6" y="405" width="1.3" height="15.0" fill="rgb(245,166,50)" rx="2" ry="2" />
|
|
<text x="162.62" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509V3_EXT_d2i (3 samples, 0.02%)</title><rect x="224.1" y="421" width="0.2" height="15.0" fill="rgb(209,210,18)" rx="2" ry="2" />
|
|
<text x="227.08" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (7 samples, 0.04%)</title><rect x="1185.9" y="373" width="0.4" height="15.0" fill="rgb(207,169,13)" rx="2" ry="2" />
|
|
<text x="1188.86" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (15 samples, 0.08%)</title><rect x="1090.5" y="357" width="0.9" height="15.0" fill="rgb(246,157,51)" rx="2" ry="2" />
|
|
<text x="1093.49" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (295 samples, 1.50%)</title><rect x="172.6" y="533" width="17.7" height="15.0" fill="rgb(243,114,17)" rx="2" ry="2" />
|
|
<text x="175.59" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (4 samples, 0.02%)</title><rect x="988.6" y="389" width="0.2" height="15.0" fill="rgb(226,72,44)" rx="2" ry="2" />
|
|
<text x="991.58" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (9 samples, 0.05%)</title><rect x="162.0" y="245" width="0.5" height="15.0" fill="rgb(236,208,17)" rx="2" ry="2" />
|
|
<text x="164.96" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (277 samples, 1.41%)</title><rect x="190.3" y="501" width="16.6" height="15.0" fill="rgb(247,224,11)" rx="2" ry="2" />
|
|
<text x="193.29" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (13 samples, 0.07%)</title><rect x="1041.1" y="277" width="0.8" height="15.0" fill="rgb(210,54,5)" rx="2" ry="2" />
|
|
<text x="1044.10" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (2 samples, 0.01%)</title><rect x="385.6" y="325" width="0.1" height="15.0" fill="rgb(238,70,6)" rx="2" ry="2" />
|
|
<text x="388.59" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (3 samples, 0.02%)</title><rect x="949.7" y="485" width="0.2" height="15.0" fill="rgb(238,163,0)" rx="2" ry="2" />
|
|
<text x="952.69" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="144.2" y="421" width="0.2" height="15.0" fill="rgb(233,72,34)" rx="2" ry="2" />
|
|
<text x="147.20" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="1155.5" y="325" width="0.7" height="15.0" fill="rgb(236,172,8)" rx="2" ry="2" />
|
|
<text x="1158.49" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (486 samples, 2.47%)</title><rect x="1051.4" y="469" width="29.1" height="15.0" fill="rgb(215,62,0)" rx="2" ry="2" />
|
|
<text x="1054.36" y="479.5" >[s..</text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (6 samples, 0.03%)</title><rect x="583.5" y="277" width="0.3" height="15.0" fill="rgb(240,124,17)" rx="2" ry="2" />
|
|
<text x="586.47" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="1054.6" y="389" width="0.7" height="15.0" fill="rgb(230,17,50)" rx="2" ry="2" />
|
|
<text x="1057.60" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (45 samples, 0.23%)</title><rect x="216.6" y="581" width="2.7" height="15.0" fill="rgb(216,3,35)" rx="2" ry="2" />
|
|
<text x="219.58" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (11 samples, 0.06%)</title><rect x="36.4" y="597" width="0.7" height="15.0" fill="rgb(231,124,36)" rx="2" ry="2" />
|
|
<text x="39.41" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (9 samples, 0.05%)</title><rect x="162.0" y="213" width="0.5" height="15.0" fill="rgb(241,54,40)" rx="2" ry="2" />
|
|
<text x="164.96" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="254.4" y="453" width="0.1" height="15.0" fill="rgb(211,72,39)" rx="2" ry="2" />
|
|
<text x="257.39" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="155.5" y="421" width="0.2" height="15.0" fill="rgb(214,32,33)" rx="2" ry="2" />
|
|
<text x="158.54" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (2 samples, 0.01%)</title><rect x="106.0" y="405" width="0.1" height="15.0" fill="rgb(245,220,30)" rx="2" ry="2" />
|
|
<text x="108.97" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (13 samples, 0.07%)</title><rect x="1141.9" y="501" width="0.8" height="15.0" fill="rgb(228,158,35)" rx="2" ry="2" />
|
|
<text x="1144.93" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (2 samples, 0.01%)</title><rect x="911.9" y="501" width="0.1" height="15.0" fill="rgb(236,124,45)" rx="2" ry="2" />
|
|
<text x="914.88" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (2 samples, 0.01%)</title><rect x="890.2" y="453" width="0.1" height="15.0" fill="rgb(205,172,36)" rx="2" ry="2" />
|
|
<text x="893.15" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___snprintf (2 samples, 0.01%)</title><rect x="1148.3" y="437" width="0.2" height="15.0" fill="rgb(206,144,10)" rx="2" ry="2" />
|
|
<text x="1151.35" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (3 samples, 0.02%)</title><rect x="1177.6" y="549" width="0.2" height="15.0" fill="rgb(208,152,16)" rx="2" ry="2" />
|
|
<text x="1180.64" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="105.4" y="469" width="0.2" height="15.0" fill="rgb(237,218,0)" rx="2" ry="2" />
|
|
<text x="108.37" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (4 samples, 0.02%)</title><rect x="1176.3" y="533" width="0.3" height="15.0" fill="rgb(234,51,49)" rx="2" ry="2" />
|
|
<text x="1179.32" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (301 samples, 1.53%)</title><rect x="16.6" y="597" width="18.1" height="15.0" fill="rgb(224,178,43)" rx="2" ry="2" />
|
|
<text x="19.60" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (3 samples, 0.02%)</title><rect x="1184.0" y="437" width="0.2" height="15.0" fill="rgb(214,152,2)" rx="2" ry="2" />
|
|
<text x="1187.00" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (8 samples, 0.04%)</title><rect x="1188.7" y="565" width="0.5" height="15.0" fill="rgb(213,113,52)" rx="2" ry="2" />
|
|
<text x="1191.68" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (6 samples, 0.03%)</title><rect x="223.2" y="229" width="0.4" height="15.0" fill="rgb(214,206,8)" rx="2" ry="2" />
|
|
<text x="226.24" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="523.6" y="405" width="0.1" height="15.0" fill="rgb(226,192,40)" rx="2" ry="2" />
|
|
<text x="526.57" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="159.9" y="277" width="0.1" height="15.0" fill="rgb(225,24,42)" rx="2" ry="2" />
|
|
<text x="162.86" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (3 samples, 0.02%)</title><rect x="153.4" y="613" width="0.2" height="15.0" fill="rgb(208,224,13)" rx="2" ry="2" />
|
|
<text x="156.44" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (4 samples, 0.02%)</title><rect x="881.0" y="389" width="0.2" height="15.0" fill="rgb(222,125,1)" rx="2" ry="2" />
|
|
<text x="883.97" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (11 samples, 0.06%)</title><rect x="581.1" y="261" width="0.6" height="15.0" fill="rgb(206,46,24)" rx="2" ry="2" />
|
|
<text x="584.06" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mix16B (3 samples, 0.02%)</title><rect x="961.7" y="229" width="0.2" height="15.0" fill="rgb(206,198,35)" rx="2" ry="2" />
|
|
<text x="964.69" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libosfp.so.1.3] (22 samples, 0.11%)</title><rect x="239.2" y="421" width="1.3" height="15.0" fill="rgb(224,196,0)" rx="2" ry="2" />
|
|
<text x="242.21" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="157.9" y="277" width="0.2" height="15.0" fill="rgb(216,66,50)" rx="2" ry="2" />
|
|
<text x="160.94" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1142.2" y="277" width="0.1" height="15.0" fill="rgb(235,187,52)" rx="2" ry="2" />
|
|
<text x="1145.23" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="156.7" y="421" width="0.2" height="15.0" fill="rgb(241,178,54)" rx="2" ry="2" />
|
|
<text x="159.74" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH128_mix32B (4 samples, 0.02%)</title><rect x="776.1" y="245" width="0.2" height="15.0" fill="rgb(234,224,36)" rx="2" ry="2" />
|
|
<text x="779.06" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (1,973 samples, 10.04%)</title><rect x="543.9" y="453" width="118.4" height="15.0" fill="rgb(225,45,38)" rx="2" ry="2" />
|
|
<text x="546.85" y="463.5" >[stellar_on_sa..</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="930.3" y="293" width="0.2" height="15.0" fill="rgb(249,218,36)" rx="2" ry="2" />
|
|
<text x="933.31" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (94 samples, 0.48%)</title><rect x="219.8" y="517" width="5.6" height="15.0" fill="rgb(209,59,14)" rx="2" ry="2" />
|
|
<text x="222.76" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_recogniseGeneralEntityRegion (15 samples, 0.08%)</title><rect x="411.9" y="357" width="0.9" height="15.0" fill="rgb(232,135,34)" rx="2" ry="2" />
|
|
<text x="414.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (29 samples, 0.15%)</title><rect x="221.9" y="293" width="1.7" height="15.0" fill="rgb(235,78,29)" rx="2" ry="2" />
|
|
<text x="224.86" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (45 samples, 0.23%)</title><rect x="375.4" y="277" width="2.7" height="15.0" fill="rgb(246,30,50)" rx="2" ry="2" />
|
|
<text x="378.45" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="1147.6" y="629" width="0.6" height="15.0" fill="rgb(206,4,11)" rx="2" ry="2" />
|
|
<text x="1150.57" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (12 samples, 0.06%)</title><rect x="988.8" y="389" width="0.7" height="15.0" fill="rgb(218,24,51)" rx="2" ry="2" />
|
|
<text x="991.82" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (3 samples, 0.02%)</title><rect x="1003.0" y="261" width="0.2" height="15.0" fill="rgb(232,57,28)" rx="2" ry="2" />
|
|
<text x="1006.05" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>raw_ip_frag_list_stream_detach (2 samples, 0.01%)</title><rect x="970.9" y="517" width="0.2" height="15.0" fill="rgb(219,46,6)" rx="2" ry="2" />
|
|
<text x="973.94" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (13 samples, 0.07%)</title><rect x="170.6" y="421" width="0.8" height="15.0" fill="rgb(238,199,20)" rx="2" ry="2" />
|
|
<text x="173.61" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (16 samples, 0.08%)</title><rect x="910.6" y="453" width="1.0" height="15.0" fill="rgb(218,84,26)" rx="2" ry="2" />
|
|
<text x="913.62" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="212.5" y="389" width="0.2" height="15.0" fill="rgb(227,54,22)" rx="2" ry="2" />
|
|
<text x="215.50" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_dir_link_to_human (3 samples, 0.02%)</title><rect x="55.0" y="597" width="0.1" height="15.0" fill="rgb(239,223,7)" rx="2" ry="2" />
|
|
<text x="57.95" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (17 samples, 0.09%)</title><rect x="184.4" y="421" width="1.0" height="15.0" fill="rgb(234,207,10)" rx="2" ry="2" />
|
|
<text x="187.35" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="167.9" y="245" width="0.1" height="15.0" fill="rgb(214,110,6)" rx="2" ry="2" />
|
|
<text x="170.91" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (3 samples, 0.02%)</title><rect x="428.6" y="373" width="0.1" height="15.0" fill="rgb(220,127,33)" rx="2" ry="2" />
|
|
<text x="431.56" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (21 samples, 0.11%)</title><rect x="375.9" y="245" width="1.2" height="15.0" fill="rgb(214,48,6)" rx="2" ry="2" />
|
|
<text x="378.87" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (23 samples, 0.12%)</title><rect x="1040.7" y="341" width="1.4" height="15.0" fill="rgb(236,100,16)" rx="2" ry="2" />
|
|
<text x="1043.74" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeHttpProtocol (5 samples, 0.03%)</title><rect x="421.7" y="421" width="0.3" height="15.0" fill="rgb(218,12,15)" rx="2" ry="2" />
|
|
<text x="424.72" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="413.4" y="293" width="0.3" height="15.0" fill="rgb(208,3,1)" rx="2" ry="2" />
|
|
<text x="416.38" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (9 samples, 0.05%)</title><rect x="153.9" y="389" width="0.5" height="15.0" fill="rgb(235,8,16)" rx="2" ry="2" />
|
|
<text x="156.86" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="217.0" y="357" width="0.1" height="15.0" fill="rgb(241,123,52)" rx="2" ry="2" />
|
|
<text x="220.00" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (74 samples, 0.38%)</title><rect x="248.7" y="469" width="4.4" height="15.0" fill="rgb(212,92,38)" rx="2" ry="2" />
|
|
<text x="251.69" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (838 samples, 4.26%)</title><rect x="10.0" y="645" width="50.3" height="15.0" fill="rgb(229,116,4)" rx="2" ry="2" />
|
|
<text x="13.00" y="655.5" >[fire..</text>
|
|
</g>
|
|
<g >
|
|
<title>memcpy@plt (7 samples, 0.04%)</title><rect x="849.7" y="261" width="0.4" height="15.0" fill="rgb(246,95,19)" rx="2" ry="2" />
|
|
<text x="852.70" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_add (28 samples, 0.14%)</title><rect x="968.6" y="517" width="1.7" height="15.0" fill="rgb(240,190,19)" rx="2" ry="2" />
|
|
<text x="971.60" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (563 samples, 2.86%)</title><rect x="591.4" y="325" width="33.8" height="15.0" fill="rgb(211,115,1)" rx="2" ry="2" />
|
|
<text x="594.45" y="335.5" >he..</text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="1184.1" y="373" width="0.1" height="15.0" fill="rgb(239,169,5)" rx="2" ry="2" />
|
|
<text x="1187.06" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (67 samples, 0.34%)</title><rect x="1069.0" y="293" width="4.0" height="15.0" fill="rgb(208,11,13)" rx="2" ry="2" />
|
|
<text x="1072.01" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (6 samples, 0.03%)</title><rect x="503.7" y="229" width="0.4" height="15.0" fill="rgb(233,170,2)" rx="2" ry="2" />
|
|
<text x="506.70" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_and_copy_streamindex (7 samples, 0.04%)</title><rect x="358.3" y="517" width="0.4" height="15.0" fill="rgb(236,161,20)" rx="2" ry="2" />
|
|
<text x="361.28" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (42 samples, 0.21%)</title><rect x="658.1" y="373" width="2.5" height="15.0" fill="rgb(249,165,23)" rx="2" ry="2" />
|
|
<text x="661.07" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (8 samples, 0.04%)</title><rect x="722.1" y="309" width="0.5" height="15.0" fill="rgb(226,33,9)" rx="2" ry="2" />
|
|
<text x="725.11" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (120 samples, 0.61%)</title><rect x="207.4" y="565" width="7.2" height="15.0" fill="rgb(229,28,35)" rx="2" ry="2" />
|
|
<text x="210.40" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (14 samples, 0.07%)</title><rect x="1186.6" y="533" width="0.8" height="15.0" fill="rgb(236,145,12)" rx="2" ry="2" />
|
|
<text x="1189.58" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (7 samples, 0.04%)</title><rect x="169.7" y="293" width="0.4" height="15.0" fill="rgb(217,69,36)" rx="2" ry="2" />
|
|
<text x="172.71" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>file_reset (5 samples, 0.03%)</title><rect x="404.2" y="213" width="0.3" height="15.0" fill="rgb(250,79,46)" rx="2" ry="2" />
|
|
<text x="407.19" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="1096.8" y="485" width="0.2" height="15.0" fill="rgb(210,123,42)" rx="2" ry="2" />
|
|
<text x="1099.79" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findLineEnd (3 samples, 0.02%)</title><rect x="930.1" y="373" width="0.1" height="15.0" fill="rgb(213,184,45)" rx="2" ry="2" />
|
|
<text x="933.07" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (16 samples, 0.08%)</title><rect x="928.4" y="309" width="1.0" height="15.0" fill="rgb(253,142,30)" rx="2" ry="2" />
|
|
<text x="931.44" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (49 samples, 0.25%)</title><rect x="380.1" y="277" width="3.0" height="15.0" fill="rgb(214,106,37)" rx="2" ry="2" />
|
|
<text x="383.13" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (4 samples, 0.02%)</title><rect x="34.4" y="565" width="0.3" height="15.0" fill="rgb(234,46,15)" rx="2" ry="2" />
|
|
<text x="37.43" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="931.1" y="357" width="0.1" height="15.0" fill="rgb(241,224,21)" rx="2" ry="2" />
|
|
<text x="934.09" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_rr_common_field (15 samples, 0.08%)</title><rect x="1182.4" y="629" width="0.9" height="15.0" fill="rgb(245,165,42)" rx="2" ry="2" />
|
|
<text x="1185.38" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (39 samples, 0.20%)</title><rect x="1074.7" y="325" width="2.3" height="15.0" fill="rgb(218,218,47)" rx="2" ry="2" />
|
|
<text x="1077.71" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_primitive_free (3 samples, 0.02%)</title><rect x="168.7" y="261" width="0.2" height="15.0" fill="rgb(233,169,5)" rx="2" ry="2" />
|
|
<text x="171.69" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="197" width="0.3" height="15.0" fill="rgb(213,82,15)" rx="2" ry="2" />
|
|
<text x="1146.85" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (18 samples, 0.09%)</title><rect x="106.6" y="421" width="1.1" height="15.0" fill="rgb(212,60,20)" rx="2" ry="2" />
|
|
<text x="109.63" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (50 samples, 0.25%)</title><rect x="101.3" y="629" width="3.0" height="15.0" fill="rgb(251,110,40)" rx="2" ry="2" />
|
|
<text x="104.35" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_session_exdata_fetch (5 samples, 0.03%)</title><rect x="794.0" y="405" width="0.3" height="15.0" fill="rgb(233,72,18)" rx="2" ry="2" />
|
|
<text x="797.01" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="1167.4" y="389" width="0.6" height="15.0" fill="rgb(233,107,33)" rx="2" ry="2" />
|
|
<text x="1170.43" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (12 samples, 0.06%)</title><rect x="1189.2" y="645" width="0.7" height="15.0" fill="rgb(250,224,36)" rx="2" ry="2" />
|
|
<text x="1192.16" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSH_ENTRY (3 samples, 0.02%)</title><rect x="931.5" y="453" width="0.2" height="15.0" fill="rgb(236,111,3)" rx="2" ry="2" />
|
|
<text x="934.51" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (26 samples, 0.13%)</title><rect x="479.9" y="357" width="1.5" height="15.0" fill="rgb(219,30,39)" rx="2" ry="2" />
|
|
<text x="482.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (119 samples, 0.61%)</title><rect x="161.2" y="325" width="7.1" height="15.0" fill="rgb(239,175,1)" rx="2" ry="2" />
|
|
<text x="164.18" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (7 samples, 0.04%)</title><rect x="506.0" y="261" width="0.4" height="15.0" fill="rgb(219,135,47)" rx="2" ry="2" />
|
|
<text x="508.98" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (4 samples, 0.02%)</title><rect x="1075.1" y="229" width="0.3" height="15.0" fill="rgb(230,113,4)" rx="2" ry="2" />
|
|
<text x="1078.13" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (3 samples, 0.02%)</title><rect x="991.4" y="373" width="0.2" height="15.0" fill="rgb(231,135,47)" rx="2" ry="2" />
|
|
<text x="994.40" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (6 samples, 0.03%)</title><rect x="275.8" y="581" width="0.3" height="15.0" fill="rgb(236,196,16)" rx="2" ry="2" />
|
|
<text x="278.76" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (2 samples, 0.01%)</title><rect x="1159.0" y="485" width="0.2" height="15.0" fill="rgb(251,178,8)" rx="2" ry="2" />
|
|
<text x="1162.03" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ftp.so] (11 samples, 0.06%)</title><rect x="435.1" y="437" width="0.7" height="15.0" fill="rgb(247,140,7)" rx="2" ry="2" />
|
|
<text x="438.10" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (6 samples, 0.03%)</title><rect x="1171.9" y="501" width="0.4" height="15.0" fill="rgb(214,42,35)" rx="2" ry="2" />
|
|
<text x="1174.93" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (3 samples, 0.02%)</title><rect x="660.9" y="357" width="0.2" height="15.0" fill="rgb(230,77,33)" rx="2" ry="2" />
|
|
<text x="663.95" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_no_init (2 samples, 0.01%)</title><rect x="110.5" y="373" width="0.1" height="15.0" fill="rgb(240,160,29)" rx="2" ry="2" />
|
|
<text x="113.53" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="473.9" y="421" width="0.2" height="15.0" fill="rgb(215,178,10)" rx="2" ry="2" />
|
|
<text x="476.93" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (4 samples, 0.02%)</title><rect x="109.6" y="261" width="0.3" height="15.0" fill="rgb(221,112,4)" rx="2" ry="2" />
|
|
<text x="112.63" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="96.8" y="581" width="0.2" height="15.0" fill="rgb(235,170,6)" rx="2" ry="2" />
|
|
<text x="99.85" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="1178.5" y="357" width="0.8" height="15.0" fill="rgb(235,171,45)" rx="2" ry="2" />
|
|
<text x="1181.54" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (6 samples, 0.03%)</title><rect x="666.6" y="357" width="0.3" height="15.0" fill="rgb(238,124,27)" rx="2" ry="2" />
|
|
<text x="669.59" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (4 samples, 0.02%)</title><rect x="783.8" y="245" width="0.2" height="15.0" fill="rgb(247,155,12)" rx="2" ry="2" />
|
|
<text x="786.80" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ap_slice_check_hash (3 samples, 0.02%)</title><rect x="1045.9" y="501" width="0.2" height="15.0" fill="rgb(223,137,52)" rx="2" ry="2" />
|
|
<text x="1048.90" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (525 samples, 2.67%)</title><rect x="591.7" y="309" width="31.5" height="15.0" fill="rgb(253,121,44)" rx="2" ry="2" />
|
|
<text x="594.69" y="319.5" >he..</text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (7 samples, 0.04%)</title><rect x="413.9" y="341" width="0.4" height="15.0" fill="rgb(244,146,44)" rx="2" ry="2" />
|
|
<text x="416.92" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (293 samples, 1.49%)</title><rect x="75.7" y="629" width="17.5" height="15.0" fill="rgb(218,3,10)" rx="2" ry="2" />
|
|
<text x="78.66" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (6 samples, 0.03%)</title><rect x="351.7" y="517" width="0.4" height="15.0" fill="rgb(215,12,45)" rx="2" ry="2" />
|
|
<text x="354.74" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (4 samples, 0.02%)</title><rect x="522.5" y="437" width="0.2" height="15.0" fill="rgb(214,169,11)" rx="2" ry="2" />
|
|
<text x="525.49" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (3 samples, 0.02%)</title><rect x="408.9" y="229" width="0.2" height="15.0" fill="rgb(213,41,41)" rx="2" ry="2" />
|
|
<text x="411.93" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (10 samples, 0.05%)</title><rect x="1145.9" y="421" width="0.6" height="15.0" fill="rgb(208,131,38)" rx="2" ry="2" />
|
|
<text x="1148.95" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log_level_enabled (2 samples, 0.01%)</title><rect x="16.5" y="597" width="0.1" height="15.0" fill="rgb(214,164,42)" rx="2" ry="2" />
|
|
<text x="19.48" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1145.6" y="517" width="0.3" height="15.0" fill="rgb(246,116,30)" rx="2" ry="2" />
|
|
<text x="1148.59" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (29 samples, 0.15%)</title><rect x="221.9" y="277" width="1.7" height="15.0" fill="rgb(218,112,44)" rx="2" ry="2" />
|
|
<text x="224.86" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="254.5" y="469" width="0.1" height="15.0" fill="rgb(215,42,49)" rx="2" ry="2" />
|
|
<text x="257.51" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (16 samples, 0.08%)</title><rect x="428.9" y="389" width="1.0" height="15.0" fill="rgb(233,143,53)" rx="2" ry="2" />
|
|
<text x="431.92" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (7 samples, 0.04%)</title><rect x="413.9" y="357" width="0.4" height="15.0" fill="rgb(236,31,50)" rx="2" ry="2" />
|
|
<text x="416.92" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.02%)</title><rect x="927.8" y="341" width="0.2" height="15.0" fill="rgb(237,197,1)" rx="2" ry="2" />
|
|
<text x="930.78" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="160.6" y="293" width="0.2" height="15.0" fill="rgb(248,124,8)" rx="2" ry="2" />
|
|
<text x="163.64" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (6 samples, 0.03%)</title><rect x="145.2" y="453" width="0.3" height="15.0" fill="rgb(214,229,9)" rx="2" ry="2" />
|
|
<text x="148.16" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (3 samples, 0.02%)</title><rect x="703.6" y="373" width="0.1" height="15.0" fill="rgb(231,160,21)" rx="2" ry="2" />
|
|
<text x="706.56" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_mod_inverse (2 samples, 0.01%)</title><rect x="166.6" y="165" width="0.2" height="15.0" fill="rgb(249,26,28)" rx="2" ry="2" />
|
|
<text x="169.65" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1185.1" y="389" width="0.2" height="15.0" fill="rgb(222,68,39)" rx="2" ry="2" />
|
|
<text x="1188.08" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (25 samples, 0.13%)</title><rect x="623.7" y="293" width="1.5" height="15.0" fill="rgb(237,113,39)" rx="2" ry="2" />
|
|
<text x="626.74" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_i2d (2 samples, 0.01%)</title><rect x="169.3" y="421" width="0.1" height="15.0" fill="rgb(211,8,24)" rx="2" ry="2" />
|
|
<text x="172.29" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (2 samples, 0.01%)</title><rect x="660.8" y="373" width="0.1" height="15.0" fill="rgb(248,104,0)" rx="2" ry="2" />
|
|
<text x="663.83" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (4 samples, 0.02%)</title><rect x="505.1" y="261" width="0.3" height="15.0" fill="rgb(242,124,25)" rx="2" ry="2" />
|
|
<text x="508.14" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (2 samples, 0.01%)</title><rect x="106.4" y="229" width="0.2" height="15.0" fill="rgb(235,66,44)" rx="2" ry="2" />
|
|
<text x="109.45" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="478.1" y="421" width="0.1" height="15.0" fill="rgb(241,204,32)" rx="2" ry="2" />
|
|
<text x="481.07" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1147.6" y="373" width="0.3" height="15.0" fill="rgb(214,39,39)" rx="2" ry="2" />
|
|
<text x="1150.63" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_mbrtowc (5 samples, 0.03%)</title><rect x="403.1" y="213" width="0.3" height="15.0" fill="rgb(207,192,21)" rx="2" ry="2" />
|
|
<text x="406.05" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (24 samples, 0.12%)</title><rect x="1097.5" y="405" width="1.4" height="15.0" fill="rgb(230,158,36)" rx="2" ry="2" />
|
|
<text x="1100.45" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (19 samples, 0.10%)</title><rect x="917.8" y="373" width="1.2" height="15.0" fill="rgb(214,94,33)" rx="2" ry="2" />
|
|
<text x="920.82" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (1,919 samples, 9.76%)</title><rect x="546.0" y="437" width="115.2" height="15.0" fill="rgb(230,166,15)" rx="2" ry="2" />
|
|
<text x="549.01" y="447.5" >[stellar_on_sa..</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="34.1" y="517" width="0.3" height="15.0" fill="rgb(242,161,33)" rx="2" ry="2" />
|
|
<text x="37.07" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="254.3" y="373" width="0.1" height="15.0" fill="rgb(217,209,3)" rx="2" ry="2" />
|
|
<text x="257.27" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="921.0" y="293" width="0.2" height="15.0" fill="rgb(250,26,32)" rx="2" ry="2" />
|
|
<text x="924.00" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1145.5" y="341" width="0.1" height="15.0" fill="rgb(226,13,15)" rx="2" ry="2" />
|
|
<text x="1148.47" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (2 samples, 0.01%)</title><rect x="1063.7" y="309" width="0.1" height="15.0" fill="rgb(205,50,42)" rx="2" ry="2" />
|
|
<text x="1066.72" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (7 samples, 0.04%)</title><rect x="430.0" y="389" width="0.4" height="15.0" fill="rgb(206,48,13)" rx="2" ry="2" />
|
|
<text x="433.00" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (16 samples, 0.08%)</title><rect x="1062.6" y="341" width="1.0" height="15.0" fill="rgb(220,44,5)" rx="2" ry="2" />
|
|
<text x="1065.64" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (17 samples, 0.09%)</title><rect x="1099.6" y="533" width="1.0" height="15.0" fill="rgb(205,42,28)" rx="2" ry="2" />
|
|
<text x="1102.61" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (5 samples, 0.03%)</title><rect x="665.4" y="485" width="0.3" height="15.0" fill="rgb(228,27,20)" rx="2" ry="2" />
|
|
<text x="668.45" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell (10 samples, 0.05%)</title><rect x="1060.5" y="341" width="0.6" height="15.0" fill="rgb(234,5,44)" rx="2" ry="2" />
|
|
<text x="1063.48" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="117" width="0.2" height="15.0" fill="rgb(230,193,17)" rx="2" ry="2" />
|
|
<text x="1145.47" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (8 samples, 0.04%)</title><rect x="479.4" y="325" width="0.5" height="15.0" fill="rgb(225,209,38)" rx="2" ry="2" />
|
|
<text x="482.40" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (4 samples, 0.02%)</title><rect x="254.0" y="581" width="0.3" height="15.0" fill="rgb(228,78,41)" rx="2" ry="2" />
|
|
<text x="257.03" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (664 samples, 3.38%)</title><rect x="11.3" y="613" width="39.9" height="15.0" fill="rgb(212,91,25)" rx="2" ry="2" />
|
|
<text x="14.32" y="623.5" >[fi..</text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_get (2 samples, 0.01%)</title><rect x="698.4" y="501" width="0.1" height="15.0" fill="rgb(219,117,20)" rx="2" ry="2" />
|
|
<text x="701.40" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1099.7" y="421" width="0.2" height="15.0" fill="rgb(251,157,16)" rx="2" ry="2" />
|
|
<text x="1102.73" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="189.7" y="277" width="0.1" height="15.0" fill="rgb(233,74,0)" rx="2" ry="2" />
|
|
<text x="192.69" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_mq_publish_message (3 samples, 0.02%)</title><rect x="256.8" y="581" width="0.2" height="15.0" fill="rgb(245,101,18)" rx="2" ry="2" />
|
|
<text x="259.79" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="255.1" y="485" width="0.1" height="15.0" fill="rgb(251,19,33)" rx="2" ry="2" />
|
|
<text x="258.11" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="159.4" y="165" width="0.2" height="15.0" fill="rgb(211,32,48)" rx="2" ry="2" />
|
|
<text x="162.44" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mix16B (2 samples, 0.01%)</title><rect x="1075.7" y="229" width="0.1" height="15.0" fill="rgb(239,159,16)" rx="2" ry="2" />
|
|
<text x="1078.73" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (10 samples, 0.05%)</title><rect x="1099.0" y="501" width="0.6" height="15.0" fill="rgb(228,12,37)" rx="2" ry="2" />
|
|
<text x="1102.01" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (10 samples, 0.05%)</title><rect x="416.8" y="229" width="0.6" height="15.0" fill="rgb(226,227,45)" rx="2" ry="2" />
|
|
<text x="419.80" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="419.1" y="277" width="0.1" height="15.0" fill="rgb(247,205,44)" rx="2" ry="2" />
|
|
<text x="422.08" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stellar_on_sapp_defer_entry (2 samples, 0.01%)</title><rect x="1045.1" y="421" width="0.1" height="15.0" fill="rgb(205,21,39)" rx="2" ry="2" />
|
|
<text x="1048.12" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (25 samples, 0.13%)</title><rect x="1001.8" y="293" width="1.5" height="15.0" fill="rgb(235,10,48)" rx="2" ry="2" />
|
|
<text x="1004.79" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (4 samples, 0.02%)</title><rect x="227.7" y="357" width="0.2" height="15.0" fill="rgb(238,110,43)" rx="2" ry="2" />
|
|
<text x="230.68" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="214.4" y="245" width="0.2" height="15.0" fill="rgb(208,73,2)" rx="2" ry="2" />
|
|
<text x="217.42" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (7 samples, 0.04%)</title><rect x="834.9" y="277" width="0.4" height="15.0" fill="rgb(228,16,10)" rx="2" ry="2" />
|
|
<text x="837.88" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (9 samples, 0.05%)</title><rect x="157.0" y="245" width="0.5" height="15.0" fill="rgb(231,48,41)" rx="2" ry="2" />
|
|
<text x="159.98" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_tripleMatching (2 samples, 0.01%)</title><rect x="156.7" y="437" width="0.2" height="15.0" fill="rgb(250,50,40)" rx="2" ry="2" />
|
|
<text x="159.74" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (10 samples, 0.05%)</title><rect x="160.0" y="309" width="0.6" height="15.0" fill="rgb(236,99,18)" rx="2" ry="2" />
|
|
<text x="163.04" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (663 samples, 3.37%)</title><rect x="976.5" y="437" width="39.7" height="15.0" fill="rgb(219,210,42)" rx="2" ry="2" />
|
|
<text x="979.46" y="447.5" >[st..</text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (39 samples, 0.20%)</title><rect x="243.8" y="501" width="2.3" height="15.0" fill="rgb(234,113,12)" rx="2" ry="2" />
|
|
<text x="246.77" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="937.6" y="533" width="0.1" height="15.0" fill="rgb(253,24,29)" rx="2" ry="2" />
|
|
<text x="940.63" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="254.5" y="421" width="0.1" height="15.0" fill="rgb(208,132,47)" rx="2" ry="2" />
|
|
<text x="257.51" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (3 samples, 0.02%)</title><rect x="503.5" y="229" width="0.2" height="15.0" fill="rgb(245,14,4)" rx="2" ry="2" />
|
|
<text x="506.52" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (3 samples, 0.02%)</title><rect x="959.7" y="277" width="0.2" height="15.0" fill="rgb(252,189,40)" rx="2" ry="2" />
|
|
<text x="962.71" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_value (2 samples, 0.01%)</title><rect x="429.3" y="357" width="0.1" height="15.0" fill="rgb(233,58,6)" rx="2" ry="2" />
|
|
<text x="432.28" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memchr_avx2 (3 samples, 0.02%)</title><rect x="418.5" y="341" width="0.2" height="15.0" fill="rgb(217,76,2)" rx="2" ry="2" />
|
|
<text x="421.48" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="1148.3" y="405" width="0.2" height="15.0" fill="rgb(237,137,35)" rx="2" ry="2" />
|
|
<text x="1151.35" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="1096.9" y="325" width="0.1" height="15.0" fill="rgb(206,42,33)" rx="2" ry="2" />
|
|
<text x="1099.91" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (12 samples, 0.06%)</title><rect x="961.2" y="293" width="0.7" height="15.0" fill="rgb(251,175,17)" rx="2" ry="2" />
|
|
<text x="964.21" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_dos_metric_update (18 samples, 0.09%)</title><rect x="989.5" y="389" width="1.1" height="15.0" fill="rgb(224,156,3)" rx="2" ry="2" />
|
|
<text x="992.54" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldtag_copy (2 samples, 0.01%)</title><rect x="1003.5" y="229" width="0.1" height="15.0" fill="rgb(245,42,16)" rx="2" ry="2" />
|
|
<text x="1006.47" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (198 samples, 1.01%)</title><rect x="207.4" y="597" width="11.9" height="15.0" fill="rgb(251,116,33)" rx="2" ry="2" />
|
|
<text x="210.40" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (3 samples, 0.02%)</title><rect x="1181.5" y="613" width="0.2" height="15.0" fill="rgb(207,6,20)" rx="2" ry="2" />
|
|
<text x="1184.54" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="169.0" y="325" width="0.2" height="15.0" fill="rgb(251,86,29)" rx="2" ry="2" />
|
|
<text x="172.05" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (8 samples, 0.04%)</title><rect x="1097.6" y="293" width="0.5" height="15.0" fill="rgb(249,169,41)" rx="2" ry="2" />
|
|
<text x="1100.57" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_pop_and_record_popped_back (3 samples, 0.02%)</title><rect x="1003.6" y="277" width="0.2" height="15.0" fill="rgb(254,41,11)" rx="2" ry="2" />
|
|
<text x="1006.59" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (22 samples, 0.11%)</title><rect x="183.0" y="421" width="1.4" height="15.0" fill="rgb(235,0,32)" rx="2" ry="2" />
|
|
<text x="186.03" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (22 samples, 0.11%)</title><rect x="881.5" y="389" width="1.3" height="15.0" fill="rgb(253,24,1)" rx="2" ry="2" />
|
|
<text x="884.45" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_easy_counter_incrby (2 samples, 0.01%)</title><rect x="1099.2" y="373" width="0.1" height="15.0" fill="rgb(207,57,37)" rx="2" ry="2" />
|
|
<text x="1102.19" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_get_route_dir_from_mbuff (13 samples, 0.07%)</title><rect x="1106.5" y="565" width="0.7" height="15.0" fill="rgb(241,210,14)" rx="2" ry="2" />
|
|
<text x="1109.46" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log_level_enabled (3 samples, 0.02%)</title><rect x="19.5" y="581" width="0.2" height="15.0" fill="rgb(239,56,21)" rx="2" ry="2" />
|
|
<text x="22.48" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (3 samples, 0.02%)</title><rect x="910.8" y="293" width="0.2" height="15.0" fill="rgb(231,181,16)" rx="2" ry="2" />
|
|
<text x="913.80" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (6 samples, 0.03%)</title><rect x="708.2" y="261" width="0.3" height="15.0" fill="rgb(247,77,20)" rx="2" ry="2" />
|
|
<text x="711.18" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (5 samples, 0.03%)</title><rect x="919.9" y="229" width="0.3" height="15.0" fill="rgb(217,32,11)" rx="2" ry="2" />
|
|
<text x="922.86" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (38 samples, 0.19%)</title><rect x="1154.2" y="501" width="2.3" height="15.0" fill="rgb(246,5,32)" rx="2" ry="2" />
|
|
<text x="1157.23" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (3 samples, 0.02%)</title><rect x="1148.3" y="597" width="0.2" height="15.0" fill="rgb(253,3,3)" rx="2" ry="2" />
|
|
<text x="1151.29" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="187.0" y="405" width="0.1" height="15.0" fill="rgb(248,120,45)" rx="2" ry="2" />
|
|
<text x="189.99" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="212.7" y="373" width="0.2" height="15.0" fill="rgb(208,80,0)" rx="2" ry="2" />
|
|
<text x="215.68" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="1148.5" y="565" width="0.1" height="15.0" fill="rgb(250,91,9)" rx="2" ry="2" />
|
|
<text x="1151.47" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1144.3" y="405" width="0.3" height="15.0" fill="rgb(213,61,49)" rx="2" ry="2" />
|
|
<text x="1147.33" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (158 samples, 0.80%)</title><rect x="1067.6" y="357" width="9.4" height="15.0" fill="rgb(207,109,7)" rx="2" ry="2" />
|
|
<text x="1070.56" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (15 samples, 0.08%)</title><rect x="416.7" y="245" width="0.9" height="15.0" fill="rgb(247,90,7)" rx="2" ry="2" />
|
|
<text x="419.68" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (21 samples, 0.11%)</title><rect x="1144.3" y="629" width="1.3" height="15.0" fill="rgb(253,58,26)" rx="2" ry="2" />
|
|
<text x="1147.33" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (16 samples, 0.08%)</title><rect x="1178.3" y="437" width="1.0" height="15.0" fill="rgb(237,213,8)" rx="2" ry="2" />
|
|
<text x="1181.30" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (16 samples, 0.08%)</title><rect x="469.9" y="485" width="1.0" height="15.0" fill="rgb(227,111,53)" rx="2" ry="2" />
|
|
<text x="472.91" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (12 samples, 0.06%)</title><rect x="1085.1" y="341" width="0.7" height="15.0" fill="rgb(207,209,2)" rx="2" ry="2" />
|
|
<text x="1088.09" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (8 samples, 0.04%)</title><rect x="254.6" y="549" width="0.5" height="15.0" fill="rgb(220,4,46)" rx="2" ry="2" />
|
|
<text x="257.63" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (3 samples, 0.02%)</title><rect x="350.3" y="437" width="0.2" height="15.0" fill="rgb(212,164,12)" rx="2" ry="2" />
|
|
<text x="353.30" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (21 samples, 0.11%)</title><rect x="1144.3" y="613" width="1.3" height="15.0" fill="rgb(222,9,14)" rx="2" ry="2" />
|
|
<text x="1147.33" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (119 samples, 0.61%)</title><rect x="953.2" y="325" width="7.2" height="15.0" fill="rgb(212,175,12)" rx="2" ry="2" />
|
|
<text x="956.23" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="253.0" y="261" width="0.1" height="15.0" fill="rgb(224,214,43)" rx="2" ry="2" />
|
|
<text x="256.01" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="181" width="0.2" height="15.0" fill="rgb(231,44,2)" rx="2" ry="2" />
|
|
<text x="1145.47" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (9 samples, 0.05%)</title><rect x="107.2" y="405" width="0.5" height="15.0" fill="rgb(218,96,22)" rx="2" ry="2" />
|
|
<text x="110.17" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (18 samples, 0.09%)</title><rect x="497.9" y="245" width="1.1" height="15.0" fill="rgb(221,168,2)" rx="2" ry="2" />
|
|
<text x="500.94" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_version (8 samples, 0.04%)</title><rect x="934.1" y="421" width="0.5" height="15.0" fill="rgb(229,92,20)" rx="2" ry="2" />
|
|
<text x="937.15" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (13 samples, 0.07%)</title><rect x="157.0" y="277" width="0.8" height="15.0" fill="rgb(246,132,21)" rx="2" ry="2" />
|
|
<text x="159.98" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="1148.3" y="533" width="0.2" height="15.0" fill="rgb(227,106,26)" rx="2" ry="2" />
|
|
<text x="1151.29" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="207.1" y="453" width="0.2" height="15.0" fill="rgb(245,217,54)" rx="2" ry="2" />
|
|
<text x="210.10" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (133 samples, 0.68%)</title><rect x="1036.2" y="373" width="8.0" height="15.0" fill="rgb(208,195,31)" rx="2" ry="2" />
|
|
<text x="1039.18" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (110 samples, 0.56%)</title><rect x="137.4" y="437" width="6.6" height="15.0" fill="rgb(242,190,37)" rx="2" ry="2" />
|
|
<text x="140.42" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (69 samples, 0.35%)</title><rect x="106.6" y="469" width="4.2" height="15.0" fill="rgb(218,150,49)" rx="2" ry="2" />
|
|
<text x="109.63" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (7 samples, 0.04%)</title><rect x="844.8" y="229" width="0.4" height="15.0" fill="rgb(227,142,41)" rx="2" ry="2" />
|
|
<text x="847.78" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="408.9" y="325" width="0.5" height="15.0" fill="rgb(208,91,9)" rx="2" ry="2" />
|
|
<text x="411.93" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="207.1" y="437" width="0.2" height="15.0" fill="rgb(235,119,13)" rx="2" ry="2" />
|
|
<text x="210.10" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (15 samples, 0.08%)</title><rect x="523.1" y="453" width="0.9" height="15.0" fill="rgb(232,12,22)" rx="2" ry="2" />
|
|
<text x="526.09" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="383.7" y="245" width="0.1" height="15.0" fill="rgb(224,14,12)" rx="2" ry="2" />
|
|
<text x="386.67" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (7 samples, 0.04%)</title><rect x="917.4" y="373" width="0.4" height="15.0" fill="rgb(252,189,25)" rx="2" ry="2" />
|
|
<text x="920.40" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="215.1" y="405" width="0.2" height="15.0" fill="rgb(215,97,8)" rx="2" ry="2" />
|
|
<text x="218.14" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (2 samples, 0.01%)</title><rect x="709.4" y="261" width="0.1" height="15.0" fill="rgb(205,45,30)" rx="2" ry="2" />
|
|
<text x="712.38" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (276 samples, 1.40%)</title><rect x="190.3" y="453" width="16.6" height="15.0" fill="rgb(220,214,40)" rx="2" ry="2" />
|
|
<text x="193.29" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="219.5" y="437" width="0.2" height="15.0" fill="rgb(208,216,9)" rx="2" ry="2" />
|
|
<text x="222.46" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_recogniseGeneralEntityRegion (2 samples, 0.01%)</title><rect x="927.3" y="357" width="0.1" height="15.0" fill="rgb(230,102,32)" rx="2" ry="2" />
|
|
<text x="930.30" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="701.8" y="437" width="0.3" height="15.0" fill="rgb(232,201,8)" rx="2" ry="2" />
|
|
<text x="704.82" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="186.7" y="373" width="0.1" height="15.0" fill="rgb(238,45,38)" rx="2" ry="2" />
|
|
<text x="189.69" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="53.5" y="565" width="0.1" height="15.0" fill="rgb(221,27,45)" rx="2" ry="2" />
|
|
<text x="56.45" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (45 samples, 0.23%)</title><rect x="216.6" y="549" width="2.7" height="15.0" fill="rgb(206,203,53)" rx="2" ry="2" />
|
|
<text x="219.58" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (63 samples, 0.32%)</title><rect x="707.3" y="373" width="3.8" height="15.0" fill="rgb(209,144,45)" rx="2" ry="2" />
|
|
<text x="710.28" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (15 samples, 0.08%)</title><rect x="928.5" y="261" width="0.9" height="15.0" fill="rgb(225,115,13)" rx="2" ry="2" />
|
|
<text x="931.50" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="38.7" y="581" width="0.3" height="15.0" fill="rgb(241,73,50)" rx="2" ry="2" />
|
|
<text x="41.75" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="220.2" y="373" width="0.7" height="15.0" fill="rgb(220,112,16)" rx="2" ry="2" />
|
|
<text x="223.18" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (43 samples, 0.22%)</title><rect x="774.3" y="357" width="2.6" height="15.0" fill="rgb(226,26,18)" rx="2" ry="2" />
|
|
<text x="777.32" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RDP_TCP_ENTRY (2 samples, 0.01%)</title><rect x="424.5" y="453" width="0.2" height="15.0" fill="rgb(249,212,43)" rx="2" ry="2" />
|
|
<text x="427.54" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_0to16_128b (9 samples, 0.05%)</title><rect x="507.8" y="261" width="0.6" height="15.0" fill="rgb(238,123,16)" rx="2" ry="2" />
|
|
<text x="510.84" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (2 samples, 0.01%)</title><rect x="1097.5" y="357" width="0.1" height="15.0" fill="rgb(248,141,47)" rx="2" ry="2" />
|
|
<text x="1100.45" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="927.8" y="245" width="0.2" height="15.0" fill="rgb(223,52,1)" rx="2" ry="2" />
|
|
<text x="930.84" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (5 samples, 0.03%)</title><rect x="1085.1" y="309" width="0.3" height="15.0" fill="rgb(208,4,3)" rx="2" ry="2" />
|
|
<text x="1088.15" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (5 samples, 0.03%)</title><rect x="583.0" y="261" width="0.3" height="15.0" fill="rgb(227,10,22)" rx="2" ry="2" />
|
|
<text x="585.99" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (2 samples, 0.01%)</title><rect x="1003.1" y="245" width="0.1" height="15.0" fill="rgb(205,86,10)" rx="2" ry="2" />
|
|
<text x="1006.11" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (4 samples, 0.02%)</title><rect x="211.0" y="405" width="0.2" height="15.0" fill="rgb(214,169,14)" rx="2" ry="2" />
|
|
<text x="214.00" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_obj2nid (4 samples, 0.02%)</title><rect x="1143.8" y="85" width="0.3" height="15.0" fill="rgb(206,24,35)" rx="2" ry="2" />
|
|
<text x="1146.85" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smtp_entry_fun (3 samples, 0.02%)</title><rect x="931.3" y="437" width="0.2" height="15.0" fill="rgb(211,93,50)" rx="2" ry="2" />
|
|
<text x="934.33" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="174.9" y="389" width="0.1" height="15.0" fill="rgb(229,115,51)" rx="2" ry="2" />
|
|
<text x="177.87" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (5 samples, 0.03%)</title><rect x="587.4" y="389" width="0.3" height="15.0" fill="rgb(238,30,32)" rx="2" ry="2" />
|
|
<text x="590.37" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1147.9" y="389" width="0.3" height="15.0" fill="rgb(247,127,36)" rx="2" ry="2" />
|
|
<text x="1150.87" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (2 samples, 0.01%)</title><rect x="231.4" y="405" width="0.1" height="15.0" fill="rgb(222,167,3)" rx="2" ry="2" />
|
|
<text x="234.40" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (2 samples, 0.01%)</title><rect x="667.0" y="357" width="0.1" height="15.0" fill="rgb(217,21,49)" rx="2" ry="2" />
|
|
<text x="670.01" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (5 samples, 0.03%)</title><rect x="1179.9" y="517" width="0.3" height="15.0" fill="rgb(240,177,2)" rx="2" ry="2" />
|
|
<text x="1182.86" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="254.4" y="389" width="0.1" height="15.0" fill="rgb(251,141,6)" rx="2" ry="2" />
|
|
<text x="257.39" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="155.5" y="389" width="0.2" height="15.0" fill="rgb(221,34,4)" rx="2" ry="2" />
|
|
<text x="158.54" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (7 samples, 0.04%)</title><rect x="917.4" y="341" width="0.4" height="15.0" fill="rgb(237,129,18)" rx="2" ry="2" />
|
|
<text x="920.40" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="93.1" y="581" width="0.1" height="15.0" fill="rgb(235,174,54)" rx="2" ry="2" />
|
|
<text x="96.12" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (12 samples, 0.06%)</title><rect x="168.6" y="389" width="0.7" height="15.0" fill="rgb(250,157,45)" rx="2" ry="2" />
|
|
<text x="171.57" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (2 samples, 0.01%)</title><rect x="253.0" y="405" width="0.1" height="15.0" fill="rgb(208,205,19)" rx="2" ry="2" />
|
|
<text x="256.01" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (4 samples, 0.02%)</title><rect x="1141.9" y="485" width="0.3" height="15.0" fill="rgb(221,9,37)" rx="2" ry="2" />
|
|
<text x="1144.93" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>map_flow_id_hash_to_bucket (3 samples, 0.02%)</title><rect x="808.6" y="293" width="0.2" height="15.0" fill="rgb(242,144,51)" rx="2" ry="2" />
|
|
<text x="811.59" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (19 samples, 0.10%)</title><rect x="1097.6" y="357" width="1.1" height="15.0" fill="rgb(210,23,44)" rx="2" ry="2" />
|
|
<text x="1100.57" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="918.2" y="213" width="0.2" height="15.0" fill="rgb(252,127,36)" rx="2" ry="2" />
|
|
<text x="921.18" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__tls_get_addr (13 samples, 0.07%)</title><rect x="661.2" y="437" width="0.8" height="15.0" fill="rgb(248,159,46)" rx="2" ry="2" />
|
|
<text x="664.19" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (2 samples, 0.01%)</title><rect x="112.3" y="389" width="0.1" height="15.0" fill="rgb(237,205,13)" rx="2" ry="2" />
|
|
<text x="115.27" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_opposite_addr_info (2 samples, 0.01%)</title><rect x="1094.5" y="533" width="0.1" height="15.0" fill="rgb(214,229,7)" rx="2" ry="2" />
|
|
<text x="1097.51" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH128_mix32B (2 samples, 0.01%)</title><rect x="709.4" y="245" width="0.1" height="15.0" fill="rgb(218,62,7)" rx="2" ry="2" />
|
|
<text x="712.38" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (3 samples, 0.02%)</title><rect x="253.9" y="597" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
|
|
<text x="256.85" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (10 samples, 0.05%)</title><rect x="187.5" y="421" width="0.6" height="15.0" fill="rgb(225,1,53)" rx="2" ry="2" />
|
|
<text x="190.47" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="221.2" y="293" width="0.2" height="15.0" fill="rgb(251,135,31)" rx="2" ry="2" />
|
|
<text x="224.20" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (5 samples, 0.03%)</title><rect x="212.7" y="389" width="0.3" height="15.0" fill="rgb(246,64,38)" rx="2" ry="2" />
|
|
<text x="215.68" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (487 samples, 2.48%)</title><rect x="1150.4" y="645" width="29.2" height="15.0" fill="rgb(248,204,21)" rx="2" ry="2" />
|
|
<text x="1153.39" y="655.5" >PR..</text>
|
|
</g>
|
|
<g >
|
|
<title>copy_ipport_union_addr (2 samples, 0.01%)</title><rect x="351.6" y="517" width="0.1" height="15.0" fill="rgb(211,216,54)" rx="2" ry="2" />
|
|
<text x="354.62" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpStream (3 samples, 0.02%)</title><rect x="931.0" y="437" width="0.2" height="15.0" fill="rgb(222,219,16)" rx="2" ry="2" />
|
|
<text x="934.03" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (4 samples, 0.02%)</title><rect x="701.1" y="421" width="0.2" height="15.0" fill="rgb(206,139,44)" rx="2" ry="2" />
|
|
<text x="704.10" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="153.9" y="261" width="0.5" height="15.0" fill="rgb(212,199,41)" rx="2" ry="2" />
|
|
<text x="156.92" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="213.0" y="373" width="0.3" height="15.0" fill="rgb(240,99,24)" rx="2" ry="2" />
|
|
<text x="216.04" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (25 samples, 0.13%)</title><rect x="761.4" y="373" width="1.5" height="15.0" fill="rgb(245,46,46)" rx="2" ry="2" />
|
|
<text x="764.42" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (7 samples, 0.04%)</title><rect x="989.1" y="357" width="0.4" height="15.0" fill="rgb(233,114,48)" rx="2" ry="2" />
|
|
<text x="992.06" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (9 samples, 0.05%)</title><rect x="959.1" y="277" width="0.5" height="15.0" fill="rgb(248,191,33)" rx="2" ry="2" />
|
|
<text x="962.05" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (6 samples, 0.03%)</title><rect x="1099.1" y="405" width="0.4" height="15.0" fill="rgb(215,47,0)" rx="2" ry="2" />
|
|
<text x="1102.13" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (20 samples, 0.10%)</title><rect x="720.8" y="293" width="1.2" height="15.0" fill="rgb(212,91,5)" rx="2" ry="2" />
|
|
<text x="723.84" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_session_exdata_fetch (5 samples, 0.03%)</title><rect x="1065.8" y="405" width="0.3" height="15.0" fill="rgb(251,104,37)" rx="2" ry="2" />
|
|
<text x="1068.76" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__tls_get_addr@plt (2 samples, 0.01%)</title><rect x="662.0" y="437" width="0.1" height="15.0" fill="rgb(215,11,4)" rx="2" ry="2" />
|
|
<text x="664.97" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (36 samples, 0.18%)</title><rect x="729.7" y="341" width="2.1" height="15.0" fill="rgb(225,219,11)" rx="2" ry="2" />
|
|
<text x="732.67" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="928.3" y="245" width="0.1" height="15.0" fill="rgb(254,45,13)" rx="2" ry="2" />
|
|
<text x="931.26" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (9 samples, 0.05%)</title><rect x="1097.6" y="309" width="0.5" height="15.0" fill="rgb(208,200,29)" rx="2" ry="2" />
|
|
<text x="1100.57" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (8 samples, 0.04%)</title><rect x="709.6" y="309" width="0.5" height="15.0" fill="rgb(208,44,6)" rx="2" ry="2" />
|
|
<text x="712.62" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="756.6" y="405" width="0.3" height="15.0" fill="rgb(249,172,28)" rx="2" ry="2" />
|
|
<text x="759.62" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (674 samples, 3.43%)</title><rect x="800.8" y="341" width="40.5" height="15.0" fill="rgb(206,102,22)" rx="2" ry="2" />
|
|
<text x="803.85" y="351.5" >cel..</text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="522.8" y="373" width="0.2" height="15.0" fill="rgb(211,223,38)" rx="2" ry="2" />
|
|
<text x="525.85" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="176.4" y="213" width="0.2" height="15.0" fill="rgb(210,56,50)" rx="2" ry="2" />
|
|
<text x="179.43" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (3 samples, 0.02%)</title><rect x="502.9" y="277" width="0.1" height="15.0" fill="rgb(222,133,29)" rx="2" ry="2" />
|
|
<text x="505.86" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="145.9" y="389" width="0.1" height="15.0" fill="rgb(210,69,21)" rx="2" ry="2" />
|
|
<text x="148.88" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (61 samples, 0.31%)</title><rect x="100.7" y="645" width="3.6" height="15.0" fill="rgb(225,114,20)" rx="2" ry="2" />
|
|
<text x="103.69" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchrnul_avx2 (2 samples, 0.01%)</title><rect x="185.1" y="341" width="0.2" height="15.0" fill="rgb(243,67,4)" rx="2" ry="2" />
|
|
<text x="188.13" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="186.7" y="325" width="0.1" height="15.0" fill="rgb(247,39,50)" rx="2" ry="2" />
|
|
<text x="189.69" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (7 samples, 0.04%)</title><rect x="847.8" y="245" width="0.4" height="15.0" fill="rgb(238,14,19)" rx="2" ry="2" />
|
|
<text x="850.78" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (40 samples, 0.20%)</title><rect x="788.7" y="341" width="2.4" height="15.0" fill="rgb(226,10,15)" rx="2" ry="2" />
|
|
<text x="791.66" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (5 samples, 0.03%)</title><rect x="1142.2" y="437" width="0.3" height="15.0" fill="rgb(237,154,27)" rx="2" ry="2" />
|
|
<text x="1145.17" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (18 samples, 0.09%)</title><rect x="415.2" y="229" width="1.1" height="15.0" fill="rgb(246,196,45)" rx="2" ry="2" />
|
|
<text x="418.24" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="51.6" y="581" width="0.5" height="15.0" fill="rgb(235,57,25)" rx="2" ry="2" />
|
|
<text x="54.59" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (12 samples, 0.06%)</title><rect x="785.1" y="261" width="0.7" height="15.0" fill="rgb(212,126,0)" rx="2" ry="2" />
|
|
<text x="788.12" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_get_indirect_hit_group_cnt@plt (3 samples, 0.02%)</title><rect x="33.0" y="581" width="0.2" height="15.0" fill="rgb(243,203,5)" rx="2" ry="2" />
|
|
<text x="36.05" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1171.8" y="437" width="0.1" height="15.0" fill="rgb(254,158,29)" rx="2" ry="2" />
|
|
<text x="1174.75" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (17 samples, 0.09%)</title><rect x="919.6" y="277" width="1.0" height="15.0" fill="rgb(218,34,22)" rx="2" ry="2" />
|
|
<text x="922.56" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_create_pool (4 samples, 0.02%)</title><rect x="231.9" y="421" width="0.2" height="15.0" fill="rgb(207,129,3)" rx="2" ry="2" />
|
|
<text x="234.88" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (3 samples, 0.02%)</title><rect x="168.7" y="277" width="0.2" height="15.0" fill="rgb(218,124,17)" rx="2" ry="2" />
|
|
<text x="171.69" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_client_hello (22 samples, 0.11%)</title><rect x="429.9" y="405" width="1.3" height="15.0" fill="rgb(232,122,10)" rx="2" ry="2" />
|
|
<text x="432.88" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>new_JSON_checker (2 samples, 0.01%)</title><rect x="435.0" y="405" width="0.1" height="15.0" fill="rgb(225,126,12)" rx="2" ry="2" />
|
|
<text x="437.98" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (12 samples, 0.06%)</title><rect x="1142.9" y="565" width="0.7" height="15.0" fill="rgb(242,175,22)" rx="2" ry="2" />
|
|
<text x="1145.89" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (6 samples, 0.03%)</title><rect x="1040.3" y="309" width="0.4" height="15.0" fill="rgb(216,167,47)" rx="2" ry="2" />
|
|
<text x="1043.32" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mix16B (2 samples, 0.01%)</title><rect x="479.5" y="229" width="0.1" height="15.0" fill="rgb(225,49,12)" rx="2" ry="2" />
|
|
<text x="482.46" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2,067 samples, 10.51%)</title><rect x="541.3" y="485" width="124.1" height="15.0" fill="rgb(213,185,33)" rx="2" ry="2" />
|
|
<text x="544.33" y="495.5" >plugin_call_str..</text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_xorshift64 (7 samples, 0.04%)</title><rect x="844.8" y="213" width="0.4" height="15.0" fill="rgb(234,200,17)" rx="2" ry="2" />
|
|
<text x="847.78" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (39 samples, 0.20%)</title><rect x="1027.5" y="517" width="2.4" height="15.0" fill="rgb(235,129,40)" rx="2" ry="2" />
|
|
<text x="1030.53" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="920.4" y="229" width="0.1" height="15.0" fill="rgb(242,126,45)" rx="2" ry="2" />
|
|
<text x="923.40" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (8 samples, 0.04%)</title><rect x="243.0" y="437" width="0.5" height="15.0" fill="rgb(212,129,28)" rx="2" ry="2" />
|
|
<text x="246.05" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (35 samples, 0.18%)</title><rect x="221.6" y="421" width="2.1" height="15.0" fill="rgb(227,6,0)" rx="2" ry="2" />
|
|
<text x="224.56" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>memcpy@plt (4 samples, 0.02%)</title><rect x="633.8" y="261" width="0.2" height="15.0" fill="rgb(210,138,31)" rx="2" ry="2" />
|
|
<text x="636.76" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (20 samples, 0.10%)</title><rect x="1185.3" y="437" width="1.2" height="15.0" fill="rgb(241,127,20)" rx="2" ry="2" />
|
|
<text x="1188.32" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (194 samples, 0.99%)</title><rect x="232.1" y="549" width="11.7" height="15.0" fill="rgb(238,12,5)" rx="2" ry="2" />
|
|
<text x="235.12" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (16 samples, 0.08%)</title><rect x="182.1" y="405" width="0.9" height="15.0" fill="rgb(219,3,19)" rx="2" ry="2" />
|
|
<text x="185.07" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (5 samples, 0.03%)</title><rect x="1019.9" y="533" width="0.3" height="15.0" fill="rgb(210,61,40)" rx="2" ry="2" />
|
|
<text x="1022.91" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock@plt (2 samples, 0.01%)</title><rect x="792.5" y="373" width="0.1" height="15.0" fill="rgb(236,109,16)" rx="2" ry="2" />
|
|
<text x="795.51" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (3 samples, 0.02%)</title><rect x="1141.7" y="517" width="0.2" height="15.0" fill="rgb(237,46,32)" rx="2" ry="2" />
|
|
<text x="1144.75" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_0to16_128b (2 samples, 0.01%)</title><rect x="885.2" y="277" width="0.2" height="15.0" fill="rgb(247,123,6)" rx="2" ry="2" />
|
|
<text x="888.23" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (5 samples, 0.03%)</title><rect x="158.8" y="309" width="0.3" height="15.0" fill="rgb(236,194,50)" rx="2" ry="2" />
|
|
<text x="161.84" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="36.4" y="565" width="0.3" height="15.0" fill="rgb(239,146,26)" rx="2" ry="2" />
|
|
<text x="39.41" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="1141.0" y="533" width="0.4" height="15.0" fill="rgb(239,112,53)" rx="2" ry="2" />
|
|
<text x="1144.03" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="151.6" y="421" width="0.3" height="15.0" fill="rgb(206,68,50)" rx="2" ry="2" />
|
|
<text x="154.58" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (3 samples, 0.02%)</title><rect x="835.6" y="229" width="0.2" height="15.0" fill="rgb(205,138,14)" rx="2" ry="2" />
|
|
<text x="838.60" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="1144.1" y="437" width="0.2" height="15.0" fill="rgb(208,56,27)" rx="2" ry="2" />
|
|
<text x="1147.15" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (15 samples, 0.08%)</title><rect x="35.3" y="581" width="0.9" height="15.0" fill="rgb(207,225,15)" rx="2" ry="2" />
|
|
<text x="38.33" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (4 samples, 0.02%)</title><rect x="437.1" y="517" width="0.3" height="15.0" fill="rgb(236,42,18)" rx="2" ry="2" />
|
|
<text x="440.14" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="156.0" y="389" width="0.2" height="15.0" fill="rgb(231,49,7)" rx="2" ry="2" />
|
|
<text x="159.02" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="431.4" y="405" width="0.1" height="15.0" fill="rgb(249,126,1)" rx="2" ry="2" />
|
|
<text x="434.38" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libc-2.28.so] (2 samples, 0.01%)</title><rect x="94.0" y="629" width="0.1" height="15.0" fill="rgb(214,221,50)" rx="2" ry="2" />
|
|
<text x="96.96" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="473.2" y="437" width="0.1" height="15.0" fill="rgb(248,88,50)" rx="2" ry="2" />
|
|
<text x="476.15" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (9 samples, 0.05%)</title><rect x="184.8" y="389" width="0.6" height="15.0" fill="rgb(217,13,31)" rx="2" ry="2" />
|
|
<text x="187.83" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_cardinality (2 samples, 0.01%)</title><rect x="597.9" y="277" width="0.1" height="15.0" fill="rgb(231,130,9)" rx="2" ry="2" />
|
|
<text x="600.93" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="254.3" y="533" width="0.1" height="15.0" fill="rgb(210,98,16)" rx="2" ry="2" />
|
|
<text x="257.27" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (31 samples, 0.16%)</title><rect x="1062.6" y="373" width="1.9" height="15.0" fill="rgb(240,203,32)" rx="2" ry="2" />
|
|
<text x="1065.64" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>EC_GROUP_set_generator (3 samples, 0.02%)</title><rect x="166.6" y="197" width="0.2" height="15.0" fill="rgb(220,2,42)" rx="2" ry="2" />
|
|
<text x="169.59" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (3 samples, 0.02%)</title><rect x="478.6" y="357" width="0.2" height="15.0" fill="rgb(220,67,49)" rx="2" ry="2" />
|
|
<text x="481.62" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (257 samples, 1.31%)</title><rect x="951.4" y="421" width="15.4" height="15.0" fill="rgb(254,196,26)" rx="2" ry="2" />
|
|
<text x="954.37" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (2 samples, 0.01%)</title><rect x="709.4" y="277" width="0.1" height="15.0" fill="rgb(211,228,2)" rx="2" ry="2" />
|
|
<text x="712.38" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (2 samples, 0.01%)</title><rect x="930.4" y="261" width="0.1" height="15.0" fill="rgb(227,57,7)" rx="2" ry="2" />
|
|
<text x="933.37" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="931.1" y="261" width="0.1" height="15.0" fill="rgb(232,68,12)" rx="2" ry="2" />
|
|
<text x="934.09" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (17 samples, 0.09%)</title><rect x="733.1" y="453" width="1.1" height="15.0" fill="rgb(242,105,25)" rx="2" ry="2" />
|
|
<text x="736.15" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (15 samples, 0.08%)</title><rect x="157.0" y="453" width="0.9" height="15.0" fill="rgb(237,162,29)" rx="2" ry="2" />
|
|
<text x="159.98" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (5 samples, 0.03%)</title><rect x="1189.2" y="389" width="0.3" height="15.0" fill="rgb(222,187,1)" rx="2" ry="2" />
|
|
<text x="1192.16" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (2 samples, 0.01%)</title><rect x="1097.9" y="261" width="0.2" height="15.0" fill="rgb(237,139,23)" rx="2" ry="2" />
|
|
<text x="1100.93" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (12 samples, 0.06%)</title><rect x="163.6" y="245" width="0.7" height="15.0" fill="rgb(218,77,28)" rx="2" ry="2" />
|
|
<text x="166.58" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___snprintf (4 samples, 0.02%)</title><rect x="172.0" y="421" width="0.3" height="15.0" fill="rgb(226,179,33)" rx="2" ry="2" />
|
|
<text x="175.05" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (97 samples, 0.49%)</title><rect x="1024.3" y="533" width="5.8" height="15.0" fill="rgb(241,77,49)" rx="2" ry="2" />
|
|
<text x="1027.29" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (30 samples, 0.15%)</title><rect x="474.8" y="421" width="1.8" height="15.0" fill="rgb(215,24,1)" rx="2" ry="2" />
|
|
<text x="477.83" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (7 samples, 0.04%)</title><rect x="838.3" y="261" width="0.4" height="15.0" fill="rgb(211,212,26)" rx="2" ry="2" />
|
|
<text x="841.30" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="377.8" y="37" width="0.1" height="15.0" fill="rgb(219,164,31)" rx="2" ry="2" />
|
|
<text x="380.79" y="47.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (32 samples, 0.16%)</title><rect x="836.9" y="293" width="1.9" height="15.0" fill="rgb(216,228,16)" rx="2" ry="2" />
|
|
<text x="839.86" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="157.9" y="309" width="0.2" height="15.0" fill="rgb(247,163,32)" rx="2" ry="2" />
|
|
<text x="160.88" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="381.6" y="165" width="0.1" height="15.0" fill="rgb(205,137,5)" rx="2" ry="2" />
|
|
<text x="384.57" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="1175.2" y="485" width="0.6" height="15.0" fill="rgb(216,196,41)" rx="2" ry="2" />
|
|
<text x="1178.18" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="153.6" y="517" width="0.3" height="15.0" fill="rgb(222,227,27)" rx="2" ry="2" />
|
|
<text x="156.62" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___clone (14,698 samples, 74.76%)</title><rect x="257.9" y="661" width="882.1" height="15.0" fill="rgb(248,54,31)" rx="2" ry="2" />
|
|
<text x="260.87" y="671.5" >__GI___clone</text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (18 samples, 0.09%)</title><rect x="109.0" y="389" width="1.1" height="15.0" fill="rgb(248,37,25)" rx="2" ry="2" />
|
|
<text x="112.03" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_get_type (6 samples, 0.03%)</title><rect x="799.8" y="341" width="0.3" height="15.0" fill="rgb(242,100,39)" rx="2" ry="2" />
|
|
<text x="802.77" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="374.8" y="245" width="0.1" height="15.0" fill="rgb(226,46,35)" rx="2" ry="2" />
|
|
<text x="377.79" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (12 samples, 0.06%)</title><rect x="1142.9" y="533" width="0.7" height="15.0" fill="rgb(221,156,26)" rx="2" ry="2" />
|
|
<text x="1145.89" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="880.2" y="469" width="0.5" height="15.0" fill="rgb(214,25,49)" rx="2" ry="2" />
|
|
<text x="883.19" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (3 samples, 0.02%)</title><rect x="1099.7" y="501" width="0.2" height="15.0" fill="rgb(235,190,30)" rx="2" ry="2" />
|
|
<text x="1102.73" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (113 samples, 0.57%)</title><rect x="161.5" y="293" width="6.8" height="15.0" fill="rgb(224,189,1)" rx="2" ry="2" />
|
|
<text x="164.48" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_traffic_tags_get (3 samples, 0.02%)</title><rect x="732.3" y="389" width="0.2" height="15.0" fill="rgb(240,105,27)" rx="2" ry="2" />
|
|
<text x="735.31" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (9 samples, 0.05%)</title><rect x="1180.5" y="645" width="0.5" height="15.0" fill="rgb(226,70,35)" rx="2" ry="2" />
|
|
<text x="1183.46" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (3 samples, 0.02%)</title><rect x="1171.8" y="469" width="0.1" height="15.0" fill="rgb(227,196,10)" rx="2" ry="2" />
|
|
<text x="1174.75" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (26 samples, 0.13%)</title><rect x="144.8" y="549" width="1.6" height="15.0" fill="rgb(216,151,8)" rx="2" ry="2" />
|
|
<text x="147.80" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (27 samples, 0.14%)</title><rect x="705.2" y="373" width="1.7" height="15.0" fill="rgb(212,36,13)" rx="2" ry="2" />
|
|
<text x="708.24" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime_2 (7 samples, 0.04%)</title><rect x="248.3" y="421" width="0.4" height="15.0" fill="rgb(219,168,22)" rx="2" ry="2" />
|
|
<text x="251.27" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (4 samples, 0.02%)</title><rect x="962.1" y="309" width="0.3" height="15.0" fill="rgb(226,27,43)" rx="2" ry="2" />
|
|
<text x="965.11" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (24 samples, 0.12%)</title><rect x="779.9" y="389" width="1.4" height="15.0" fill="rgb(227,52,20)" rx="2" ry="2" />
|
|
<text x="782.90" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (27 samples, 0.14%)</title><rect x="1163.2" y="533" width="1.7" height="15.0" fill="rgb(241,80,31)" rx="2" ry="2" />
|
|
<text x="1166.23" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="213" width="0.3" height="15.0" fill="rgb(221,178,22)" rx="2" ry="2" />
|
|
<text x="1146.85" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="231.4" y="293" width="0.1" height="15.0" fill="rgb(224,205,11)" rx="2" ry="2" />
|
|
<text x="234.40" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (13 samples, 0.07%)</title><rect x="41.4" y="549" width="0.8" height="15.0" fill="rgb(248,165,8)" rx="2" ry="2" />
|
|
<text x="44.39" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (63 samples, 0.32%)</title><rect x="110.8" y="565" width="3.8" height="15.0" fill="rgb(229,75,39)" rx="2" ry="2" />
|
|
<text x="113.77" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (6 samples, 0.03%)</title><rect x="1063.6" y="341" width="0.4" height="15.0" fill="rgb(231,162,54)" rx="2" ry="2" />
|
|
<text x="1066.60" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (6 samples, 0.03%)</title><rect x="192.5" y="405" width="0.4" height="15.0" fill="rgb(237,126,33)" rx="2" ry="2" />
|
|
<text x="195.51" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (2 samples, 0.01%)</title><rect x="589.6" y="373" width="0.1" height="15.0" fill="rgb(242,59,21)" rx="2" ry="2" />
|
|
<text x="592.59" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (11 samples, 0.06%)</title><rect x="725.8" y="293" width="0.7" height="15.0" fill="rgb(219,163,10)" rx="2" ry="2" />
|
|
<text x="728.83" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (3 samples, 0.02%)</title><rect x="1098.5" y="325" width="0.2" height="15.0" fill="rgb(232,149,32)" rx="2" ry="2" />
|
|
<text x="1101.53" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>change_prot_numa (12 samples, 0.06%)</title><rect x="247.5" y="277" width="0.7" height="15.0" fill="rgb(239,29,40)" rx="2" ry="2" />
|
|
<text x="250.49" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (16 samples, 0.08%)</title><rect x="1141.7" y="613" width="1.0" height="15.0" fill="rgb(246,108,33)" rx="2" ry="2" />
|
|
<text x="1144.75" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (5 samples, 0.03%)</title><rect x="1147.9" y="501" width="0.3" height="15.0" fill="rgb(231,131,1)" rx="2" ry="2" />
|
|
<text x="1150.87" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (46 samples, 0.23%)</title><rect x="580.0" y="309" width="2.7" height="15.0" fill="rgb(205,141,45)" rx="2" ry="2" />
|
|
<text x="582.98" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (3 samples, 0.02%)</title><rect x="959.9" y="245" width="0.2" height="15.0" fill="rgb(234,15,7)" rx="2" ry="2" />
|
|
<text x="962.89" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log_level_enabled (3 samples, 0.02%)</title><rect x="743.7" y="469" width="0.2" height="15.0" fill="rgb(236,56,36)" rx="2" ry="2" />
|
|
<text x="746.71" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="377.8" y="69" width="0.1" height="15.0" fill="rgb(214,102,28)" rx="2" ry="2" />
|
|
<text x="380.79" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_is_outer_tunnel (3 samples, 0.02%)</title><rect x="560.8" y="405" width="0.2" height="15.0" fill="rgb(251,85,31)" rx="2" ry="2" />
|
|
<text x="563.78" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___snprintf (3 samples, 0.02%)</title><rect x="1189.7" y="421" width="0.2" height="15.0" fill="rgb(254,121,7)" rx="2" ry="2" />
|
|
<text x="1192.70" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1154.0" y="421" width="0.2" height="15.0" fill="rgb(253,120,13)" rx="2" ry="2" />
|
|
<text x="1157.05" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_numa_page (3 samples, 0.02%)</title><rect x="228.6" y="309" width="0.2" height="15.0" fill="rgb(223,214,11)" rx="2" ry="2" />
|
|
<text x="231.64" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="384.3" y="245" width="0.2" height="15.0" fill="rgb(230,162,1)" rx="2" ry="2" />
|
|
<text x="387.27" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="95.0" y="613" width="0.2" height="15.0" fill="rgb(235,173,10)" rx="2" ry="2" />
|
|
<text x="97.98" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="145.4" y="437" width="0.1" height="15.0" fill="rgb(230,220,12)" rx="2" ry="2" />
|
|
<text x="148.40" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (25 samples, 0.13%)</title><rect x="702.5" y="437" width="1.5" height="15.0" fill="rgb(244,65,33)" rx="2" ry="2" />
|
|
<text x="705.48" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (2 samples, 0.01%)</title><rect x="787.9" y="261" width="0.1" height="15.0" fill="rgb(237,151,50)" rx="2" ry="2" />
|
|
<text x="790.88" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (2 samples, 0.01%)</title><rect x="245.9" y="421" width="0.1" height="15.0" fill="rgb(240,180,51)" rx="2" ry="2" />
|
|
<text x="248.87" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="1189.2" y="453" width="0.7" height="15.0" fill="rgb(208,21,9)" rx="2" ry="2" />
|
|
<text x="1192.16" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (4 samples, 0.02%)</title><rect x="1037.0" y="277" width="0.2" height="15.0" fill="rgb(213,61,22)" rx="2" ry="2" />
|
|
<text x="1039.96" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="189.7" y="357" width="0.1" height="15.0" fill="rgb(251,50,28)" rx="2" ry="2" />
|
|
<text x="192.69" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MD5_Update (5 samples, 0.03%)</title><rect x="430.7" y="373" width="0.3" height="15.0" fill="rgb(235,200,24)" rx="2" ry="2" />
|
|
<text x="433.66" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (12 samples, 0.06%)</title><rect x="725.0" y="261" width="0.7" height="15.0" fill="rgb(253,200,33)" rx="2" ry="2" />
|
|
<text x="727.99" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="1144.1" y="533" width="0.2" height="15.0" fill="rgb(235,162,25)" rx="2" ry="2" />
|
|
<text x="1147.15" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.02%)</title><rect x="253.9" y="613" width="0.1" height="15.0" fill="rgb(210,136,16)" rx="2" ry="2" />
|
|
<text x="256.85" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memchr_avx2 (4 samples, 0.02%)</title><rect x="385.7" y="325" width="0.2" height="15.0" fill="rgb(253,158,21)" rx="2" ry="2" />
|
|
<text x="388.71" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (14 samples, 0.07%)</title><rect x="928.6" y="245" width="0.8" height="15.0" fill="rgb(253,134,28)" rx="2" ry="2" />
|
|
<text x="931.56" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get (50 samples, 0.25%)</title><rect x="568.5" y="405" width="3.0" height="15.0" fill="rgb(205,66,38)" rx="2" ry="2" />
|
|
<text x="571.46" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="374.8" y="325" width="0.1" height="15.0" fill="rgb(239,219,36)" rx="2" ry="2" />
|
|
<text x="377.79" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (5 samples, 0.03%)</title><rect x="1055.0" y="357" width="0.3" height="15.0" fill="rgb(237,16,9)" rx="2" ry="2" />
|
|
<text x="1057.96" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="929.6" y="245" width="0.2" height="15.0" fill="rgb(233,30,49)" rx="2" ry="2" />
|
|
<text x="932.58" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (10 samples, 0.05%)</title><rect x="1100.0" y="437" width="0.6" height="15.0" fill="rgb(249,3,47)" rx="2" ry="2" />
|
|
<text x="1102.97" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (39 samples, 0.20%)</title><rect x="243.8" y="581" width="2.3" height="15.0" fill="rgb(243,65,3)" rx="2" ry="2" />
|
|
<text x="246.77" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_app_and_proto_update (18 samples, 0.09%)</title><rect x="1032.9" y="405" width="1.1" height="15.0" fill="rgb(218,181,51)" rx="2" ry="2" />
|
|
<text x="1035.93" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (24 samples, 0.12%)</title><rect x="158.2" y="421" width="1.4" height="15.0" fill="rgb(215,103,9)" rx="2" ry="2" />
|
|
<text x="161.18" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (3 samples, 0.02%)</title><rect x="1060.9" y="325" width="0.2" height="15.0" fill="rgb(206,195,54)" rx="2" ry="2" />
|
|
<text x="1063.90" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="1175.1" y="501" width="0.7" height="15.0" fill="rgb(225,131,1)" rx="2" ry="2" />
|
|
<text x="1178.12" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (15 samples, 0.08%)</title><rect x="622.2" y="229" width="0.9" height="15.0" fill="rgb(208,94,2)" rx="2" ry="2" />
|
|
<text x="625.24" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="1018.2" y="469" width="0.1" height="15.0" fill="rgb(223,217,28)" rx="2" ry="2" />
|
|
<text x="1021.17" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_pop_and_record_popped_back (3 samples, 0.02%)</title><rect x="959.9" y="277" width="0.2" height="15.0" fill="rgb(205,160,25)" rx="2" ry="2" />
|
|
<text x="962.89" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_ncopy (2 samples, 0.01%)</title><rect x="222.2" y="213" width="0.1" height="15.0" fill="rgb(240,224,13)" rx="2" ry="2" />
|
|
<text x="225.16" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_pop_free (2 samples, 0.01%)</title><rect x="222.9" y="229" width="0.2" height="15.0" fill="rgb(219,91,18)" rx="2" ry="2" />
|
|
<text x="225.94" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>strcmp@plt (2 samples, 0.01%)</title><rect x="830.3" y="245" width="0.1" height="15.0" fill="rgb(236,0,43)" rx="2" ry="2" />
|
|
<text x="833.32" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_new_ex_data (2 samples, 0.01%)</title><rect x="108.2" y="325" width="0.1" height="15.0" fill="rgb(239,107,15)" rx="2" ry="2" />
|
|
<text x="111.19" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (14 samples, 0.07%)</title><rect x="670.7" y="533" width="0.9" height="15.0" fill="rgb(210,19,15)" rx="2" ry="2" />
|
|
<text x="673.73" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>task_work_run (12 samples, 0.06%)</title><rect x="247.5" y="309" width="0.7" height="15.0" fill="rgb(226,18,27)" rx="2" ry="2" />
|
|
<text x="250.49" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>change_p4d_range (12 samples, 0.06%)</title><rect x="247.5" y="245" width="0.7" height="15.0" fill="rgb(252,16,22)" rx="2" ry="2" />
|
|
<text x="250.49" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (4 samples, 0.02%)</title><rect x="1081.2" y="453" width="0.2" height="15.0" fill="rgb(208,108,28)" rx="2" ry="2" />
|
|
<text x="1084.19" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (12 samples, 0.06%)</title><rect x="1165.1" y="549" width="0.7" height="15.0" fill="rgb(216,194,50)" rx="2" ry="2" />
|
|
<text x="1168.09" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (11 samples, 0.06%)</title><rect x="1099.9" y="517" width="0.7" height="15.0" fill="rgb(242,160,45)" rx="2" ry="2" />
|
|
<text x="1102.91" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (5 samples, 0.03%)</title><rect x="418.9" y="357" width="0.3" height="15.0" fill="rgb(242,0,24)" rx="2" ry="2" />
|
|
<text x="421.90" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="384.0" y="101" width="0.1" height="15.0" fill="rgb(254,195,6)" rx="2" ry="2" />
|
|
<text x="386.97" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (8 samples, 0.04%)</title><rect x="249.0" y="421" width="0.5" height="15.0" fill="rgb(211,84,7)" rx="2" ry="2" />
|
|
<text x="251.99" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (5 samples, 0.03%)</title><rect x="776.3" y="309" width="0.3" height="15.0" fill="rgb(238,47,13)" rx="2" ry="2" />
|
|
<text x="779.30" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (21 samples, 0.11%)</title><rect x="159.6" y="373" width="1.3" height="15.0" fill="rgb(206,189,37)" rx="2" ry="2" />
|
|
<text x="162.62" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__tls_get_addr (4 samples, 0.02%)</title><rect x="875.6" y="437" width="0.2" height="15.0" fill="rgb(247,216,11)" rx="2" ry="2" />
|
|
<text x="878.57" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1149.1" y="485" width="0.1" height="15.0" fill="rgb(241,154,29)" rx="2" ry="2" />
|
|
<text x="1152.07" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (737 samples, 3.75%)</title><rect x="60.3" y="661" width="44.2" height="15.0" fill="rgb(224,92,25)" rx="2" ry="2" />
|
|
<text x="63.29" y="671.5" >[lib..</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (6 samples, 0.03%)</title><rect x="413.4" y="309" width="0.3" height="15.0" fill="rgb(219,112,29)" rx="2" ry="2" />
|
|
<text x="416.38" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (94 samples, 0.48%)</title><rect x="995.3" y="293" width="5.6" height="15.0" fill="rgb(209,33,9)" rx="2" ry="2" />
|
|
<text x="998.30" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="176.4" y="325" width="0.2" height="15.0" fill="rgb(250,136,51)" rx="2" ry="2" />
|
|
<text x="179.43" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (86 samples, 0.44%)</title><rect x="1184.0" y="613" width="5.2" height="15.0" fill="rgb(219,82,17)" rx="2" ry="2" />
|
|
<text x="1187.00" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (2 samples, 0.01%)</title><rect x="1096.9" y="389" width="0.1" height="15.0" fill="rgb(223,137,30)" rx="2" ry="2" />
|
|
<text x="1099.91" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (14,046 samples, 71.44%)</title><rect x="264.9" y="597" width="843.0" height="15.0" fill="rgb(226,102,40)" rx="2" ry="2" />
|
|
<text x="267.89" y="607.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (906 samples, 4.61%)</title><rect x="469.8" y="501" width="54.4" height="15.0" fill="rgb(238,210,40)" rx="2" ry="2" />
|
|
<text x="472.79" y="511.5" >tcp_f..</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="927.8" y="277" width="0.2" height="15.0" fill="rgb(236,57,45)" rx="2" ry="2" />
|
|
<text x="930.78" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (3 samples, 0.02%)</title><rect x="1056.5" y="405" width="0.2" height="15.0" fill="rgb(237,42,36)" rx="2" ry="2" />
|
|
<text x="1059.52" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_delete_cell (4 samples, 0.02%)</title><rect x="506.4" y="341" width="0.2" height="15.0" fill="rgb(251,199,14)" rx="2" ry="2" />
|
|
<text x="509.40" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (85 samples, 0.43%)</title><rect x="995.8" y="277" width="5.1" height="15.0" fill="rgb(220,44,45)" rx="2" ry="2" />
|
|
<text x="998.84" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="744.4" y="389" width="0.1" height="15.0" fill="rgb(214,172,8)" rx="2" ry="2" />
|
|
<text x="747.37" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libosfp.so.1.3] (7 samples, 0.04%)</title><rect x="240.1" y="405" width="0.4" height="15.0" fill="rgb(238,101,10)" rx="2" ry="2" />
|
|
<text x="243.11" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (46 samples, 0.23%)</title><rect x="375.4" y="325" width="2.7" height="15.0" fill="rgb(219,159,27)" rx="2" ry="2" />
|
|
<text x="378.39" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1147.6" y="341" width="0.1" height="15.0" fill="rgb(246,208,52)" rx="2" ry="2" />
|
|
<text x="1150.63" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (15 samples, 0.08%)</title><rect x="157.0" y="373" width="0.9" height="15.0" fill="rgb(228,13,44)" rx="2" ry="2" />
|
|
<text x="159.98" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_get_type (4 samples, 0.02%)</title><rect x="992.1" y="341" width="0.2" height="15.0" fill="rgb(205,10,12)" rx="2" ry="2" />
|
|
<text x="995.06" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="224.9" y="389" width="0.1" height="15.0" fill="rgb(245,196,7)" rx="2" ry="2" />
|
|
<text x="227.86" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (9 samples, 0.05%)</title><rect x="349.3" y="485" width="0.6" height="15.0" fill="rgb(210,22,5)" rx="2" ry="2" />
|
|
<text x="352.34" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (2 samples, 0.01%)</title><rect x="666.3" y="293" width="0.1" height="15.0" fill="rgb(205,60,41)" rx="2" ry="2" />
|
|
<text x="669.29" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_stream_add (6 samples, 0.03%)</title><rect x="1081.8" y="517" width="0.4" height="15.0" fill="rgb(211,95,1)" rx="2" ry="2" />
|
|
<text x="1084.85" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (12 samples, 0.06%)</title><rect x="1189.2" y="549" width="0.7" height="15.0" fill="rgb(232,213,7)" rx="2" ry="2" />
|
|
<text x="1192.16" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (6 samples, 0.03%)</title><rect x="169.8" y="261" width="0.3" height="15.0" fill="rgb(252,123,30)" rx="2" ry="2" />
|
|
<text x="172.77" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cal_hash_value (3 samples, 0.02%)</title><rect x="624.3" y="277" width="0.2" height="15.0" fill="rgb(239,195,2)" rx="2" ry="2" />
|
|
<text x="627.34" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (26 samples, 0.13%)</title><rect x="416.4" y="373" width="1.6" height="15.0" fill="rgb(227,40,45)" rx="2" ry="2" />
|
|
<text x="419.44" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="918.7" y="181" width="0.1" height="15.0" fill="rgb(218,71,46)" rx="2" ry="2" />
|
|
<text x="921.72" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (3 samples, 0.02%)</title><rect x="781.5" y="389" width="0.1" height="15.0" fill="rgb(240,220,23)" rx="2" ry="2" />
|
|
<text x="784.46" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (4 samples, 0.02%)</title><rect x="733.4" y="389" width="0.2" height="15.0" fill="rgb(253,194,51)" rx="2" ry="2" />
|
|
<text x="736.39" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (360 samples, 1.83%)</title><rect x="484.8" y="341" width="21.6" height="15.0" fill="rgb(228,156,21)" rx="2" ry="2" />
|
|
<text x="487.80" y="351.5" >c..</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (70 samples, 0.36%)</title><rect x="379.9" y="357" width="4.2" height="15.0" fill="rgb(232,164,36)" rx="2" ry="2" />
|
|
<text x="382.89" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (9 samples, 0.05%)</title><rect x="253.2" y="565" width="0.5" height="15.0" fill="rgb(243,209,30)" rx="2" ry="2" />
|
|
<text x="256.19" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (13 samples, 0.07%)</title><rect x="1146.5" y="517" width="0.8" height="15.0" fill="rgb(236,16,31)" rx="2" ry="2" />
|
|
<text x="1149.55" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer_array (5 samples, 0.03%)</title><rect x="179.6" y="405" width="0.3" height="15.0" fill="rgb(216,43,4)" rx="2" ry="2" />
|
|
<text x="182.61" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (5 samples, 0.03%)</title><rect x="723.5" y="261" width="0.3" height="15.0" fill="rgb(245,179,54)" rx="2" ry="2" />
|
|
<text x="726.49" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (3 samples, 0.02%)</title><rect x="510.4" y="261" width="0.2" height="15.0" fill="rgb(206,87,0)" rx="2" ry="2" />
|
|
<text x="513.42" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="254.5" y="405" width="0.1" height="15.0" fill="rgb(213,182,4)" rx="2" ry="2" />
|
|
<text x="257.51" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (3 samples, 0.02%)</title><rect x="1066.9" y="373" width="0.2" height="15.0" fill="rgb(232,56,4)" rx="2" ry="2" />
|
|
<text x="1069.90" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (93 samples, 0.47%)</title><rect x="26.9" y="581" width="5.5" height="15.0" fill="rgb(220,7,49)" rx="2" ry="2" />
|
|
<text x="29.86" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (112 samples, 0.57%)</title><rect x="225.4" y="565" width="6.7" height="15.0" fill="rgb(220,134,40)" rx="2" ry="2" />
|
|
<text x="228.40" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (23 samples, 0.12%)</title><rect x="945.5" y="501" width="1.4" height="15.0" fill="rgb(222,120,39)" rx="2" ry="2" />
|
|
<text x="948.55" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (5 samples, 0.03%)</title><rect x="708.5" y="277" width="0.3" height="15.0" fill="rgb(226,107,10)" rx="2" ry="2" />
|
|
<text x="711.54" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="704.0" y="453" width="0.1" height="15.0" fill="rgb(253,8,43)" rx="2" ry="2" />
|
|
<text x="706.98" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (35 samples, 0.18%)</title><rect x="555.0" y="421" width="2.1" height="15.0" fill="rgb(214,70,39)" rx="2" ry="2" />
|
|
<text x="558.02" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="220.1" y="421" width="0.1" height="15.0" fill="rgb(249,192,30)" rx="2" ry="2" />
|
|
<text x="223.06" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_easy_counter_incrby (43 samples, 0.22%)</title><rect x="479.1" y="389" width="2.6" height="15.0" fill="rgb(243,11,38)" rx="2" ry="2" />
|
|
<text x="482.10" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1023.9" y="485" width="0.2" height="15.0" fill="rgb(253,62,6)" rx="2" ry="2" />
|
|
<text x="1026.93" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_client_hello (10 samples, 0.05%)</title><rect x="224.6" y="453" width="0.6" height="15.0" fill="rgb(209,37,6)" rx="2" ry="2" />
|
|
<text x="227.56" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (2 samples, 0.01%)</title><rect x="884.6" y="261" width="0.2" height="15.0" fill="rgb(236,26,36)" rx="2" ry="2" />
|
|
<text x="887.63" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime_2 (11 samples, 0.06%)</title><rect x="984.3" y="389" width="0.7" height="15.0" fill="rgb(238,67,45)" rx="2" ry="2" />
|
|
<text x="987.32" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1141.4" y="549" width="0.1" height="15.0" fill="rgb(206,32,50)" rx="2" ry="2" />
|
|
<text x="1144.39" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (18 samples, 0.09%)</title><rect x="874.4" y="373" width="1.0" height="15.0" fill="rgb(227,55,14)" rx="2" ry="2" />
|
|
<text x="877.37" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (9 samples, 0.05%)</title><rect x="50.6" y="581" width="0.5" height="15.0" fill="rgb(227,208,29)" rx="2" ry="2" />
|
|
<text x="53.57" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (18 samples, 0.09%)</title><rect x="1071.9" y="261" width="1.1" height="15.0" fill="rgb(215,202,39)" rx="2" ry="2" />
|
|
<text x="1074.95" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="189.9" y="293" width="0.4" height="15.0" fill="rgb(251,137,45)" rx="2" ry="2" />
|
|
<text x="192.93" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (3 samples, 0.02%)</title><rect x="483.7" y="373" width="0.2" height="15.0" fill="rgb(242,54,54)" rx="2" ry="2" />
|
|
<text x="486.72" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (2 samples, 0.01%)</title><rect x="249.7" y="373" width="0.1" height="15.0" fill="rgb(207,24,7)" rx="2" ry="2" />
|
|
<text x="252.71" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (26 samples, 0.13%)</title><rect x="373.4" y="373" width="1.6" height="15.0" fill="rgb(228,212,30)" rx="2" ry="2" />
|
|
<text x="376.40" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (86 samples, 0.44%)</title><rect x="105.6" y="549" width="5.2" height="15.0" fill="rgb(251,105,4)" rx="2" ry="2" />
|
|
<text x="108.61" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="1147.6" y="485" width="0.3" height="15.0" fill="rgb(215,56,6)" rx="2" ry="2" />
|
|
<text x="1150.63" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (358 samples, 1.82%)</title><rect x="809.0" y="293" width="21.4" height="15.0" fill="rgb(228,161,14)" rx="2" ry="2" />
|
|
<text x="811.95" y="303.5" >s..</text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="156.3" y="405" width="0.1" height="15.0" fill="rgb(222,221,0)" rx="2" ry="2" />
|
|
<text x="159.26" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (10 samples, 0.05%)</title><rect x="254.0" y="629" width="0.6" height="15.0" fill="rgb(245,141,28)" rx="2" ry="2" />
|
|
<text x="257.03" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cal_hash_value (2 samples, 0.01%)</title><rect x="505.0" y="277" width="0.1" height="15.0" fill="rgb(242,51,21)" rx="2" ry="2" />
|
|
<text x="507.96" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeHttpMethod (7 samples, 0.04%)</title><rect x="378.8" y="405" width="0.4" height="15.0" fill="rgb(210,196,44)" rx="2" ry="2" />
|
|
<text x="381.81" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (11 samples, 0.06%)</title><rect x="255.3" y="613" width="0.7" height="15.0" fill="rgb(240,199,12)" rx="2" ry="2" />
|
|
<text x="258.29" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (2 samples, 0.01%)</title><rect x="152.4" y="421" width="0.1" height="15.0" fill="rgb(215,44,27)" rx="2" ry="2" />
|
|
<text x="155.42" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (3 samples, 0.02%)</title><rect x="1037.0" y="245" width="0.2" height="15.0" fill="rgb(233,103,1)" rx="2" ry="2" />
|
|
<text x="1040.02" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log_level_enabled (2 samples, 0.01%)</title><rect x="542.2" y="469" width="0.1" height="15.0" fill="rgb(227,15,50)" rx="2" ry="2" />
|
|
<text x="545.17" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="162.2" y="117" width="0.1" height="15.0" fill="rgb(243,130,22)" rx="2" ry="2" />
|
|
<text x="165.20" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_query_one (2 samples, 0.01%)</title><rect x="582.7" y="309" width="0.2" height="15.0" fill="rgb(209,115,38)" rx="2" ry="2" />
|
|
<text x="585.75" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (9,613 samples, 48.89%)</title><rect x="317.0" y="565" width="577.0" height="15.0" fill="rgb(210,215,6)" rx="2" ry="2" />
|
|
<text x="320.05" y="575.5" >ipv4_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="186.7" y="341" width="0.1" height="15.0" fill="rgb(210,165,45)" rx="2" ry="2" />
|
|
<text x="189.69" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="213" width="0.2" height="15.0" fill="rgb(207,74,26)" rx="2" ry="2" />
|
|
<text x="1145.47" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (10 samples, 0.05%)</title><rect x="257.3" y="645" width="0.6" height="15.0" fill="rgb(229,199,3)" rx="2" ry="2" />
|
|
<text x="260.27" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="1179.8" y="565" width="0.4" height="15.0" fill="rgb(218,53,13)" rx="2" ry="2" />
|
|
<text x="1182.80" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (4 samples, 0.02%)</title><rect x="587.4" y="373" width="0.2" height="15.0" fill="rgb(241,119,20)" rx="2" ry="2" />
|
|
<text x="590.37" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (20 samples, 0.10%)</title><rect x="1185.3" y="453" width="1.2" height="15.0" fill="rgb(238,27,24)" rx="2" ry="2" />
|
|
<text x="1188.32" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vdso_clock_gettime (50 samples, 0.25%)</title><rect x="202.2" y="405" width="3.0" height="15.0" fill="rgb(208,157,3)" rx="2" ry="2" />
|
|
<text x="205.18" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (359 samples, 1.83%)</title><rect x="636.2" y="357" width="21.6" height="15.0" fill="rgb(237,102,5)" rx="2" ry="2" />
|
|
<text x="639.22" y="367.5" >m..</text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime_2 (53 samples, 0.27%)</title><rect x="202.0" y="421" width="3.2" height="15.0" fill="rgb(215,212,32)" rx="2" ry="2" />
|
|
<text x="205.00" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_get_last_hit_groups (4 samples, 0.02%)</title><rect x="54.2" y="613" width="0.3" height="15.0" fill="rgb(221,196,23)" rx="2" ry="2" />
|
|
<text x="57.23" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (4 samples, 0.02%)</title><rect x="146.0" y="405" width="0.2" height="15.0" fill="rgb(240,102,6)" rx="2" ry="2" />
|
|
<text x="149.00" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (12 samples, 0.06%)</title><rect x="152.7" y="533" width="0.7" height="15.0" fill="rgb(224,35,3)" rx="2" ry="2" />
|
|
<text x="155.72" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (331 samples, 1.68%)</title><rect x="712.0" y="373" width="19.8" height="15.0" fill="rgb(244,215,10)" rx="2" ry="2" />
|
|
<text x="714.96" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime_2 (18 samples, 0.09%)</title><rect x="771.4" y="389" width="1.1" height="15.0" fill="rgb(206,73,6)" rx="2" ry="2" />
|
|
<text x="774.38" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (7 samples, 0.04%)</title><rect x="580.6" y="277" width="0.4" height="15.0" fill="rgb(237,210,50)" rx="2" ry="2" />
|
|
<text x="583.58" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_mult64to128 (4 samples, 0.02%)</title><rect x="632.3" y="197" width="0.3" height="15.0" fill="rgb(215,79,27)" rx="2" ry="2" />
|
|
<text x="635.32" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (2 samples, 0.01%)</title><rect x="1039.6" y="261" width="0.1" height="15.0" fill="rgb(234,177,36)" rx="2" ry="2" />
|
|
<text x="1042.60" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>DNS_UDP_ENTRY (6 samples, 0.03%)</title><rect x="733.4" y="421" width="0.3" height="15.0" fill="rgb(227,110,14)" rx="2" ry="2" />
|
|
<text x="736.39" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_DETAIN_ENTRY (2 samples, 0.01%)</title><rect x="542.4" y="469" width="0.1" height="15.0" fill="rgb(228,34,12)" rx="2" ry="2" />
|
|
<text x="545.35" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="472.7" y="469" width="0.1" height="15.0" fill="rgb(206,91,2)" rx="2" ry="2" />
|
|
<text x="475.67" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (4 samples, 0.02%)</title><rect x="141.3" y="389" width="0.3" height="15.0" fill="rgb(238,167,13)" rx="2" ry="2" />
|
|
<text x="144.32" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (3 samples, 0.02%)</title><rect x="585.4" y="357" width="0.2" height="15.0" fill="rgb(217,169,40)" rx="2" ry="2" />
|
|
<text x="588.45" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sip.so] (6 samples, 0.03%)</title><rect x="435.9" y="453" width="0.4" height="15.0" fill="rgb(229,179,8)" rx="2" ry="2" />
|
|
<text x="438.94" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1147.6" y="389" width="0.3" height="15.0" fill="rgb(252,82,54)" rx="2" ry="2" />
|
|
<text x="1150.63" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libosfp.so.1.3] (22 samples, 0.11%)</title><rect x="239.2" y="437" width="1.3" height="15.0" fill="rgb(230,190,26)" rx="2" ry="2" />
|
|
<text x="242.21" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="53.5" y="549" width="0.1" height="15.0" fill="rgb(214,64,40)" rx="2" ry="2" />
|
|
<text x="56.45" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_group (43 samples, 0.22%)</title><rect x="39.6" y="597" width="2.6" height="15.0" fill="rgb(251,147,36)" rx="2" ry="2" />
|
|
<text x="42.59" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (128 samples, 0.65%)</title><rect x="160.9" y="389" width="7.7" height="15.0" fill="rgb(209,136,12)" rx="2" ry="2" />
|
|
<text x="163.88" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="229" width="0.2" height="15.0" fill="rgb(235,107,16)" rx="2" ry="2" />
|
|
<text x="1145.47" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (468 samples, 2.38%)</title><rect x="1052.3" y="437" width="28.1" height="15.0" fill="rgb(226,12,36)" rx="2" ry="2" />
|
|
<text x="1055.32" y="447.5" >[..</text>
|
|
</g>
|
|
<g >
|
|
<title>http_updatePktOffset (8 samples, 0.04%)</title><rect x="409.8" y="405" width="0.5" height="15.0" fill="rgb(224,226,16)" rx="2" ry="2" />
|
|
<text x="412.78" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mul128_fold64 (3 samples, 0.02%)</title><rect x="725.4" y="213" width="0.2" height="15.0" fill="rgb(250,18,43)" rx="2" ry="2" />
|
|
<text x="728.41" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (2 samples, 0.01%)</title><rect x="666.1" y="325" width="0.1" height="15.0" fill="rgb(219,4,45)" rx="2" ry="2" />
|
|
<text x="669.11" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="1187.1" y="373" width="0.1" height="15.0" fill="rgb(212,122,27)" rx="2" ry="2" />
|
|
<text x="1190.12" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (6 samples, 0.03%)</title><rect x="1141.0" y="645" width="0.4" height="15.0" fill="rgb(237,14,45)" rx="2" ry="2" />
|
|
<text x="1144.03" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (22 samples, 0.11%)</title><rect x="1184.0" y="517" width="1.3" height="15.0" fill="rgb(249,162,36)" rx="2" ry="2" />
|
|
<text x="1187.00" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="171.8" y="421" width="0.1" height="15.0" fill="rgb(238,32,9)" rx="2" ry="2" />
|
|
<text x="174.81" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (3 samples, 0.02%)</title><rect x="909.1" y="373" width="0.2" height="15.0" fill="rgb(228,148,12)" rx="2" ry="2" />
|
|
<text x="912.12" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="478.0" y="389" width="0.1" height="15.0" fill="rgb(249,100,18)" rx="2" ry="2" />
|
|
<text x="480.95" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="226.8" y="357" width="0.2" height="15.0" fill="rgb(248,121,34)" rx="2" ry="2" />
|
|
<text x="229.84" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (18 samples, 0.09%)</title><rect x="1178.2" y="501" width="1.1" height="15.0" fill="rgb(227,205,40)" rx="2" ry="2" />
|
|
<text x="1181.18" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1183.6" y="549" width="0.3" height="15.0" fill="rgb(251,177,1)" rx="2" ry="2" />
|
|
<text x="1186.64" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="253.0" y="357" width="0.1" height="15.0" fill="rgb(221,118,46)" rx="2" ry="2" />
|
|
<text x="256.01" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_xorshift64 (4 samples, 0.02%)</title><rect x="1005.8" y="213" width="0.2" height="15.0" fill="rgb(221,5,18)" rx="2" ry="2" />
|
|
<text x="1008.81" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (2 samples, 0.01%)</title><rect x="985.5" y="357" width="0.1" height="15.0" fill="rgb(236,193,4)" rx="2" ry="2" />
|
|
<text x="988.52" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (421 samples, 2.14%)</title><rect x="991.0" y="405" width="25.2" height="15.0" fill="rgb(220,170,3)" rx="2" ry="2" />
|
|
<text x="993.98" y="415.5" >t..</text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (3 samples, 0.02%)</title><rect x="153.1" y="421" width="0.2" height="15.0" fill="rgb(241,164,37)" rx="2" ry="2" />
|
|
<text x="156.14" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="239.0" y="389" width="0.1" height="15.0" fill="rgb(253,68,32)" rx="2" ry="2" />
|
|
<text x="242.03" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (7 samples, 0.04%)</title><rect x="34.0" y="565" width="0.4" height="15.0" fill="rgb(228,116,4)" rx="2" ry="2" />
|
|
<text x="37.01" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (2 samples, 0.01%)</title><rect x="885.4" y="261" width="0.1" height="15.0" fill="rgb(208,220,21)" rx="2" ry="2" />
|
|
<text x="888.35" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (19 samples, 0.10%)</title><rect x="471.4" y="485" width="1.1" height="15.0" fill="rgb(205,173,28)" rx="2" ry="2" />
|
|
<text x="474.35" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (8 samples, 0.04%)</title><rect x="1073.4" y="293" width="0.5" height="15.0" fill="rgb(214,52,33)" rx="2" ry="2" />
|
|
<text x="1076.39" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="257.7" y="629" width="0.2" height="15.0" fill="rgb(214,173,51)" rx="2" ry="2" />
|
|
<text x="260.69" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findLineEnd_CR (3 samples, 0.02%)</title><rect x="375.0" y="357" width="0.1" height="15.0" fill="rgb(252,122,12)" rx="2" ry="2" />
|
|
<text x="377.97" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_propluginfo_plugid (11 samples, 0.06%)</title><rect x="390.2" y="309" width="0.7" height="15.0" fill="rgb(226,187,9)" rx="2" ry="2" />
|
|
<text x="393.21" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithStartLine (2 samples, 0.01%)</title><rect x="156.7" y="453" width="0.2" height="15.0" fill="rgb(227,38,27)" rx="2" ry="2" />
|
|
<text x="159.74" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="172.2" y="373" width="0.1" height="15.0" fill="rgb(221,153,48)" rx="2" ry="2" />
|
|
<text x="175.17" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (2 samples, 0.01%)</title><rect x="1095.1" y="373" width="0.1" height="15.0" fill="rgb(210,200,48)" rx="2" ry="2" />
|
|
<text x="1098.05" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (2 samples, 0.01%)</title><rect x="1061.3" y="261" width="0.1" height="15.0" fill="rgb(230,113,45)" rx="2" ry="2" />
|
|
<text x="1064.26" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (3 samples, 0.02%)</title><rect x="704.8" y="373" width="0.1" height="15.0" fill="rgb(243,31,32)" rx="2" ry="2" />
|
|
<text x="707.76" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_up_ (2 samples, 0.01%)</title><rect x="835.4" y="245" width="0.1" height="15.0" fill="rgb(234,224,3)" rx="2" ry="2" />
|
|
<text x="838.36" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (7 samples, 0.04%)</title><rect x="1068.5" y="261" width="0.4" height="15.0" fill="rgb(240,194,21)" rx="2" ry="2" />
|
|
<text x="1071.46" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_64bits_reset (3 samples, 0.02%)</title><rect x="509.6" y="277" width="0.2" height="15.0" fill="rgb(226,227,22)" rx="2" ry="2" />
|
|
<text x="512.58" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="231.9" y="357" width="0.2" height="15.0" fill="rgb(208,84,40)" rx="2" ry="2" />
|
|
<text x="234.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="108.7" y="357" width="0.3" height="15.0" fill="rgb(225,82,21)" rx="2" ry="2" />
|
|
<text x="111.73" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1148.5" y="517" width="0.1" height="15.0" fill="rgb(214,92,23)" rx="2" ry="2" />
|
|
<text x="1151.47" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (5 samples, 0.03%)</title><rect x="834.0" y="245" width="0.3" height="15.0" fill="rgb(207,57,39)" rx="2" ry="2" />
|
|
<text x="837.04" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.07%)</title><rect x="49.6" y="565" width="0.8" height="15.0" fill="rgb(212,181,48)" rx="2" ry="2" />
|
|
<text x="52.61" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="908.1" y="485" width="0.1" height="15.0" fill="rgb(220,152,9)" rx="2" ry="2" />
|
|
<text x="911.10" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpLinkNode (2 samples, 0.01%)</title><rect x="931.1" y="421" width="0.1" height="15.0" fill="rgb(243,186,21)" rx="2" ry="2" />
|
|
<text x="934.09" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.02%)</title><rect x="928.2" y="341" width="0.2" height="15.0" fill="rgb(217,44,36)" rx="2" ry="2" />
|
|
<text x="931.20" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="106.0" y="373" width="0.1" height="15.0" fill="rgb(208,187,49)" rx="2" ry="2" />
|
|
<text x="108.97" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (13 samples, 0.07%)</title><rect x="783.3" y="293" width="0.8" height="15.0" fill="rgb(217,100,42)" rx="2" ry="2" />
|
|
<text x="786.32" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (341 samples, 1.73%)</title><rect x="485.0" y="325" width="20.4" height="15.0" fill="rgb(251,23,28)" rx="2" ry="2" />
|
|
<text x="487.98" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (7 samples, 0.04%)</title><rect x="719.8" y="293" width="0.4" height="15.0" fill="rgb(241,173,21)" rx="2" ry="2" />
|
|
<text x="722.82" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (16 samples, 0.08%)</title><rect x="910.6" y="437" width="1.0" height="15.0" fill="rgb(217,84,39)" rx="2" ry="2" />
|
|
<text x="913.62" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (17 samples, 0.09%)</title><rect x="146.4" y="533" width="1.0" height="15.0" fill="rgb(234,122,18)" rx="2" ry="2" />
|
|
<text x="149.36" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (277 samples, 1.41%)</title><rect x="190.3" y="565" width="16.6" height="15.0" fill="rgb(212,193,43)" rx="2" ry="2" />
|
|
<text x="193.29" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="1188.4" y="389" width="0.2" height="15.0" fill="rgb(243,15,9)" rx="2" ry="2" />
|
|
<text x="1191.44" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_delete_cell (8 samples, 0.04%)</title><rect x="627.5" y="341" width="0.4" height="15.0" fill="rgb(233,64,49)" rx="2" ry="2" />
|
|
<text x="630.46" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (24 samples, 0.12%)</title><rect x="501.1" y="261" width="1.5" height="15.0" fill="rgb(239,166,12)" rx="2" ry="2" />
|
|
<text x="504.12" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (4 samples, 0.02%)</title><rect x="1058.4" y="421" width="0.2" height="15.0" fill="rgb(221,84,9)" rx="2" ry="2" />
|
|
<text x="1061.38" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="180.9" y="389" width="0.1" height="15.0" fill="rgb(232,0,35)" rx="2" ry="2" />
|
|
<text x="183.93" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (25 samples, 0.13%)</title><rect x="848.6" y="293" width="1.5" height="15.0" fill="rgb(223,156,11)" rx="2" ry="2" />
|
|
<text x="851.62" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (8 samples, 0.04%)</title><rect x="510.2" y="293" width="0.5" height="15.0" fill="rgb(223,174,38)" rx="2" ry="2" />
|
|
<text x="513.24" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (3 samples, 0.02%)</title><rect x="377.7" y="213" width="0.2" height="15.0" fill="rgb(253,210,5)" rx="2" ry="2" />
|
|
<text x="380.73" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (2 samples, 0.01%)</title><rect x="1098.2" y="325" width="0.2" height="15.0" fill="rgb(246,125,7)" rx="2" ry="2" />
|
|
<text x="1101.23" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (74 samples, 0.38%)</title><rect x="943.1" y="517" width="4.4" height="15.0" fill="rgb(213,189,15)" rx="2" ry="2" />
|
|
<text x="946.09" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add@plt (2 samples, 0.01%)</title><rect x="852.7" y="357" width="0.1" height="15.0" fill="rgb(212,170,53)" rx="2" ry="2" />
|
|
<text x="855.70" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="238.7" y="405" width="0.1" height="15.0" fill="rgb(225,52,41)" rx="2" ry="2" />
|
|
<text x="241.67" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (602 samples, 3.06%)</title><rect x="698.0" y="517" width="36.2" height="15.0" fill="rgb(236,80,25)" rx="2" ry="2" />
|
|
<text x="701.04" y="527.5" >del..</text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (362 samples, 1.84%)</title><rect x="1058.7" y="421" width="21.7" height="15.0" fill="rgb(217,223,38)" rx="2" ry="2" />
|
|
<text x="1061.68" y="431.5" >m..</text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (6 samples, 0.03%)</title><rect x="213.9" y="405" width="0.4" height="15.0" fill="rgb(238,164,51)" rx="2" ry="2" />
|
|
<text x="216.94" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (19 samples, 0.10%)</title><rect x="1054.4" y="405" width="1.1" height="15.0" fill="rgb(207,118,25)" rx="2" ry="2" />
|
|
<text x="1057.36" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (16 samples, 0.08%)</title><rect x="928.4" y="325" width="1.0" height="15.0" fill="rgb(227,222,32)" rx="2" ry="2" />
|
|
<text x="931.44" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithContentType (7 samples, 0.04%)</title><rect x="413.9" y="373" width="0.4" height="15.0" fill="rgb(231,99,22)" rx="2" ry="2" />
|
|
<text x="416.92" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_timeout (12 samples, 0.06%)</title><rect x="524.2" y="501" width="0.7" height="15.0" fill="rgb(238,95,53)" rx="2" ry="2" />
|
|
<text x="527.17" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="217.8" y="373" width="0.2" height="15.0" fill="rgb(238,84,48)" rx="2" ry="2" />
|
|
<text x="220.84" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (57 samples, 0.29%)</title><rect x="129.4" y="501" width="3.4" height="15.0" fill="rgb(222,187,7)" rx="2" ry="2" />
|
|
<text x="132.37" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="1055.3" y="389" width="0.1" height="15.0" fill="rgb(231,61,23)" rx="2" ry="2" />
|
|
<text x="1058.32" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (5 samples, 0.03%)</title><rect x="1061.8" y="325" width="0.3" height="15.0" fill="rgb(235,220,16)" rx="2" ry="2" />
|
|
<text x="1064.80" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (4 samples, 0.02%)</title><rect x="219.8" y="453" width="0.3" height="15.0" fill="rgb(248,1,19)" rx="2" ry="2" />
|
|
<text x="222.82" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="561.6" y="405" width="0.1" height="15.0" fill="rgb(246,45,52)" rx="2" ry="2" />
|
|
<text x="564.56" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="732.9" y="437" width="0.1" height="15.0" fill="rgb(208,128,16)" rx="2" ry="2" />
|
|
<text x="735.91" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (8 samples, 0.04%)</title><rect x="1187.4" y="533" width="0.5" height="15.0" fill="rgb(224,15,32)" rx="2" ry="2" />
|
|
<text x="1190.42" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (8 samples, 0.04%)</title><rect x="402.3" y="197" width="0.5" height="15.0" fill="rgb(230,39,38)" rx="2" ry="2" />
|
|
<text x="405.33" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (60 samples, 0.31%)</title><rect x="1069.4" y="277" width="3.6" height="15.0" fill="rgb(217,69,22)" rx="2" ry="2" />
|
|
<text x="1072.43" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (9 samples, 0.05%)</title><rect x="24.5" y="533" width="0.6" height="15.0" fill="rgb(237,151,43)" rx="2" ry="2" />
|
|
<text x="27.52" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (4 samples, 0.02%)</title><rect x="141.3" y="421" width="0.3" height="15.0" fill="rgb(234,54,26)" rx="2" ry="2" />
|
|
<text x="144.32" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_easy_counter_incrby (6 samples, 0.03%)</title><rect x="951.7" y="389" width="0.4" height="15.0" fill="rgb(236,88,15)" rx="2" ry="2" />
|
|
<text x="954.73" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (2 samples, 0.01%)</title><rect x="1141.4" y="645" width="0.1" height="15.0" fill="rgb(237,119,26)" rx="2" ry="2" />
|
|
<text x="1144.39" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1160.1" y="533" width="0.1" height="15.0" fill="rgb(221,229,15)" rx="2" ry="2" />
|
|
<text x="1163.11" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="933.2" y="341" width="0.2" height="15.0" fill="rgb(244,0,52)" rx="2" ry="2" />
|
|
<text x="936.25" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcpy_avx2 (4 samples, 0.02%)</title><rect x="1158.8" y="501" width="0.2" height="15.0" fill="rgb(252,27,18)" rx="2" ry="2" />
|
|
<text x="1161.79" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mul128_fold64 (2 samples, 0.01%)</title><rect x="1075.7" y="213" width="0.1" height="15.0" fill="rgb(233,158,24)" rx="2" ry="2" />
|
|
<text x="1078.73" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (3 samples, 0.02%)</title><rect x="509.4" y="245" width="0.2" height="15.0" fill="rgb(230,125,34)" rx="2" ry="2" />
|
|
<text x="512.40" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="1179.7" y="597" width="0.5" height="15.0" fill="rgb(219,25,5)" rx="2" ry="2" />
|
|
<text x="1182.68" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_0to16_128b (15 samples, 0.08%)</title><rect x="630.0" y="261" width="0.9" height="15.0" fill="rgb(235,78,22)" rx="2" ry="2" />
|
|
<text x="632.98" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (335 samples, 1.70%)</title><rect x="948.5" y="517" width="20.1" height="15.0" fill="rgb(218,6,12)" rx="2" ry="2" />
|
|
<text x="951.49" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (2 samples, 0.01%)</title><rect x="217.0" y="373" width="0.1" height="15.0" fill="rgb(214,101,50)" rx="2" ry="2" />
|
|
<text x="220.00" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (6 samples, 0.03%)</title><rect x="909.1" y="405" width="0.4" height="15.0" fill="rgb(237,18,40)" rx="2" ry="2" />
|
|
<text x="912.12" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (12 samples, 0.06%)</title><rect x="1155.4" y="469" width="0.8" height="15.0" fill="rgb(242,115,50)" rx="2" ry="2" />
|
|
<text x="1158.43" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="187.1" y="373" width="0.2" height="15.0" fill="rgb(243,203,17)" rx="2" ry="2" />
|
|
<text x="190.11" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ja3_md5sum (5 samples, 0.03%)</title><rect x="171.4" y="437" width="0.3" height="15.0" fill="rgb(248,48,53)" rx="2" ry="2" />
|
|
<text x="174.39" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_get_type (3 samples, 0.02%)</title><rect x="712.6" y="341" width="0.1" height="15.0" fill="rgb(248,51,39)" rx="2" ry="2" />
|
|
<text x="715.56" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (3 samples, 0.02%)</title><rect x="230.2" y="421" width="0.2" height="15.0" fill="rgb(218,98,9)" rx="2" ry="2" />
|
|
<text x="233.20" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_pop_free (11 samples, 0.06%)</title><rect x="165.1" y="245" width="0.7" height="15.0" fill="rgb(232,23,47)" rx="2" ry="2" />
|
|
<text x="168.14" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="223.1" y="133" width="0.1" height="15.0" fill="rgb(245,9,19)" rx="2" ry="2" />
|
|
<text x="226.12" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (5 samples, 0.03%)</title><rect x="184.5" y="405" width="0.3" height="15.0" fill="rgb(229,84,33)" rx="2" ry="2" />
|
|
<text x="187.47" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (12 samples, 0.06%)</title><rect x="1142.9" y="581" width="0.7" height="15.0" fill="rgb(219,187,27)" rx="2" ry="2" />
|
|
<text x="1145.89" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="408.9" y="245" width="0.2" height="15.0" fill="rgb(213,85,4)" rx="2" ry="2" />
|
|
<text x="411.93" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_CreateString (2 samples, 0.01%)</title><rect x="252.3" y="421" width="0.2" height="15.0" fill="rgb(205,20,47)" rx="2" ry="2" />
|
|
<text x="255.35" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_palloc (2 samples, 0.01%)</title><rect x="1173.1" y="517" width="0.2" height="15.0" fill="rgb(210,203,3)" rx="2" ry="2" />
|
|
<text x="1176.14" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (3 samples, 0.02%)</title><rect x="879.9" y="501" width="0.2" height="15.0" fill="rgb(243,196,11)" rx="2" ry="2" />
|
|
<text x="882.89" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (3 samples, 0.02%)</title><rect x="793.5" y="357" width="0.2" height="15.0" fill="rgb(235,179,24)" rx="2" ry="2" />
|
|
<text x="796.53" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="253.9" y="437" width="0.1" height="15.0" fill="rgb(242,71,41)" rx="2" ry="2" />
|
|
<text x="256.85" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (5 samples, 0.03%)</title><rect x="478.5" y="389" width="0.3" height="15.0" fill="rgb(220,28,29)" rx="2" ry="2" />
|
|
<text x="481.49" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (11 samples, 0.06%)</title><rect x="168.6" y="357" width="0.7" height="15.0" fill="rgb(206,115,16)" rx="2" ry="2" />
|
|
<text x="171.63" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mul128_fold64 (2 samples, 0.01%)</title><rect x="709.4" y="213" width="0.1" height="15.0" fill="rgb(206,118,26)" rx="2" ry="2" />
|
|
<text x="712.38" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (2 samples, 0.01%)</title><rect x="1099.7" y="405" width="0.2" height="15.0" fill="rgb(210,87,22)" rx="2" ry="2" />
|
|
<text x="1102.73" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (3 samples, 0.02%)</title><rect x="575.0" y="293" width="0.2" height="15.0" fill="rgb(215,4,31)" rx="2" ry="2" />
|
|
<text x="578.00" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get (7 samples, 0.04%)</title><rect x="248.3" y="437" width="0.4" height="15.0" fill="rgb(251,214,48)" rx="2" ry="2" />
|
|
<text x="251.27" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (46 samples, 0.23%)</title><rect x="923.1" y="245" width="2.8" height="15.0" fill="rgb(230,60,51)" rx="2" ry="2" />
|
|
<text x="926.10" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (63 samples, 0.32%)</title><rect x="110.8" y="469" width="3.8" height="15.0" fill="rgb(240,1,33)" rx="2" ry="2" />
|
|
<text x="113.77" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (2 samples, 0.01%)</title><rect x="705.7" y="341" width="0.1" height="15.0" fill="rgb(205,13,17)" rx="2" ry="2" />
|
|
<text x="708.72" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (5 samples, 0.03%)</title><rect x="788.9" y="261" width="0.3" height="15.0" fill="rgb(235,139,16)" rx="2" ry="2" />
|
|
<text x="791.90" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (264 samples, 1.34%)</title><rect x="156.7" y="565" width="15.9" height="15.0" fill="rgb(215,172,3)" rx="2" ry="2" />
|
|
<text x="159.74" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (3 samples, 0.02%)</title><rect x="774.1" y="357" width="0.2" height="15.0" fill="rgb(237,216,14)" rx="2" ry="2" />
|
|
<text x="777.14" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (58 samples, 0.30%)</title><rect x="191.5" y="437" width="3.5" height="15.0" fill="rgb(241,60,23)" rx="2" ry="2" />
|
|
<text x="194.49" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="231.9" y="341" width="0.2" height="15.0" fill="rgb(238,157,15)" rx="2" ry="2" />
|
|
<text x="234.88" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (79 samples, 0.40%)</title><rect x="55.5" y="613" width="4.7" height="15.0" fill="rgb(236,89,3)" rx="2" ry="2" />
|
|
<text x="58.49" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (5 samples, 0.03%)</title><rect x="1055.0" y="373" width="0.3" height="15.0" fill="rgb(251,161,0)" rx="2" ry="2" />
|
|
<text x="1057.96" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.02%)</title><rect x="1144.1" y="565" width="0.2" height="15.0" fill="rgb(210,174,17)" rx="2" ry="2" />
|
|
<text x="1147.15" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vdso_clock_gettime (25 samples, 0.13%)</title><rect x="240.9" y="405" width="1.5" height="15.0" fill="rgb(240,44,42)" rx="2" ry="2" />
|
|
<text x="243.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (2 samples, 0.01%)</title><rect x="835.4" y="229" width="0.1" height="15.0" fill="rgb(213,210,31)" rx="2" ry="2" />
|
|
<text x="838.36" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (31 samples, 0.16%)</title><rect x="1037.3" y="277" width="1.9" height="15.0" fill="rgb(207,222,2)" rx="2" ry="2" />
|
|
<text x="1040.32" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_get_domain_from_fqdn (2 samples, 0.01%)</title><rect x="522.0" y="373" width="0.1" height="15.0" fill="rgb(212,13,36)" rx="2" ry="2" />
|
|
<text x="525.01" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SIP_TCP_ENTRY (2 samples, 0.01%)</title><rect x="424.7" y="453" width="0.1" height="15.0" fill="rgb(251,48,39)" rx="2" ry="2" />
|
|
<text x="427.66" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="909.1" y="261" width="0.2" height="15.0" fill="rgb(236,176,45)" rx="2" ry="2" />
|
|
<text x="912.12" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (2 samples, 0.01%)</title><rect x="255.1" y="597" width="0.1" height="15.0" fill="rgb(207,70,11)" rx="2" ry="2" />
|
|
<text x="258.11" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_DocFormatCallBack (4 samples, 0.02%)</title><rect x="385.2" y="277" width="0.2" height="15.0" fill="rgb(218,205,0)" rx="2" ry="2" />
|
|
<text x="388.17" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (10 samples, 0.05%)</title><rect x="1153.6" y="501" width="0.6" height="15.0" fill="rgb(227,176,52)" rx="2" ry="2" />
|
|
<text x="1156.63" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_create_pool (2 samples, 0.01%)</title><rect x="384.0" y="277" width="0.1" height="15.0" fill="rgb(252,68,12)" rx="2" ry="2" />
|
|
<text x="386.97" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="419.1" y="293" width="0.1" height="15.0" fill="rgb(251,65,53)" rx="2" ry="2" />
|
|
<text x="422.08" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_initHttpStream (3 samples, 0.02%)</title><rect x="422.4" y="437" width="0.2" height="15.0" fill="rgb(236,107,8)" rx="2" ry="2" />
|
|
<text x="425.44" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (2 samples, 0.01%)</title><rect x="1154.0" y="469" width="0.2" height="15.0" fill="rgb(211,151,49)" rx="2" ry="2" />
|
|
<text x="1157.05" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>raw_ip_frag_list_stream_attach (6 samples, 0.03%)</title><rect x="970.6" y="517" width="0.3" height="15.0" fill="rgb(222,93,40)" rx="2" ry="2" />
|
|
<text x="973.58" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_update (26 samples, 0.13%)</title><rect x="524.9" y="501" width="1.5" height="15.0" fill="rgb(214,10,32)" rx="2" ry="2" />
|
|
<text x="527.89" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (4 samples, 0.02%)</title><rect x="254.0" y="437" width="0.3" height="15.0" fill="rgb(215,152,5)" rx="2" ry="2" />
|
|
<text x="257.03" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_add (9 samples, 0.05%)</title><rect x="1045.2" y="517" width="0.6" height="15.0" fill="rgb(220,199,32)" rx="2" ry="2" />
|
|
<text x="1048.24" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="408.9" y="261" width="0.2" height="15.0" fill="rgb(208,119,14)" rx="2" ry="2" />
|
|
<text x="411.93" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (194 samples, 0.99%)</title><rect x="232.1" y="581" width="11.7" height="15.0" fill="rgb(215,211,52)" rx="2" ry="2" />
|
|
<text x="235.12" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithChunkedData (31 samples, 0.16%)</title><rect x="384.1" y="389" width="1.8" height="15.0" fill="rgb(230,82,14)" rx="2" ry="2" />
|
|
<text x="387.09" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="1180.5" y="629" width="0.5" height="15.0" fill="rgb(222,96,51)" rx="2" ry="2" />
|
|
<text x="1183.46" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (5 samples, 0.03%)</title><rect x="1142.2" y="421" width="0.3" height="15.0" fill="rgb(224,176,34)" rx="2" ry="2" />
|
|
<text x="1145.17" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (2 samples, 0.01%)</title><rect x="953.0" y="357" width="0.1" height="15.0" fill="rgb(231,29,49)" rx="2" ry="2" />
|
|
<text x="955.99" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (38 samples, 0.19%)</title><rect x="154.5" y="517" width="2.2" height="15.0" fill="rgb(232,156,51)" rx="2" ry="2" />
|
|
<text x="157.46" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_9to16_128b (6 samples, 0.03%)</title><rect x="1075.0" y="245" width="0.4" height="15.0" fill="rgb(215,67,45)" rx="2" ry="2" />
|
|
<text x="1078.01" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (20 samples, 0.10%)</title><rect x="247.0" y="421" width="1.2" height="15.0" fill="rgb(240,45,23)" rx="2" ry="2" />
|
|
<text x="250.01" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime_2 (2 samples, 0.01%)</title><rect x="378.0" y="245" width="0.1" height="15.0" fill="rgb(224,17,15)" rx="2" ry="2" />
|
|
<text x="380.97" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_pop_free (4 samples, 0.02%)</title><rect x="168.6" y="325" width="0.3" height="15.0" fill="rgb(242,90,33)" rx="2" ry="2" />
|
|
<text x="171.63" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (41 samples, 0.21%)</title><rect x="760.8" y="389" width="2.5" height="15.0" fill="rgb(238,5,25)" rx="2" ry="2" />
|
|
<text x="763.82" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (3 samples, 0.02%)</title><rect x="155.8" y="421" width="0.2" height="15.0" fill="rgb(241,218,25)" rx="2" ry="2" />
|
|
<text x="158.78" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (124 samples, 0.63%)</title><rect x="628.3" y="325" width="7.4" height="15.0" fill="rgb(240,198,51)" rx="2" ry="2" />
|
|
<text x="631.30" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_entry_dying (2 samples, 0.01%)</title><rect x="1069.3" y="277" width="0.1" height="15.0" fill="rgb(244,33,46)" rx="2" ry="2" />
|
|
<text x="1072.31" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (2 samples, 0.01%)</title><rect x="990.3" y="261" width="0.1" height="15.0" fill="rgb(224,206,2)" rx="2" ry="2" />
|
|
<text x="993.26" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1142.7" y="469" width="0.2" height="15.0" fill="rgb(252,57,23)" rx="2" ry="2" />
|
|
<text x="1145.71" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5,699 samples, 28.99%)</title><rect x="325.9" y="549" width="342.0" height="15.0" fill="rgb(207,176,37)" rx="2" ry="2" />
|
|
<text x="328.87" y="559.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="254.5" y="485" width="0.1" height="15.0" fill="rgb(248,53,30)" rx="2" ry="2" />
|
|
<text x="257.51" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_new (8 samples, 0.04%)</title><rect x="377.4" y="245" width="0.5" height="15.0" fill="rgb(232,186,11)" rx="2" ry="2" />
|
|
<text x="380.43" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (262 samples, 1.33%)</title><rect x="951.1" y="453" width="15.7" height="15.0" fill="rgb(235,34,3)" rx="2" ry="2" />
|
|
<text x="954.07" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (144 samples, 0.73%)</title><rect x="144.8" y="597" width="8.6" height="15.0" fill="rgb(252,154,38)" rx="2" ry="2" />
|
|
<text x="147.80" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (11 samples, 0.06%)</title><rect x="581.8" y="261" width="0.6" height="15.0" fill="rgb(251,222,31)" rx="2" ry="2" />
|
|
<text x="584.78" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (42 samples, 0.21%)</title><rect x="831.8" y="277" width="2.5" height="15.0" fill="rgb(244,179,6)" rx="2" ry="2" />
|
|
<text x="834.82" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="254.6" y="357" width="0.2" height="15.0" fill="rgb(211,215,50)" rx="2" ry="2" />
|
|
<text x="257.63" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="193.4" y="405" width="0.1" height="15.0" fill="rgb(222,204,34)" rx="2" ry="2" />
|
|
<text x="196.35" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.8] (5 samples, 0.03%)</title><rect x="1106.8" y="549" width="0.3" height="15.0" fill="rgb(228,205,4)" rx="2" ry="2" />
|
|
<text x="1109.76" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="253.3" y="405" width="0.1" height="15.0" fill="rgb(214,200,18)" rx="2" ry="2" />
|
|
<text x="256.25" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="110.5" y="389" width="0.2" height="15.0" fill="rgb(217,172,23)" rx="2" ry="2" />
|
|
<text x="113.47" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (12 samples, 0.06%)</title><rect x="1004.8" y="309" width="0.7" height="15.0" fill="rgb(251,105,9)" rx="2" ry="2" />
|
|
<text x="1007.79" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime_2 (2 samples, 0.01%)</title><rect x="704.9" y="389" width="0.2" height="15.0" fill="rgb(237,228,1)" rx="2" ry="2" />
|
|
<text x="707.94" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="257.3" y="613" width="0.4" height="15.0" fill="rgb(216,10,37)" rx="2" ry="2" />
|
|
<text x="260.27" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (22 samples, 0.11%)</title><rect x="910.3" y="501" width="1.3" height="15.0" fill="rgb(239,43,50)" rx="2" ry="2" />
|
|
<text x="913.32" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (5 samples, 0.03%)</title><rect x="561.7" y="421" width="0.3" height="15.0" fill="rgb(218,196,45)" rx="2" ry="2" />
|
|
<text x="564.74" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="349.2" y="453" width="0.1" height="15.0" fill="rgb(214,70,13)" rx="2" ry="2" />
|
|
<text x="352.22" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1148.5" y="501" width="0.1" height="15.0" fill="rgb(254,17,30)" rx="2" ry="2" />
|
|
<text x="1151.47" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="156.7" y="405" width="0.2" height="15.0" fill="rgb(253,63,51)" rx="2" ry="2" />
|
|
<text x="159.74" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (101 samples, 0.51%)</title><rect x="352.1" y="517" width="6.1" height="15.0" fill="rgb(243,97,4)" rx="2" ry="2" />
|
|
<text x="355.10" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="909.1" y="309" width="0.2" height="15.0" fill="rgb(220,53,3)" rx="2" ry="2" />
|
|
<text x="912.12" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mul128_fold64 (2 samples, 0.01%)</title><rect x="961.8" y="213" width="0.1" height="15.0" fill="rgb(208,199,32)" rx="2" ry="2" />
|
|
<text x="964.75" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="1155.5" y="357" width="0.7" height="15.0" fill="rgb(215,94,6)" rx="2" ry="2" />
|
|
<text x="1158.49" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (3 samples, 0.02%)</title><rect x="1023.5" y="517" width="0.1" height="15.0" fill="rgb(229,163,46)" rx="2" ry="2" />
|
|
<text x="1026.45" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="929.0" y="197" width="0.2" height="15.0" fill="rgb(213,121,50)" rx="2" ry="2" />
|
|
<text x="931.98" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="389" width="0.2" height="15.0" fill="rgb(254,29,46)" rx="2" ry="2" />
|
|
<text x="1145.47" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1099.7" y="453" width="0.2" height="15.0" fill="rgb(210,39,17)" rx="2" ry="2" />
|
|
<text x="1102.73" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_insert (2 samples, 0.01%)</title><rect x="164.8" y="245" width="0.1" height="15.0" fill="rgb(206,166,12)" rx="2" ry="2" />
|
|
<text x="167.78" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (9 samples, 0.05%)</title><rect x="1147.6" y="581" width="0.6" height="15.0" fill="rgb(243,132,12)" rx="2" ry="2" />
|
|
<text x="1150.63" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (21 samples, 0.11%)</title><rect x="504.2" y="293" width="1.2" height="15.0" fill="rgb(228,93,6)" rx="2" ry="2" />
|
|
<text x="507.18" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (70 samples, 0.36%)</title><rect x="379.9" y="389" width="4.2" height="15.0" fill="rgb(233,165,41)" rx="2" ry="2" />
|
|
<text x="382.89" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (190 samples, 0.97%)</title><rect x="132.8" y="565" width="11.4" height="15.0" fill="rgb(207,19,41)" rx="2" ry="2" />
|
|
<text x="135.80" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (8 samples, 0.04%)</title><rect x="1141.0" y="661" width="0.5" height="15.0" fill="rgb(221,223,2)" rx="2" ry="2" />
|
|
<text x="1144.03" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (2 samples, 0.01%)</title><rect x="1148.2" y="581" width="0.1" height="15.0" fill="rgb(254,151,1)" rx="2" ry="2" />
|
|
<text x="1151.17" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (154 samples, 0.78%)</title><rect x="489.8" y="293" width="9.3" height="15.0" fill="rgb(241,129,5)" rx="2" ry="2" />
|
|
<text x="492.84" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_app_and_proto_update (17 samples, 0.09%)</title><rect x="1083.9" y="421" width="1.0" height="15.0" fill="rgb(242,52,6)" rx="2" ry="2" />
|
|
<text x="1086.89" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (192 samples, 0.98%)</title><rect x="1168.1" y="597" width="11.5" height="15.0" fill="rgb(244,211,37)" rx="2" ry="2" />
|
|
<text x="1171.09" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (2 samples, 0.01%)</title><rect x="1186.3" y="405" width="0.2" height="15.0" fill="rgb(212,153,40)" rx="2" ry="2" />
|
|
<text x="1189.34" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="212.7" y="357" width="0.2" height="15.0" fill="rgb(222,201,27)" rx="2" ry="2" />
|
|
<text x="215.68" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (834 samples, 4.24%)</title><rect x="372.4" y="437" width="50.0" height="15.0" fill="rgb(224,86,16)" rx="2" ry="2" />
|
|
<text x="375.38" y="447.5" >http_..</text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (3 samples, 0.02%)</title><rect x="961.9" y="309" width="0.2" height="15.0" fill="rgb(210,140,16)" rx="2" ry="2" />
|
|
<text x="964.93" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (464 samples, 2.36%)</title><rect x="704.6" y="421" width="27.9" height="15.0" fill="rgb(223,228,54)" rx="2" ry="2" />
|
|
<text x="707.64" y="431.5" >m..</text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (2 samples, 0.01%)</title><rect x="217.0" y="389" width="0.1" height="15.0" fill="rgb(231,83,40)" rx="2" ry="2" />
|
|
<text x="220.00" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (16 samples, 0.08%)</title><rect x="52.3" y="565" width="0.9" height="15.0" fill="rgb(250,227,0)" rx="2" ry="2" />
|
|
<text x="55.25" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1141.4" y="533" width="0.1" height="15.0" fill="rgb(229,72,10)" rx="2" ry="2" />
|
|
<text x="1144.39" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (3 samples, 0.02%)</title><rect x="1098.5" y="309" width="0.2" height="15.0" fill="rgb(212,165,31)" rx="2" ry="2" />
|
|
<text x="1101.53" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (416 samples, 2.12%)</title><rect x="68.5" y="645" width="25.0" height="15.0" fill="rgb(236,36,12)" rx="2" ry="2" />
|
|
<text x="71.52" y="655.5" >[..</text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (2 samples, 0.01%)</title><rect x="884.2" y="293" width="0.1" height="15.0" fill="rgb(215,32,41)" rx="2" ry="2" />
|
|
<text x="887.21" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_client_hello (9 samples, 0.05%)</title><rect x="933.5" y="405" width="0.6" height="15.0" fill="rgb(214,173,39)" rx="2" ry="2" />
|
|
<text x="936.55" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_l_avx (5 samples, 0.03%)</title><rect x="378.9" y="389" width="0.3" height="15.0" fill="rgb(219,44,38)" rx="2" ry="2" />
|
|
<text x="381.93" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (703 samples, 3.58%)</title><rect x="974.8" y="469" width="42.2" height="15.0" fill="rgb(220,179,25)" rx="2" ry="2" />
|
|
<text x="977.84" y="479.5" >[st..</text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (3 samples, 0.02%)</title><rect x="105.7" y="229" width="0.1" height="15.0" fill="rgb(224,50,4)" rx="2" ry="2" />
|
|
<text x="108.67" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_and_copy_streamindex (2 samples, 0.01%)</title><rect x="911.8" y="517" width="0.1" height="15.0" fill="rgb(238,37,36)" rx="2" ry="2" />
|
|
<text x="914.76" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>EVP_PKEY_free (2 samples, 0.01%)</title><rect x="169.0" y="309" width="0.2" height="15.0" fill="rgb(252,203,54)" rx="2" ry="2" />
|
|
<text x="172.05" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="1143.7" y="629" width="0.4" height="15.0" fill="rgb(212,66,27)" rx="2" ry="2" />
|
|
<text x="1146.73" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (246 samples, 1.25%)</title><rect x="114.6" y="533" width="14.7" height="15.0" fill="rgb(210,212,2)" rx="2" ry="2" />
|
|
<text x="117.55" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (3 samples, 0.02%)</title><rect x="1100.2" y="293" width="0.2" height="15.0" fill="rgb(232,137,53)" rx="2" ry="2" />
|
|
<text x="1103.21" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (34 samples, 0.17%)</title><rect x="623.2" y="309" width="2.0" height="15.0" fill="rgb(219,43,9)" rx="2" ry="2" />
|
|
<text x="626.20" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (277 samples, 1.41%)</title><rect x="190.3" y="549" width="16.6" height="15.0" fill="rgb(214,200,21)" rx="2" ry="2" />
|
|
<text x="193.29" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="384.0" y="165" width="0.1" height="15.0" fill="rgb(223,16,8)" rx="2" ry="2" />
|
|
<text x="386.97" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_update (20 samples, 0.10%)</title><rect x="698.7" y="501" width="1.2" height="15.0" fill="rgb(244,210,17)" rx="2" ry="2" />
|
|
<text x="701.70" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (24 samples, 0.12%)</title><rect x="58.8" y="581" width="1.4" height="15.0" fill="rgb(224,175,19)" rx="2" ry="2" />
|
|
<text x="61.79" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (21 samples, 0.11%)</title><rect x="775.6" y="341" width="1.3" height="15.0" fill="rgb(236,229,5)" rx="2" ry="2" />
|
|
<text x="778.64" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="1178.5" y="373" width="0.8" height="15.0" fill="rgb(221,117,37)" rx="2" ry="2" />
|
|
<text x="1181.54" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (371 samples, 1.89%)</title><rect x="915.2" y="485" width="22.3" height="15.0" fill="rgb(228,79,29)" rx="2" ry="2" />
|
|
<text x="918.24" y="495.5" >c..</text>
|
|
</g>
|
|
<g >
|
|
<title>metric_scheme_counter_free (3 samples, 0.02%)</title><rect x="506.5" y="325" width="0.1" height="15.0" fill="rgb(234,97,22)" rx="2" ry="2" />
|
|
<text x="509.46" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (9 samples, 0.05%)</title><rect x="663.6" y="437" width="0.5" height="15.0" fill="rgb(218,208,33)" rx="2" ry="2" />
|
|
<text x="666.59" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="413.0" y="229" width="0.2" height="15.0" fill="rgb(206,197,45)" rx="2" ry="2" />
|
|
<text x="415.96" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (17 samples, 0.09%)</title><rect x="146.4" y="501" width="1.0" height="15.0" fill="rgb(216,57,3)" rx="2" ry="2" />
|
|
<text x="149.36" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="208.1" y="341" width="0.4" height="15.0" fill="rgb(229,120,15)" rx="2" ry="2" />
|
|
<text x="211.12" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="1167.3" y="469" width="0.7" height="15.0" fill="rgb(249,196,27)" rx="2" ry="2" />
|
|
<text x="1170.25" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (4 samples, 0.02%)</title><rect x="431.5" y="405" width="0.2" height="15.0" fill="rgb(246,19,11)" rx="2" ry="2" />
|
|
<text x="434.50" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (4 samples, 0.02%)</title><rect x="470.6" y="437" width="0.3" height="15.0" fill="rgb(220,51,26)" rx="2" ry="2" />
|
|
<text x="473.63" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1142.3" y="325" width="0.2" height="15.0" fill="rgb(250,109,40)" rx="2" ry="2" />
|
|
<text x="1145.35" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (2 samples, 0.01%)</title><rect x="988.0" y="341" width="0.2" height="15.0" fill="rgb(216,81,43)" rx="2" ry="2" />
|
|
<text x="991.04" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>DNS_UDP_ENTRY (3 samples, 0.02%)</title><rect x="743.5" y="469" width="0.2" height="15.0" fill="rgb(219,0,32)" rx="2" ry="2" />
|
|
<text x="746.53" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (2 samples, 0.01%)</title><rect x="1062.3" y="389" width="0.1" height="15.0" fill="rgb(220,16,32)" rx="2" ry="2" />
|
|
<text x="1065.28" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (8 samples, 0.04%)</title><rect x="1032.0" y="421" width="0.5" height="15.0" fill="rgb(240,1,51)" rx="2" ry="2" />
|
|
<text x="1035.03" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="254.5" y="501" width="0.1" height="15.0" fill="rgb(230,62,1)" rx="2" ry="2" />
|
|
<text x="257.51" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (15 samples, 0.08%)</title><rect x="157.0" y="341" width="0.9" height="15.0" fill="rgb(227,145,17)" rx="2" ry="2" />
|
|
<text x="159.98" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="252.3" y="389" width="0.2" height="15.0" fill="rgb(230,54,15)" rx="2" ry="2" />
|
|
<text x="255.35" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="401.9" y="213" width="0.1" height="15.0" fill="rgb(214,60,9)" rx="2" ry="2" />
|
|
<text x="404.91" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (15 samples, 0.08%)</title><rect x="910.7" y="405" width="0.9" height="15.0" fill="rgb(224,206,42)" rx="2" ry="2" />
|
|
<text x="913.68" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (32 samples, 0.16%)</title><rect x="414.5" y="261" width="1.9" height="15.0" fill="rgb(224,164,33)" rx="2" ry="2" />
|
|
<text x="417.46" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>strlen@plt (2 samples, 0.01%)</title><rect x="790.9" y="309" width="0.2" height="15.0" fill="rgb(206,1,8)" rx="2" ry="2" />
|
|
<text x="793.95" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___snprintf (5 samples, 0.03%)</title><rect x="254.8" y="437" width="0.3" height="15.0" fill="rgb(215,114,40)" rx="2" ry="2" />
|
|
<text x="257.81" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (26 samples, 0.13%)</title><rect x="401.4" y="229" width="1.6" height="15.0" fill="rgb(241,185,19)" rx="2" ry="2" />
|
|
<text x="404.43" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (5 samples, 0.03%)</title><rect x="354.1" y="261" width="0.3" height="15.0" fill="rgb(225,139,54)" rx="2" ry="2" />
|
|
<text x="357.14" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="1155.5" y="341" width="0.7" height="15.0" fill="rgb(213,218,34)" rx="2" ry="2" />
|
|
<text x="1158.49" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (9 samples, 0.05%)</title><rect x="157.0" y="229" width="0.5" height="15.0" fill="rgb(245,54,32)" rx="2" ry="2" />
|
|
<text x="159.98" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="145.4" y="245" width="0.1" height="15.0" fill="rgb(239,62,15)" rx="2" ry="2" />
|
|
<text x="148.40" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log_level_enabled@plt (4 samples, 0.02%)</title><rect x="275.5" y="581" width="0.3" height="15.0" fill="rgb(243,0,49)" rx="2" ry="2" />
|
|
<text x="278.52" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_bin2bn (2 samples, 0.01%)</title><rect x="223.1" y="101" width="0.1" height="15.0" fill="rgb(222,112,16)" rx="2" ry="2" />
|
|
<text x="226.12" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (6 samples, 0.03%)</title><rect x="213.0" y="405" width="0.4" height="15.0" fill="rgb(254,162,22)" rx="2" ry="2" />
|
|
<text x="216.04" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (39 samples, 0.20%)</title><rect x="243.8" y="565" width="2.3" height="15.0" fill="rgb(240,142,44)" rx="2" ry="2" />
|
|
<text x="246.77" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_recv_burst (229 samples, 1.16%)</title><rect x="1110.7" y="597" width="13.7" height="15.0" fill="rgb(205,14,7)" rx="2" ry="2" />
|
|
<text x="1113.66" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (8 samples, 0.04%)</title><rect x="1099.0" y="437" width="0.5" height="15.0" fill="rgb(232,38,21)" rx="2" ry="2" />
|
|
<text x="1102.01" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (2 samples, 0.01%)</title><rect x="479.5" y="277" width="0.1" height="15.0" fill="rgb(238,200,39)" rx="2" ry="2" />
|
|
<text x="482.46" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (10 samples, 0.05%)</title><rect x="153.9" y="549" width="0.6" height="15.0" fill="rgb(213,192,13)" rx="2" ry="2" />
|
|
<text x="156.86" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (29 samples, 0.15%)</title><rect x="558.7" y="405" width="1.8" height="15.0" fill="rgb(246,153,14)" rx="2" ry="2" />
|
|
<text x="561.74" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="253.0" y="309" width="0.1" height="15.0" fill="rgb(238,170,20)" rx="2" ry="2" />
|
|
<text x="256.01" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (5 samples, 0.03%)</title><rect x="244.2" y="405" width="0.3" height="15.0" fill="rgb(213,108,17)" rx="2" ry="2" />
|
|
<text x="247.19" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_calloc (2 samples, 0.01%)</title><rect x="970.3" y="533" width="0.1" height="15.0" fill="rgb(213,181,4)" rx="2" ry="2" />
|
|
<text x="973.28" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_jhash_4words (12 samples, 0.06%)</title><rect x="467.8" y="501" width="0.7" height="15.0" fill="rgb(239,42,15)" rx="2" ry="2" />
|
|
<text x="470.81" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="1167.4" y="421" width="0.6" height="15.0" fill="rgb(247,123,20)" rx="2" ry="2" />
|
|
<text x="1170.43" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (3 samples, 0.02%)</title><rect x="925.9" y="245" width="0.2" height="15.0" fill="rgb(220,19,49)" rx="2" ry="2" />
|
|
<text x="928.92" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stratum_json_checker (3 samples, 0.02%)</title><rect x="434.9" y="421" width="0.2" height="15.0" fill="rgb(205,148,40)" rx="2" ry="2" />
|
|
<text x="437.92" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (15 samples, 0.08%)</title><rect x="157.0" y="309" width="0.9" height="15.0" fill="rgb(209,160,36)" rx="2" ry="2" />
|
|
<text x="159.98" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (4 samples, 0.02%)</title><rect x="834.5" y="245" width="0.2" height="15.0" fill="rgb(220,89,14)" rx="2" ry="2" />
|
|
<text x="837.46" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (14 samples, 0.07%)</title><rect x="1186.6" y="421" width="0.8" height="15.0" fill="rgb(220,45,27)" rx="2" ry="2" />
|
|
<text x="1189.58" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (5 samples, 0.03%)</title><rect x="219.5" y="501" width="0.3" height="15.0" fill="rgb(250,20,13)" rx="2" ry="2" />
|
|
<text x="222.46" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="587.2" y="389" width="0.2" height="15.0" fill="rgb(248,118,25)" rx="2" ry="2" />
|
|
<text x="590.25" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="935.2" y="405" width="0.1" height="15.0" fill="rgb(230,198,39)" rx="2" ry="2" />
|
|
<text x="938.17" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (11 samples, 0.06%)</title><rect x="1188.0" y="533" width="0.6" height="15.0" fill="rgb(212,210,53)" rx="2" ry="2" />
|
|
<text x="1190.96" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (7 samples, 0.04%)</title><rect x="1188.7" y="533" width="0.5" height="15.0" fill="rgb(242,40,36)" rx="2" ry="2" />
|
|
<text x="1191.74" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (8 samples, 0.04%)</title><rect x="1039.8" y="309" width="0.5" height="15.0" fill="rgb(211,153,7)" rx="2" ry="2" />
|
|
<text x="1042.84" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_enc_free (2 samples, 0.01%)</title><rect x="109.1" y="341" width="0.1" height="15.0" fill="rgb(207,102,17)" rx="2" ry="2" />
|
|
<text x="112.09" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (5 samples, 0.03%)</title><rect x="47.8" y="581" width="0.3" height="15.0" fill="rgb(242,158,48)" rx="2" ry="2" />
|
|
<text x="50.81" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (106 samples, 0.54%)</title><rect x="880.7" y="469" width="6.3" height="15.0" fill="rgb(215,80,32)" rx="2" ry="2" />
|
|
<text x="883.67" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="984.2" y="373" width="0.1" height="15.0" fill="rgb(226,47,30)" rx="2" ry="2" />
|
|
<text x="987.20" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (18 samples, 0.09%)</title><rect x="1005.8" y="309" width="1.1" height="15.0" fill="rgb(228,197,7)" rx="2" ry="2" />
|
|
<text x="1008.81" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (5 samples, 0.03%)</title><rect x="219.5" y="533" width="0.3" height="15.0" fill="rgb(214,190,23)" rx="2" ry="2" />
|
|
<text x="222.46" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (164 samples, 0.83%)</title><rect x="173.2" y="421" width="9.8" height="15.0" fill="rgb(232,74,14)" rx="2" ry="2" />
|
|
<text x="176.19" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="210.0" y="389" width="0.1" height="15.0" fill="rgb(237,169,40)" rx="2" ry="2" />
|
|
<text x="212.98" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (3 samples, 0.02%)</title><rect x="108.8" y="341" width="0.2" height="15.0" fill="rgb(245,215,19)" rx="2" ry="2" />
|
|
<text x="111.79" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (287 samples, 1.46%)</title><rect x="390.9" y="309" width="17.2" height="15.0" fill="rgb(223,6,24)" rx="2" ry="2" />
|
|
<text x="393.87" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="385.0" y="197" width="0.2" height="15.0" fill="rgb(244,177,25)" rx="2" ry="2" />
|
|
<text x="388.05" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (3 samples, 0.02%)</title><rect x="192.3" y="421" width="0.2" height="15.0" fill="rgb(245,20,54)" rx="2" ry="2" />
|
|
<text x="195.27" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (3 samples, 0.02%)</title><rect x="780.5" y="341" width="0.2" height="15.0" fill="rgb(210,178,45)" rx="2" ry="2" />
|
|
<text x="783.50" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (2 samples, 0.01%)</title><rect x="787.7" y="245" width="0.1" height="15.0" fill="rgb(233,73,47)" rx="2" ry="2" />
|
|
<text x="790.70" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (6 samples, 0.03%)</title><rect x="144.8" y="453" width="0.4" height="15.0" fill="rgb(218,25,32)" rx="2" ry="2" />
|
|
<text x="147.80" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (9 samples, 0.05%)</title><rect x="153.9" y="341" width="0.5" height="15.0" fill="rgb(216,63,45)" rx="2" ry="2" />
|
|
<text x="156.86" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (26 samples, 0.13%)</title><rect x="839.7" y="277" width="1.6" height="15.0" fill="rgb(222,72,38)" rx="2" ry="2" />
|
|
<text x="842.74" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (3 samples, 0.02%)</title><rect x="703.6" y="389" width="0.1" height="15.0" fill="rgb(218,174,50)" rx="2" ry="2" />
|
|
<text x="706.56" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="1141.6" y="629" width="0.1" height="15.0" fill="rgb(229,88,28)" rx="2" ry="2" />
|
|
<text x="1144.57" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>file_buffer (5 samples, 0.03%)</title><rect x="925.5" y="213" width="0.3" height="15.0" fill="rgb(220,132,34)" rx="2" ry="2" />
|
|
<text x="928.50" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="251.1" y="405" width="0.2" height="15.0" fill="rgb(235,74,33)" rx="2" ry="2" />
|
|
<text x="254.15" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (134 samples, 0.68%)</title><rect x="1152.1" y="533" width="8.0" height="15.0" fill="rgb(240,53,30)" rx="2" ry="2" />
|
|
<text x="1155.07" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_xorshift64 (2 samples, 0.01%)</title><rect x="1041.3" y="213" width="0.1" height="15.0" fill="rgb(215,61,34)" rx="2" ry="2" />
|
|
<text x="1044.28" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (12 samples, 0.06%)</title><rect x="1142.9" y="405" width="0.7" height="15.0" fill="rgb(249,39,22)" rx="2" ry="2" />
|
|
<text x="1145.89" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (4 samples, 0.02%)</title><rect x="789.6" y="261" width="0.3" height="15.0" fill="rgb(230,42,18)" rx="2" ry="2" />
|
|
<text x="792.62" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_app_and_proto_update (56 samples, 0.28%)</title><rect x="478.8" y="405" width="3.4" height="15.0" fill="rgb(254,31,14)" rx="2" ry="2" />
|
|
<text x="481.80" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (69 samples, 0.35%)</title><rect x="617.0" y="277" width="4.2" height="15.0" fill="rgb(253,185,11)" rx="2" ry="2" />
|
|
<text x="620.01" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (4 samples, 0.02%)</title><rect x="417.0" y="213" width="0.2" height="15.0" fill="rgb(238,26,5)" rx="2" ry="2" />
|
|
<text x="419.98" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="422.9" y="293" width="0.4" height="15.0" fill="rgb(233,184,13)" rx="2" ry="2" />
|
|
<text x="425.86" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="244.7" y="389" width="0.1" height="15.0" fill="rgb(247,58,33)" rx="2" ry="2" />
|
|
<text x="247.73" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="222.4" y="181" width="0.1" height="15.0" fill="rgb(209,73,16)" rx="2" ry="2" />
|
|
<text x="225.40" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (6 samples, 0.03%)</title><rect x="1080.8" y="437" width="0.4" height="15.0" fill="rgb(253,140,43)" rx="2" ry="2" />
|
|
<text x="1083.83" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (112 samples, 0.57%)</title><rect x="225.4" y="517" width="6.7" height="15.0" fill="rgb(243,198,42)" rx="2" ry="2" />
|
|
<text x="228.40" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (4 samples, 0.02%)</title><rect x="131.1" y="309" width="0.3" height="15.0" fill="rgb(248,122,37)" rx="2" ry="2" />
|
|
<text x="134.11" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (473 samples, 2.41%)</title><rect x="704.1" y="453" width="28.4" height="15.0" fill="rgb(208,120,37)" rx="2" ry="2" />
|
|
<text x="707.10" y="463.5" >[s..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="229.2" y="421" width="0.2" height="15.0" fill="rgb(233,58,21)" rx="2" ry="2" />
|
|
<text x="232.24" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (3 samples, 0.02%)</title><rect x="219.3" y="517" width="0.2" height="15.0" fill="rgb(232,97,3)" rx="2" ry="2" />
|
|
<text x="222.28" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="413.4" y="261" width="0.3" height="15.0" fill="rgb(250,95,35)" rx="2" ry="2" />
|
|
<text x="416.38" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (71 samples, 0.36%)</title><rect x="617.0" y="293" width="4.3" height="15.0" fill="rgb(252,195,21)" rx="2" ry="2" />
|
|
<text x="620.01" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (190 samples, 0.97%)</title><rect x="132.8" y="501" width="11.4" height="15.0" fill="rgb(238,82,53)" rx="2" ry="2" />
|
|
<text x="135.80" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (10 samples, 0.05%)</title><rect x="620.6" y="245" width="0.6" height="15.0" fill="rgb(206,106,30)" rx="2" ry="2" />
|
|
<text x="623.56" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (7 samples, 0.04%)</title><rect x="795.4" y="373" width="0.5" height="15.0" fill="rgb(210,78,19)" rx="2" ry="2" />
|
|
<text x="798.45" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (15 samples, 0.08%)</title><rect x="910.7" y="421" width="0.9" height="15.0" fill="rgb(234,68,20)" rx="2" ry="2" />
|
|
<text x="913.68" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (9 samples, 0.05%)</title><rect x="947.0" y="501" width="0.5" height="15.0" fill="rgb(218,80,33)" rx="2" ry="2" />
|
|
<text x="949.99" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (3 samples, 0.02%)</title><rect x="159.1" y="325" width="0.2" height="15.0" fill="rgb(251,32,44)" rx="2" ry="2" />
|
|
<text x="162.14" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libosfp.so.1.3] (10 samples, 0.05%)</title><rect x="1145.9" y="453" width="0.6" height="15.0" fill="rgb(215,39,17)" rx="2" ry="2" />
|
|
<text x="1148.95" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (8 samples, 0.04%)</title><rect x="1065.1" y="341" width="0.5" height="15.0" fill="rgb(219,128,46)" rx="2" ry="2" />
|
|
<text x="1068.10" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_dos_metric_update (24 samples, 0.12%)</title><rect x="881.3" y="421" width="1.5" height="15.0" fill="rgb(226,88,22)" rx="2" ry="2" />
|
|
<text x="884.33" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (12 samples, 0.06%)</title><rect x="1144.6" y="325" width="0.7" height="15.0" fill="rgb(222,36,22)" rx="2" ry="2" />
|
|
<text x="1147.63" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (22 samples, 0.11%)</title><rect x="353.7" y="325" width="1.3" height="15.0" fill="rgb(219,139,45)" rx="2" ry="2" />
|
|
<text x="356.66" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="744.4" y="373" width="0.1" height="15.0" fill="rgb(242,207,42)" rx="2" ry="2" />
|
|
<text x="747.37" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (20 samples, 0.10%)</title><rect x="1185.3" y="501" width="1.2" height="15.0" fill="rgb(212,88,45)" rx="2" ry="2" />
|
|
<text x="1188.32" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (21 samples, 0.11%)</title><rect x="1144.3" y="533" width="1.3" height="15.0" fill="rgb(219,71,10)" rx="2" ry="2" />
|
|
<text x="1147.33" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2,362 samples, 12.01%)</title><rect x="737.6" y="533" width="141.8" height="15.0" fill="rgb(208,182,14)" rx="2" ry="2" />
|
|
<text x="740.59" y="543.5" >stream_process_udp</text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (552 samples, 2.81%)</title><rect x="1048.4" y="501" width="33.1" height="15.0" fill="rgb(233,45,3)" rx="2" ry="2" />
|
|
<text x="1051.42" y="511.5" >ca..</text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="108.3" y="325" width="0.3" height="15.0" fill="rgb(251,45,48)" rx="2" ry="2" />
|
|
<text x="111.31" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (6 samples, 0.03%)</title><rect x="1090.9" y="277" width="0.4" height="15.0" fill="rgb(225,95,48)" rx="2" ry="2" />
|
|
<text x="1093.91" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>c2i_ASN1_OBJECT (2 samples, 0.01%)</title><rect x="1142.6" y="101" width="0.1" height="15.0" fill="rgb(214,168,18)" rx="2" ry="2" />
|
|
<text x="1145.59" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="276.1" y="581" width="0.3" height="15.0" fill="rgb(230,52,38)" rx="2" ry="2" />
|
|
<text x="279.12" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1184.1" y="261" width="0.1" height="15.0" fill="rgb(229,131,40)" rx="2" ry="2" />
|
|
<text x="1187.06" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1147.4" y="485" width="0.2" height="15.0" fill="rgb(207,197,42)" rx="2" ry="2" />
|
|
<text x="1150.45" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (45 samples, 0.23%)</title><rect x="216.6" y="469" width="2.7" height="15.0" fill="rgb(242,4,40)" rx="2" ry="2" />
|
|
<text x="219.58" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (8 samples, 0.04%)</title><rect x="206.9" y="549" width="0.5" height="15.0" fill="rgb(234,197,40)" rx="2" ry="2" />
|
|
<text x="209.92" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="23.9" y="501" width="0.6" height="15.0" fill="rgb(247,40,9)" rx="2" ry="2" />
|
|
<text x="26.92" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="117" width="0.3" height="15.0" fill="rgb(232,214,38)" rx="2" ry="2" />
|
|
<text x="1146.85" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (26 samples, 0.13%)</title><rect x="1097.3" y="453" width="1.6" height="15.0" fill="rgb(223,8,36)" rx="2" ry="2" />
|
|
<text x="1100.33" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (295 samples, 1.50%)</title><rect x="172.6" y="581" width="17.7" height="15.0" fill="rgb(211,165,1)" rx="2" ry="2" />
|
|
<text x="175.59" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="107.2" y="341" width="0.5" height="15.0" fill="rgb(222,24,27)" rx="2" ry="2" />
|
|
<text x="110.17" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (112 samples, 0.57%)</title><rect x="225.4" y="469" width="6.7" height="15.0" fill="rgb(210,111,37)" rx="2" ry="2" />
|
|
<text x="228.40" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sip.so] (10 samples, 0.05%)</title><rect x="745.1" y="437" width="0.6" height="15.0" fill="rgb(227,220,42)" rx="2" ry="2" />
|
|
<text x="748.09" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (3 samples, 0.02%)</title><rect x="201.4" y="437" width="0.2" height="15.0" fill="rgb(251,226,20)" rx="2" ry="2" />
|
|
<text x="204.40" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (69 samples, 0.35%)</title><rect x="93.5" y="645" width="4.1" height="15.0" fill="rgb(244,225,47)" rx="2" ry="2" />
|
|
<text x="96.48" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="159.4" y="261" width="0.2" height="15.0" fill="rgb(243,220,1)" rx="2" ry="2" />
|
|
<text x="162.38" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (9 samples, 0.05%)</title><rect x="408.9" y="373" width="0.5" height="15.0" fill="rgb(249,175,49)" rx="2" ry="2" />
|
|
<text x="411.87" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_ipentry (3 samples, 0.02%)</title><rect x="1095.7" y="533" width="0.2" height="15.0" fill="rgb(235,102,31)" rx="2" ry="2" />
|
|
<text x="1098.71" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_easy_counter_incrby (2 samples, 0.01%)</title><rect x="1097.5" y="373" width="0.1" height="15.0" fill="rgb(214,156,28)" rx="2" ry="2" />
|
|
<text x="1100.45" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="950.5" y="405" width="0.2" height="15.0" fill="rgb(213,176,50)" rx="2" ry="2" />
|
|
<text x="953.53" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="159.4" y="181" width="0.2" height="15.0" fill="rgb(213,21,13)" rx="2" ry="2" />
|
|
<text x="162.44" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (3 samples, 0.02%)</title><rect x="111.3" y="405" width="0.2" height="15.0" fill="rgb(225,71,35)" rx="2" ry="2" />
|
|
<text x="114.31" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stellar_on_sapp_tcpall_entry (2 samples, 0.01%)</title><rect x="1018.1" y="469" width="0.1" height="15.0" fill="rgb(224,39,40)" rx="2" ry="2" />
|
|
<text x="1021.05" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (4 samples, 0.02%)</title><rect x="776.4" y="293" width="0.2" height="15.0" fill="rgb(228,147,2)" rx="2" ry="2" />
|
|
<text x="779.36" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="1096.8" y="453" width="0.2" height="15.0" fill="rgb(245,80,26)" rx="2" ry="2" />
|
|
<text x="1099.79" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (3 samples, 0.02%)</title><rect x="354.3" y="245" width="0.1" height="15.0" fill="rgb(236,116,10)" rx="2" ry="2" />
|
|
<text x="357.26" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (14 samples, 0.07%)</title><rect x="1006.0" y="261" width="0.9" height="15.0" fill="rgb(215,86,39)" rx="2" ry="2" />
|
|
<text x="1009.05" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (39 samples, 0.20%)</title><rect x="479.1" y="373" width="2.3" height="15.0" fill="rgb(223,199,3)" rx="2" ry="2" />
|
|
<text x="482.10" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_cardinality (3 samples, 0.02%)</title><rect x="808.8" y="293" width="0.2" height="15.0" fill="rgb(221,202,46)" rx="2" ry="2" />
|
|
<text x="811.77" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_palloc (5 samples, 0.03%)</title><rect x="1156.2" y="485" width="0.3" height="15.0" fill="rgb(236,65,40)" rx="2" ry="2" />
|
|
<text x="1159.21" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_scheme_counter_free (2 samples, 0.01%)</title><rect x="1005.6" y="325" width="0.1" height="15.0" fill="rgb(235,41,20)" rx="2" ry="2" />
|
|
<text x="1008.57" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get@plt (3 samples, 0.02%)</title><rect x="665.1" y="453" width="0.2" height="15.0" fill="rgb(218,224,0)" rx="2" ry="2" />
|
|
<text x="668.15" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="162.3" y="133" width="0.2" height="15.0" fill="rgb(238,40,29)" rx="2" ry="2" />
|
|
<text x="165.32" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (10 samples, 0.05%)</title><rect x="1143.7" y="645" width="0.6" height="15.0" fill="rgb(233,42,12)" rx="2" ry="2" />
|
|
<text x="1146.73" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (22 samples, 0.11%)</title><rect x="256.0" y="613" width="1.3" height="15.0" fill="rgb(218,209,4)" rx="2" ry="2" />
|
|
<text x="258.95" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (3 samples, 0.02%)</title><rect x="521.8" y="373" width="0.1" height="15.0" fill="rgb(233,147,25)" rx="2" ry="2" />
|
|
<text x="524.77" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (88 samples, 0.45%)</title><rect x="352.3" y="469" width="5.3" height="15.0" fill="rgb(215,18,37)" rx="2" ry="2" />
|
|
<text x="355.28" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>push_heap (2 samples, 0.01%)</title><rect x="835.4" y="261" width="0.1" height="15.0" fill="rgb(237,166,19)" rx="2" ry="2" />
|
|
<text x="838.36" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (4 samples, 0.02%)</title><rect x="930.2" y="405" width="0.3" height="15.0" fill="rgb(225,217,15)" rx="2" ry="2" />
|
|
<text x="933.25" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (3 samples, 0.02%)</title><rect x="377.7" y="197" width="0.2" height="15.0" fill="rgb(241,162,0)" rx="2" ry="2" />
|
|
<text x="380.73" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (787 samples, 4.00%)</title><rect x="971.1" y="517" width="47.2" height="15.0" fill="rgb(208,217,37)" rx="2" ry="2" />
|
|
<text x="974.06" y="527.5" >stre..</text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_and_record_popped_back (3 samples, 0.02%)</title><rect x="884.6" y="309" width="0.2" height="15.0" fill="rgb(231,25,3)" rx="2" ry="2" />
|
|
<text x="887.57" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (9 samples, 0.05%)</title><rect x="954.2" y="293" width="0.5" height="15.0" fill="rgb(233,106,0)" rx="2" ry="2" />
|
|
<text x="957.19" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (2 samples, 0.01%)</title><rect x="707.6" y="277" width="0.2" height="15.0" fill="rgb(219,222,51)" rx="2" ry="2" />
|
|
<text x="710.64" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="373" width="0.2" height="15.0" fill="rgb(254,61,21)" rx="2" ry="2" />
|
|
<text x="1145.47" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CUNZIP::fn_iUnGZ (2 samples, 0.01%)</title><rect x="1141.8" y="373" width="0.1" height="15.0" fill="rgb(207,89,38)" rx="2" ry="2" />
|
|
<text x="1144.81" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (2 samples, 0.01%)</title><rect x="251.1" y="421" width="0.2" height="15.0" fill="rgb(219,203,18)" rx="2" ry="2" />
|
|
<text x="254.15" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="930.3" y="277" width="0.2" height="15.0" fill="rgb(234,118,19)" rx="2" ry="2" />
|
|
<text x="933.31" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="1159.0" y="469" width="0.2" height="15.0" fill="rgb(215,0,45)" rx="2" ry="2" />
|
|
<text x="1162.03" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (8 samples, 0.04%)</title><rect x="1187.4" y="501" width="0.5" height="15.0" fill="rgb(251,197,41)" rx="2" ry="2" />
|
|
<text x="1190.42" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (9 samples, 0.05%)</title><rect x="162.0" y="261" width="0.5" height="15.0" fill="rgb(223,186,7)" rx="2" ry="2" />
|
|
<text x="164.96" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (18 samples, 0.09%)</title><rect x="1002.0" y="261" width="1.0" height="15.0" fill="rgb(231,226,15)" rx="2" ry="2" />
|
|
<text x="1004.97" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (2 samples, 0.01%)</title><rect x="479.5" y="309" width="0.1" height="15.0" fill="rgb(214,53,21)" rx="2" ry="2" />
|
|
<text x="482.46" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (6 samples, 0.03%)</title><rect x="154.0" y="245" width="0.4" height="15.0" fill="rgb(245,141,26)" rx="2" ry="2" />
|
|
<text x="157.04" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (2 samples, 0.01%)</title><rect x="1099.3" y="341" width="0.1" height="15.0" fill="rgb(241,7,21)" rx="2" ry="2" />
|
|
<text x="1102.31" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_entry_dying (2 samples, 0.01%)</title><rect x="505.6" y="293" width="0.1" height="15.0" fill="rgb(229,112,18)" rx="2" ry="2" />
|
|
<text x="508.56" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (9 samples, 0.05%)</title><rect x="106.1" y="405" width="0.5" height="15.0" fill="rgb(235,85,42)" rx="2" ry="2" />
|
|
<text x="109.09" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="384.3" y="309" width="0.2" height="15.0" fill="rgb(225,167,16)" rx="2" ry="2" />
|
|
<text x="387.27" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (10 samples, 0.05%)</title><rect x="153.9" y="453" width="0.6" height="15.0" fill="rgb(212,212,9)" rx="2" ry="2" />
|
|
<text x="156.86" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (16 samples, 0.08%)</title><rect x="1141.7" y="597" width="1.0" height="15.0" fill="rgb(252,200,2)" rx="2" ry="2" />
|
|
<text x="1144.75" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (12 samples, 0.06%)</title><rect x="633.3" y="293" width="0.7" height="15.0" fill="rgb(219,22,32)" rx="2" ry="2" />
|
|
<text x="636.28" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpReqResHeader (2 samples, 0.01%)</title><rect x="156.7" y="469" width="0.2" height="15.0" fill="rgb(238,152,31)" rx="2" ry="2" />
|
|
<text x="159.74" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (51 samples, 0.26%)</title><rect x="1087.4" y="357" width="3.1" height="15.0" fill="rgb(221,188,9)" rx="2" ry="2" />
|
|
<text x="1090.43" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (12 samples, 0.06%)</title><rect x="170.6" y="389" width="0.7" height="15.0" fill="rgb(226,167,37)" rx="2" ry="2" />
|
|
<text x="173.61" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (65 samples, 0.33%)</title><rect x="353.4" y="373" width="3.9" height="15.0" fill="rgb(222,68,33)" rx="2" ry="2" />
|
|
<text x="356.42" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (4 samples, 0.02%)</title><rect x="254.0" y="565" width="0.3" height="15.0" fill="rgb(235,220,51)" rx="2" ry="2" />
|
|
<text x="257.03" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_dos_metric_update (37 samples, 0.19%)</title><rect x="1062.4" y="405" width="2.2" height="15.0" fill="rgb(230,224,47)" rx="2" ry="2" />
|
|
<text x="1065.40" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (2 samples, 0.01%)</title><rect x="1141.4" y="613" width="0.1" height="15.0" fill="rgb(250,180,20)" rx="2" ry="2" />
|
|
<text x="1144.39" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (19 samples, 0.10%)</title><rect x="987.0" y="357" width="1.2" height="15.0" fill="rgb(238,184,29)" rx="2" ry="2" />
|
|
<text x="990.02" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1144.3" y="421" width="0.3" height="15.0" fill="rgb(207,61,44)" rx="2" ry="2" />
|
|
<text x="1147.33" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (43 samples, 0.22%)</title><rect x="246.1" y="565" width="2.6" height="15.0" fill="rgb(212,92,21)" rx="2" ry="2" />
|
|
<text x="249.11" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (28 samples, 0.14%)</title><rect x="175.5" y="405" width="1.6" height="15.0" fill="rgb(215,174,45)" rx="2" ry="2" />
|
|
<text x="178.47" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="986.1" y="309" width="0.1" height="15.0" fill="rgb(248,39,10)" rx="2" ry="2" />
|
|
<text x="989.12" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (4 samples, 0.02%)</title><rect x="995.0" y="245" width="0.2" height="15.0" fill="rgb(233,115,18)" rx="2" ry="2" />
|
|
<text x="998.00" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="254.3" y="389" width="0.1" height="15.0" fill="rgb(207,36,40)" rx="2" ry="2" />
|
|
<text x="257.27" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (4 samples, 0.02%)</title><rect x="231.9" y="405" width="0.2" height="15.0" fill="rgb(214,44,2)" rx="2" ry="2" />
|
|
<text x="234.88" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (113 samples, 0.57%)</title><rect x="1067.6" y="325" width="6.8" height="15.0" fill="rgb(242,122,4)" rx="2" ry="2" />
|
|
<text x="1070.62" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (4 samples, 0.02%)</title><rect x="586.5" y="389" width="0.2" height="15.0" fill="rgb(238,188,35)" rx="2" ry="2" />
|
|
<text x="589.47" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (94 samples, 0.48%)</title><rect x="219.8" y="565" width="5.6" height="15.0" fill="rgb(254,16,29)" rx="2" ry="2" />
|
|
<text x="222.76" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (2 samples, 0.01%)</title><rect x="582.7" y="293" width="0.2" height="15.0" fill="rgb(239,204,14)" rx="2" ry="2" />
|
|
<text x="585.75" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (3 samples, 0.02%)</title><rect x="250.7" y="357" width="0.1" height="15.0" fill="rgb(236,82,53)" rx="2" ry="2" />
|
|
<text x="253.67" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (4 samples, 0.02%)</title><rect x="885.2" y="309" width="0.3" height="15.0" fill="rgb(244,74,33)" rx="2" ry="2" />
|
|
<text x="888.23" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="309" width="0.2" height="15.0" fill="rgb(233,186,8)" rx="2" ry="2" />
|
|
<text x="1145.47" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (11 samples, 0.06%)</title><rect x="849.0" y="261" width="0.7" height="15.0" fill="rgb(240,2,2)" rx="2" ry="2" />
|
|
<text x="852.04" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="704.5" y="421" width="0.1" height="15.0" fill="rgb(220,19,54)" rx="2" ry="2" />
|
|
<text x="707.46" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_easy_counter_incrby (30 samples, 0.15%)</title><rect x="1060.5" y="389" width="1.8" height="15.0" fill="rgb(234,207,21)" rx="2" ry="2" />
|
|
<text x="1063.48" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="1004.4" y="261" width="0.1" height="15.0" fill="rgb(223,17,37)" rx="2" ry="2" />
|
|
<text x="1007.43" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="156.7" y="213" width="0.2" height="15.0" fill="rgb(205,163,15)" rx="2" ry="2" />
|
|
<text x="159.74" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="928.3" y="261" width="0.1" height="15.0" fill="rgb(239,67,44)" rx="2" ry="2" />
|
|
<text x="931.26" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (6 samples, 0.03%)</title><rect x="189.9" y="405" width="0.4" height="15.0" fill="rgb(231,129,34)" rx="2" ry="2" />
|
|
<text x="192.93" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (7 samples, 0.04%)</title><rect x="413.3" y="357" width="0.4" height="15.0" fill="rgb(254,223,6)" rx="2" ry="2" />
|
|
<text x="416.32" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.02%)</title><rect x="350.1" y="357" width="0.1" height="15.0" fill="rgb(236,78,7)" rx="2" ry="2" />
|
|
<text x="353.06" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (16 samples, 0.08%)</title><rect x="130.4" y="389" width="1.0" height="15.0" fill="rgb(236,179,36)" rx="2" ry="2" />
|
|
<text x="133.39" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sip.so] (2 samples, 0.01%)</title><rect x="937.3" y="453" width="0.1" height="15.0" fill="rgb(205,64,44)" rx="2" ry="2" />
|
|
<text x="940.27" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_l_avx (3 samples, 0.02%)</title><rect x="919.1" y="389" width="0.2" height="15.0" fill="rgb(236,221,4)" rx="2" ry="2" />
|
|
<text x="922.08" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (7 samples, 0.04%)</title><rect x="1068.5" y="277" width="0.4" height="15.0" fill="rgb(228,46,50)" rx="2" ry="2" />
|
|
<text x="1071.46" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (4 samples, 0.02%)</title><rect x="145.5" y="405" width="0.3" height="15.0" fill="rgb(231,130,15)" rx="2" ry="2" />
|
|
<text x="148.52" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="918.0" y="245" width="0.5" height="15.0" fill="rgb(213,43,51)" rx="2" ry="2" />
|
|
<text x="921.00" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (3 samples, 0.02%)</title><rect x="244.8" y="405" width="0.2" height="15.0" fill="rgb(215,171,33)" rx="2" ry="2" />
|
|
<text x="247.85" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (8 samples, 0.04%)</title><rect x="505.9" y="277" width="0.5" height="15.0" fill="rgb(248,178,24)" rx="2" ry="2" />
|
|
<text x="508.92" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (26 samples, 0.13%)</title><rect x="355.8" y="357" width="1.5" height="15.0" fill="rgb(214,174,46)" rx="2" ry="2" />
|
|
<text x="358.76" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (4 samples, 0.02%)</title><rect x="701.1" y="437" width="0.2" height="15.0" fill="rgb(229,40,35)" rx="2" ry="2" />
|
|
<text x="704.10" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_reset_withSeed (3 samples, 0.02%)</title><rect x="509.6" y="309" width="0.2" height="15.0" fill="rgb(247,98,42)" rx="2" ry="2" />
|
|
<text x="512.58" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_add (57 samples, 0.29%)</title><rect x="526.5" y="517" width="3.4" height="15.0" fill="rgb(238,183,23)" rx="2" ry="2" />
|
|
<text x="529.51" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (7 samples, 0.04%)</title><rect x="162.1" y="165" width="0.4" height="15.0" fill="rgb(213,38,21)" rx="2" ry="2" />
|
|
<text x="165.08" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (2 samples, 0.01%)</title><rect x="254.5" y="565" width="0.1" height="15.0" fill="rgb(233,116,19)" rx="2" ry="2" />
|
|
<text x="257.51" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (2 samples, 0.01%)</title><rect x="986.7" y="293" width="0.1" height="15.0" fill="rgb(232,150,43)" rx="2" ry="2" />
|
|
<text x="989.66" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (145 samples, 0.74%)</title><rect x="782.4" y="357" width="8.7" height="15.0" fill="rgb(217,146,34)" rx="2" ry="2" />
|
|
<text x="785.36" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="913.0" y="437" width="0.1" height="15.0" fill="rgb(206,143,52)" rx="2" ry="2" />
|
|
<text x="915.96" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (2 samples, 0.01%)</title><rect x="165.6" y="181" width="0.1" height="15.0" fill="rgb(220,101,25)" rx="2" ry="2" />
|
|
<text x="168.56" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (3 samples, 0.02%)</title><rect x="722.4" y="261" width="0.2" height="15.0" fill="rgb(226,176,17)" rx="2" ry="2" />
|
|
<text x="725.41" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_item_dup (4 samples, 0.02%)</title><rect x="1166.9" y="549" width="0.2" height="15.0" fill="rgb(209,62,27)" rx="2" ry="2" />
|
|
<text x="1169.89" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="224.1" y="357" width="0.2" height="15.0" fill="rgb(217,29,12)" rx="2" ry="2" />
|
|
<text x="227.08" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (18 samples, 0.09%)</title><rect x="928.4" y="357" width="1.1" height="15.0" fill="rgb(253,160,14)" rx="2" ry="2" />
|
|
<text x="931.38" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (7 samples, 0.04%)</title><rect x="1184.3" y="373" width="0.4" height="15.0" fill="rgb(251,152,48)" rx="2" ry="2" />
|
|
<text x="1187.30" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (26 samples, 0.13%)</title><rect x="144.8" y="533" width="1.6" height="15.0" fill="rgb(239,94,19)" rx="2" ry="2" />
|
|
<text x="147.80" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_9to16_128b (20 samples, 0.10%)</title><rect x="844.0" y="245" width="1.2" height="15.0" fill="rgb(221,93,26)" rx="2" ry="2" />
|
|
<text x="847.00" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="219.8" y="293" width="0.3" height="15.0" fill="rgb(239,111,8)" rx="2" ry="2" />
|
|
<text x="222.82" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="1007.4" y="261" width="0.1" height="15.0" fill="rgb(222,1,54)" rx="2" ry="2" />
|
|
<text x="1010.37" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (5 samples, 0.03%)</title><rect x="1147.9" y="485" width="0.3" height="15.0" fill="rgb(245,193,31)" rx="2" ry="2" />
|
|
<text x="1150.87" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (262 samples, 1.33%)</title><rect x="392.4" y="293" width="15.7" height="15.0" fill="rgb(244,229,19)" rx="2" ry="2" />
|
|
<text x="395.37" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (12 samples, 0.06%)</title><rect x="986.2" y="341" width="0.8" height="15.0" fill="rgb(244,151,42)" rx="2" ry="2" />
|
|
<text x="989.24" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (6 samples, 0.03%)</title><rect x="107.7" y="389" width="0.4" height="15.0" fill="rgb(238,113,34)" rx="2" ry="2" />
|
|
<text x="110.71" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (16 samples, 0.08%)</title><rect x="147.4" y="421" width="0.9" height="15.0" fill="rgb(218,48,7)" rx="2" ry="2" />
|
|
<text x="150.38" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="254.3" y="565" width="0.1" height="15.0" fill="rgb(226,156,46)" rx="2" ry="2" />
|
|
<text x="257.27" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (2 samples, 0.01%)</title><rect x="1061.3" y="309" width="0.1" height="15.0" fill="rgb(224,219,48)" rx="2" ry="2" />
|
|
<text x="1064.26" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1144.3" y="437" width="0.3" height="15.0" fill="rgb(239,27,23)" rx="2" ry="2" />
|
|
<text x="1147.33" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="1040.6" y="261" width="0.1" height="15.0" fill="rgb(228,90,29)" rx="2" ry="2" />
|
|
<text x="1043.56" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (3 samples, 0.02%)</title><rect x="1095.0" y="517" width="0.2" height="15.0" fill="rgb(239,67,50)" rx="2" ry="2" />
|
|
<text x="1097.99" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="1171.5" y="485" width="0.2" height="15.0" fill="rgb(206,179,2)" rx="2" ry="2" />
|
|
<text x="1174.45" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="253.9" y="405" width="0.1" height="15.0" fill="rgb(210,122,19)" rx="2" ry="2" />
|
|
<text x="256.85" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (41 samples, 0.21%)</title><rect x="693.6" y="501" width="2.5" height="15.0" fill="rgb(250,202,27)" rx="2" ry="2" />
|
|
<text x="696.60" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (7 samples, 0.04%)</title><rect x="989.1" y="373" width="0.4" height="15.0" fill="rgb(213,63,54)" rx="2" ry="2" />
|
|
<text x="992.06" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="156.7" y="357" width="0.2" height="15.0" fill="rgb(246,197,36)" rx="2" ry="2" />
|
|
<text x="159.74" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="254.6" y="597" width="0.5" height="15.0" fill="rgb(215,200,40)" rx="2" ry="2" />
|
|
<text x="257.63" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (9 samples, 0.05%)</title><rect x="250.3" y="373" width="0.5" height="15.0" fill="rgb(242,80,28)" rx="2" ry="2" />
|
|
<text x="253.31" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="257.3" y="597" width="0.4" height="15.0" fill="rgb(242,207,42)" rx="2" ry="2" />
|
|
<text x="260.27" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (54 samples, 0.27%)</title><rect x="29.2" y="549" width="3.2" height="15.0" fill="rgb(224,148,18)" rx="2" ry="2" />
|
|
<text x="32.21" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="253.9" y="357" width="0.1" height="15.0" fill="rgb(216,190,47)" rx="2" ry="2" />
|
|
<text x="256.85" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (7 samples, 0.04%)</title><rect x="1044.8" y="469" width="0.4" height="15.0" fill="rgb(210,150,14)" rx="2" ry="2" />
|
|
<text x="1047.82" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (4 samples, 0.02%)</title><rect x="744.7" y="469" width="0.3" height="15.0" fill="rgb(241,133,34)" rx="2" ry="2" />
|
|
<text x="747.73" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="208.2" y="229" width="0.3" height="15.0" fill="rgb(232,110,25)" rx="2" ry="2" />
|
|
<text x="211.18" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (43 samples, 0.22%)</title><rect x="1184.0" y="565" width="2.6" height="15.0" fill="rgb(226,84,30)" rx="2" ry="2" />
|
|
<text x="1187.00" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultRegion (35 samples, 0.18%)</title><rect x="414.3" y="373" width="2.1" height="15.0" fill="rgb(248,8,3)" rx="2" ry="2" />
|
|
<text x="417.34" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_true_pst_tag (2 samples, 0.01%)</title><rect x="627.3" y="325" width="0.2" height="15.0" fill="rgb(231,213,31)" rx="2" ry="2" />
|
|
<text x="630.34" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>file_ascmagic_with_encoding (2 samples, 0.01%)</title><rect x="403.7" y="181" width="0.1" height="15.0" fill="rgb(249,148,5)" rx="2" ry="2" />
|
|
<text x="406.65" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_app_and_proto_update (7 samples, 0.04%)</title><rect x="880.9" y="421" width="0.4" height="15.0" fill="rgb(225,103,6)" rx="2" ry="2" />
|
|
<text x="883.91" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_copy (2 samples, 0.01%)</title><rect x="1003.5" y="245" width="0.1" height="15.0" fill="rgb(226,73,40)" rx="2" ry="2" />
|
|
<text x="1006.47" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="427.9" y="341" width="0.5" height="15.0" fill="rgb(206,180,6)" rx="2" ry="2" />
|
|
<text x="430.90" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="555.8" y="293" width="0.2" height="15.0" fill="rgb(218,100,49)" rx="2" ry="2" />
|
|
<text x="558.80" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="1096.9" y="341" width="0.1" height="15.0" fill="rgb(229,176,15)" rx="2" ry="2" />
|
|
<text x="1099.91" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (22 samples, 0.11%)</title><rect x="1186.6" y="565" width="1.3" height="15.0" fill="rgb(249,204,47)" rx="2" ry="2" />
|
|
<text x="1189.58" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1188.0" y="341" width="0.1" height="15.0" fill="rgb(241,204,13)" rx="2" ry="2" />
|
|
<text x="1191.02" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="221.0" y="309" width="0.1" height="15.0" fill="rgb(205,31,22)" rx="2" ry="2" />
|
|
<text x="223.96" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="231.4" y="309" width="0.1" height="15.0" fill="rgb(252,218,24)" rx="2" ry="2" />
|
|
<text x="234.40" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="249.7" y="229" width="0.1" height="15.0" fill="rgb(249,199,25)" rx="2" ry="2" />
|
|
<text x="252.71" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.02%)</title><rect x="1148.3" y="613" width="0.2" height="15.0" fill="rgb(206,149,21)" rx="2" ry="2" />
|
|
<text x="1151.29" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (22 samples, 0.11%)</title><rect x="1097.6" y="389" width="1.3" height="15.0" fill="rgb(223,100,45)" rx="2" ry="2" />
|
|
<text x="1100.57" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="145.8" y="389" width="0.1" height="15.0" fill="rgb(215,48,45)" rx="2" ry="2" />
|
|
<text x="148.76" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (3 samples, 0.02%)</title><rect x="1100.4" y="341" width="0.2" height="15.0" fill="rgb(250,59,19)" rx="2" ry="2" />
|
|
<text x="1103.39" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (3 samples, 0.02%)</title><rect x="382.4" y="245" width="0.2" height="15.0" fill="rgb(251,100,53)" rx="2" ry="2" />
|
|
<text x="385.41" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (318 samples, 1.62%)</title><rect x="389.2" y="341" width="19.1" height="15.0" fill="rgb(249,61,7)" rx="2" ry="2" />
|
|
<text x="392.25" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (3 samples, 0.02%)</title><rect x="354.6" y="261" width="0.2" height="15.0" fill="rgb(242,131,39)" rx="2" ry="2" />
|
|
<text x="357.62" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2,228 samples, 11.33%)</title><rect x="532.0" y="517" width="133.7" height="15.0" fill="rgb(246,134,34)" rx="2" ry="2" />
|
|
<text x="535.03" y="527.5" >stream_process</text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (2 samples, 0.01%)</title><rect x="700.4" y="485" width="0.2" height="15.0" fill="rgb(223,74,11)" rx="2" ry="2" />
|
|
<text x="703.44" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (10 samples, 0.05%)</title><rect x="1099.0" y="485" width="0.6" height="15.0" fill="rgb(226,165,48)" rx="2" ry="2" />
|
|
<text x="1102.01" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (2 samples, 0.01%)</title><rect x="254.4" y="597" width="0.1" height="15.0" fill="rgb(243,156,10)" rx="2" ry="2" />
|
|
<text x="257.39" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_update (9 samples, 0.05%)</title><rect x="1030.7" y="501" width="0.6" height="15.0" fill="rgb(249,214,48)" rx="2" ry="2" />
|
|
<text x="1033.71" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="890.2" y="517" width="0.1" height="15.0" fill="rgb(215,193,17)" rx="2" ry="2" />
|
|
<text x="893.15" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BIO_snprintf (3 samples, 0.02%)</title><rect x="110.3" y="389" width="0.2" height="15.0" fill="rgb(215,172,34)" rx="2" ry="2" />
|
|
<text x="113.29" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (4 samples, 0.02%)</title><rect x="131.5" y="389" width="0.2" height="15.0" fill="rgb(230,118,43)" rx="2" ry="2" />
|
|
<text x="134.48" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mpls_uc_entry (11 samples, 0.06%)</title><rect x="253.2" y="613" width="0.7" height="15.0" fill="rgb(231,149,50)" rx="2" ry="2" />
|
|
<text x="256.19" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (12 samples, 0.06%)</title><rect x="1189.2" y="501" width="0.7" height="15.0" fill="rgb(240,188,43)" rx="2" ry="2" />
|
|
<text x="1192.16" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="153.9" y="293" width="0.5" height="15.0" fill="rgb(209,152,12)" rx="2" ry="2" />
|
|
<text x="156.92" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (3 samples, 0.02%)</title><rect x="1034.4" y="277" width="0.2" height="15.0" fill="rgb(223,77,15)" rx="2" ry="2" />
|
|
<text x="1037.44" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (9 samples, 0.05%)</title><rect x="966.1" y="373" width="0.6" height="15.0" fill="rgb(244,190,30)" rx="2" ry="2" />
|
|
<text x="969.14" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (4 samples, 0.02%)</title><rect x="1034.4" y="293" width="0.2" height="15.0" fill="rgb(220,97,0)" rx="2" ry="2" />
|
|
<text x="1037.38" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (2 samples, 0.01%)</title><rect x="990.0" y="245" width="0.1" height="15.0" fill="rgb(232,130,32)" rx="2" ry="2" />
|
|
<text x="992.96" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dns.so] (4 samples, 0.02%)</title><rect x="733.4" y="405" width="0.2" height="15.0" fill="rgb(245,161,11)" rx="2" ry="2" />
|
|
<text x="736.39" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (2 samples, 0.01%)</title><rect x="108.8" y="325" width="0.2" height="15.0" fill="rgb(228,14,44)" rx="2" ry="2" />
|
|
<text x="111.85" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (8 samples, 0.04%)</title><rect x="355.0" y="261" width="0.5" height="15.0" fill="rgb(234,59,27)" rx="2" ry="2" />
|
|
<text x="358.04" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (8 samples, 0.04%)</title><rect x="422.9" y="389" width="0.4" height="15.0" fill="rgb(206,38,2)" rx="2" ry="2" />
|
|
<text x="425.86" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="254.7" y="325" width="0.1" height="15.0" fill="rgb(206,123,47)" rx="2" ry="2" />
|
|
<text x="257.69" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="523.6" y="421" width="0.1" height="15.0" fill="rgb(247,141,21)" rx="2" ry="2" />
|
|
<text x="526.57" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (22 samples, 0.11%)</title><rect x="1184.0" y="533" width="1.3" height="15.0" fill="rgb(226,223,21)" rx="2" ry="2" />
|
|
<text x="1187.00" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="1142.9" y="501" width="0.7" height="15.0" fill="rgb(239,114,28)" rx="2" ry="2" />
|
|
<text x="1145.89" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="930.2" y="373" width="0.3" height="15.0" fill="rgb(222,64,16)" rx="2" ry="2" />
|
|
<text x="933.25" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (3 samples, 0.02%)</title><rect x="402.8" y="213" width="0.2" height="15.0" fill="rgb(227,196,26)" rx="2" ry="2" />
|
|
<text x="405.81" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (114 samples, 0.58%)</title><rect x="953.2" y="309" width="6.9" height="15.0" fill="rgb(220,178,22)" rx="2" ry="2" />
|
|
<text x="956.23" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1141.9" y="389" width="0.3" height="15.0" fill="rgb(240,26,51)" rx="2" ry="2" />
|
|
<text x="1144.93" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (6 samples, 0.03%)</title><rect x="36.7" y="581" width="0.4" height="15.0" fill="rgb(240,224,21)" rx="2" ry="2" />
|
|
<text x="39.71" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithContentType (3 samples, 0.02%)</title><rect x="928.2" y="373" width="0.2" height="15.0" fill="rgb(248,74,0)" rx="2" ry="2" />
|
|
<text x="931.20" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="159.9" y="261" width="0.1" height="15.0" fill="rgb(251,144,54)" rx="2" ry="2" />
|
|
<text x="162.86" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (16 samples, 0.08%)</title><rect x="1062.6" y="309" width="1.0" height="15.0" fill="rgb(237,51,47)" rx="2" ry="2" />
|
|
<text x="1065.64" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (3 samples, 0.02%)</title><rect x="205.5" y="437" width="0.2" height="15.0" fill="rgb(245,106,33)" rx="2" ry="2" />
|
|
<text x="208.54" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (8 samples, 0.04%)</title><rect x="254.6" y="501" width="0.5" height="15.0" fill="rgb(253,49,28)" rx="2" ry="2" />
|
|
<text x="257.63" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (3 samples, 0.02%)</title><rect x="153.4" y="629" width="0.2" height="15.0" fill="rgb(214,66,12)" rx="2" ry="2" />
|
|
<text x="156.44" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::vector<char, std::allocator<char> >::_M_range_insert<unsigned char*> (2 samples, 0.01%)</title><rect x="385.3" y="261" width="0.1" height="15.0" fill="rgb(222,197,5)" rx="2" ry="2" />
|
|
<text x="388.29" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (403 samples, 2.05%)</title><rect x="913.3" y="517" width="24.2" height="15.0" fill="rgb(251,28,40)" rx="2" ry="2" />
|
|
<text x="916.32" y="527.5" >s..</text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (4 samples, 0.02%)</title><rect x="219.8" y="469" width="0.3" height="15.0" fill="rgb(213,55,22)" rx="2" ry="2" />
|
|
<text x="222.82" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="157.9" y="293" width="0.2" height="15.0" fill="rgb(232,107,14)" rx="2" ry="2" />
|
|
<text x="160.94" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (4 samples, 0.02%)</title><rect x="502.6" y="245" width="0.3" height="15.0" fill="rgb(241,60,20)" rx="2" ry="2" />
|
|
<text x="505.62" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="470.2" y="469" width="0.1" height="15.0" fill="rgb(225,64,40)" rx="2" ry="2" />
|
|
<text x="473.21" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="581.6" y="229" width="0.1" height="15.0" fill="rgb(240,53,36)" rx="2" ry="2" />
|
|
<text x="584.60" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (3 samples, 0.02%)</title><rect x="1188.0" y="421" width="0.2" height="15.0" fill="rgb(232,140,14)" rx="2" ry="2" />
|
|
<text x="1191.02" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="157.9" y="389" width="0.3" height="15.0" fill="rgb(219,219,42)" rx="2" ry="2" />
|
|
<text x="160.88" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (2 samples, 0.01%)</title><rect x="222.9" y="213" width="0.2" height="15.0" fill="rgb(250,117,44)" rx="2" ry="2" />
|
|
<text x="225.94" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="1096.9" y="277" width="0.1" height="15.0" fill="rgb(238,128,53)" rx="2" ry="2" />
|
|
<text x="1099.91" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (20 samples, 0.10%)</title><rect x="386.3" y="261" width="1.2" height="15.0" fill="rgb(224,225,24)" rx="2" ry="2" />
|
|
<text x="389.31" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (6 samples, 0.03%)</title><rect x="775.9" y="309" width="0.4" height="15.0" fill="rgb(208,66,32)" rx="2" ry="2" />
|
|
<text x="778.94" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_client_hello (2 samples, 0.01%)</title><rect x="146.2" y="437" width="0.2" height="15.0" fill="rgb(245,77,27)" rx="2" ry="2" />
|
|
<text x="149.24" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="920.8" y="309" width="0.1" height="15.0" fill="rgb(245,127,38)" rx="2" ry="2" />
|
|
<text x="923.76" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (74 samples, 0.38%)</title><rect x="248.7" y="549" width="4.4" height="15.0" fill="rgb(242,125,2)" rx="2" ry="2" />
|
|
<text x="251.69" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="105.4" y="501" width="0.2" height="15.0" fill="rgb(207,37,37)" rx="2" ry="2" />
|
|
<text x="108.37" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (3 samples, 0.02%)</title><rect x="1141.2" y="501" width="0.2" height="15.0" fill="rgb(221,117,18)" rx="2" ry="2" />
|
|
<text x="1144.21" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (4 samples, 0.02%)</title><rect x="384.3" y="325" width="0.2" height="15.0" fill="rgb(208,122,32)" rx="2" ry="2" />
|
|
<text x="387.27" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (2 samples, 0.01%)</title><rect x="155.4" y="405" width="0.1" height="15.0" fill="rgb(231,46,53)" rx="2" ry="2" />
|
|
<text x="158.42" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (34 samples, 0.17%)</title><rect x="707.3" y="341" width="2.1" height="15.0" fill="rgb(247,41,30)" rx="2" ry="2" />
|
|
<text x="710.34" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_decompressed_name (11 samples, 0.06%)</title><rect x="1182.6" y="613" width="0.7" height="15.0" fill="rgb(220,194,45)" rx="2" ry="2" />
|
|
<text x="1185.62" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="703.4" y="405" width="0.2" height="15.0" fill="rgb(238,67,49)" rx="2" ry="2" />
|
|
<text x="706.44" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="377.7" y="117" width="0.2" height="15.0" fill="rgb(218,117,14)" rx="2" ry="2" />
|
|
<text x="380.73" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>memcpy@plt (2 samples, 0.01%)</title><rect x="1007.5" y="261" width="0.1" height="15.0" fill="rgb(211,155,35)" rx="2" ry="2" />
|
|
<text x="1010.49" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (14 samples, 0.07%)</title><rect x="1178.4" y="421" width="0.9" height="15.0" fill="rgb(248,136,37)" rx="2" ry="2" />
|
|
<text x="1181.42" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="374.8" y="293" width="0.1" height="15.0" fill="rgb(244,219,4)" rx="2" ry="2" />
|
|
<text x="377.79" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="156.7" y="325" width="0.2" height="15.0" fill="rgb(224,189,30)" rx="2" ry="2" />
|
|
<text x="159.74" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (5 samples, 0.03%)</title><rect x="580.6" y="245" width="0.3" height="15.0" fill="rgb(206,19,43)" rx="2" ry="2" />
|
|
<text x="583.64" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (21 samples, 0.11%)</title><rect x="159.6" y="325" width="1.3" height="15.0" fill="rgb(213,0,25)" rx="2" ry="2" />
|
|
<text x="162.62" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_new (2 samples, 0.01%)</title><rect x="222.6" y="245" width="0.1" height="15.0" fill="rgb(243,8,16)" rx="2" ry="2" />
|
|
<text x="225.58" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_reset_internal (2 samples, 0.01%)</title><rect x="632.9" y="261" width="0.1" height="15.0" fill="rgb(216,10,37)" rx="2" ry="2" />
|
|
<text x="635.92" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="909.1" y="229" width="0.1" height="15.0" fill="rgb(238,171,14)" rx="2" ry="2" />
|
|
<text x="912.12" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__ctype_tolower_loc (2 samples, 0.01%)</title><rect x="378.6" y="357" width="0.1" height="15.0" fill="rgb(221,120,9)" rx="2" ry="2" />
|
|
<text x="381.63" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (17 samples, 0.09%)</title><rect x="146.4" y="549" width="1.0" height="15.0" fill="rgb(238,205,32)" rx="2" ry="2" />
|
|
<text x="149.36" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1024.0" y="453" width="0.1" height="15.0" fill="rgb(234,192,26)" rx="2" ry="2" />
|
|
<text x="1026.99" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="164.9" y="197" width="0.1" height="15.0" fill="rgb(241,209,26)" rx="2" ry="2" />
|
|
<text x="167.90" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="178.4" y="261" width="0.7" height="15.0" fill="rgb(207,220,25)" rx="2" ry="2" />
|
|
<text x="181.41" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (239 samples, 1.22%)</title><rect x="1066.1" y="405" width="14.3" height="15.0" fill="rgb(241,178,2)" rx="2" ry="2" />
|
|
<text x="1069.06" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1099.7" y="437" width="0.2" height="15.0" fill="rgb(215,49,32)" rx="2" ry="2" />
|
|
<text x="1102.73" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="1184.1" y="165" width="0.1" height="15.0" fill="rgb(249,22,48)" rx="2" ry="2" />
|
|
<text x="1187.06" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (3 samples, 0.02%)</title><rect x="666.2" y="325" width="0.2" height="15.0" fill="rgb(234,91,27)" rx="2" ry="2" />
|
|
<text x="669.23" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (5 samples, 0.03%)</title><rect x="793.5" y="389" width="0.3" height="15.0" fill="rgb(231,190,27)" rx="2" ry="2" />
|
|
<text x="796.47" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (3 samples, 0.02%)</title><rect x="1142.7" y="613" width="0.2" height="15.0" fill="rgb(211,157,29)" rx="2" ry="2" />
|
|
<text x="1145.71" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="147.6" y="389" width="0.2" height="15.0" fill="rgb(222,223,32)" rx="2" ry="2" />
|
|
<text x="150.62" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (2 samples, 0.01%)</title><rect x="1095.1" y="405" width="0.1" height="15.0" fill="rgb(229,173,50)" rx="2" ry="2" />
|
|
<text x="1098.05" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_jhash_4words (6 samples, 0.03%)</title><rect x="948.0" y="501" width="0.3" height="15.0" fill="rgb(236,13,33)" rx="2" ry="2" />
|
|
<text x="950.95" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="350.1" y="261" width="0.1" height="15.0" fill="rgb(222,91,10)" rx="2" ry="2" />
|
|
<text x="353.06" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="219.8" y="277" width="0.3" height="15.0" fill="rgb(228,86,26)" rx="2" ry="2" />
|
|
<text x="222.82" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (77 samples, 0.39%)</title><rect x="715.2" y="277" width="4.6" height="15.0" fill="rgb(229,7,50)" rx="2" ry="2" />
|
|
<text x="718.20" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1144.3" y="373" width="0.3" height="15.0" fill="rgb(214,52,53)" rx="2" ry="2" />
|
|
<text x="1147.33" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (32 samples, 0.16%)</title><rect x="129.5" y="405" width="1.9" height="15.0" fill="rgb(244,141,7)" rx="2" ry="2" />
|
|
<text x="132.49" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_del (2 samples, 0.01%)</title><rect x="1024.2" y="485" width="0.1" height="15.0" fill="rgb(254,45,54)" rx="2" ry="2" />
|
|
<text x="1027.17" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (2 samples, 0.01%)</title><rect x="709.4" y="293" width="0.1" height="15.0" fill="rgb(231,216,14)" rx="2" ry="2" />
|
|
<text x="712.38" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (190 samples, 0.97%)</title><rect x="132.8" y="485" width="11.4" height="15.0" fill="rgb(244,123,45)" rx="2" ry="2" />
|
|
<text x="135.80" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="254.5" y="581" width="0.1" height="15.0" fill="rgb(208,58,19)" rx="2" ry="2" />
|
|
<text x="257.51" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH128_mix32B (3 samples, 0.02%)</title><rect x="961.7" y="245" width="0.2" height="15.0" fill="rgb(244,88,40)" rx="2" ry="2" />
|
|
<text x="964.69" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (11 samples, 0.06%)</title><rect x="356.7" y="341" width="0.6" height="15.0" fill="rgb(240,225,14)" rx="2" ry="2" />
|
|
<text x="359.66" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get@plt (2 samples, 0.01%)</title><rect x="879.1" y="453" width="0.1" height="15.0" fill="rgb(223,168,54)" rx="2" ry="2" />
|
|
<text x="882.11" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (4 samples, 0.02%)</title><rect x="1189.5" y="405" width="0.2" height="15.0" fill="rgb(219,22,37)" rx="2" ry="2" />
|
|
<text x="1192.46" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="192.0" y="421" width="0.3" height="15.0" fill="rgb(254,6,14)" rx="2" ry="2" />
|
|
<text x="195.03" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (39 samples, 0.20%)</title><rect x="243.8" y="485" width="2.3" height="15.0" fill="rgb(224,209,1)" rx="2" ry="2" />
|
|
<text x="246.77" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (4 samples, 0.02%)</title><rect x="1157.8" y="469" width="0.2" height="15.0" fill="rgb(239,122,9)" rx="2" ry="2" />
|
|
<text x="1160.77" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpLinkNode (4 samples, 0.02%)</title><rect x="422.2" y="405" width="0.2" height="15.0" fill="rgb(248,209,46)" rx="2" ry="2" />
|
|
<text x="425.20" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="704.2" y="373" width="0.1" height="15.0" fill="rgb(227,55,19)" rx="2" ry="2" />
|
|
<text x="707.22" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (5 samples, 0.03%)</title><rect x="1164.6" y="517" width="0.3" height="15.0" fill="rgb(224,30,32)" rx="2" ry="2" />
|
|
<text x="1167.55" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (6 samples, 0.03%)</title><rect x="1038.8" y="245" width="0.4" height="15.0" fill="rgb(248,30,10)" rx="2" ry="2" />
|
|
<text x="1041.82" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="220.7" y="261" width="0.1" height="15.0" fill="rgb(229,155,18)" rx="2" ry="2" />
|
|
<text x="223.72" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (2 samples, 0.01%)</title><rect x="231.4" y="389" width="0.1" height="15.0" fill="rgb(214,44,54)" rx="2" ry="2" />
|
|
<text x="234.40" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (22 samples, 0.11%)</title><rect x="504.1" y="309" width="1.3" height="15.0" fill="rgb(247,104,27)" rx="2" ry="2" />
|
|
<text x="507.12" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_group (4 samples, 0.02%)</title><rect x="1171.5" y="501" width="0.2" height="15.0" fill="rgb(220,1,4)" rx="2" ry="2" />
|
|
<text x="1174.45" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="144.1" y="389" width="0.1" height="15.0" fill="rgb(252,64,1)" rx="2" ry="2" />
|
|
<text x="147.08" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (3 samples, 0.02%)</title><rect x="1189.7" y="405" width="0.2" height="15.0" fill="rgb(218,105,18)" rx="2" ry="2" />
|
|
<text x="1192.70" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (20 samples, 0.10%)</title><rect x="48.2" y="597" width="1.2" height="15.0" fill="rgb(234,197,40)" rx="2" ry="2" />
|
|
<text x="51.17" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="224.3" y="405" width="0.1" height="15.0" fill="rgb(217,43,47)" rx="2" ry="2" />
|
|
<text x="227.26" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (2 samples, 0.01%)</title><rect x="1141.6" y="613" width="0.1" height="15.0" fill="rgb(237,78,33)" rx="2" ry="2" />
|
|
<text x="1144.57" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="678.3" y="469" width="0.1" height="15.0" fill="rgb(205,175,26)" rx="2" ry="2" />
|
|
<text x="681.29" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (7 samples, 0.04%)</title><rect x="710.6" y="341" width="0.5" height="15.0" fill="rgb(205,126,6)" rx="2" ry="2" />
|
|
<text x="713.64" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="665.4" y="469" width="0.3" height="15.0" fill="rgb(232,179,2)" rx="2" ry="2" />
|
|
<text x="668.45" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (7 samples, 0.04%)</title><rect x="1005.1" y="261" width="0.4" height="15.0" fill="rgb(231,113,41)" rx="2" ry="2" />
|
|
<text x="1008.09" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stellar_get_current_thread_id@plt (4 samples, 0.02%)</title><rect x="572.2" y="405" width="0.2" height="15.0" fill="rgb(238,193,40)" rx="2" ry="2" />
|
|
<text x="575.18" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="377.7" y="133" width="0.2" height="15.0" fill="rgb(246,117,41)" rx="2" ry="2" />
|
|
<text x="380.73" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_dl_io_get1_rawpkt_meta (2 samples, 0.01%)</title><rect x="361.0" y="501" width="0.1" height="15.0" fill="rgb(221,88,49)" rx="2" ry="2" />
|
|
<text x="363.98" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (181 samples, 0.92%)</title><rect x="81.6" y="581" width="10.9" height="15.0" fill="rgb(215,174,37)" rx="2" ry="2" />
|
|
<text x="84.60" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="217.8" y="405" width="0.2" height="15.0" fill="rgb(220,92,30)" rx="2" ry="2" />
|
|
<text x="220.84" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ap_slice_add_hash (5 samples, 0.03%)</title><rect x="1081.9" y="485" width="0.3" height="15.0" fill="rgb(227,58,36)" rx="2" ry="2" />
|
|
<text x="1084.91" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="422.3" y="389" width="0.1" height="15.0" fill="rgb(223,114,39)" rx="2" ry="2" />
|
|
<text x="425.26" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="404.4" y="197" width="0.1" height="15.0" fill="rgb(222,211,11)" rx="2" ry="2" />
|
|
<text x="407.37" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sip.so] (12 samples, 0.06%)</title><rect x="745.0" y="453" width="0.7" height="15.0" fill="rgb(212,88,49)" rx="2" ry="2" />
|
|
<text x="747.97" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="106.0" y="389" width="0.1" height="15.0" fill="rgb(233,64,44)" rx="2" ry="2" />
|
|
<text x="108.97" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="1181.1" y="645" width="0.2" height="15.0" fill="rgb(223,125,5)" rx="2" ry="2" />
|
|
<text x="1184.12" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[glimpse_detector.so] (2 samples, 0.01%)</title><rect x="558.1" y="405" width="0.2" height="15.0" fill="rgb(224,36,9)" rx="2" ry="2" />
|
|
<text x="561.14" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (11 samples, 0.06%)</title><rect x="220.9" y="357" width="0.7" height="15.0" fill="rgb(222,68,18)" rx="2" ry="2" />
|
|
<text x="223.90" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="156.7" y="309" width="0.2" height="15.0" fill="rgb(247,211,35)" rx="2" ry="2" />
|
|
<text x="159.74" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="414.0" y="229" width="0.2" height="15.0" fill="rgb(221,41,40)" rx="2" ry="2" />
|
|
<text x="417.04" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (6 samples, 0.03%)</title><rect x="1184.7" y="421" width="0.4" height="15.0" fill="rgb(235,215,28)" rx="2" ry="2" />
|
|
<text x="1187.72" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (57 samples, 0.29%)</title><rect x="129.4" y="469" width="3.4" height="15.0" fill="rgb(207,143,3)" rx="2" ry="2" />
|
|
<text x="132.37" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="189.9" y="373" width="0.4" height="15.0" fill="rgb(205,115,45)" rx="2" ry="2" />
|
|
<text x="192.93" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="1148.2" y="613" width="0.1" height="15.0" fill="rgb(241,27,28)" rx="2" ry="2" />
|
|
<text x="1151.17" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get@plt (3 samples, 0.02%)</title><rect x="571.5" y="405" width="0.1" height="15.0" fill="rgb(252,117,18)" rx="2" ry="2" />
|
|
<text x="574.46" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_opt_from_rawpkt (12 samples, 0.06%)</title><rect x="662.3" y="453" width="0.7" height="15.0" fill="rgb(231,67,43)" rx="2" ry="2" />
|
|
<text x="665.27" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="105.7" y="341" width="0.3" height="15.0" fill="rgb(205,62,11)" rx="2" ry="2" />
|
|
<text x="108.67" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="252.3" y="373" width="0.2" height="15.0" fill="rgb(240,225,42)" rx="2" ry="2" />
|
|
<text x="255.35" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>safe_add_longlong (4 samples, 0.02%)</title><rect x="871.3" y="341" width="0.2" height="15.0" fill="rgb(218,223,17)" rx="2" ry="2" />
|
|
<text x="874.31" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (3 samples, 0.02%)</title><rect x="422.9" y="245" width="0.2" height="15.0" fill="rgb(242,155,12)" rx="2" ry="2" />
|
|
<text x="425.92" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (10 samples, 0.05%)</title><rect x="908.9" y="453" width="0.6" height="15.0" fill="rgb(235,180,16)" rx="2" ry="2" />
|
|
<text x="911.94" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (11 samples, 0.06%)</title><rect x="1145.9" y="517" width="0.6" height="15.0" fill="rgb(209,191,33)" rx="2" ry="2" />
|
|
<text x="1148.89" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (17 samples, 0.09%)</title><rect x="105.6" y="485" width="1.0" height="15.0" fill="rgb(209,186,11)" rx="2" ry="2" />
|
|
<text x="108.61" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (20 samples, 0.10%)</title><rect x="785.8" y="277" width="1.2" height="15.0" fill="rgb(233,165,11)" rx="2" ry="2" />
|
|
<text x="788.84" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sip.so] (4 samples, 0.02%)</title><rect x="436.1" y="421" width="0.2" height="15.0" fill="rgb(238,85,34)" rx="2" ry="2" />
|
|
<text x="439.06" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (13 samples, 0.07%)</title><rect x="1141.9" y="533" width="0.8" height="15.0" fill="rgb(233,179,16)" rx="2" ry="2" />
|
|
<text x="1144.93" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (3 samples, 0.02%)</title><rect x="911.3" y="341" width="0.2" height="15.0" fill="rgb(211,118,48)" rx="2" ry="2" />
|
|
<text x="914.34" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (2 samples, 0.01%)</title><rect x="1036.2" y="357" width="0.2" height="15.0" fill="rgb(231,215,11)" rx="2" ry="2" />
|
|
<text x="1039.24" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH128_mix32B (2 samples, 0.01%)</title><rect x="1041.5" y="245" width="0.1" height="15.0" fill="rgb(235,156,45)" rx="2" ry="2" />
|
|
<text x="1044.52" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInflate2::fn_iDecode (2 samples, 0.01%)</title><rect x="1141.8" y="357" width="0.1" height="15.0" fill="rgb(244,32,44)" rx="2" ry="2" />
|
|
<text x="1144.81" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2,177 samples, 11.07%)</title><rect x="745.7" y="469" width="130.6" height="15.0" fill="rgb(241,205,32)" rx="2" ry="2" />
|
|
<text x="748.69" y="479.5" >[stellar_on_sapp..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="402.0" y="181" width="0.2" height="15.0" fill="rgb(248,201,3)" rx="2" ry="2" />
|
|
<text x="405.03" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="166.1" y="197" width="0.1" height="15.0" fill="rgb(243,197,53)" rx="2" ry="2" />
|
|
<text x="169.10" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (5 samples, 0.03%)</title><rect x="94.2" y="629" width="0.3" height="15.0" fill="rgb(207,42,3)" rx="2" ry="2" />
|
|
<text x="97.20" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (15 samples, 0.08%)</title><rect x="1060.5" y="357" width="0.9" height="15.0" fill="rgb(209,221,42)" rx="2" ry="2" />
|
|
<text x="1063.48" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="224.3" y="293" width="0.1" height="15.0" fill="rgb(240,126,21)" rx="2" ry="2" />
|
|
<text x="227.32" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="385.0" y="213" width="0.2" height="15.0" fill="rgb(252,14,43)" rx="2" ry="2" />
|
|
<text x="388.05" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (3 samples, 0.02%)</title><rect x="42.0" y="533" width="0.2" height="15.0" fill="rgb(218,171,35)" rx="2" ry="2" />
|
|
<text x="44.99" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (19 samples, 0.10%)</title><rect x="52.1" y="581" width="1.1" height="15.0" fill="rgb(234,220,24)" rx="2" ry="2" />
|
|
<text x="55.07" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (190 samples, 0.97%)</title><rect x="132.8" y="517" width="11.4" height="15.0" fill="rgb(213,124,36)" rx="2" ry="2" />
|
|
<text x="135.80" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>map_flow_id_hash_to_bucket (2 samples, 0.01%)</title><rect x="954.7" y="293" width="0.2" height="15.0" fill="rgb(216,168,12)" rx="2" ry="2" />
|
|
<text x="957.73" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (3 samples, 0.02%)</title><rect x="1034.9" y="293" width="0.2" height="15.0" fill="rgb(217,85,52)" rx="2" ry="2" />
|
|
<text x="1037.92" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="1050.2" y="437" width="0.3" height="15.0" fill="rgb(205,9,52)" rx="2" ry="2" />
|
|
<text x="1053.16" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (4 samples, 0.02%)</title><rect x="1040.1" y="261" width="0.2" height="15.0" fill="rgb(208,225,54)" rx="2" ry="2" />
|
|
<text x="1043.08" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (2 samples, 0.01%)</title><rect x="736.2" y="533" width="0.1" height="15.0" fill="rgb(235,223,29)" rx="2" ry="2" />
|
|
<text x="739.21" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (40 samples, 0.20%)</title><rect x="1100.6" y="565" width="2.4" height="15.0" fill="rgb(238,43,52)" rx="2" ry="2" />
|
|
<text x="1103.63" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_avx2_movbe (8 samples, 0.04%)</title><rect x="1018.6" y="549" width="0.5" height="15.0" fill="rgb(235,71,1)" rx="2" ry="2" />
|
|
<text x="1021.59" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1147.3" y="517" width="0.3" height="15.0" fill="rgb(229,187,35)" rx="2" ry="2" />
|
|
<text x="1150.33" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_dos_dimension_get (4 samples, 0.02%)</title><rect x="711.1" y="389" width="0.3" height="15.0" fill="rgb(224,77,41)" rx="2" ry="2" />
|
|
<text x="714.12" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="918.2" y="229" width="0.3" height="15.0" fill="rgb(205,12,8)" rx="2" ry="2" />
|
|
<text x="921.18" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (7 samples, 0.04%)</title><rect x="32.0" y="517" width="0.4" height="15.0" fill="rgb(216,63,39)" rx="2" ry="2" />
|
|
<text x="34.97" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_stream (43 samples, 0.22%)</title><rect x="432.0" y="437" width="2.6" height="15.0" fill="rgb(232,136,19)" rx="2" ry="2" />
|
|
<text x="434.98" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (12 samples, 0.06%)</title><rect x="1189.2" y="613" width="0.7" height="15.0" fill="rgb(249,41,6)" rx="2" ry="2" />
|
|
<text x="1192.16" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="917.5" y="293" width="0.3" height="15.0" fill="rgb(242,43,51)" rx="2" ry="2" />
|
|
<text x="920.46" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (22 samples, 0.11%)</title><rect x="912.0" y="517" width="1.3" height="15.0" fill="rgb(226,71,3)" rx="2" ry="2" />
|
|
<text x="915.00" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (52 samples, 0.26%)</title><rect x="517.4" y="325" width="3.2" height="15.0" fill="rgb(208,95,3)" rx="2" ry="2" />
|
|
<text x="520.45" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (65 samples, 0.33%)</title><rect x="346.7" y="517" width="3.9" height="15.0" fill="rgb(213,83,34)" rx="2" ry="2" />
|
|
<text x="349.70" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_cardinality (2 samples, 0.01%)</title><rect x="714.8" y="293" width="0.1" height="15.0" fill="rgb(224,163,30)" rx="2" ry="2" />
|
|
<text x="717.78" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (182 samples, 0.93%)</title><rect x="992.8" y="309" width="11.0" height="15.0" fill="rgb(251,165,12)" rx="2" ry="2" />
|
|
<text x="995.84" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (3 samples, 0.02%)</title><rect x="1095.0" y="485" width="0.2" height="15.0" fill="rgb(254,185,49)" rx="2" ry="2" />
|
|
<text x="1097.99" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="145.4" y="309" width="0.1" height="15.0" fill="rgb(226,148,37)" rx="2" ry="2" />
|
|
<text x="148.40" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (8 samples, 0.04%)</title><rect x="254.6" y="565" width="0.5" height="15.0" fill="rgb(218,40,15)" rx="2" ry="2" />
|
|
<text x="257.63" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="245.9" y="405" width="0.1" height="15.0" fill="rgb(238,112,19)" rx="2" ry="2" />
|
|
<text x="248.87" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_avx (2 samples, 0.01%)</title><rect x="378.8" y="389" width="0.1" height="15.0" fill="rgb(210,206,43)" rx="2" ry="2" />
|
|
<text x="381.81" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>magic_buffer (5 samples, 0.03%)</title><rect x="925.5" y="229" width="0.3" height="15.0" fill="rgb(228,46,32)" rx="2" ry="2" />
|
|
<text x="928.50" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_traffic_tags_get (5 samples, 0.03%)</title><rect x="660.8" y="389" width="0.3" height="15.0" fill="rgb(222,224,54)" rx="2" ry="2" />
|
|
<text x="663.83" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (4 samples, 0.02%)</title><rect x="949.1" y="437" width="0.2" height="15.0" fill="rgb(239,93,50)" rx="2" ry="2" />
|
|
<text x="952.09" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (4 samples, 0.02%)</title><rect x="949.1" y="453" width="0.2" height="15.0" fill="rgb(254,89,9)" rx="2" ry="2" />
|
|
<text x="952.09" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1177.9" y="501" width="0.2" height="15.0" fill="rgb(219,157,54)" rx="2" ry="2" />
|
|
<text x="1180.88" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (11 samples, 0.06%)</title><rect x="1188.0" y="501" width="0.6" height="15.0" fill="rgb(251,4,43)" rx="2" ry="2" />
|
|
<text x="1190.96" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (9 samples, 0.05%)</title><rect x="1072.5" y="245" width="0.5" height="15.0" fill="rgb(232,0,14)" rx="2" ry="2" />
|
|
<text x="1075.49" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (13 samples, 0.07%)</title><rect x="989.7" y="373" width="0.8" height="15.0" fill="rgb(232,140,21)" rx="2" ry="2" />
|
|
<text x="992.72" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="917.5" y="325" width="0.3" height="15.0" fill="rgb(239,88,33)" rx="2" ry="2" />
|
|
<text x="920.46" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (2 samples, 0.01%)</title><rect x="148.2" y="405" width="0.1" height="15.0" fill="rgb(245,201,41)" rx="2" ry="2" />
|
|
<text x="151.22" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_min_count (5 samples, 0.03%)</title><rect x="1001.5" y="293" width="0.3" height="15.0" fill="rgb(230,113,54)" rx="2" ry="2" />
|
|
<text x="1004.49" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (33 samples, 0.17%)</title><rect x="214.6" y="533" width="2.0" height="15.0" fill="rgb(229,128,35)" rx="2" ry="2" />
|
|
<text x="217.60" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="194.0" y="389" width="0.4" height="15.0" fill="rgb(223,157,36)" rx="2" ry="2" />
|
|
<text x="196.95" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_dp_trace_measurements_can_emit (191 samples, 0.97%)</title><rect x="1112.7" y="581" width="11.5" height="15.0" fill="rgb(214,151,48)" rx="2" ry="2" />
|
|
<text x="1115.70" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (310 samples, 1.58%)</title><rect x="389.5" y="325" width="18.6" height="15.0" fill="rgb(215,50,51)" rx="2" ry="2" />
|
|
<text x="392.49" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (11 samples, 0.06%)</title><rect x="989.8" y="341" width="0.6" height="15.0" fill="rgb(217,203,34)" rx="2" ry="2" />
|
|
<text x="992.78" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="190.2" y="229" width="0.1" height="15.0" fill="rgb(243,124,7)" rx="2" ry="2" />
|
|
<text x="193.17" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_dos_metric_update (72 samples, 0.37%)</title><rect x="707.1" y="405" width="4.3" height="15.0" fill="rgb(227,71,54)" rx="2" ry="2" />
|
|
<text x="710.10" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (6 samples, 0.03%)</title><rect x="210.5" y="373" width="0.4" height="15.0" fill="rgb(226,20,39)" rx="2" ry="2" />
|
|
<text x="213.52" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_get_type (3 samples, 0.02%)</title><rect x="590.7" y="341" width="0.1" height="15.0" fill="rgb(243,2,32)" rx="2" ry="2" />
|
|
<text x="593.67" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (316 samples, 1.61%)</title><rect x="153.6" y="581" width="19.0" height="15.0" fill="rgb(212,43,23)" rx="2" ry="2" />
|
|
<text x="156.62" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (7 samples, 0.04%)</title><rect x="1044.8" y="453" width="0.4" height="15.0" fill="rgb(207,203,28)" rx="2" ry="2" />
|
|
<text x="1047.82" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="220.7" y="277" width="0.1" height="15.0" fill="rgb(222,24,35)" rx="2" ry="2" />
|
|
<text x="223.72" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="1184.1" y="309" width="0.1" height="15.0" fill="rgb(237,189,38)" rx="2" ry="2" />
|
|
<text x="1187.06" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="145.8" y="341" width="0.1" height="15.0" fill="rgb(216,184,32)" rx="2" ry="2" />
|
|
<text x="148.76" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="224.4" y="389" width="0.2" height="15.0" fill="rgb(240,212,18)" rx="2" ry="2" />
|
|
<text x="227.44" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (21 samples, 0.11%)</title><rect x="109.0" y="405" width="1.3" height="15.0" fill="rgb(214,162,33)" rx="2" ry="2" />
|
|
<text x="112.03" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="431.4" y="373" width="0.1" height="15.0" fill="rgb(233,114,43)" rx="2" ry="2" />
|
|
<text x="434.38" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="708.4" y="245" width="0.1" height="15.0" fill="rgb(246,67,44)" rx="2" ry="2" />
|
|
<text x="711.42" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (13 samples, 0.07%)</title><rect x="1085.0" y="357" width="0.8" height="15.0" fill="rgb(240,20,22)" rx="2" ry="2" />
|
|
<text x="1088.03" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_ip_plugin_table_get_ex_data (17 samples, 0.09%)</title><rect x="38.1" y="597" width="1.0" height="15.0" fill="rgb(250,115,1)" rx="2" ry="2" />
|
|
<text x="41.09" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="213.3" y="373" width="0.1" height="15.0" fill="rgb(219,17,27)" rx="2" ry="2" />
|
|
<text x="216.28" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (43 samples, 0.22%)</title><rect x="246.1" y="549" width="2.6" height="15.0" fill="rgb(228,139,45)" rx="2" ry="2" />
|
|
<text x="249.11" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="1184.1" y="341" width="0.1" height="15.0" fill="rgb(219,17,34)" rx="2" ry="2" />
|
|
<text x="1187.06" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="144.9" y="309" width="0.2" height="15.0" fill="rgb(229,70,26)" rx="2" ry="2" />
|
|
<text x="147.86" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (2 samples, 0.01%)</title><rect x="381.6" y="213" width="0.1" height="15.0" fill="rgb(224,117,14)" rx="2" ry="2" />
|
|
<text x="384.57" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="1142.8" y="453" width="0.1" height="15.0" fill="rgb(223,86,17)" rx="2" ry="2" />
|
|
<text x="1145.77" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="949.2" y="405" width="0.1" height="15.0" fill="rgb(210,78,33)" rx="2" ry="2" />
|
|
<text x="952.21" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (11 samples, 0.06%)</title><rect x="169.5" y="405" width="0.6" height="15.0" fill="rgb(219,185,52)" rx="2" ry="2" />
|
|
<text x="172.47" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (16 samples, 0.08%)</title><rect x="1141.7" y="549" width="1.0" height="15.0" fill="rgb(251,87,47)" rx="2" ry="2" />
|
|
<text x="1144.75" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (7 samples, 0.04%)</title><rect x="230.4" y="421" width="0.4" height="15.0" fill="rgb(233,111,34)" rx="2" ry="2" />
|
|
<text x="233.38" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (14 samples, 0.07%)</title><rect x="1155.3" y="485" width="0.9" height="15.0" fill="rgb(235,94,32)" rx="2" ry="2" />
|
|
<text x="1158.31" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_get_type (2 samples, 0.01%)</title><rect x="782.2" y="341" width="0.2" height="15.0" fill="rgb(254,62,25)" rx="2" ry="2" />
|
|
<text x="785.24" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="145.0" y="277" width="0.1" height="15.0" fill="rgb(229,122,50)" rx="2" ry="2" />
|
|
<text x="147.98" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (49 samples, 0.25%)</title><rect x="110.8" y="421" width="2.9" height="15.0" fill="rgb(230,161,23)" rx="2" ry="2" />
|
|
<text x="113.77" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="225.9" y="405" width="0.2" height="15.0" fill="rgb(228,144,54)" rx="2" ry="2" />
|
|
<text x="228.94" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (2 samples, 0.01%)</title><rect x="144.1" y="373" width="0.1" height="15.0" fill="rgb(248,171,30)" rx="2" ry="2" />
|
|
<text x="147.08" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (6 samples, 0.03%)</title><rect x="1007.2" y="293" width="0.4" height="15.0" fill="rgb(210,31,43)" rx="2" ry="2" />
|
|
<text x="1010.25" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (12 samples, 0.06%)</title><rect x="220.2" y="405" width="0.7" height="15.0" fill="rgb(241,125,51)" rx="2" ry="2" />
|
|
<text x="223.18" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (33 samples, 0.17%)</title><rect x="214.6" y="581" width="2.0" height="15.0" fill="rgb(215,214,51)" rx="2" ry="2" />
|
|
<text x="217.60" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (22 samples, 0.11%)</title><rect x="724.4" y="277" width="1.3" height="15.0" fill="rgb(240,107,5)" rx="2" ry="2" />
|
|
<text x="727.39" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[glimpse_detector.so] (4 samples, 0.02%)</title><rect x="760.2" y="405" width="0.3" height="15.0" fill="rgb(205,167,15)" rx="2" ry="2" />
|
|
<text x="763.22" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (13 samples, 0.07%)</title><rect x="1084.0" y="389" width="0.8" height="15.0" fill="rgb(247,136,6)" rx="2" ry="2" />
|
|
<text x="1087.01" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (2 samples, 0.01%)</title><rect x="502.9" y="261" width="0.1" height="15.0" fill="rgb(234,138,47)" rx="2" ry="2" />
|
|
<text x="505.92" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="1188.8" y="437" width="0.4" height="15.0" fill="rgb(243,22,44)" rx="2" ry="2" />
|
|
<text x="1191.80" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (7 samples, 0.04%)</title><rect x="954.3" y="245" width="0.4" height="15.0" fill="rgb(243,212,48)" rx="2" ry="2" />
|
|
<text x="957.31" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (14 samples, 0.07%)</title><rect x="499.1" y="293" width="0.8" height="15.0" fill="rgb(224,69,44)" rx="2" ry="2" />
|
|
<text x="502.08" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get0_current_payload (6 samples, 0.03%)</title><rect x="127.9" y="421" width="0.3" height="15.0" fill="rgb(247,82,21)" rx="2" ry="2" />
|
|
<text x="130.87" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (194 samples, 0.99%)</title><rect x="232.1" y="469" width="11.7" height="15.0" fill="rgb(245,163,3)" rx="2" ry="2" />
|
|
<text x="235.12" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="382.4" y="229" width="0.1" height="15.0" fill="rgb(229,56,24)" rx="2" ry="2" />
|
|
<text x="385.41" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="417.5" y="229" width="0.1" height="15.0" fill="rgb(239,101,50)" rx="2" ry="2" />
|
|
<text x="420.46" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (2 samples, 0.01%)</title><rect x="435.5" y="389" width="0.1" height="15.0" fill="rgb(235,120,9)" rx="2" ry="2" />
|
|
<text x="438.52" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="245.6" y="405" width="0.1" height="15.0" fill="rgb(240,216,21)" rx="2" ry="2" />
|
|
<text x="248.63" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (37 samples, 0.19%)</title><rect x="474.5" y="437" width="2.3" height="15.0" fill="rgb(222,6,5)" rx="2" ry="2" />
|
|
<text x="477.53" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="1143.8" y="437" width="0.3" height="15.0" fill="rgb(205,173,40)" rx="2" ry="2" />
|
|
<text x="1146.85" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="1142.5" y="437" width="0.2" height="15.0" fill="rgb(220,156,14)" rx="2" ry="2" />
|
|
<text x="1145.47" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1184.1" y="277" width="0.1" height="15.0" fill="rgb(237,49,7)" rx="2" ry="2" />
|
|
<text x="1187.06" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="156.7" y="261" width="0.2" height="15.0" fill="rgb(227,29,19)" rx="2" ry="2" />
|
|
<text x="159.74" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (12 samples, 0.06%)</title><rect x="1142.9" y="613" width="0.7" height="15.0" fill="rgb(249,109,28)" rx="2" ry="2" />
|
|
<text x="1145.89" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="153.4" y="581" width="0.2" height="15.0" fill="rgb(250,142,8)" rx="2" ry="2" />
|
|
<text x="156.44" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="165" width="0.2" height="15.0" fill="rgb(249,3,37)" rx="2" ry="2" />
|
|
<text x="1145.47" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (11 samples, 0.06%)</title><rect x="255.3" y="629" width="0.7" height="15.0" fill="rgb(205,9,35)" rx="2" ry="2" />
|
|
<text x="258.29" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_min_count (7 samples, 0.04%)</title><rect x="958.6" y="293" width="0.5" height="15.0" fill="rgb(233,181,26)" rx="2" ry="2" />
|
|
<text x="961.63" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mix16B (2 samples, 0.01%)</title><rect x="709.4" y="229" width="0.1" height="15.0" fill="rgb(209,177,15)" rx="2" ry="2" />
|
|
<text x="712.38" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="920.8" y="261" width="0.1" height="15.0" fill="rgb(206,161,22)" rx="2" ry="2" />
|
|
<text x="923.76" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="224.3" y="357" width="0.1" height="15.0" fill="rgb(235,159,28)" rx="2" ry="2" />
|
|
<text x="227.32" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="253.3" y="421" width="0.4" height="15.0" fill="rgb(213,155,46)" rx="2" ry="2" />
|
|
<text x="256.25" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="221.9" y="229" width="0.2" height="15.0" fill="rgb(234,77,2)" rx="2" ry="2" />
|
|
<text x="224.86" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (30 samples, 0.15%)</title><rect x="507.8" y="293" width="1.8" height="15.0" fill="rgb(207,17,22)" rx="2" ry="2" />
|
|
<text x="510.78" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="164.9" y="213" width="0.1" height="15.0" fill="rgb(219,8,22)" rx="2" ry="2" />
|
|
<text x="167.90" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="221.9" y="197" width="0.2" height="15.0" fill="rgb(231,80,10)" rx="2" ry="2" />
|
|
<text x="224.92" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_palloc@plt (2 samples, 0.01%)</title><rect x="1161.6" y="517" width="0.1" height="15.0" fill="rgb(216,8,20)" rx="2" ry="2" />
|
|
<text x="1164.55" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="413.6" y="181" width="0.1" height="15.0" fill="rgb(229,152,44)" rx="2" ry="2" />
|
|
<text x="416.56" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1050.3" y="373" width="0.2" height="15.0" fill="rgb(206,92,44)" rx="2" ry="2" />
|
|
<text x="1053.34" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.02%)</title><rect x="744.3" y="437" width="0.2" height="15.0" fill="rgb(224,47,38)" rx="2" ry="2" />
|
|
<text x="747.31" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="1179.7" y="581" width="0.5" height="15.0" fill="rgb(238,83,33)" rx="2" ry="2" />
|
|
<text x="1182.68" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="421" width="0.2" height="15.0" fill="rgb(218,192,23)" rx="2" ry="2" />
|
|
<text x="1145.47" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="219.3" y="565" width="0.2" height="15.0" fill="rgb(222,128,2)" rx="2" ry="2" />
|
|
<text x="222.28" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (5 samples, 0.03%)</title><rect x="882.2" y="341" width="0.3" height="15.0" fill="rgb(218,42,31)" rx="2" ry="2" />
|
|
<text x="885.17" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (9 samples, 0.05%)</title><rect x="200.3" y="373" width="0.6" height="15.0" fill="rgb(209,184,54)" rx="2" ry="2" />
|
|
<text x="203.31" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (7 samples, 0.04%)</title><rect x="910.7" y="357" width="0.4" height="15.0" fill="rgb(244,5,17)" rx="2" ry="2" />
|
|
<text x="913.68" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (8 samples, 0.04%)</title><rect x="954.3" y="261" width="0.4" height="15.0" fill="rgb(236,101,25)" rx="2" ry="2" />
|
|
<text x="957.25" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (17 samples, 0.09%)</title><rect x="722.8" y="293" width="1.0" height="15.0" fill="rgb(243,93,37)" rx="2" ry="2" />
|
|
<text x="725.77" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_zalloc (2 samples, 0.01%)</title><rect x="222.7" y="229" width="0.1" height="15.0" fill="rgb(252,135,6)" rx="2" ry="2" />
|
|
<text x="225.70" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="408.9" y="293" width="0.3" height="15.0" fill="rgb(214,45,33)" rx="2" ry="2" />
|
|
<text x="411.93" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="153.4" y="501" width="0.2" height="15.0" fill="rgb(237,59,40)" rx="2" ry="2" />
|
|
<text x="156.44" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="253.0" y="293" width="0.1" height="15.0" fill="rgb(241,161,1)" rx="2" ry="2" />
|
|
<text x="256.01" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_rwlock_wrlock (2 samples, 0.01%)</title><rect x="160.9" y="309" width="0.1" height="15.0" fill="rgb(243,79,21)" rx="2" ry="2" />
|
|
<text x="163.88" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (5 samples, 0.03%)</title><rect x="1145.6" y="581" width="0.3" height="15.0" fill="rgb(231,22,1)" rx="2" ry="2" />
|
|
<text x="1148.59" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="325.8" y="517" width="0.1" height="15.0" fill="rgb(243,28,36)" rx="2" ry="2" />
|
|
<text x="328.75" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (2 samples, 0.01%)</title><rect x="218.4" y="405" width="0.1" height="15.0" fill="rgb(232,94,16)" rx="2" ry="2" />
|
|
<text x="221.38" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (2 samples, 0.01%)</title><rect x="253.0" y="437" width="0.1" height="15.0" fill="rgb(222,108,21)" rx="2" ry="2" />
|
|
<text x="256.01" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (3 samples, 0.02%)</title><rect x="1084.2" y="277" width="0.2" height="15.0" fill="rgb(212,155,52)" rx="2" ry="2" />
|
|
<text x="1087.25" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (19 samples, 0.10%)</title><rect x="720.8" y="277" width="1.2" height="15.0" fill="rgb(207,83,0)" rx="2" ry="2" />
|
|
<text x="723.84" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (5 samples, 0.03%)</title><rect x="835.5" y="245" width="0.3" height="15.0" fill="rgb(225,166,6)" rx="2" ry="2" />
|
|
<text x="838.48" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (4 samples, 0.02%)</title><rect x="217.2" y="421" width="0.2" height="15.0" fill="rgb(243,18,53)" rx="2" ry="2" />
|
|
<text x="220.18" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vdso_clock_gettime (7 samples, 0.04%)</title><rect x="248.3" y="405" width="0.4" height="15.0" fill="rgb(252,6,44)" rx="2" ry="2" />
|
|
<text x="251.27" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="1141.0" y="517" width="0.4" height="15.0" fill="rgb(229,133,35)" rx="2" ry="2" />
|
|
<text x="1144.03" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (2 samples, 0.01%)</title><rect x="144.9" y="261" width="0.1" height="15.0" fill="rgb(208,128,33)" rx="2" ry="2" />
|
|
<text x="147.86" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="422.9" y="309" width="0.4" height="15.0" fill="rgb(244,116,42)" rx="2" ry="2" />
|
|
<text x="425.86" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (144 samples, 0.73%)</title><rect x="490.4" y="277" width="8.7" height="15.0" fill="rgb(243,192,16)" rx="2" ry="2" />
|
|
<text x="493.44" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (12 samples, 0.06%)</title><rect x="1183.3" y="645" width="0.7" height="15.0" fill="rgb(227,22,11)" rx="2" ry="2" />
|
|
<text x="1186.28" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (4 samples, 0.02%)</title><rect x="776.6" y="309" width="0.2" height="15.0" fill="rgb(251,22,2)" rx="2" ry="2" />
|
|
<text x="779.60" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="254.3" y="421" width="0.1" height="15.0" fill="rgb(227,107,38)" rx="2" ry="2" />
|
|
<text x="257.27" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="161.0" y="325" width="0.2" height="15.0" fill="rgb(227,73,54)" rx="2" ry="2" />
|
|
<text x="164.00" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (5 samples, 0.03%)</title><rect x="1147.9" y="453" width="0.3" height="15.0" fill="rgb(253,153,50)" rx="2" ry="2" />
|
|
<text x="1150.87" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (7 samples, 0.04%)</title><rect x="1074.0" y="309" width="0.4" height="15.0" fill="rgb(230,174,23)" rx="2" ry="2" />
|
|
<text x="1076.99" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (248 samples, 1.26%)</title><rect x="1151.0" y="565" width="14.9" height="15.0" fill="rgb(216,155,20)" rx="2" ry="2" />
|
|
<text x="1153.99" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="884.1" y="261" width="0.1" height="15.0" fill="rgb(217,105,51)" rx="2" ry="2" />
|
|
<text x="887.09" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (18 samples, 0.09%)</title><rect x="1178.2" y="517" width="1.1" height="15.0" fill="rgb(229,1,20)" rx="2" ry="2" />
|
|
<text x="1181.18" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (31 samples, 0.16%)</title><rect x="507.7" y="309" width="1.9" height="15.0" fill="rgb(250,110,11)" rx="2" ry="2" />
|
|
<text x="510.72" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_initHttpConnection (5 samples, 0.03%)</title><rect x="930.5" y="421" width="0.3" height="15.0" fill="rgb(234,220,48)" rx="2" ry="2" />
|
|
<text x="933.49" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1141.6" y="565" width="0.1" height="15.0" fill="rgb(231,6,25)" rx="2" ry="2" />
|
|
<text x="1144.57" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_old_init (2 samples, 0.01%)</title><rect x="200.4" y="341" width="0.2" height="15.0" fill="rgb(250,178,53)" rx="2" ry="2" />
|
|
<text x="203.43" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>QUIC_ENTRY (18 samples, 0.09%)</title><rect x="1049.5" y="469" width="1.1" height="15.0" fill="rgb(206,64,32)" rx="2" ry="2" />
|
|
<text x="1052.50" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="1171.2" y="517" width="0.7" height="15.0" fill="rgb(238,6,50)" rx="2" ry="2" />
|
|
<text x="1174.21" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[glimpse_detector.so] (10 samples, 0.05%)</title><rect x="980.2" y="421" width="0.6" height="15.0" fill="rgb(238,162,0)" rx="2" ry="2" />
|
|
<text x="983.24" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="984.2" y="405" width="0.1" height="15.0" fill="rgb(206,128,39)" rx="2" ry="2" />
|
|
<text x="987.20" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="1165.4" y="501" width="0.4" height="15.0" fill="rgb(218,201,10)" rx="2" ry="2" />
|
|
<text x="1168.39" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="384.0" y="229" width="0.1" height="15.0" fill="rgb(249,18,26)" rx="2" ry="2" />
|
|
<text x="386.97" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="255.1" y="389" width="0.1" height="15.0" fill="rgb(214,56,11)" rx="2" ry="2" />
|
|
<text x="258.11" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (6 samples, 0.03%)</title><rect x="1090.1" y="309" width="0.4" height="15.0" fill="rgb(226,33,13)" rx="2" ry="2" />
|
|
<text x="1093.13" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>all (19,661 samples, 100%)</title><rect x="10.0" y="693" width="1180.0" height="15.0" fill="rgb(214,187,11)" rx="2" ry="2" />
|
|
<text x="13.00" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1095.1" y="421" width="0.1" height="15.0" fill="rgb(224,144,19)" rx="2" ry="2" />
|
|
<text x="1098.05" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (4 samples, 0.02%)</title><rect x="376.9" y="229" width="0.2" height="15.0" fill="rgb(229,43,19)" rx="2" ry="2" />
|
|
<text x="379.89" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (2 samples, 0.01%)</title><rect x="1024.2" y="517" width="0.1" height="15.0" fill="rgb(245,110,0)" rx="2" ry="2" />
|
|
<text x="1027.17" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="255.1" y="581" width="0.1" height="15.0" fill="rgb(215,52,28)" rx="2" ry="2" />
|
|
<text x="258.11" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_pop_and_record_popped_back (6 samples, 0.03%)</title><rect x="503.7" y="277" width="0.4" height="15.0" fill="rgb(230,127,20)" rx="2" ry="2" />
|
|
<text x="506.70" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (2 samples, 0.01%)</title><rect x="417.6" y="245" width="0.1" height="15.0" fill="rgb(234,60,12)" rx="2" ry="2" />
|
|
<text x="420.58" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (14 samples, 0.07%)</title><rect x="1186.6" y="453" width="0.8" height="15.0" fill="rgb(245,116,46)" rx="2" ry="2" />
|
|
<text x="1189.58" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_xorshift64 (2 samples, 0.01%)</title><rect x="724.9" y="213" width="0.1" height="15.0" fill="rgb(243,213,35)" rx="2" ry="2" />
|
|
<text x="727.87" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (2 samples, 0.01%)</title><rect x="880.0" y="485" width="0.1" height="15.0" fill="rgb(215,49,30)" rx="2" ry="2" />
|
|
<text x="882.95" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="479.7" y="309" width="0.1" height="15.0" fill="rgb(228,220,28)" rx="2" ry="2" />
|
|
<text x="482.70" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="244.9" y="389" width="0.1" height="15.0" fill="rgb(221,96,21)" rx="2" ry="2" />
|
|
<text x="247.91" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (3 samples, 0.02%)</title><rect x="1099.7" y="517" width="0.2" height="15.0" fill="rgb(248,154,24)" rx="2" ry="2" />
|
|
<text x="1102.73" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="374.8" y="229" width="0.1" height="15.0" fill="rgb(207,10,19)" rx="2" ry="2" />
|
|
<text x="377.79" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="890.2" y="485" width="0.1" height="15.0" fill="rgb(223,100,46)" rx="2" ry="2" />
|
|
<text x="893.15" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (2 samples, 0.01%)</title><rect x="1142.8" y="437" width="0.1" height="15.0" fill="rgb(240,27,24)" rx="2" ry="2" />
|
|
<text x="1145.77" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="250.9" y="421" width="0.2" height="15.0" fill="rgb(240,154,48)" rx="2" ry="2" />
|
|
<text x="253.91" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1142.2" y="389" width="0.3" height="15.0" fill="rgb(215,18,32)" rx="2" ry="2" />
|
|
<text x="1145.17" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (8 samples, 0.04%)</title><rect x="1179.7" y="613" width="0.5" height="15.0" fill="rgb(207,229,44)" rx="2" ry="2" />
|
|
<text x="1182.68" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="219.3" y="245" width="0.2" height="15.0" fill="rgb(210,191,43)" rx="2" ry="2" />
|
|
<text x="222.28" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1044.9" y="341" width="0.2" height="15.0" fill="rgb(234,4,3)" rx="2" ry="2" />
|
|
<text x="1047.88" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="253.9" y="341" width="0.1" height="15.0" fill="rgb(209,200,15)" rx="2" ry="2" />
|
|
<text x="256.85" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (3 samples, 0.02%)</title><rect x="253.9" y="501" width="0.1" height="15.0" fill="rgb(220,64,22)" rx="2" ry="2" />
|
|
<text x="256.85" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="217.0" y="325" width="0.1" height="15.0" fill="rgb(245,15,51)" rx="2" ry="2" />
|
|
<text x="220.00" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="152.8" y="421" width="0.3" height="15.0" fill="rgb(214,143,6)" rx="2" ry="2" />
|
|
<text x="155.84" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (9 samples, 0.05%)</title><rect x="714.1" y="261" width="0.6" height="15.0" fill="rgb(235,156,17)" rx="2" ry="2" />
|
|
<text x="717.12" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pop3_entry_fun (7 samples, 0.04%)</title><rect x="423.8" y="437" width="0.4" height="15.0" fill="rgb(224,79,25)" rx="2" ry="2" />
|
|
<text x="426.76" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="1059.2" y="373" width="0.1" height="15.0" fill="rgb(249,134,44)" rx="2" ry="2" />
|
|
<text x="1062.22" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (295 samples, 1.50%)</title><rect x="172.6" y="469" width="17.7" height="15.0" fill="rgb(237,135,40)" rx="2" ry="2" />
|
|
<text x="175.59" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (2 samples, 0.01%)</title><rect x="402.1" y="149" width="0.1" height="15.0" fill="rgb(215,146,35)" rx="2" ry="2" />
|
|
<text x="405.09" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (3 samples, 0.02%)</title><rect x="714.5" y="245" width="0.2" height="15.0" fill="rgb(234,146,42)" rx="2" ry="2" />
|
|
<text x="717.48" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (9 samples, 0.05%)</title><rect x="408.9" y="341" width="0.5" height="15.0" fill="rgb(213,67,22)" rx="2" ry="2" />
|
|
<text x="411.87" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (3 samples, 0.02%)</title><rect x="229.5" y="421" width="0.2" height="15.0" fill="rgb(243,88,0)" rx="2" ry="2" />
|
|
<text x="232.48" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (9 samples, 0.05%)</title><rect x="163.8" y="213" width="0.5" height="15.0" fill="rgb(232,116,0)" rx="2" ry="2" />
|
|
<text x="166.76" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="157.6" y="197" width="0.2" height="15.0" fill="rgb(242,89,26)" rx="2" ry="2" />
|
|
<text x="160.64" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="34.1" y="533" width="0.3" height="15.0" fill="rgb(254,147,48)" rx="2" ry="2" />
|
|
<text x="37.07" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (116 samples, 0.59%)</title><rect x="690.5" y="517" width="7.0" height="15.0" fill="rgb(217,116,11)" rx="2" ry="2" />
|
|
<text x="693.54" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_to_available_heap (3 samples, 0.02%)</title><rect x="835.3" y="277" width="0.2" height="15.0" fill="rgb(230,98,6)" rx="2" ry="2" />
|
|
<text x="838.30" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_new (4 samples, 0.02%)</title><rect x="918.6" y="245" width="0.2" height="15.0" fill="rgb(254,212,37)" rx="2" ry="2" />
|
|
<text x="921.60" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (4 samples, 0.02%)</title><rect x="1147.1" y="485" width="0.2" height="15.0" fill="rgb(208,9,49)" rx="2" ry="2" />
|
|
<text x="1150.09" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (257 samples, 1.31%)</title><rect x="129.4" y="581" width="15.4" height="15.0" fill="rgb(247,77,54)" rx="2" ry="2" />
|
|
<text x="132.37" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (5 samples, 0.03%)</title><rect x="745.3" y="421" width="0.3" height="15.0" fill="rgb(245,183,1)" rx="2" ry="2" />
|
|
<text x="748.27" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="380.5" y="229" width="0.3" height="15.0" fill="rgb(209,11,11)" rx="2" ry="2" />
|
|
<text x="383.49" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1144.1" y="485" width="0.2" height="15.0" fill="rgb(205,32,29)" rx="2" ry="2" />
|
|
<text x="1147.15" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_reset_internal (2 samples, 0.01%)</title><rect x="1075.9" y="261" width="0.1" height="15.0" fill="rgb(209,110,31)" rx="2" ry="2" />
|
|
<text x="1078.91" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (3 samples, 0.02%)</title><rect x="615.1" y="213" width="0.2" height="15.0" fill="rgb(221,176,6)" rx="2" ry="2" />
|
|
<text x="618.09" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (6 samples, 0.03%)</title><rect x="1085.8" y="357" width="0.4" height="15.0" fill="rgb(205,123,44)" rx="2" ry="2" />
|
|
<text x="1088.81" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeout_pending (2 samples, 0.01%)</title><rect x="524.0" y="453" width="0.2" height="15.0" fill="rgb(244,121,37)" rx="2" ry="2" />
|
|
<text x="527.05" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (5 samples, 0.03%)</title><rect x="200.6" y="357" width="0.3" height="15.0" fill="rgb(244,73,47)" rx="2" ry="2" />
|
|
<text x="203.55" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="1188.0" y="373" width="0.1" height="15.0" fill="rgb(247,140,50)" rx="2" ry="2" />
|
|
<text x="1191.02" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="216.3" y="405" width="0.2" height="15.0" fill="rgb(239,146,7)" rx="2" ry="2" />
|
|
<text x="219.28" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="952.1" y="373" width="0.1" height="15.0" fill="rgb(219,96,33)" rx="2" ry="2" />
|
|
<text x="955.09" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH128_mix32B (10 samples, 0.05%)</title><rect x="847.2" y="245" width="0.6" height="15.0" fill="rgb(239,46,51)" rx="2" ry="2" />
|
|
<text x="850.18" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_app_and_proto_update (60 samples, 0.31%)</title><rect x="985.2" y="405" width="3.6" height="15.0" fill="rgb(245,33,41)" rx="2" ry="2" />
|
|
<text x="988.22" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (51 samples, 0.26%)</title><rect x="1021.2" y="533" width="3.1" height="15.0" fill="rgb(227,58,14)" rx="2" ry="2" />
|
|
<text x="1024.23" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (3 samples, 0.02%)</title><rect x="704.8" y="389" width="0.1" height="15.0" fill="rgb(209,56,25)" rx="2" ry="2" />
|
|
<text x="707.76" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (2 samples, 0.01%)</title><rect x="1097.8" y="277" width="0.1" height="15.0" fill="rgb(246,203,3)" rx="2" ry="2" />
|
|
<text x="1100.81" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (245 samples, 1.25%)</title><rect x="157.9" y="501" width="14.7" height="15.0" fill="rgb(214,155,0)" rx="2" ry="2" />
|
|
<text x="160.88" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="133" width="0.2" height="15.0" fill="rgb(219,32,44)" rx="2" ry="2" />
|
|
<text x="1145.47" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (7 samples, 0.04%)</title><rect x="1090.9" y="325" width="0.4" height="15.0" fill="rgb(230,5,18)" rx="2" ry="2" />
|
|
<text x="1093.85" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="224.3" y="341" width="0.1" height="15.0" fill="rgb(219,126,41)" rx="2" ry="2" />
|
|
<text x="227.32" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (3 samples, 0.02%)</title><rect x="921.0" y="309" width="0.2" height="15.0" fill="rgb(230,114,5)" rx="2" ry="2" />
|
|
<text x="924.00" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="217.0" y="341" width="0.1" height="15.0" fill="rgb(247,66,49)" rx="2" ry="2" />
|
|
<text x="220.00" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_client_hello (4 samples, 0.02%)</title><rect x="1185.1" y="421" width="0.2" height="15.0" fill="rgb(250,182,28)" rx="2" ry="2" />
|
|
<text x="1188.08" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (28 samples, 0.14%)</title><rect x="784.2" y="293" width="1.6" height="15.0" fill="rgb(212,202,42)" rx="2" ry="2" />
|
|
<text x="787.16" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="23.9" y="533" width="0.6" height="15.0" fill="rgb(240,91,28)" rx="2" ry="2" />
|
|
<text x="26.92" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="1142.5" y="85" width="0.1" height="15.0" fill="rgb(218,74,0)" rx="2" ry="2" />
|
|
<text x="1145.47" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="413.4" y="277" width="0.3" height="15.0" fill="rgb(206,106,1)" rx="2" ry="2" />
|
|
<text x="416.38" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (91 samples, 0.46%)</title><rect x="931.7" y="453" width="5.4" height="15.0" fill="rgb(219,36,40)" rx="2" ry="2" />
|
|
<text x="934.69" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (5 samples, 0.03%)</title><rect x="219.8" y="501" width="0.3" height="15.0" fill="rgb(217,93,20)" rx="2" ry="2" />
|
|
<text x="222.76" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="325.8" y="501" width="0.1" height="15.0" fill="rgb(229,23,34)" rx="2" ry="2" />
|
|
<text x="328.75" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="890.3" y="517" width="0.1" height="15.0" fill="rgb(223,91,3)" rx="2" ry="2" />
|
|
<text x="893.27" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="107.9" y="325" width="0.1" height="15.0" fill="rgb(234,58,13)" rx="2" ry="2" />
|
|
<text x="110.89" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (70 samples, 0.36%)</title><rect x="379.9" y="341" width="4.2" height="15.0" fill="rgb(240,58,27)" rx="2" ry="2" />
|
|
<text x="382.89" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="255.4" y="485" width="0.3" height="15.0" fill="rgb(242,181,39)" rx="2" ry="2" />
|
|
<text x="258.35" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="176.4" y="229" width="0.2" height="15.0" fill="rgb(222,48,16)" rx="2" ry="2" />
|
|
<text x="179.43" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (4 samples, 0.02%)</title><rect x="1147.3" y="629" width="0.3" height="15.0" fill="rgb(239,15,31)" rx="2" ry="2" />
|
|
<text x="1150.33" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (96 samples, 0.49%)</title><rect x="1036.4" y="357" width="5.7" height="15.0" fill="rgb(220,109,19)" rx="2" ry="2" />
|
|
<text x="1039.36" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>parse_dns_protocol (567 samples, 2.88%)</title><rect x="1149.2" y="661" width="34.1" height="15.0" fill="rgb(209,127,21)" rx="2" ry="2" />
|
|
<text x="1152.25" y="671.5" >pa..</text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (5 samples, 0.03%)</title><rect x="585.1" y="309" width="0.3" height="15.0" fill="rgb(225,211,10)" rx="2" ry="2" />
|
|
<text x="588.09" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_avx2_movbe (3 samples, 0.02%)</title><rect x="200.9" y="389" width="0.1" height="15.0" fill="rgb(229,47,42)" rx="2" ry="2" />
|
|
<text x="203.85" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (71 samples, 0.36%)</title><rect x="922.4" y="293" width="4.2" height="15.0" fill="rgb(223,142,25)" rx="2" ry="2" />
|
|
<text x="925.38" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_and_record_popped_back (2 samples, 0.01%)</title><rect x="709.1" y="293" width="0.2" height="15.0" fill="rgb(237,84,49)" rx="2" ry="2" />
|
|
<text x="712.14" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="421" width="0.3" height="15.0" fill="rgb(230,182,48)" rx="2" ry="2" />
|
|
<text x="1146.85" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (123 samples, 0.63%)</title><rect x="161.2" y="373" width="7.4" height="15.0" fill="rgb(216,196,42)" rx="2" ry="2" />
|
|
<text x="164.18" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="254.6" y="373" width="0.2" height="15.0" fill="rgb(234,126,10)" rx="2" ry="2" />
|
|
<text x="257.63" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (3 samples, 0.02%)</title><rect x="36.2" y="597" width="0.2" height="15.0" fill="rgb(250,25,30)" rx="2" ry="2" />
|
|
<text x="39.23" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (5 samples, 0.03%)</title><rect x="224.6" y="389" width="0.3" height="15.0" fill="rgb(242,5,45)" rx="2" ry="2" />
|
|
<text x="227.56" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (34 samples, 0.17%)</title><rect x="414.3" y="325" width="2.1" height="15.0" fill="rgb(208,48,12)" rx="2" ry="2" />
|
|
<text x="417.34" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_new (6 samples, 0.03%)</title><rect x="164.4" y="229" width="0.3" height="15.0" fill="rgb(220,216,42)" rx="2" ry="2" />
|
|
<text x="167.36" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (3 samples, 0.02%)</title><rect x="1188.9" y="405" width="0.2" height="15.0" fill="rgb(211,175,50)" rx="2" ry="2" />
|
|
<text x="1191.92" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (1,189 samples, 6.05%)</title><rect x="365.1" y="485" width="71.3" height="15.0" fill="rgb(230,203,36)" rx="2" ry="2" />
|
|
<text x="368.06" y="495.5" >call_str..</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="214.4" y="277" width="0.2" height="15.0" fill="rgb(236,202,23)" rx="2" ry="2" />
|
|
<text x="217.42" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (16 samples, 0.08%)</title><rect x="633.0" y="309" width="1.0" height="15.0" fill="rgb(217,20,20)" rx="2" ry="2" />
|
|
<text x="636.04" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (15 samples, 0.08%)</title><rect x="376.0" y="229" width="0.9" height="15.0" fill="rgb(214,13,24)" rx="2" ry="2" />
|
|
<text x="378.99" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_itoa_word (2 samples, 0.01%)</title><rect x="579.1" y="309" width="0.2" height="15.0" fill="rgb(208,69,54)" rx="2" ry="2" />
|
|
<text x="582.14" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (612 samples, 3.11%)</title><rect x="483.9" y="373" width="36.7" height="15.0" fill="rgb(236,198,24)" rx="2" ry="2" />
|
|
<text x="486.90" y="383.5" >fie..</text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="1096.9" y="309" width="0.1" height="15.0" fill="rgb(233,195,0)" rx="2" ry="2" />
|
|
<text x="1099.91" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (2 samples, 0.01%)</title><rect x="147.9" y="405" width="0.1" height="15.0" fill="rgb(239,36,8)" rx="2" ry="2" />
|
|
<text x="150.92" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (6 samples, 0.03%)</title><rect x="1141.0" y="549" width="0.4" height="15.0" fill="rgb(241,33,24)" rx="2" ry="2" />
|
|
<text x="1144.03" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (2 samples, 0.01%)</title><rect x="1082.8" y="485" width="0.1" height="15.0" fill="rgb(228,38,10)" rx="2" ry="2" />
|
|
<text x="1085.81" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_cardinality (2 samples, 0.01%)</title><rect x="597.4" y="293" width="0.1" height="15.0" fill="rgb(215,51,30)" rx="2" ry="2" />
|
|
<text x="600.39" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell (9 samples, 0.05%)</title><rect x="985.7" y="341" width="0.5" height="15.0" fill="rgb(254,88,9)" rx="2" ry="2" />
|
|
<text x="988.70" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (26 samples, 0.13%)</title><rect x="960.8" y="341" width="1.6" height="15.0" fill="rgb(213,62,18)" rx="2" ry="2" />
|
|
<text x="963.79" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (86 samples, 0.44%)</title><rect x="105.6" y="501" width="5.2" height="15.0" fill="rgb(237,14,24)" rx="2" ry="2" />
|
|
<text x="108.61" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (2,283 samples, 11.61%)</title><rect x="742.3" y="501" width="137.0" height="15.0" fill="rgb(236,159,19)" rx="2" ry="2" />
|
|
<text x="745.27" y="511.5" >call_streamentry</text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (9 samples, 0.05%)</title><rect x="1148.6" y="565" width="0.6" height="15.0" fill="rgb(246,200,11)" rx="2" ry="2" />
|
|
<text x="1151.65" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="111.1" y="405" width="0.2" height="15.0" fill="rgb(205,10,4)" rx="2" ry="2" />
|
|
<text x="114.07" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (10 samples, 0.05%)</title><rect x="144.2" y="549" width="0.6" height="15.0" fill="rgb(225,214,36)" rx="2" ry="2" />
|
|
<text x="147.20" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_64bits_reset (2 samples, 0.01%)</title><rect x="1075.9" y="277" width="0.1" height="15.0" fill="rgb(254,109,28)" rx="2" ry="2" />
|
|
<text x="1078.91" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (1,235 samples, 6.28%)</title><rect x="587.0" y="405" width="74.1" height="15.0" fill="rgb(236,220,21)" rx="2" ry="2" />
|
|
<text x="590.01" y="415.5" >traffic_..</text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="221.0" y="293" width="0.1" height="15.0" fill="rgb(252,207,12)" rx="2" ry="2" />
|
|
<text x="223.96" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (4 samples, 0.02%)</title><rect x="788.4" y="293" width="0.3" height="15.0" fill="rgb(221,136,7)" rx="2" ry="2" />
|
|
<text x="791.42" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (50 samples, 0.25%)</title><rect x="845.2" y="261" width="3.0" height="15.0" fill="rgb(235,120,40)" rx="2" ry="2" />
|
|
<text x="848.20" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (21 samples, 0.11%)</title><rect x="96.4" y="597" width="1.2" height="15.0" fill="rgb(215,122,24)" rx="2" ry="2" />
|
|
<text x="99.36" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (23 samples, 0.12%)</title><rect x="665.7" y="533" width="1.4" height="15.0" fill="rgb(219,35,26)" rx="2" ry="2" />
|
|
<text x="668.75" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (6 samples, 0.03%)</title><rect x="59.9" y="549" width="0.3" height="15.0" fill="rgb(213,174,40)" rx="2" ry="2" />
|
|
<text x="62.87" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="1146.5" y="485" width="0.6" height="15.0" fill="rgb(250,87,23)" rx="2" ry="2" />
|
|
<text x="1149.55" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (657 samples, 3.34%)</title><rect x="105.4" y="597" width="39.4" height="15.0" fill="rgb(228,35,24)" rx="2" ry="2" />
|
|
<text x="108.37" y="607.5" >ipv..</text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.02%)</title><rect x="253.9" y="485" width="0.1" height="15.0" fill="rgb(212,175,38)" rx="2" ry="2" />
|
|
<text x="256.85" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="145.6" y="325" width="0.2" height="15.0" fill="rgb(234,6,7)" rx="2" ry="2" />
|
|
<text x="148.64" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (2 samples, 0.01%)</title><rect x="990.0" y="277" width="0.1" height="15.0" fill="rgb(219,101,35)" rx="2" ry="2" />
|
|
<text x="992.96" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (21 samples, 0.11%)</title><rect x="1144.3" y="549" width="1.3" height="15.0" fill="rgb(238,67,37)" rx="2" ry="2" />
|
|
<text x="1147.33" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (10 samples, 0.05%)</title><rect x="144.2" y="501" width="0.6" height="15.0" fill="rgb(225,88,28)" rx="2" ry="2" />
|
|
<text x="147.20" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (16 samples, 0.08%)</title><rect x="128.3" y="421" width="1.0" height="15.0" fill="rgb(229,30,53)" rx="2" ry="2" />
|
|
<text x="131.29" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (18 samples, 0.09%)</title><rect x="1184.2" y="453" width="1.1" height="15.0" fill="rgb(228,157,28)" rx="2" ry="2" />
|
|
<text x="1187.24" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="159.4" y="277" width="0.2" height="15.0" fill="rgb(252,107,29)" rx="2" ry="2" />
|
|
<text x="162.38" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (96 samples, 0.49%)</title><rect x="426.2" y="437" width="5.8" height="15.0" fill="rgb(218,41,42)" rx="2" ry="2" />
|
|
<text x="429.22" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (4 samples, 0.02%)</title><rect x="106.9" y="309" width="0.3" height="15.0" fill="rgb(232,138,16)" rx="2" ry="2" />
|
|
<text x="109.93" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (4 samples, 0.02%)</title><rect x="147.0" y="421" width="0.2" height="15.0" fill="rgb(225,144,46)" rx="2" ry="2" />
|
|
<text x="149.96" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1141.9" y="341" width="0.3" height="15.0" fill="rgb(214,175,6)" rx="2" ry="2" />
|
|
<text x="1144.93" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (11 samples, 0.06%)</title><rect x="615.3" y="293" width="0.6" height="15.0" fill="rgb(210,49,28)" rx="2" ry="2" />
|
|
<text x="618.27" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (33 samples, 0.17%)</title><rect x="214.6" y="517" width="2.0" height="15.0" fill="rgb(241,67,47)" rx="2" ry="2" />
|
|
<text x="217.60" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (2 samples, 0.01%)</title><rect x="1172.8" y="533" width="0.2" height="15.0" fill="rgb(239,177,19)" rx="2" ry="2" />
|
|
<text x="1175.84" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_and_record_popped_back (18 samples, 0.09%)</title><rect x="834.7" y="293" width="1.1" height="15.0" fill="rgb(233,26,11)" rx="2" ry="2" />
|
|
<text x="837.70" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="374.8" y="309" width="0.1" height="15.0" fill="rgb(251,131,46)" rx="2" ry="2" />
|
|
<text x="377.79" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>raw_ip_frag_list_stream_attach (6 samples, 0.03%)</title><rect x="531.3" y="517" width="0.4" height="15.0" fill="rgb(209,142,32)" rx="2" ry="2" />
|
|
<text x="534.31" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="211.7" y="373" width="0.2" height="15.0" fill="rgb(250,61,6)" rx="2" ry="2" />
|
|
<text x="214.66" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="219.3" y="325" width="0.2" height="15.0" fill="rgb(227,1,9)" rx="2" ry="2" />
|
|
<text x="222.28" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_copy (6 samples, 0.03%)</title><rect x="163.2" y="229" width="0.4" height="15.0" fill="rgb(240,124,16)" rx="2" ry="2" />
|
|
<text x="166.22" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (5 samples, 0.03%)</title><rect x="254.8" y="405" width="0.3" height="15.0" fill="rgb(216,25,41)" rx="2" ry="2" />
|
|
<text x="257.81" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (18 samples, 0.09%)</title><rect x="1088.1" y="309" width="1.1" height="15.0" fill="rgb(236,139,17)" rx="2" ry="2" />
|
|
<text x="1091.09" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (6 samples, 0.03%)</title><rect x="775.9" y="293" width="0.4" height="15.0" fill="rgb(207,136,41)" rx="2" ry="2" />
|
|
<text x="778.94" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (12 samples, 0.06%)</title><rect x="178.3" y="357" width="0.8" height="15.0" fill="rgb(242,189,32)" rx="2" ry="2" />
|
|
<text x="181.35" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (8 samples, 0.04%)</title><rect x="193.1" y="421" width="0.4" height="15.0" fill="rgb(219,12,39)" rx="2" ry="2" />
|
|
<text x="196.05" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (3 samples, 0.02%)</title><rect x="435.8" y="453" width="0.1" height="15.0" fill="rgb(209,213,25)" rx="2" ry="2" />
|
|
<text x="438.76" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (8 samples, 0.04%)</title><rect x="1100.1" y="405" width="0.5" height="15.0" fill="rgb(251,186,45)" rx="2" ry="2" />
|
|
<text x="1103.09" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (4 samples, 0.02%)</title><rect x="881.7" y="309" width="0.2" height="15.0" fill="rgb(213,152,51)" rx="2" ry="2" />
|
|
<text x="884.69" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="385.0" y="181" width="0.2" height="15.0" fill="rgb(228,58,19)" rx="2" ry="2" />
|
|
<text x="388.05" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="980.8" y="421" width="0.2" height="15.0" fill="rgb(218,57,12)" rx="2" ry="2" />
|
|
<text x="983.84" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (2 samples, 0.01%)</title><rect x="253.0" y="389" width="0.1" height="15.0" fill="rgb(219,64,37)" rx="2" ry="2" />
|
|
<text x="256.01" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="159.4" y="133" width="0.2" height="15.0" fill="rgb(223,223,53)" rx="2" ry="2" />
|
|
<text x="162.44" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="473.2" y="469" width="0.1" height="15.0" fill="rgb(210,218,15)" rx="2" ry="2" />
|
|
<text x="476.15" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_app_and_proto_update (36 samples, 0.18%)</title><rect x="1060.2" y="405" width="2.2" height="15.0" fill="rgb(245,165,17)" rx="2" ry="2" />
|
|
<text x="1063.24" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (32 samples, 0.16%)</title><rect x="214.6" y="437" width="1.9" height="15.0" fill="rgb(211,181,49)" rx="2" ry="2" />
|
|
<text x="217.60" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchrnul_avx2 (2 samples, 0.01%)</title><rect x="1065.5" y="325" width="0.1" height="15.0" fill="rgb(218,220,35)" rx="2" ry="2" />
|
|
<text x="1068.46" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (74 samples, 0.38%)</title><rect x="248.7" y="501" width="4.4" height="15.0" fill="rgb(208,189,26)" rx="2" ry="2" />
|
|
<text x="251.69" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="223.9" y="277" width="0.1" height="15.0" fill="rgb(214,119,46)" rx="2" ry="2" />
|
|
<text x="226.90" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BIO_vsnprintf (2 samples, 0.01%)</title><rect x="110.3" y="373" width="0.1" height="15.0" fill="rgb(219,211,40)" rx="2" ry="2" />
|
|
<text x="113.29" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (5 samples, 0.03%)</title><rect x="219.5" y="485" width="0.3" height="15.0" fill="rgb(248,89,43)" rx="2" ry="2" />
|
|
<text x="222.46" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="385.2" y="245" width="0.1" height="15.0" fill="rgb(232,149,30)" rx="2" ry="2" />
|
|
<text x="388.17" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___snprintf (10 samples, 0.05%)</title><rect x="200.3" y="389" width="0.6" height="15.0" fill="rgb(216,202,28)" rx="2" ry="2" />
|
|
<text x="203.25" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpReqResHeader (102 samples, 0.52%)</title><rect x="373.1" y="421" width="6.1" height="15.0" fill="rgb(234,104,49)" rx="2" ry="2" />
|
|
<text x="376.10" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (5 samples, 0.03%)</title><rect x="157.9" y="421" width="0.3" height="15.0" fill="rgb(252,51,31)" rx="2" ry="2" />
|
|
<text x="160.88" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (35 samples, 0.18%)</title><rect x="248.8" y="437" width="2.1" height="15.0" fill="rgb(238,74,42)" rx="2" ry="2" />
|
|
<text x="251.81" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="389" width="0.3" height="15.0" fill="rgb(206,72,45)" rx="2" ry="2" />
|
|
<text x="1146.85" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_prevAnylse (2 samples, 0.01%)</title><rect x="422.0" y="421" width="0.1" height="15.0" fill="rgb(219,118,3)" rx="2" ry="2" />
|
|
<text x="425.02" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (16 samples, 0.08%)</title><rect x="1144.6" y="485" width="1.0" height="15.0" fill="rgb(245,136,33)" rx="2" ry="2" />
|
|
<text x="1147.63" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="184.8" y="357" width="0.2" height="15.0" fill="rgb(232,206,19)" rx="2" ry="2" />
|
|
<text x="187.83" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1141.9" y="373" width="0.3" height="15.0" fill="rgb(234,38,42)" rx="2" ry="2" />
|
|
<text x="1144.93" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>AP_bloom_check (5 samples, 0.03%)</title><rect x="1045.8" y="517" width="0.3" height="15.0" fill="rgb(229,95,8)" rx="2" ry="2" />
|
|
<text x="1048.78" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (10 samples, 0.05%)</title><rect x="1093.3" y="341" width="0.6" height="15.0" fill="rgb(208,223,48)" rx="2" ry="2" />
|
|
<text x="1096.31" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (749 samples, 3.81%)</title><rect x="590.8" y="357" width="45.0" height="15.0" fill="rgb(221,4,28)" rx="2" ry="2" />
|
|
<text x="593.85" y="367.5" >fiel..</text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_traffic_tags_get (21 samples, 0.11%)</title><rect x="874.2" y="389" width="1.3" height="15.0" fill="rgb(225,66,29)" rx="2" ry="2" />
|
|
<text x="877.25" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_ipv6_frag (3 samples, 0.02%)</title><rect x="1096.3" y="549" width="0.1" height="15.0" fill="rgb(241,167,48)" rx="2" ry="2" />
|
|
<text x="1099.25" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (2 samples, 0.01%)</title><rect x="156.6" y="421" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
|
|
<text x="159.56" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (10 samples, 0.05%)</title><rect x="989.8" y="309" width="0.6" height="15.0" fill="rgb(249,114,43)" rx="2" ry="2" />
|
|
<text x="992.78" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (22 samples, 0.11%)</title><rect x="919.3" y="389" width="1.3" height="15.0" fill="rgb(252,150,54)" rx="2" ry="2" />
|
|
<text x="922.32" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="107.2" y="325" width="0.4" height="15.0" fill="rgb(232,22,6)" rx="2" ry="2" />
|
|
<text x="110.17" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (120 samples, 0.61%)</title><rect x="207.4" y="533" width="7.2" height="15.0" fill="rgb(250,216,53)" rx="2" ry="2" />
|
|
<text x="210.40" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (4 samples, 0.02%)</title><rect x="1035.2" y="325" width="0.2" height="15.0" fill="rgb(213,122,19)" rx="2" ry="2" />
|
|
<text x="1038.16" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (13 samples, 0.07%)</title><rect x="709.4" y="325" width="0.8" height="15.0" fill="rgb(228,139,39)" rx="2" ry="2" />
|
|
<text x="712.38" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (16 samples, 0.08%)</title><rect x="25.2" y="565" width="1.0" height="15.0" fill="rgb(209,29,38)" rx="2" ry="2" />
|
|
<text x="28.24" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (4 samples, 0.02%)</title><rect x="522.8" y="453" width="0.2" height="15.0" fill="rgb(245,7,43)" rx="2" ry="2" />
|
|
<text x="525.79" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (8 samples, 0.04%)</title><rect x="1156.8" y="501" width="0.4" height="15.0" fill="rgb(231,119,19)" rx="2" ry="2" />
|
|
<text x="1159.75" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="231.4" y="277" width="0.1" height="15.0" fill="rgb(248,39,27)" rx="2" ry="2" />
|
|
<text x="234.40" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>find_vma (2 samples, 0.01%)</title><rect x="250.5" y="357" width="0.2" height="15.0" fill="rgb(241,26,46)" rx="2" ry="2" />
|
|
<text x="253.55" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (4 samples, 0.02%)</title><rect x="885.2" y="293" width="0.3" height="15.0" fill="rgb(239,205,16)" rx="2" ry="2" />
|
|
<text x="888.23" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="214.4" y="357" width="0.2" height="15.0" fill="rgb(231,221,15)" rx="2" ry="2" />
|
|
<text x="217.42" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__tls_get_addr (4 samples, 0.02%)</title><rect x="407.1" y="245" width="0.2" height="15.0" fill="rgb(219,146,42)" rx="2" ry="2" />
|
|
<text x="410.07" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (74 samples, 0.38%)</title><rect x="843.8" y="309" width="4.4" height="15.0" fill="rgb(206,223,9)" rx="2" ry="2" />
|
|
<text x="846.76" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (17 samples, 0.09%)</title><rect x="146.4" y="565" width="1.0" height="15.0" fill="rgb(245,89,0)" rx="2" ry="2" />
|
|
<text x="149.36" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sip.so] (9 samples, 0.05%)</title><rect x="1050.8" y="469" width="0.6" height="15.0" fill="rgb(242,154,9)" rx="2" ry="2" />
|
|
<text x="1053.82" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (3 samples, 0.02%)</title><rect x="254.6" y="469" width="0.2" height="15.0" fill="rgb(227,207,45)" rx="2" ry="2" />
|
|
<text x="257.63" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (2 samples, 0.01%)</title><rect x="988.0" y="325" width="0.2" height="15.0" fill="rgb(230,86,13)" rx="2" ry="2" />
|
|
<text x="991.04" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (62 samples, 0.32%)</title><rect x="1036.6" y="325" width="3.7" height="15.0" fill="rgb(241,218,26)" rx="2" ry="2" />
|
|
<text x="1039.60" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_old_init (2 samples, 0.01%)</title><rect x="110.5" y="357" width="0.1" height="15.0" fill="rgb(215,167,26)" rx="2" ry="2" />
|
|
<text x="113.53" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (838 samples, 4.26%)</title><rect x="10.0" y="661" width="50.3" height="15.0" fill="rgb(219,69,45)" rx="2" ry="2" />
|
|
<text x="13.00" y="671.5" >[fire..</text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (2 samples, 0.01%)</title><rect x="254.5" y="437" width="0.1" height="15.0" fill="rgb(217,34,48)" rx="2" ry="2" />
|
|
<text x="257.51" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>AP_bloom_check (8 samples, 0.04%)</title><rect x="735.7" y="517" width="0.5" height="15.0" fill="rgb(216,32,9)" rx="2" ry="2" />
|
|
<text x="738.73" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="1141.0" y="453" width="0.2" height="15.0" fill="rgb(242,40,37)" rx="2" ry="2" />
|
|
<text x="1144.03" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="189.7" y="245" width="0.1" height="15.0" fill="rgb(250,23,28)" rx="2" ry="2" />
|
|
<text x="192.69" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (11 samples, 0.06%)</title><rect x="574.8" y="341" width="0.6" height="15.0" fill="rgb(251,86,19)" rx="2" ry="2" />
|
|
<text x="577.76" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddStringToObject (4 samples, 0.02%)</title><rect x="252.2" y="437" width="0.3" height="15.0" fill="rgb(234,45,8)" rx="2" ry="2" />
|
|
<text x="255.23" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (3 samples, 0.02%)</title><rect x="918.7" y="213" width="0.1" height="15.0" fill="rgb(229,10,37)" rx="2" ry="2" />
|
|
<text x="921.66" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (4 samples, 0.02%)</title><rect x="170.2" y="373" width="0.3" height="15.0" fill="rgb(212,0,16)" rx="2" ry="2" />
|
|
<text x="173.25" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="49.7" y="517" width="0.7" height="15.0" fill="rgb(229,195,28)" rx="2" ry="2" />
|
|
<text x="52.67" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (10 samples, 0.05%)</title><rect x="994.6" y="277" width="0.6" height="15.0" fill="rgb(219,31,0)" rx="2" ry="2" />
|
|
<text x="997.64" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1144.3" y="357" width="0.3" height="15.0" fill="rgb(212,27,2)" rx="2" ry="2" />
|
|
<text x="1147.33" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1058.0" y="373" width="0.2" height="15.0" fill="rgb(227,36,33)" rx="2" ry="2" />
|
|
<text x="1061.02" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1166.7" y="501" width="0.1" height="15.0" fill="rgb(211,183,29)" rx="2" ry="2" />
|
|
<text x="1169.65" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="106.1" y="309" width="0.5" height="15.0" fill="rgb(246,194,40)" rx="2" ry="2" />
|
|
<text x="109.09" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (52 samples, 0.26%)</title><rect x="1036.7" y="309" width="3.1" height="15.0" fill="rgb(248,1,17)" rx="2" ry="2" />
|
|
<text x="1039.72" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (3 samples, 0.02%)</title><rect x="1063.1" y="261" width="0.1" height="15.0" fill="rgb(211,155,11)" rx="2" ry="2" />
|
|
<text x="1066.06" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="153.6" y="501" width="0.3" height="15.0" fill="rgb(241,54,15)" rx="2" ry="2" />
|
|
<text x="156.62" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (37 samples, 0.19%)</title><rect x="839.1" y="293" width="2.2" height="15.0" fill="rgb(250,124,12)" rx="2" ry="2" />
|
|
<text x="842.08" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (73 samples, 0.37%)</title><rect x="148.3" y="469" width="4.4" height="15.0" fill="rgb(218,53,46)" rx="2" ry="2" />
|
|
<text x="151.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_url_decode (2 samples, 0.01%)</title><rect x="417.7" y="245" width="0.1" height="15.0" fill="rgb(251,145,38)" rx="2" ry="2" />
|
|
<text x="420.70" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (101 samples, 0.51%)</title><rect x="782.4" y="325" width="6.0" height="15.0" fill="rgb(234,137,42)" rx="2" ry="2" />
|
|
<text x="785.36" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.02%)</title><rect x="253.9" y="581" width="0.1" height="15.0" fill="rgb(240,11,9)" rx="2" ry="2" />
|
|
<text x="256.85" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (2 samples, 0.01%)</title><rect x="952.1" y="389" width="0.1" height="15.0" fill="rgb(222,17,3)" rx="2" ry="2" />
|
|
<text x="955.09" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (7 samples, 0.04%)</title><rect x="413.3" y="341" width="0.4" height="15.0" fill="rgb(251,203,16)" rx="2" ry="2" />
|
|
<text x="416.32" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="431.4" y="389" width="0.1" height="15.0" fill="rgb(253,5,13)" rx="2" ry="2" />
|
|
<text x="434.38" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (63 samples, 0.32%)</title><rect x="110.8" y="437" width="3.8" height="15.0" fill="rgb(217,137,29)" rx="2" ry="2" />
|
|
<text x="113.77" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="931.1" y="309" width="0.1" height="15.0" fill="rgb(244,205,36)" rx="2" ry="2" />
|
|
<text x="934.09" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_numa_page (2 samples, 0.01%)</title><rect x="879.0" y="357" width="0.1" height="15.0" fill="rgb(253,17,44)" rx="2" ry="2" />
|
|
<text x="881.99" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithGzipData (8 samples, 0.04%)</title><rect x="408.3" y="357" width="0.5" height="15.0" fill="rgb(240,21,43)" rx="2" ry="2" />
|
|
<text x="411.33" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (4 samples, 0.02%)</title><rect x="484.3" y="357" width="0.3" height="15.0" fill="rgb(220,132,8)" rx="2" ry="2" />
|
|
<text x="487.32" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1147.3" y="501" width="0.1" height="15.0" fill="rgb(224,37,39)" rx="2" ry="2" />
|
|
<text x="1150.33" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="189.9" y="261" width="0.4" height="15.0" fill="rgb(216,53,22)" rx="2" ry="2" />
|
|
<text x="192.93" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="159.4" y="197" width="0.2" height="15.0" fill="rgb(249,53,28)" rx="2" ry="2" />
|
|
<text x="162.44" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (2 samples, 0.01%)</title><rect x="1099.3" y="309" width="0.1" height="15.0" fill="rgb(225,4,37)" rx="2" ry="2" />
|
|
<text x="1102.31" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="169.3" y="405" width="0.1" height="15.0" fill="rgb(207,69,25)" rx="2" ry="2" />
|
|
<text x="172.29" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (21 samples, 0.11%)</title><rect x="159.6" y="437" width="1.3" height="15.0" fill="rgb(209,184,45)" rx="2" ry="2" />
|
|
<text x="162.62" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_new (7 samples, 0.04%)</title><rect x="189.9" y="437" width="0.4" height="15.0" fill="rgb(237,74,39)" rx="2" ry="2" />
|
|
<text x="192.87" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_port (2 samples, 0.01%)</title><rect x="733.6" y="405" width="0.1" height="15.0" fill="rgb(221,184,0)" rx="2" ry="2" />
|
|
<text x="736.63" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="253.2" y="453" width="0.5" height="15.0" fill="rgb(205,93,5)" rx="2" ry="2" />
|
|
<text x="256.19" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (7 samples, 0.04%)</title><rect x="413.3" y="325" width="0.4" height="15.0" fill="rgb(226,168,52)" rx="2" ry="2" />
|
|
<text x="416.32" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (732 samples, 3.72%)</title><rect x="974.2" y="485" width="44.0" height="15.0" fill="rgb(224,155,2)" rx="2" ry="2" />
|
|
<text x="977.24" y="495.5" >plug..</text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (5 samples, 0.03%)</title><rect x="350.0" y="437" width="0.3" height="15.0" fill="rgb(215,117,27)" rx="2" ry="2" />
|
|
<text x="353.00" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_pop_and_record_popped_back (2 samples, 0.01%)</title><rect x="709.1" y="277" width="0.2" height="15.0" fill="rgb(242,177,27)" rx="2" ry="2" />
|
|
<text x="712.14" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseRegion (4 samples, 0.02%)</title><rect x="927.3" y="373" width="0.2" height="15.0" fill="rgb(216,193,21)" rx="2" ry="2" />
|
|
<text x="930.30" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (14 samples, 0.07%)</title><rect x="174.1" y="405" width="0.9" height="15.0" fill="rgb(233,5,46)" rx="2" ry="2" />
|
|
<text x="177.15" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (11 samples, 0.06%)</title><rect x="169.5" y="357" width="0.6" height="15.0" fill="rgb(239,219,42)" rx="2" ry="2" />
|
|
<text x="172.47" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (4 samples, 0.02%)</title><rect x="1143.8" y="469" width="0.3" height="15.0" fill="rgb(222,76,7)" rx="2" ry="2" />
|
|
<text x="1146.85" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (6 samples, 0.03%)</title><rect x="187.1" y="405" width="0.4" height="15.0" fill="rgb(224,40,34)" rx="2" ry="2" />
|
|
<text x="190.11" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (34 samples, 0.17%)</title><rect x="630.9" y="261" width="2.0" height="15.0" fill="rgb(228,202,24)" rx="2" ry="2" />
|
|
<text x="633.88" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (26 samples, 0.13%)</title><rect x="1171.1" y="533" width="1.6" height="15.0" fill="rgb(212,205,4)" rx="2" ry="2" />
|
|
<text x="1174.09" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="1183.3" y="581" width="0.7" height="15.0" fill="rgb(222,95,44)" rx="2" ry="2" />
|
|
<text x="1186.28" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="1167.3" y="501" width="0.7" height="15.0" fill="rgb(252,160,40)" rx="2" ry="2" />
|
|
<text x="1170.25" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="357" width="0.3" height="15.0" fill="rgb(236,210,13)" rx="2" ry="2" />
|
|
<text x="1146.85" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_numa_page (2 samples, 0.01%)</title><rect x="890.2" y="437" width="0.1" height="15.0" fill="rgb(205,51,2)" rx="2" ry="2" />
|
|
<text x="893.15" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (3 samples, 0.02%)</title><rect x="1063.2" y="293" width="0.2" height="15.0" fill="rgb(216,55,32)" rx="2" ry="2" />
|
|
<text x="1066.24" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (6 samples, 0.03%)</title><rect x="1076.1" y="293" width="0.4" height="15.0" fill="rgb(221,159,22)" rx="2" ry="2" />
|
|
<text x="1079.15" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (82 samples, 0.42%)</title><rect x="162.9" y="261" width="4.9" height="15.0" fill="rgb(233,1,15)" rx="2" ry="2" />
|
|
<text x="165.92" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (105 samples, 0.53%)</title><rect x="782.4" y="341" width="6.3" height="15.0" fill="rgb(236,214,9)" rx="2" ry="2" />
|
|
<text x="785.36" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (54 samples, 0.27%)</title><rect x="927.0" y="405" width="3.2" height="15.0" fill="rgb(241,183,3)" rx="2" ry="2" />
|
|
<text x="930.00" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_jhash_4words (2 samples, 0.01%)</title><rect x="1030.0" y="501" width="0.1" height="15.0" fill="rgb(235,103,47)" rx="2" ry="2" />
|
|
<text x="1032.99" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_positioningACompleteLine (4 samples, 0.02%)</title><rect x="375.0" y="389" width="0.2" height="15.0" fill="rgb(225,178,27)" rx="2" ry="2" />
|
|
<text x="377.97" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="252.2" y="405" width="0.1" height="15.0" fill="rgb(242,87,12)" rx="2" ry="2" />
|
|
<text x="255.23" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bn_div_fixed_top (2 samples, 0.01%)</title><rect x="166.9" y="101" width="0.2" height="15.0" fill="rgb(211,83,18)" rx="2" ry="2" />
|
|
<text x="169.95" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libosfp.so.1.3] (107 samples, 0.54%)</title><rect x="195.0" y="437" width="6.4" height="15.0" fill="rgb(233,29,37)" rx="2" ry="2" />
|
|
<text x="197.97" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="374.8" y="341" width="0.1" height="15.0" fill="rgb(239,62,11)" rx="2" ry="2" />
|
|
<text x="377.79" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="981.2" y="421" width="0.1" height="15.0" fill="rgb(254,117,47)" rx="2" ry="2" />
|
|
<text x="984.20" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (3 samples, 0.02%)</title><rect x="219.3" y="437" width="0.2" height="15.0" fill="rgb(228,124,4)" rx="2" ry="2" />
|
|
<text x="222.28" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (2 samples, 0.01%)</title><rect x="787.7" y="261" width="0.1" height="15.0" fill="rgb(225,15,50)" rx="2" ry="2" />
|
|
<text x="790.70" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stellar_on_sapp_defer_entry (48 samples, 0.24%)</title><rect x="876.3" y="469" width="2.9" height="15.0" fill="rgb(246,220,30)" rx="2" ry="2" />
|
|
<text x="879.35" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="376.0" y="213" width="0.6" height="15.0" fill="rgb(236,125,34)" rx="2" ry="2" />
|
|
<text x="379.05" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="756.9" y="405" width="0.1" height="15.0" fill="rgb(245,167,46)" rx="2" ry="2" />
|
|
<text x="759.86" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (9 samples, 0.05%)</title><rect x="250.3" y="389" width="0.5" height="15.0" fill="rgb(247,204,30)" rx="2" ry="2" />
|
|
<text x="253.31" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.03%)</title><rect x="523.7" y="437" width="0.3" height="15.0" fill="rgb(223,198,26)" rx="2" ry="2" />
|
|
<text x="526.69" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="249.7" y="341" width="0.1" height="15.0" fill="rgb(234,164,44)" rx="2" ry="2" />
|
|
<text x="252.71" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (3 samples, 0.02%)</title><rect x="1062.1" y="373" width="0.2" height="15.0" fill="rgb(216,72,6)" rx="2" ry="2" />
|
|
<text x="1065.10" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (86 samples, 0.44%)</title><rect x="105.6" y="533" width="5.2" height="15.0" fill="rgb(207,175,8)" rx="2" ry="2" />
|
|
<text x="108.61" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (104 samples, 0.53%)</title><rect x="1067.7" y="309" width="6.3" height="15.0" fill="rgb(224,49,21)" rx="2" ry="2" />
|
|
<text x="1070.74" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_and_record_popped_back (2 samples, 0.01%)</title><rect x="1097.9" y="277" width="0.2" height="15.0" fill="rgb(231,66,45)" rx="2" ry="2" />
|
|
<text x="1100.93" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (3 samples, 0.02%)</title><rect x="1089.8" y="293" width="0.2" height="15.0" fill="rgb(239,131,14)" rx="2" ry="2" />
|
|
<text x="1092.83" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (15 samples, 0.08%)</title><rect x="1176.6" y="533" width="0.9" height="15.0" fill="rgb(225,87,8)" rx="2" ry="2" />
|
|
<text x="1179.56" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (9 samples, 0.05%)</title><rect x="153.9" y="373" width="0.5" height="15.0" fill="rgb(227,213,51)" rx="2" ry="2" />
|
|
<text x="156.86" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (3 samples, 0.02%)</title><rect x="1039.5" y="277" width="0.2" height="15.0" fill="rgb(215,110,25)" rx="2" ry="2" />
|
|
<text x="1042.54" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (5 samples, 0.03%)</title><rect x="245.1" y="421" width="0.3" height="15.0" fill="rgb(240,90,53)" rx="2" ry="2" />
|
|
<text x="248.15" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="149" width="0.3" height="15.0" fill="rgb(237,76,43)" rx="2" ry="2" />
|
|
<text x="1146.85" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (13 samples, 0.07%)</title><rect x="555.5" y="389" width="0.8" height="15.0" fill="rgb(247,183,13)" rx="2" ry="2" />
|
|
<text x="558.50" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="325" width="0.2" height="15.0" fill="rgb(214,140,46)" rx="2" ry="2" />
|
|
<text x="1145.47" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="744.4" y="421" width="0.1" height="15.0" fill="rgb(247,149,13)" rx="2" ry="2" />
|
|
<text x="747.37" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="929.6" y="261" width="0.3" height="15.0" fill="rgb(217,226,6)" rx="2" ry="2" />
|
|
<text x="932.58" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (4 samples, 0.02%)</title><rect x="382.0" y="213" width="0.3" height="15.0" fill="rgb(211,122,40)" rx="2" ry="2" />
|
|
<text x="385.05" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (9 samples, 0.05%)</title><rect x="1075.4" y="261" width="0.5" height="15.0" fill="rgb(228,195,5)" rx="2" ry="2" />
|
|
<text x="1078.37" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpLinkNode (2 samples, 0.01%)</title><rect x="522.8" y="389" width="0.2" height="15.0" fill="rgb(238,110,7)" rx="2" ry="2" />
|
|
<text x="525.85" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (12 samples, 0.06%)</title><rect x="707.8" y="293" width="0.7" height="15.0" fill="rgb(206,102,45)" rx="2" ry="2" />
|
|
<text x="710.82" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (192 samples, 0.98%)</title><rect x="1168.1" y="613" width="11.5" height="15.0" fill="rgb(236,140,11)" rx="2" ry="2" />
|
|
<text x="1171.09" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_traffic_tags_get (6 samples, 0.03%)</title><rect x="521.8" y="389" width="0.3" height="15.0" fill="rgb(213,89,17)" rx="2" ry="2" />
|
|
<text x="524.77" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="1094.2" y="485" width="0.3" height="15.0" fill="rgb(209,216,53)" rx="2" ry="2" />
|
|
<text x="1097.21" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (4 samples, 0.02%)</title><rect x="1142.5" y="453" width="0.2" height="15.0" fill="rgb(246,14,34)" rx="2" ry="2" />
|
|
<text x="1145.47" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="385.0" y="277" width="0.2" height="15.0" fill="rgb(246,140,44)" rx="2" ry="2" />
|
|
<text x="387.99" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___snprintf (7 samples, 0.04%)</title><rect x="170.1" y="421" width="0.4" height="15.0" fill="rgb(222,55,21)" rx="2" ry="2" />
|
|
<text x="173.13" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="437.3" y="485" width="0.1" height="15.0" fill="rgb(234,101,3)" rx="2" ry="2" />
|
|
<text x="440.26" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="217.8" y="389" width="0.2" height="15.0" fill="rgb(232,188,37)" rx="2" ry="2" />
|
|
<text x="220.84" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_numa_page (2 samples, 0.01%)</title><rect x="473.2" y="389" width="0.1" height="15.0" fill="rgb(233,207,43)" rx="2" ry="2" />
|
|
<text x="476.15" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_get_vlan_id_from_mbuff (10 samples, 0.05%)</title><rect x="1107.2" y="565" width="0.6" height="15.0" fill="rgb(238,161,9)" rx="2" ry="2" />
|
|
<text x="1110.24" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="208.3" y="181" width="0.2" height="15.0" fill="rgb(213,212,5)" rx="2" ry="2" />
|
|
<text x="211.30" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (7 samples, 0.04%)</title><rect x="911.1" y="357" width="0.4" height="15.0" fill="rgb(235,36,44)" rx="2" ry="2" />
|
|
<text x="914.10" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (53 samples, 0.27%)</title><rect x="629.7" y="309" width="3.2" height="15.0" fill="rgb(223,225,42)" rx="2" ry="2" />
|
|
<text x="632.74" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_and_record_popped_back (2 samples, 0.01%)</title><rect x="1073.9" y="293" width="0.1" height="15.0" fill="rgb(254,23,17)" rx="2" ry="2" />
|
|
<text x="1076.87" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell (3 samples, 0.02%)</title><rect x="951.7" y="341" width="0.2" height="15.0" fill="rgb(226,87,30)" rx="2" ry="2" />
|
|
<text x="954.73" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_stream_new (3 samples, 0.02%)</title><rect x="402.0" y="213" width="0.2" height="15.0" fill="rgb(232,55,42)" rx="2" ry="2" />
|
|
<text x="405.03" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="145.4" y="405" width="0.1" height="15.0" fill="rgb(254,149,14)" rx="2" ry="2" />
|
|
<text x="148.40" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (2 samples, 0.01%)</title><rect x="189.7" y="405" width="0.1" height="15.0" fill="rgb(212,183,7)" rx="2" ry="2" />
|
|
<text x="192.69" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="219.3" y="213" width="0.2" height="15.0" fill="rgb(229,219,43)" rx="2" ry="2" />
|
|
<text x="222.34" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (3 samples, 0.02%)</title><rect x="1142.7" y="581" width="0.2" height="15.0" fill="rgb(226,5,29)" rx="2" ry="2" />
|
|
<text x="1145.71" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="1148.6" y="501" width="0.5" height="15.0" fill="rgb(253,82,48)" rx="2" ry="2" />
|
|
<text x="1151.65" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_new (4 samples, 0.02%)</title><rect x="159.4" y="341" width="0.2" height="15.0" fill="rgb(224,27,15)" rx="2" ry="2" />
|
|
<text x="162.38" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="145.2" y="325" width="0.2" height="15.0" fill="rgb(217,112,52)" rx="2" ry="2" />
|
|
<text x="148.16" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (69 samples, 0.35%)</title><rect x="106.6" y="485" width="4.2" height="15.0" fill="rgb(234,54,13)" rx="2" ry="2" />
|
|
<text x="109.63" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_obj2nid (2 samples, 0.01%)</title><rect x="1142.6" y="85" width="0.1" height="15.0" fill="rgb(237,6,10)" rx="2" ry="2" />
|
|
<text x="1145.59" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1185.1" y="405" width="0.2" height="15.0" fill="rgb(218,199,32)" rx="2" ry="2" />
|
|
<text x="1188.08" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>int_bn_mod_inverse (2 samples, 0.01%)</title><rect x="166.6" y="149" width="0.2" height="15.0" fill="rgb(254,29,54)" rx="2" ry="2" />
|
|
<text x="169.65" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="349.2" y="485" width="0.1" height="15.0" fill="rgb(237,195,35)" rx="2" ry="2" />
|
|
<text x="352.22" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (10 samples, 0.05%)</title><rect x="381.1" y="229" width="0.6" height="15.0" fill="rgb(254,4,26)" rx="2" ry="2" />
|
|
<text x="384.09" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (20 samples, 0.10%)</title><rect x="243.8" y="421" width="1.2" height="15.0" fill="rgb(233,110,4)" rx="2" ry="2" />
|
|
<text x="246.83" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (22 samples, 0.11%)</title><rect x="964.8" y="325" width="1.3" height="15.0" fill="rgb(227,47,18)" rx="2" ry="2" />
|
|
<text x="967.76" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="431.4" y="357" width="0.1" height="15.0" fill="rgb(212,48,1)" rx="2" ry="2" />
|
|
<text x="434.38" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="877.1" y="437" width="0.2" height="15.0" fill="rgb(246,185,20)" rx="2" ry="2" />
|
|
<text x="880.07" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_stream (2 samples, 0.01%)</title><rect x="350.4" y="421" width="0.1" height="15.0" fill="rgb(229,122,43)" rx="2" ry="2" />
|
|
<text x="353.36" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_bsearch_ex_ (3 samples, 0.02%)</title><rect x="1143.9" y="69" width="0.2" height="15.0" fill="rgb(232,119,5)" rx="2" ry="2" />
|
|
<text x="1146.91" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="214.4" y="309" width="0.2" height="15.0" fill="rgb(219,71,17)" rx="2" ry="2" />
|
|
<text x="217.42" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rand_r@plt (2 samples, 0.01%)</title><rect x="808.5" y="277" width="0.1" height="15.0" fill="rgb(226,55,41)" rx="2" ry="2" />
|
|
<text x="811.47" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (3 samples, 0.02%)</title><rect x="1148.5" y="581" width="0.1" height="15.0" fill="rgb(214,226,10)" rx="2" ry="2" />
|
|
<text x="1151.47" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_entry_dying (2 samples, 0.01%)</title><rect x="722.6" y="293" width="0.2" height="15.0" fill="rgb(210,77,32)" rx="2" ry="2" />
|
|
<text x="725.65" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (123 samples, 0.63%)</title><rect x="919.3" y="405" width="7.4" height="15.0" fill="rgb(220,148,46)" rx="2" ry="2" />
|
|
<text x="922.32" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>irqentry_exit_to_user_mode (12 samples, 0.06%)</title><rect x="247.5" y="341" width="0.7" height="15.0" fill="rgb(210,89,47)" rx="2" ry="2" />
|
|
<text x="250.49" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (102 samples, 0.52%)</title><rect x="219.3" y="581" width="6.1" height="15.0" fill="rgb(248,173,13)" rx="2" ry="2" />
|
|
<text x="222.28" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="383.7" y="277" width="0.1" height="15.0" fill="rgb(241,181,8)" rx="2" ry="2" />
|
|
<text x="386.67" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (246 samples, 1.25%)</title><rect x="114.6" y="469" width="14.7" height="15.0" fill="rgb(216,188,39)" rx="2" ry="2" />
|
|
<text x="117.55" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[glimpse_detector.so] (129 samples, 0.66%)</title><rect x="757.0" y="421" width="7.8" height="15.0" fill="rgb(218,40,44)" rx="2" ry="2" />
|
|
<text x="760.04" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="701.3" y="469" width="0.2" height="15.0" fill="rgb(232,115,41)" rx="2" ry="2" />
|
|
<text x="704.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (3 samples, 0.02%)</title><rect x="666.6" y="309" width="0.2" height="15.0" fill="rgb(241,22,22)" rx="2" ry="2" />
|
|
<text x="669.65" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="1147.3" y="581" width="0.3" height="15.0" fill="rgb(220,193,30)" rx="2" ry="2" />
|
|
<text x="1150.33" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInflate2::fn_iDecodeHuffmanCodeBlock (8 samples, 0.04%)</title><rect x="384.5" y="245" width="0.5" height="15.0" fill="rgb(247,90,22)" rx="2" ry="2" />
|
|
<text x="387.51" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_easy_counter_incrby (11 samples, 0.06%)</title><rect x="1033.1" y="389" width="0.7" height="15.0" fill="rgb(222,13,35)" rx="2" ry="2" />
|
|
<text x="1036.11" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_new (2 samples, 0.01%)</title><rect x="1050.4" y="341" width="0.1" height="15.0" fill="rgb(230,182,17)" rx="2" ry="2" />
|
|
<text x="1053.40" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_application_data (15 samples, 0.08%)</title><rect x="427.6" y="421" width="0.9" height="15.0" fill="rgb(231,123,35)" rx="2" ry="2" />
|
|
<text x="430.60" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (295 samples, 1.50%)</title><rect x="172.6" y="565" width="17.7" height="15.0" fill="rgb(207,194,4)" rx="2" ry="2" />
|
|
<text x="175.59" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="53.2" y="613" width="0.4" height="15.0" fill="rgb(213,23,41)" rx="2" ry="2" />
|
|
<text x="56.21" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_readChunkedData (2 samples, 0.01%)</title><rect x="920.8" y="373" width="0.1" height="15.0" fill="rgb(205,76,44)" rx="2" ry="2" />
|
|
<text x="923.76" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>strcasestr (3 samples, 0.02%)</title><rect x="404.6" y="229" width="0.1" height="15.0" fill="rgb(234,112,50)" rx="2" ry="2" />
|
|
<text x="407.55" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="106.8" y="309" width="0.1" height="15.0" fill="rgb(226,48,35)" rx="2" ry="2" />
|
|
<text x="109.81" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (40 samples, 0.20%)</title><rect x="1074.6" y="341" width="2.4" height="15.0" fill="rgb(213,73,32)" rx="2" ry="2" />
|
|
<text x="1077.65" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (5 samples, 0.03%)</title><rect x="53.8" y="597" width="0.3" height="15.0" fill="rgb(233,43,20)" rx="2" ry="2" />
|
|
<text x="56.75" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (39 samples, 0.20%)</title><rect x="243.8" y="469" width="2.3" height="15.0" fill="rgb(216,92,53)" rx="2" ry="2" />
|
|
<text x="246.77" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (243 samples, 1.24%)</title><rect x="952.2" y="405" width="14.6" height="15.0" fill="rgb(238,66,26)" rx="2" ry="2" />
|
|
<text x="955.21" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (17 samples, 0.09%)</title><rect x="488.6" y="261" width="1.1" height="15.0" fill="rgb(206,66,31)" rx="2" ry="2" />
|
|
<text x="491.64" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TCP_ENTRY (11 samples, 0.06%)</title><rect x="435.1" y="453" width="0.7" height="15.0" fill="rgb(250,152,21)" rx="2" ry="2" />
|
|
<text x="438.10" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="1187.1" y="405" width="0.1" height="15.0" fill="rgb(241,35,14)" rx="2" ry="2" />
|
|
<text x="1190.12" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (59 samples, 0.30%)</title><rect x="225.7" y="421" width="3.5" height="15.0" fill="rgb(215,193,11)" rx="2" ry="2" />
|
|
<text x="228.70" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (343 samples, 1.74%)</title><rect x="809.9" y="277" width="20.5" height="15.0" fill="rgb(224,179,51)" rx="2" ry="2" />
|
|
<text x="812.85" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_string_embed_free (2 samples, 0.01%)</title><rect x="168.7" y="245" width="0.2" height="15.0" fill="rgb(221,178,48)" rx="2" ry="2" />
|
|
<text x="171.75" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (19 samples, 0.10%)</title><rect x="666.0" y="405" width="1.1" height="15.0" fill="rgb(231,124,4)" rx="2" ry="2" />
|
|
<text x="668.99" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (33 samples, 0.17%)</title><rect x="1042.2" y="357" width="2.0" height="15.0" fill="rgb(242,122,28)" rx="2" ry="2" />
|
|
<text x="1045.18" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="145.4" y="373" width="0.1" height="15.0" fill="rgb(244,202,8)" rx="2" ry="2" />
|
|
<text x="148.40" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (29 samples, 0.15%)</title><rect x="595.4" y="293" width="1.7" height="15.0" fill="rgb(215,195,10)" rx="2" ry="2" />
|
|
<text x="598.41" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (18 samples, 0.09%)</title><rect x="373.6" y="293" width="1.1" height="15.0" fill="rgb(232,96,34)" rx="2" ry="2" />
|
|
<text x="376.64" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (9 samples, 0.05%)</title><rect x="1147.6" y="549" width="0.6" height="15.0" fill="rgb(222,113,0)" rx="2" ry="2" />
|
|
<text x="1150.63" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (13 samples, 0.07%)</title><rect x="663.3" y="453" width="0.8" height="15.0" fill="rgb(218,216,22)" rx="2" ry="2" />
|
|
<text x="666.35" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="882.4" y="325" width="0.1" height="15.0" fill="rgb(253,199,3)" rx="2" ry="2" />
|
|
<text x="885.35" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="733.8" y="389" width="0.2" height="15.0" fill="rgb(236,6,37)" rx="2" ry="2" />
|
|
<text x="736.81" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (2 samples, 0.01%)</title><rect x="380.8" y="229" width="0.1" height="15.0" fill="rgb(214,15,43)" rx="2" ry="2" />
|
|
<text x="383.79" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1147.9" y="373" width="0.3" height="15.0" fill="rgb(216,218,51)" rx="2" ry="2" />
|
|
<text x="1150.87" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithGzipData (15 samples, 0.08%)</title><rect x="384.5" y="341" width="0.9" height="15.0" fill="rgb(243,54,37)" rx="2" ry="2" />
|
|
<text x="387.51" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (17 samples, 0.09%)</title><rect x="1105.4" y="565" width="1.1" height="15.0" fill="rgb(251,65,10)" rx="2" ry="2" />
|
|
<text x="1108.44" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (7 samples, 0.04%)</title><rect x="249.5" y="421" width="0.4" height="15.0" fill="rgb(231,28,34)" rx="2" ry="2" />
|
|
<text x="252.47" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (50 samples, 0.25%)</title><rect x="835.8" y="309" width="3.0" height="15.0" fill="rgb(207,166,49)" rx="2" ry="2" />
|
|
<text x="838.78" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_readChunkedData (21 samples, 0.11%)</title><rect x="384.1" y="373" width="1.3" height="15.0" fill="rgb(227,4,30)" rx="2" ry="2" />
|
|
<text x="387.15" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (30 samples, 0.15%)</title><rect x="414.6" y="245" width="1.8" height="15.0" fill="rgb(246,21,32)" rx="2" ry="2" />
|
|
<text x="417.58" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>raw_ip_frag_list_stream_detach (3 samples, 0.02%)</title><rect x="738.1" y="517" width="0.1" height="15.0" fill="rgb(239,215,24)" rx="2" ry="2" />
|
|
<text x="741.07" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (6 samples, 0.03%)</title><rect x="1141.0" y="597" width="0.4" height="15.0" fill="rgb(209,110,39)" rx="2" ry="2" />
|
|
<text x="1144.03" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (18 samples, 0.09%)</title><rect x="1184.2" y="437" width="1.1" height="15.0" fill="rgb(216,224,43)" rx="2" ry="2" />
|
|
<text x="1187.24" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_add (2 samples, 0.01%)</title><rect x="1024.2" y="501" width="0.1" height="15.0" fill="rgb(248,224,11)" rx="2" ry="2" />
|
|
<text x="1027.17" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (194 samples, 0.99%)</title><rect x="232.1" y="533" width="11.7" height="15.0" fill="rgb(219,185,6)" rx="2" ry="2" />
|
|
<text x="235.12" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="377.5" y="213" width="0.1" height="15.0" fill="rgb(232,172,33)" rx="2" ry="2" />
|
|
<text x="380.49" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (23 samples, 0.12%)</title><rect x="1034.1" y="373" width="1.4" height="15.0" fill="rgb(216,23,42)" rx="2" ry="2" />
|
|
<text x="1037.08" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (2 samples, 0.01%)</title><rect x="1085.4" y="309" width="0.2" height="15.0" fill="rgb(208,78,41)" rx="2" ry="2" />
|
|
<text x="1088.45" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (1,177 samples, 5.99%)</title><rect x="365.8" y="469" width="70.6" height="15.0" fill="rgb(243,33,34)" rx="2" ry="2" />
|
|
<text x="368.78" y="479.5" >plugin_..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="1144.3" y="325" width="0.3" height="15.0" fill="rgb(233,182,32)" rx="2" ry="2" />
|
|
<text x="1147.33" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (9 samples, 0.05%)</title><rect x="253.2" y="549" width="0.5" height="15.0" fill="rgb(222,90,27)" rx="2" ry="2" />
|
|
<text x="256.19" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (9 samples, 0.05%)</title><rect x="253.2" y="517" width="0.5" height="15.0" fill="rgb(244,17,3)" rx="2" ry="2" />
|
|
<text x="256.19" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (185 samples, 0.94%)</title><rect x="1168.4" y="581" width="11.1" height="15.0" fill="rgb(233,63,38)" rx="2" ry="2" />
|
|
<text x="1171.39" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>STRATUM_ENTRY (8 samples, 0.04%)</title><rect x="434.6" y="453" width="0.5" height="15.0" fill="rgb(213,178,33)" rx="2" ry="2" />
|
|
<text x="437.62" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>safe_add_longlong (2 samples, 0.01%)</title><rect x="1044.0" y="341" width="0.2" height="15.0" fill="rgb(235,195,12)" rx="2" ry="2" />
|
|
<text x="1047.04" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (7 samples, 0.04%)</title><rect x="555.6" y="341" width="0.4" height="15.0" fill="rgb(208,138,9)" rx="2" ry="2" />
|
|
<text x="558.56" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_pop_and_record_popped_back (18 samples, 0.09%)</title><rect x="622.1" y="277" width="1.1" height="15.0" fill="rgb(252,60,48)" rx="2" ry="2" />
|
|
<text x="625.12" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (86 samples, 0.44%)</title><rect x="1184.0" y="645" width="5.2" height="15.0" fill="rgb(228,141,42)" rx="2" ry="2" />
|
|
<text x="1187.00" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_item_dup (3 samples, 0.02%)</title><rect x="383.8" y="277" width="0.2" height="15.0" fill="rgb(225,226,11)" rx="2" ry="2" />
|
|
<text x="386.79" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="909.3" y="277" width="0.2" height="15.0" fill="rgb(231,91,42)" rx="2" ry="2" />
|
|
<text x="912.30" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_tripleMatching (20 samples, 0.10%)</title><rect x="917.8" y="389" width="1.2" height="15.0" fill="rgb(207,90,21)" rx="2" ry="2" />
|
|
<text x="920.82" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>strncmp_one_word_mesa (4 samples, 0.02%)</title><rect x="424.2" y="405" width="0.3" height="15.0" fill="rgb(246,47,10)" rx="2" ry="2" />
|
|
<text x="427.24" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_ip_address_set (13 samples, 0.07%)</title><rect x="578.5" y="405" width="0.8" height="15.0" fill="rgb(208,15,34)" rx="2" ry="2" />
|
|
<text x="581.54" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="980.0" y="389" width="0.1" height="15.0" fill="rgb(218,123,13)" rx="2" ry="2" />
|
|
<text x="983.00" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (11 samples, 0.06%)</title><rect x="780.7" y="373" width="0.6" height="15.0" fill="rgb(242,86,17)" rx="2" ry="2" />
|
|
<text x="783.68" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (12 samples, 0.06%)</title><rect x="1189.2" y="629" width="0.7" height="15.0" fill="rgb(209,64,44)" rx="2" ry="2" />
|
|
<text x="1192.16" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (3 samples, 0.02%)</title><rect x="1141.7" y="533" width="0.2" height="15.0" fill="rgb(252,71,45)" rx="2" ry="2" />
|
|
<text x="1144.75" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>save_polling_inject_context (8 samples, 0.04%)</title><rect x="360.8" y="517" width="0.5" height="15.0" fill="rgb(226,165,29)" rx="2" ry="2" />
|
|
<text x="363.80" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="409.5" y="373" width="0.1" height="15.0" fill="rgb(235,93,29)" rx="2" ry="2" />
|
|
<text x="412.48" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="733.5" y="293" width="0.1" height="15.0" fill="rgb(208,49,34)" rx="2" ry="2" />
|
|
<text x="736.51" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (4 samples, 0.02%)</title><rect x="437.1" y="501" width="0.3" height="15.0" fill="rgb(213,196,49)" rx="2" ry="2" />
|
|
<text x="440.14" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (2 samples, 0.01%)</title><rect x="1099.3" y="293" width="0.1" height="15.0" fill="rgb(230,2,13)" rx="2" ry="2" />
|
|
<text x="1102.31" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="430.1" y="373" width="0.3" height="15.0" fill="rgb(225,80,3)" rx="2" ry="2" />
|
|
<text x="433.12" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (4 samples, 0.02%)</title><rect x="231.9" y="389" width="0.2" height="15.0" fill="rgb(235,221,49)" rx="2" ry="2" />
|
|
<text x="234.88" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1172.7" y="517" width="0.1" height="15.0" fill="rgb(228,79,18)" rx="2" ry="2" />
|
|
<text x="1175.66" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (11 samples, 0.06%)</title><rect x="787.3" y="293" width="0.7" height="15.0" fill="rgb(233,11,30)" rx="2" ry="2" />
|
|
<text x="790.34" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_port (2 samples, 0.01%)</title><rect x="1049.1" y="453" width="0.1" height="15.0" fill="rgb(210,229,20)" rx="2" ry="2" />
|
|
<text x="1052.08" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (3 samples, 0.02%)</title><rect x="1074.2" y="261" width="0.2" height="15.0" fill="rgb(234,74,11)" rx="2" ry="2" />
|
|
<text x="1077.23" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="211.7" y="341" width="0.1" height="15.0" fill="rgb(235,98,38)" rx="2" ry="2" />
|
|
<text x="214.72" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="166.1" y="213" width="0.1" height="15.0" fill="rgb(207,166,24)" rx="2" ry="2" />
|
|
<text x="169.10" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (3 samples, 0.02%)</title><rect x="350.1" y="341" width="0.1" height="15.0" fill="rgb(244,93,0)" rx="2" ry="2" />
|
|
<text x="353.06" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.07%)</title><rect x="1175.1" y="517" width="0.7" height="15.0" fill="rgb(239,195,23)" rx="2" ry="2" />
|
|
<text x="1178.06" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Rb_tree_increment@plt (2 samples, 0.01%)</title><rect x="560.4" y="373" width="0.1" height="15.0" fill="rgb(224,214,3)" rx="2" ry="2" />
|
|
<text x="563.36" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (5 samples, 0.03%)</title><rect x="1039.5" y="293" width="0.3" height="15.0" fill="rgb(253,107,32)" rx="2" ry="2" />
|
|
<text x="1042.54" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="760.5" y="389" width="0.1" height="15.0" fill="rgb(244,184,10)" rx="2" ry="2" />
|
|
<text x="763.46" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="153.6" y="437" width="0.1" height="15.0" fill="rgb(232,102,25)" rx="2" ry="2" />
|
|
<text x="156.62" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (12 samples, 0.06%)</title><rect x="427.7" y="389" width="0.7" height="15.0" fill="rgb(212,147,42)" rx="2" ry="2" />
|
|
<text x="430.72" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (16 samples, 0.08%)</title><rect x="185.4" y="421" width="0.9" height="15.0" fill="rgb(243,94,12)" rx="2" ry="2" />
|
|
<text x="188.37" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_nnmod (2 samples, 0.01%)</title><rect x="166.9" y="133" width="0.2" height="15.0" fill="rgb(243,122,41)" rx="2" ry="2" />
|
|
<text x="169.95" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (11 samples, 0.06%)</title><rect x="255.3" y="549" width="0.7" height="15.0" fill="rgb(244,224,5)" rx="2" ry="2" />
|
|
<text x="258.29" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="341" width="0.3" height="15.0" fill="rgb(231,74,22)" rx="2" ry="2" />
|
|
<text x="1146.85" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (9 samples, 0.05%)</title><rect x="106.6" y="405" width="0.6" height="15.0" fill="rgb(222,77,43)" rx="2" ry="2" />
|
|
<text x="109.63" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="245" width="0.2" height="15.0" fill="rgb(209,32,29)" rx="2" ry="2" />
|
|
<text x="1145.47" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findLineEnd_CR (6 samples, 0.03%)</title><rect x="418.4" y="357" width="0.3" height="15.0" fill="rgb(225,220,17)" rx="2" ry="2" />
|
|
<text x="421.36" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (27 samples, 0.14%)</title><rect x="582.9" y="325" width="1.6" height="15.0" fill="rgb(216,123,44)" rx="2" ry="2" />
|
|
<text x="585.87" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (2 samples, 0.01%)</title><rect x="879.0" y="373" width="0.1" height="15.0" fill="rgb(243,92,19)" rx="2" ry="2" />
|
|
<text x="881.99" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (408 samples, 2.08%)</title><rect x="219.3" y="597" width="24.5" height="15.0" fill="rgb(233,174,38)" rx="2" ry="2" />
|
|
<text x="222.28" y="607.5" >[..</text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (3 samples, 0.02%)</title><rect x="615.1" y="229" width="0.2" height="15.0" fill="rgb(219,219,24)" rx="2" ry="2" />
|
|
<text x="618.09" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (9 samples, 0.05%)</title><rect x="1017.5" y="453" width="0.6" height="15.0" fill="rgb(213,26,51)" rx="2" ry="2" />
|
|
<text x="1020.51" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get0_current_packet@plt (2 samples, 0.01%)</title><rect x="407.4" y="261" width="0.1" height="15.0" fill="rgb(239,210,7)" rx="2" ry="2" />
|
|
<text x="410.37" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (7 samples, 0.04%)</title><rect x="578.8" y="357" width="0.5" height="15.0" fill="rgb(211,192,37)" rx="2" ry="2" />
|
|
<text x="581.84" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (2 samples, 0.01%)</title><rect x="621.2" y="277" width="0.1" height="15.0" fill="rgb(241,28,52)" rx="2" ry="2" />
|
|
<text x="624.16" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (3 samples, 0.02%)</title><rect x="54.5" y="613" width="0.2" height="15.0" fill="rgb(208,17,28)" rx="2" ry="2" />
|
|
<text x="57.47" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (24 samples, 0.12%)</title><rect x="416.5" y="293" width="1.4" height="15.0" fill="rgb(217,227,14)" rx="2" ry="2" />
|
|
<text x="419.50" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (30 samples, 0.15%)</title><rect x="877.3" y="453" width="1.8" height="15.0" fill="rgb(232,193,24)" rx="2" ry="2" />
|
|
<text x="880.31" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (123 samples, 0.63%)</title><rect x="161.2" y="357" width="7.4" height="15.0" fill="rgb(229,11,3)" rx="2" ry="2" />
|
|
<text x="164.18" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="133" width="0.3" height="15.0" fill="rgb(233,115,16)" rx="2" ry="2" />
|
|
<text x="1146.85" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (2 samples, 0.01%)</title><rect x="231.4" y="373" width="0.1" height="15.0" fill="rgb(209,228,46)" rx="2" ry="2" />
|
|
<text x="234.40" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (2 samples, 0.01%)</title><rect x="349.5" y="277" width="0.1" height="15.0" fill="rgb(232,180,47)" rx="2" ry="2" />
|
|
<text x="352.46" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1145.6" y="485" width="0.3" height="15.0" fill="rgb(209,26,10)" rx="2" ry="2" />
|
|
<text x="1148.59" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="246.5" y="405" width="0.1" height="15.0" fill="rgb(217,135,30)" rx="2" ry="2" />
|
|
<text x="249.47" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (3 samples, 0.02%)</title><rect x="1023.3" y="469" width="0.2" height="15.0" fill="rgb(232,104,43)" rx="2" ry="2" />
|
|
<text x="1026.27" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1147.7" y="309" width="0.2" height="15.0" fill="rgb(252,216,8)" rx="2" ry="2" />
|
|
<text x="1150.75" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_numa_page (2 samples, 0.01%)</title><rect x="100.4" y="549" width="0.2" height="15.0" fill="rgb(214,218,51)" rx="2" ry="2" />
|
|
<text x="103.45" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (21 samples, 0.11%)</title><rect x="1157.5" y="501" width="1.3" height="15.0" fill="rgb(214,29,7)" rx="2" ry="2" />
|
|
<text x="1160.53" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (16 samples, 0.08%)</title><rect x="1034.1" y="341" width="1.0" height="15.0" fill="rgb(245,104,46)" rx="2" ry="2" />
|
|
<text x="1037.14" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (13 samples, 0.07%)</title><rect x="709.4" y="341" width="0.8" height="15.0" fill="rgb(239,211,49)" rx="2" ry="2" />
|
|
<text x="712.38" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (5 samples, 0.03%)</title><rect x="778.5" y="341" width="0.3" height="15.0" fill="rgb(241,24,23)" rx="2" ry="2" />
|
|
<text x="781.52" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (9 samples, 0.05%)</title><rect x="106.1" y="245" width="0.5" height="15.0" fill="rgb(207,108,3)" rx="2" ry="2" />
|
|
<text x="109.09" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (6 samples, 0.03%)</title><rect x="1090.1" y="325" width="0.4" height="15.0" fill="rgb(209,91,20)" rx="2" ry="2" />
|
|
<text x="1093.13" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (10 samples, 0.05%)</title><rect x="153.9" y="469" width="0.6" height="15.0" fill="rgb(244,228,38)" rx="2" ry="2" />
|
|
<text x="156.86" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>safe_add_longlong (3 samples, 0.02%)</title><rect x="657.6" y="341" width="0.2" height="15.0" fill="rgb(248,82,41)" rx="2" ry="2" />
|
|
<text x="660.59" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="109.1" y="325" width="0.1" height="15.0" fill="rgb(254,164,23)" rx="2" ry="2" />
|
|
<text x="112.09" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_htable_search (2 samples, 0.01%)</title><rect x="325.8" y="549" width="0.1" height="15.0" fill="rgb(208,37,51)" rx="2" ry="2" />
|
|
<text x="328.75" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (16 samples, 0.08%)</title><rect x="147.4" y="469" width="0.9" height="15.0" fill="rgb(237,122,33)" rx="2" ry="2" />
|
|
<text x="150.38" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_to_available_heap (3 samples, 0.02%)</title><rect x="503.5" y="277" width="0.2" height="15.0" fill="rgb(205,52,24)" rx="2" ry="2" />
|
|
<text x="506.52" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_new (11 samples, 0.06%)</title><rect x="108.1" y="357" width="0.6" height="15.0" fill="rgb(220,64,31)" rx="2" ry="2" />
|
|
<text x="111.07" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="168.0" y="261" width="0.2" height="15.0" fill="rgb(230,28,10)" rx="2" ry="2" />
|
|
<text x="171.03" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (12 samples, 0.06%)</title><rect x="1007.6" y="309" width="0.7" height="15.0" fill="rgb(245,86,9)" rx="2" ry="2" />
|
|
<text x="1010.61" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (312 samples, 1.59%)</title><rect x="485.4" y="309" width="18.7" height="15.0" fill="rgb(252,166,0)" rx="2" ry="2" />
|
|
<text x="488.40" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="348.5" y="501" width="0.4" height="15.0" fill="rgb(238,50,24)" rx="2" ry="2" />
|
|
<text x="351.50" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (9 samples, 0.05%)</title><rect x="19.9" y="581" width="0.5" height="15.0" fill="rgb(215,188,27)" rx="2" ry="2" />
|
|
<text x="22.90" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="419.1" y="245" width="0.1" height="15.0" fill="rgb(219,144,11)" rx="2" ry="2" />
|
|
<text x="422.08" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_stream_search (5 samples, 0.03%)</title><rect x="1045.8" y="533" width="0.3" height="15.0" fill="rgb(219,206,34)" rx="2" ry="2" />
|
|
<text x="1048.78" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (312 samples, 1.59%)</title><rect x="948.7" y="501" width="18.8" height="15.0" fill="rgb(247,109,33)" rx="2" ry="2" />
|
|
<text x="951.73" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (3 samples, 0.02%)</title><rect x="792.3" y="373" width="0.2" height="15.0" fill="rgb(229,148,19)" rx="2" ry="2" />
|
|
<text x="795.33" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (18 samples, 0.09%)</title><rect x="1157.7" y="485" width="1.1" height="15.0" fill="rgb(241,48,22)" rx="2" ry="2" />
|
|
<text x="1160.71" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (14 samples, 0.07%)</title><rect x="876.5" y="453" width="0.8" height="15.0" fill="rgb(211,180,5)" rx="2" ry="2" />
|
|
<text x="879.47" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_new (24 samples, 0.12%)</title><rect x="1177.8" y="549" width="1.5" height="15.0" fill="rgb(245,49,24)" rx="2" ry="2" />
|
|
<text x="1180.82" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libosfp.so.1.3] (10 samples, 0.05%)</title><rect x="1145.9" y="485" width="0.6" height="15.0" fill="rgb(234,167,8)" rx="2" ry="2" />
|
|
<text x="1148.95" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (20 samples, 0.10%)</title><rect x="575.5" y="357" width="1.2" height="15.0" fill="rgb(228,214,37)" rx="2" ry="2" />
|
|
<text x="578.48" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (33 samples, 0.17%)</title><rect x="214.6" y="501" width="2.0" height="15.0" fill="rgb(234,173,6)" rx="2" ry="2" />
|
|
<text x="217.60" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="377.8" y="85" width="0.1" height="15.0" fill="rgb(214,214,10)" rx="2" ry="2" />
|
|
<text x="380.79" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (2 samples, 0.01%)</title><rect x="349.5" y="373" width="0.1" height="15.0" fill="rgb(247,223,41)" rx="2" ry="2" />
|
|
<text x="352.46" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_set (2 samples, 0.01%)</title><rect x="1142.5" y="101" width="0.1" height="15.0" fill="rgb(234,29,0)" rx="2" ry="2" />
|
|
<text x="1145.47" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (400 samples, 2.03%)</title><rect x="913.5" y="501" width="24.0" height="15.0" fill="rgb(230,27,1)" rx="2" ry="2" />
|
|
<text x="916.50" y="511.5" >s..</text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (3 samples, 0.02%)</title><rect x="253.9" y="549" width="0.1" height="15.0" fill="rgb(207,34,23)" rx="2" ry="2" />
|
|
<text x="256.85" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (2 samples, 0.01%)</title><rect x="962.0" y="293" width="0.1" height="15.0" fill="rgb(207,200,33)" rx="2" ry="2" />
|
|
<text x="964.99" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get (56 samples, 0.28%)</title><rect x="201.9" y="437" width="3.3" height="15.0" fill="rgb(242,176,43)" rx="2" ry="2" />
|
|
<text x="204.88" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="665.4" y="453" width="0.3" height="15.0" fill="rgb(215,129,50)" rx="2" ry="2" />
|
|
<text x="668.45" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get (31 samples, 0.16%)</title><rect x="240.6" y="437" width="1.8" height="15.0" fill="rgb(251,148,35)" rx="2" ry="2" />
|
|
<text x="243.59" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1172.7" y="533" width="0.1" height="15.0" fill="rgb(215,10,4)" rx="2" ry="2" />
|
|
<text x="1175.66" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="933.2" y="357" width="0.2" height="15.0" fill="rgb(235,215,50)" rx="2" ry="2" />
|
|
<text x="936.25" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (9 samples, 0.05%)</title><rect x="106.1" y="421" width="0.5" height="15.0" fill="rgb(233,164,15)" rx="2" ry="2" />
|
|
<text x="109.09" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (4 samples, 0.02%)</title><rect x="145.2" y="437" width="0.2" height="15.0" fill="rgb(207,24,26)" rx="2" ry="2" />
|
|
<text x="148.16" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (30 samples, 0.15%)</title><rect x="999.1" y="261" width="1.8" height="15.0" fill="rgb(234,146,4)" rx="2" ry="2" />
|
|
<text x="1002.15" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddStringToObject (2 samples, 0.01%)</title><rect x="218.8" y="437" width="0.1" height="15.0" fill="rgb(224,101,4)" rx="2" ry="2" />
|
|
<text x="221.80" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_update (9 samples, 0.05%)</title><rect x="357.6" y="501" width="0.6" height="15.0" fill="rgb(227,157,8)" rx="2" ry="2" />
|
|
<text x="360.62" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (60 samples, 0.31%)</title><rect x="826.7" y="245" width="3.6" height="15.0" fill="rgb(254,11,9)" rx="2" ry="2" />
|
|
<text x="829.72" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (16 samples, 0.08%)</title><rect x="1144.6" y="405" width="1.0" height="15.0" fill="rgb(240,170,34)" rx="2" ry="2" />
|
|
<text x="1147.63" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (4 samples, 0.02%)</title><rect x="926.3" y="261" width="0.3" height="15.0" fill="rgb(254,156,10)" rx="2" ry="2" />
|
|
<text x="929.34" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (58 samples, 0.30%)</title><rect x="927.0" y="421" width="3.5" height="15.0" fill="rgb(244,140,47)" rx="2" ry="2" />
|
|
<text x="930.00" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>change_protection (12 samples, 0.06%)</title><rect x="247.5" y="261" width="0.7" height="15.0" fill="rgb(254,199,4)" rx="2" ry="2" />
|
|
<text x="250.49" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (7 samples, 0.04%)</title><rect x="474.1" y="437" width="0.4" height="15.0" fill="rgb(251,8,1)" rx="2" ry="2" />
|
|
<text x="477.05" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (174 samples, 0.89%)</title><rect x="1083.6" y="453" width="10.5" height="15.0" fill="rgb(229,17,54)" rx="2" ry="2" />
|
|
<text x="1086.65" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (604 samples, 3.07%)</title><rect x="591.2" y="341" width="36.3" height="15.0" fill="rgb(251,52,35)" rx="2" ry="2" />
|
|
<text x="594.21" y="351.5" >cel..</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="1175.4" y="469" width="0.4" height="15.0" fill="rgb(227,205,7)" rx="2" ry="2" />
|
|
<text x="1178.36" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (46 samples, 0.23%)</title><rect x="375.4" y="341" width="2.7" height="15.0" fill="rgb(207,211,15)" rx="2" ry="2" />
|
|
<text x="378.39" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="254.4" y="581" width="0.1" height="15.0" fill="rgb(220,194,0)" rx="2" ry="2" />
|
|
<text x="257.39" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="197" width="0.2" height="15.0" fill="rgb(216,169,4)" rx="2" ry="2" />
|
|
<text x="1145.47" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="385.0" y="229" width="0.2" height="15.0" fill="rgb(239,80,4)" rx="2" ry="2" />
|
|
<text x="387.99" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="1189.2" y="437" width="0.7" height="15.0" fill="rgb(227,75,22)" rx="2" ry="2" />
|
|
<text x="1192.16" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="93.1" y="597" width="0.1" height="15.0" fill="rgb(226,31,44)" rx="2" ry="2" />
|
|
<text x="96.12" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="231.4" y="357" width="0.1" height="15.0" fill="rgb(241,155,45)" rx="2" ry="2" />
|
|
<text x="234.40" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="1189.2" y="469" width="0.7" height="15.0" fill="rgb(216,185,52)" rx="2" ry="2" />
|
|
<text x="1192.16" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (8 samples, 0.04%)</title><rect x="1099.0" y="421" width="0.5" height="15.0" fill="rgb(244,144,25)" rx="2" ry="2" />
|
|
<text x="1102.01" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (4 samples, 0.02%)</title><rect x="1005.8" y="229" width="0.2" height="15.0" fill="rgb(246,78,33)" rx="2" ry="2" />
|
|
<text x="1008.81" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="208.2" y="245" width="0.3" height="15.0" fill="rgb(225,185,21)" rx="2" ry="2" />
|
|
<text x="211.18" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (112 samples, 0.57%)</title><rect x="225.4" y="549" width="6.7" height="15.0" fill="rgb(212,162,50)" rx="2" ry="2" />
|
|
<text x="228.40" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="176.7" y="389" width="0.1" height="15.0" fill="rgb(234,3,39)" rx="2" ry="2" />
|
|
<text x="179.67" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (5 samples, 0.03%)</title><rect x="222.3" y="245" width="0.3" height="15.0" fill="rgb(206,149,31)" rx="2" ry="2" />
|
|
<text x="225.28" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1056.6" y="357" width="0.1" height="15.0" fill="rgb(245,157,18)" rx="2" ry="2" />
|
|
<text x="1059.58" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_get_direct_hit_groups (2 samples, 0.01%)</title><rect x="160.6" y="309" width="0.2" height="15.0" fill="rgb(254,84,16)" rx="2" ry="2" />
|
|
<text x="163.64" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="419.0" y="325" width="0.2" height="15.0" fill="rgb(208,0,35)" rx="2" ry="2" />
|
|
<text x="421.96" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (32 samples, 0.16%)</title><rect x="256.0" y="661" width="1.9" height="15.0" fill="rgb(239,174,12)" rx="2" ry="2" />
|
|
<text x="258.95" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (6 samples, 0.03%)</title><rect x="1004.2" y="277" width="0.3" height="15.0" fill="rgb(240,91,16)" rx="2" ry="2" />
|
|
<text x="1007.19" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ec_GFp_mont_group_set_curve (6 samples, 0.03%)</title><rect x="166.8" y="197" width="0.3" height="15.0" fill="rgb(240,200,36)" rx="2" ry="2" />
|
|
<text x="169.77" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (12 samples, 0.06%)</title><rect x="1038.5" y="261" width="0.7" height="15.0" fill="rgb(225,118,24)" rx="2" ry="2" />
|
|
<text x="1041.46" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="254.5" y="533" width="0.1" height="15.0" fill="rgb(221,54,4)" rx="2" ry="2" />
|
|
<text x="257.51" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (5 samples, 0.03%)</title><rect x="374.4" y="245" width="0.3" height="15.0" fill="rgb(227,0,15)" rx="2" ry="2" />
|
|
<text x="377.36" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (9 samples, 0.05%)</title><rect x="700.8" y="469" width="0.5" height="15.0" fill="rgb(215,220,44)" rx="2" ry="2" />
|
|
<text x="703.80" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (2 samples, 0.01%)</title><rect x="353.0" y="357" width="0.1" height="15.0" fill="rgb(231,92,8)" rx="2" ry="2" />
|
|
<text x="356.00" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (262 samples, 1.33%)</title><rect x="951.1" y="437" width="15.7" height="15.0" fill="rgb(239,213,39)" rx="2" ry="2" />
|
|
<text x="954.07" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mail_identify_pop3 (6 samples, 0.03%)</title><rect x="423.8" y="421" width="0.4" height="15.0" fill="rgb(243,146,36)" rx="2" ry="2" />
|
|
<text x="426.82" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_xorshift64 (3 samples, 0.02%)</title><rect x="355.3" y="229" width="0.2" height="15.0" fill="rgb(246,196,17)" rx="2" ry="2" />
|
|
<text x="358.34" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_client_hello (20 samples, 0.10%)</title><rect x="170.5" y="453" width="1.2" height="15.0" fill="rgb(221,163,1)" rx="2" ry="2" />
|
|
<text x="173.55" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (11 samples, 0.06%)</title><rect x="583.8" y="293" width="0.7" height="15.0" fill="rgb(235,111,12)" rx="2" ry="2" />
|
|
<text x="586.83" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="220.2" y="389" width="0.7" height="15.0" fill="rgb(244,158,44)" rx="2" ry="2" />
|
|
<text x="223.18" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (5 samples, 0.03%)</title><rect x="1062.9" y="277" width="0.3" height="15.0" fill="rgb(227,90,28)" rx="2" ry="2" />
|
|
<text x="1065.94" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (6 samples, 0.03%)</title><rect x="499.6" y="261" width="0.3" height="15.0" fill="rgb(235,183,3)" rx="2" ry="2" />
|
|
<text x="502.56" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="733.4" y="325" width="0.2" height="15.0" fill="rgb(242,97,17)" rx="2" ry="2" />
|
|
<text x="736.39" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_decompressed_name (4 samples, 0.02%)</title><rect x="1181.7" y="613" width="0.3" height="15.0" fill="rgb(233,143,0)" rx="2" ry="2" />
|
|
<text x="1184.72" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (20 samples, 0.10%)</title><rect x="763.5" y="405" width="1.2" height="15.0" fill="rgb(209,132,9)" rx="2" ry="2" />
|
|
<text x="766.46" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (2 samples, 0.01%)</title><rect x="959.5" y="261" width="0.1" height="15.0" fill="rgb(250,174,19)" rx="2" ry="2" />
|
|
<text x="962.47" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1189.9" y="533" width="0.1" height="15.0" fill="rgb(228,3,33)" rx="2" ry="2" />
|
|
<text x="1192.88" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>packet_io_hook_forward (22 samples, 0.11%)</title><rect x="1103.0" y="581" width="1.4" height="15.0" fill="rgb(234,112,16)" rx="2" ry="2" />
|
|
<text x="1106.03" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (199 samples, 1.01%)</title><rect x="992.6" y="325" width="11.9" height="15.0" fill="rgb(244,24,39)" rx="2" ry="2" />
|
|
<text x="995.60" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (5 samples, 0.03%)</title><rect x="621.6" y="261" width="0.3" height="15.0" fill="rgb(209,73,46)" rx="2" ry="2" />
|
|
<text x="624.64" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="187.3" y="373" width="0.2" height="15.0" fill="rgb(246,201,30)" rx="2" ry="2" />
|
|
<text x="190.29" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_0to16_128b (5 samples, 0.03%)</title><rect x="1041.1" y="261" width="0.3" height="15.0" fill="rgb(226,90,28)" rx="2" ry="2" />
|
|
<text x="1044.10" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (7 samples, 0.04%)</title><rect x="1100.2" y="373" width="0.4" height="15.0" fill="rgb(206,212,6)" rx="2" ry="2" />
|
|
<text x="1103.15" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="36.4" y="549" width="0.3" height="15.0" fill="rgb(243,113,0)" rx="2" ry="2" />
|
|
<text x="39.41" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (174 samples, 0.89%)</title><rect x="1083.6" y="469" width="10.5" height="15.0" fill="rgb(209,150,54)" rx="2" ry="2" />
|
|
<text x="1086.65" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (15 samples, 0.08%)</title><rect x="555.5" y="405" width="0.9" height="15.0" fill="rgb(233,224,9)" rx="2" ry="2" />
|
|
<text x="558.50" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (9 samples, 0.05%)</title><rect x="381.7" y="229" width="0.6" height="15.0" fill="rgb(212,127,13)" rx="2" ry="2" />
|
|
<text x="384.75" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="556.1" y="373" width="0.2" height="15.0" fill="rgb(215,68,21)" rx="2" ry="2" />
|
|
<text x="559.10" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (5 samples, 0.03%)</title><rect x="980.5" y="405" width="0.3" height="15.0" fill="rgb(252,49,19)" rx="2" ry="2" />
|
|
<text x="983.54" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="145.0" y="261" width="0.1" height="15.0" fill="rgb(212,102,15)" rx="2" ry="2" />
|
|
<text x="147.98" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (3 samples, 0.02%)</title><rect x="250.7" y="341" width="0.1" height="15.0" fill="rgb(227,63,34)" rx="2" ry="2" />
|
|
<text x="253.67" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="482.5" y="389" width="0.1" height="15.0" fill="rgb(215,181,19)" rx="2" ry="2" />
|
|
<text x="485.46" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (26 samples, 0.13%)</title><rect x="1085.0" y="389" width="1.5" height="15.0" fill="rgb(211,161,14)" rx="2" ry="2" />
|
|
<text x="1087.97" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (2,263 samples, 11.51%)</title><rect x="529.9" y="533" width="135.8" height="15.0" fill="rgb(210,25,33)" rx="2" ry="2" />
|
|
<text x="532.93" y="543.5" >stream_process_tc..</text>
|
|
</g>
|
|
<g >
|
|
<title>update_polling_inject_context (52 samples, 0.26%)</title><rect x="887.3" y="533" width="3.1" height="15.0" fill="rgb(214,87,47)" rx="2" ry="2" />
|
|
<text x="890.27" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (120 samples, 0.61%)</title><rect x="207.4" y="581" width="7.2" height="15.0" fill="rgb(234,203,24)" rx="2" ry="2" />
|
|
<text x="210.40" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (3 samples, 0.02%)</title><rect x="722.4" y="277" width="0.2" height="15.0" fill="rgb(239,209,31)" rx="2" ry="2" />
|
|
<text x="725.41" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (2 samples, 0.01%)</title><rect x="709.5" y="309" width="0.1" height="15.0" fill="rgb(220,211,23)" rx="2" ry="2" />
|
|
<text x="712.50" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_dos_metric_update (25 samples, 0.13%)</title><rect x="1034.0" y="405" width="1.5" height="15.0" fill="rgb(223,192,54)" rx="2" ry="2" />
|
|
<text x="1037.02" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>strlen@plt (4 samples, 0.02%)</title><rect x="635.5" y="309" width="0.2" height="15.0" fill="rgb(232,56,50)" rx="2" ry="2" />
|
|
<text x="638.50" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="224.3" y="325" width="0.1" height="15.0" fill="rgb(245,216,19)" rx="2" ry="2" />
|
|
<text x="227.32" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (351 samples, 1.79%)</title><rect x="711.4" y="405" width="21.1" height="15.0" fill="rgb(232,25,44)" rx="2" ry="2" />
|
|
<text x="714.42" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (2 samples, 0.01%)</title><rect x="401.8" y="213" width="0.1" height="15.0" fill="rgb(228,18,6)" rx="2" ry="2" />
|
|
<text x="404.79" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="249.7" y="357" width="0.1" height="15.0" fill="rgb(234,196,42)" rx="2" ry="2" />
|
|
<text x="252.71" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_stream_free (2 samples, 0.01%)</title><rect x="384.3" y="213" width="0.1" height="15.0" fill="rgb(210,42,7)" rx="2" ry="2" />
|
|
<text x="387.33" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_add_proto_tag (2 samples, 0.01%)</title><rect x="425.8" y="437" width="0.1" height="15.0" fill="rgb(213,27,43)" rx="2" ry="2" />
|
|
<text x="428.80" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (50 samples, 0.25%)</title><rect x="723.8" y="341" width="3.0" height="15.0" fill="rgb(208,207,17)" rx="2" ry="2" />
|
|
<text x="726.79" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (3 samples, 0.02%)</title><rect x="176.4" y="357" width="0.2" height="15.0" fill="rgb(236,94,27)" rx="2" ry="2" />
|
|
<text x="179.43" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (6 samples, 0.03%)</title><rect x="109.5" y="309" width="0.4" height="15.0" fill="rgb(249,86,37)" rx="2" ry="2" />
|
|
<text x="112.51" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_pop_free (4 samples, 0.02%)</title><rect x="222.8" y="245" width="0.3" height="15.0" fill="rgb(226,222,19)" rx="2" ry="2" />
|
|
<text x="225.82" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (5 samples, 0.03%)</title><rect x="52.9" y="549" width="0.3" height="15.0" fill="rgb(231,204,10)" rx="2" ry="2" />
|
|
<text x="55.91" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (14 samples, 0.07%)</title><rect x="1056.7" y="389" width="0.8" height="15.0" fill="rgb(209,176,14)" rx="2" ry="2" />
|
|
<text x="1059.70" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (5 samples, 0.03%)</title><rect x="105.7" y="453" width="0.3" height="15.0" fill="rgb(254,198,22)" rx="2" ry="2" />
|
|
<text x="108.67" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (1,353 samples, 6.88%)</title><rect x="794.3" y="405" width="81.2" height="15.0" fill="rgb(240,158,6)" rx="2" ry="2" />
|
|
<text x="797.31" y="415.5" >traffic_t..</text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (4 samples, 0.02%)</title><rect x="881.7" y="293" width="0.2" height="15.0" fill="rgb(254,103,50)" rx="2" ry="2" />
|
|
<text x="884.69" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_to_available_heap (3 samples, 0.02%)</title><rect x="1003.4" y="277" width="0.2" height="15.0" fill="rgb(214,174,27)" rx="2" ry="2" />
|
|
<text x="1006.41" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (6 samples, 0.03%)</title><rect x="719.5" y="245" width="0.3" height="15.0" fill="rgb(208,5,10)" rx="2" ry="2" />
|
|
<text x="722.46" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_create_pool (3 samples, 0.02%)</title><rect x="918.7" y="229" width="0.1" height="15.0" fill="rgb(250,145,20)" rx="2" ry="2" />
|
|
<text x="921.66" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_xorshift64 (2 samples, 0.01%)</title><rect x="885.4" y="245" width="0.1" height="15.0" fill="rgb(212,6,30)" rx="2" ry="2" />
|
|
<text x="888.35" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (8 samples, 0.04%)</title><rect x="470.4" y="469" width="0.5" height="15.0" fill="rgb(233,22,30)" rx="2" ry="2" />
|
|
<text x="473.39" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (6 samples, 0.03%)</title><rect x="418.8" y="405" width="0.4" height="15.0" fill="rgb(212,18,54)" rx="2" ry="2" />
|
|
<text x="421.84" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="166.1" y="117" width="0.1" height="15.0" fill="rgb(250,182,6)" rx="2" ry="2" />
|
|
<text x="169.10" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="1147.9" y="341" width="0.2" height="15.0" fill="rgb(222,101,52)" rx="2" ry="2" />
|
|
<text x="1150.87" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="53.5" y="597" width="0.1" height="15.0" fill="rgb(207,93,33)" rx="2" ry="2" />
|
|
<text x="56.45" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (6 samples, 0.03%)</title><rect x="250.9" y="437" width="0.4" height="15.0" fill="rgb(242,7,18)" rx="2" ry="2" />
|
|
<text x="253.91" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_is_outer_tunnel (4 samples, 0.02%)</title><rect x="1146.8" y="469" width="0.3" height="15.0" fill="rgb(240,179,50)" rx="2" ry="2" />
|
|
<text x="1149.85" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (4 samples, 0.02%)</title><rect x="561.5" y="421" width="0.2" height="15.0" fill="rgb(236,136,14)" rx="2" ry="2" />
|
|
<text x="564.50" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (14 samples, 0.07%)</title><rect x="228.0" y="405" width="0.9" height="15.0" fill="rgb(233,127,27)" rx="2" ry="2" />
|
|
<text x="231.04" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (12 samples, 0.06%)</title><rect x="152.7" y="517" width="0.7" height="15.0" fill="rgb(249,93,35)" rx="2" ry="2" />
|
|
<text x="155.72" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (9 samples, 0.05%)</title><rect x="217.4" y="421" width="0.6" height="15.0" fill="rgb(233,115,45)" rx="2" ry="2" />
|
|
<text x="220.42" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_avx2_movbe (3 samples, 0.02%)</title><rect x="1164.4" y="517" width="0.2" height="15.0" fill="rgb(219,128,32)" rx="2" ry="2" />
|
|
<text x="1167.37" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (2 samples, 0.01%)</title><rect x="381.0" y="229" width="0.1" height="15.0" fill="rgb(250,113,47)" rx="2" ry="2" />
|
|
<text x="383.97" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (8 samples, 0.04%)</title><rect x="350.0" y="453" width="0.5" height="15.0" fill="rgb(221,124,41)" rx="2" ry="2" />
|
|
<text x="353.00" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (12 samples, 0.06%)</title><rect x="1064.9" y="373" width="0.7" height="15.0" fill="rgb(253,45,21)" rx="2" ry="2" />
|
|
<text x="1067.86" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_query_one (16 samples, 0.08%)</title><rect x="505.4" y="325" width="1.0" height="15.0" fill="rgb(217,7,29)" rx="2" ry="2" />
|
|
<text x="508.44" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (2 samples, 0.01%)</title><rect x="222.9" y="181" width="0.2" height="15.0" fill="rgb(252,34,31)" rx="2" ry="2" />
|
|
<text x="225.94" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (115 samples, 0.58%)</title><rect x="864.3" y="325" width="6.9" height="15.0" fill="rgb(225,63,28)" rx="2" ry="2" />
|
|
<text x="867.35" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1148.2" y="565" width="0.1" height="15.0" fill="rgb(223,76,47)" rx="2" ry="2" />
|
|
<text x="1151.17" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (2 samples, 0.01%)</title><rect x="1006.8" y="245" width="0.1" height="15.0" fill="rgb(246,114,18)" rx="2" ry="2" />
|
|
<text x="1009.77" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_l_avx (2 samples, 0.01%)</title><rect x="745.6" y="421" width="0.1" height="15.0" fill="rgb(227,206,19)" rx="2" ry="2" />
|
|
<text x="748.57" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (22 samples, 0.11%)</title><rect x="919.3" y="341" width="1.3" height="15.0" fill="rgb(230,61,11)" rx="2" ry="2" />
|
|
<text x="922.32" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="627.8" y="309" width="0.1" height="15.0" fill="rgb(221,31,34)" rx="2" ry="2" />
|
|
<text x="630.82" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (2 samples, 0.01%)</title><rect x="189.7" y="421" width="0.1" height="15.0" fill="rgb(233,94,19)" rx="2" ry="2" />
|
|
<text x="192.69" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="141.2" y="421" width="0.1" height="15.0" fill="rgb(252,11,36)" rx="2" ry="2" />
|
|
<text x="144.20" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (20 samples, 0.10%)</title><rect x="775.7" y="325" width="1.2" height="15.0" fill="rgb(209,146,28)" rx="2" ry="2" />
|
|
<text x="778.70" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stellar_on_sapp_defer_entry (5 samples, 0.03%)</title><rect x="523.7" y="421" width="0.3" height="15.0" fill="rgb(242,7,36)" rx="2" ry="2" />
|
|
<text x="526.69" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="1184.1" y="357" width="0.1" height="15.0" fill="rgb(214,52,2)" rx="2" ry="2" />
|
|
<text x="1187.06" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="107.2" y="357" width="0.5" height="15.0" fill="rgb(240,174,22)" rx="2" ry="2" />
|
|
<text x="110.17" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (33 samples, 0.17%)</title><rect x="214.6" y="485" width="2.0" height="15.0" fill="rgb(233,137,27)" rx="2" ry="2" />
|
|
<text x="217.60" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (6 samples, 0.03%)</title><rect x="145.9" y="437" width="0.3" height="15.0" fill="rgb(225,136,26)" rx="2" ry="2" />
|
|
<text x="148.88" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (12 samples, 0.06%)</title><rect x="168.6" y="373" width="0.7" height="15.0" fill="rgb(242,128,19)" rx="2" ry="2" />
|
|
<text x="171.57" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="223.1" y="181" width="0.1" height="15.0" fill="rgb(250,138,49)" rx="2" ry="2" />
|
|
<text x="226.12" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (2 samples, 0.01%)</title><rect x="666.1" y="293" width="0.1" height="15.0" fill="rgb(206,142,31)" rx="2" ry="2" />
|
|
<text x="669.11" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (6 samples, 0.03%)</title><rect x="184.0" y="405" width="0.4" height="15.0" fill="rgb(213,208,1)" rx="2" ry="2" />
|
|
<text x="186.99" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (6 samples, 0.03%)</title><rect x="351.7" y="501" width="0.4" height="15.0" fill="rgb(226,96,42)" rx="2" ry="2" />
|
|
<text x="354.74" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH128_mix32B (2 samples, 0.01%)</title><rect x="479.5" y="245" width="0.1" height="15.0" fill="rgb(240,227,53)" rx="2" ry="2" />
|
|
<text x="482.46" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (3 samples, 0.02%)</title><rect x="539.4" y="501" width="0.2" height="15.0" fill="rgb(231,72,5)" rx="2" ry="2" />
|
|
<text x="542.41" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="1141.2" y="485" width="0.2" height="15.0" fill="rgb(208,25,23)" rx="2" ry="2" />
|
|
<text x="1144.21" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__errno_location (3 samples, 0.02%)</title><rect x="917.0" y="405" width="0.2" height="15.0" fill="rgb(235,152,37)" rx="2" ry="2" />
|
|
<text x="919.98" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (21 samples, 0.11%)</title><rect x="353.7" y="309" width="1.2" height="15.0" fill="rgb(218,75,12)" rx="2" ry="2" />
|
|
<text x="356.66" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (15 samples, 0.08%)</title><rect x="1147.6" y="645" width="0.9" height="15.0" fill="rgb(242,200,25)" rx="2" ry="2" />
|
|
<text x="1150.57" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (5 samples, 0.03%)</title><rect x="105.7" y="421" width="0.3" height="15.0" fill="rgb(224,123,11)" rx="2" ry="2" />
|
|
<text x="108.67" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (5 samples, 0.03%)</title><rect x="580.6" y="261" width="0.3" height="15.0" fill="rgb(217,130,27)" rx="2" ry="2" />
|
|
<text x="583.64" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1142.3" y="293" width="0.2" height="15.0" fill="rgb(221,179,28)" rx="2" ry="2" />
|
|
<text x="1145.35" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (4 samples, 0.02%)</title><rect x="960.6" y="277" width="0.2" height="15.0" fill="rgb(252,119,24)" rx="2" ry="2" />
|
|
<text x="963.55" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="157.5" y="213" width="0.3" height="15.0" fill="rgb(254,203,40)" rx="2" ry="2" />
|
|
<text x="160.52" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (2 samples, 0.01%)</title><rect x="988.5" y="389" width="0.1" height="15.0" fill="rgb(233,203,31)" rx="2" ry="2" />
|
|
<text x="991.46" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="225.0" y="421" width="0.2" height="15.0" fill="rgb(209,217,30)" rx="2" ry="2" />
|
|
<text x="227.98" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="930.2" y="341" width="0.3" height="15.0" fill="rgb(209,173,14)" rx="2" ry="2" />
|
|
<text x="933.25" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (3 samples, 0.02%)</title><rect x="1089.8" y="277" width="0.2" height="15.0" fill="rgb(230,109,47)" rx="2" ry="2" />
|
|
<text x="1092.83" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (3 samples, 0.02%)</title><rect x="1023.3" y="501" width="0.2" height="15.0" fill="rgb(233,84,45)" rx="2" ry="2" />
|
|
<text x="1026.27" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (4 samples, 0.02%)</title><rect x="582.5" y="277" width="0.2" height="15.0" fill="rgb(253,147,31)" rx="2" ry="2" />
|
|
<text x="585.50" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (2 samples, 0.01%)</title><rect x="1095.1" y="389" width="0.1" height="15.0" fill="rgb(244,71,16)" rx="2" ry="2" />
|
|
<text x="1098.05" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_session_decode (114 samples, 0.58%)</title><rect x="579.3" y="405" width="6.9" height="15.0" fill="rgb(212,229,27)" rx="2" ry="2" />
|
|
<text x="582.32" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (3 samples, 0.02%)</title><rect x="1188.9" y="421" width="0.2" height="15.0" fill="rgb(219,56,6)" rx="2" ry="2" />
|
|
<text x="1191.92" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (3 samples, 0.02%)</title><rect x="1083.3" y="453" width="0.2" height="15.0" fill="rgb(224,188,50)" rx="2" ry="2" />
|
|
<text x="1086.35" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="214.4" y="293" width="0.2" height="15.0" fill="rgb(222,20,1)" rx="2" ry="2" />
|
|
<text x="217.42" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>strncmp_one_word_mesa (3 samples, 0.02%)</title><rect x="424.0" y="389" width="0.2" height="15.0" fill="rgb(220,89,19)" rx="2" ry="2" />
|
|
<text x="427.00" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="105.4" y="485" width="0.2" height="15.0" fill="rgb(245,107,11)" rx="2" ry="2" />
|
|
<text x="108.37" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="431.7" y="389" width="0.2" height="15.0" fill="rgb(219,60,20)" rx="2" ry="2" />
|
|
<text x="434.74" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="254.3" y="517" width="0.1" height="15.0" fill="rgb(207,224,7)" rx="2" ry="2" />
|
|
<text x="257.27" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (798 samples, 4.06%)</title><rect x="970.4" y="533" width="47.9" height="15.0" fill="rgb(208,15,52)" rx="2" ry="2" />
|
|
<text x="973.40" y="543.5" >stre..</text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="478.0" y="405" width="0.1" height="15.0" fill="rgb(205,77,20)" rx="2" ry="2" />
|
|
<text x="480.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1096.1" y="517" width="0.2" height="15.0" fill="rgb(229,107,51)" rx="2" ry="2" />
|
|
<text x="1099.13" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmem (4 samples, 0.02%)</title><rect x="385.7" y="341" width="0.2" height="15.0" fill="rgb(211,94,32)" rx="2" ry="2" />
|
|
<text x="388.71" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (4 samples, 0.02%)</title><rect x="959.2" y="261" width="0.3" height="15.0" fill="rgb(221,75,28)" rx="2" ry="2" />
|
|
<text x="962.23" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (2 samples, 0.01%)</title><rect x="920.2" y="229" width="0.1" height="15.0" fill="rgb(218,189,0)" rx="2" ry="2" />
|
|
<text x="923.22" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (34 samples, 0.17%)</title><rect x="404.7" y="245" width="2.1" height="15.0" fill="rgb(223,32,23)" rx="2" ry="2" />
|
|
<text x="407.73" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop4 (2 samples, 0.01%)</title><rect x="1159.0" y="501" width="0.2" height="15.0" fill="rgb(250,19,4)" rx="2" ry="2" />
|
|
<text x="1162.03" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_timeout (3 samples, 0.02%)</title><rect x="1030.5" y="501" width="0.2" height="15.0" fill="rgb(205,75,25)" rx="2" ry="2" />
|
|
<text x="1033.53" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_xorshift64 (5 samples, 0.03%)</title><rect x="632.6" y="229" width="0.3" height="15.0" fill="rgb(235,22,40)" rx="2" ry="2" />
|
|
<text x="635.62" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (3 samples, 0.02%)</title><rect x="238.8" y="421" width="0.2" height="15.0" fill="rgb(230,7,44)" rx="2" ry="2" />
|
|
<text x="241.79" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (3 samples, 0.02%)</title><rect x="219.3" y="405" width="0.2" height="15.0" fill="rgb(225,190,17)" rx="2" ry="2" />
|
|
<text x="222.28" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (15 samples, 0.08%)</title><rect x="157.0" y="405" width="0.9" height="15.0" fill="rgb(216,55,1)" rx="2" ry="2" />
|
|
<text x="159.98" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="879.0" y="405" width="0.1" height="15.0" fill="rgb(209,188,0)" rx="2" ry="2" />
|
|
<text x="881.99" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (6 samples, 0.03%)</title><rect x="223.7" y="389" width="0.3" height="15.0" fill="rgb(215,84,0)" rx="2" ry="2" />
|
|
<text x="226.66" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (24 samples, 0.12%)</title><rect x="1097.5" y="437" width="1.4" height="15.0" fill="rgb(225,176,39)" rx="2" ry="2" />
|
|
<text x="1100.45" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_0to16_128b (20 samples, 0.10%)</title><rect x="844.0" y="261" width="1.2" height="15.0" fill="rgb(245,212,2)" rx="2" ry="2" />
|
|
<text x="847.00" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (14 samples, 0.07%)</title><rect x="1186.6" y="501" width="0.8" height="15.0" fill="rgb(247,113,11)" rx="2" ry="2" />
|
|
<text x="1189.58" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (3 samples, 0.02%)</title><rect x="958.5" y="293" width="0.1" height="15.0" fill="rgb(254,172,31)" rx="2" ry="2" />
|
|
<text x="961.45" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_htable_search (7 samples, 0.04%)</title><rect x="411.1" y="373" width="0.4" height="15.0" fill="rgb(230,144,13)" rx="2" ry="2" />
|
|
<text x="414.10" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1148.2" y="501" width="0.1" height="15.0" fill="rgb(223,45,4)" rx="2" ry="2" />
|
|
<text x="1151.17" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (56 samples, 0.28%)</title><rect x="129.4" y="421" width="3.3" height="15.0" fill="rgb(225,75,10)" rx="2" ry="2" />
|
|
<text x="132.37" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (11 samples, 0.06%)</title><rect x="97.0" y="581" width="0.6" height="15.0" fill="rgb(230,154,29)" rx="2" ry="2" />
|
|
<text x="99.97" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (73 samples, 0.37%)</title><rect x="148.3" y="517" width="4.4" height="15.0" fill="rgb(230,189,4)" rx="2" ry="2" />
|
|
<text x="151.34" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (3 samples, 0.02%)</title><rect x="744.5" y="437" width="0.2" height="15.0" fill="rgb(228,74,16)" rx="2" ry="2" />
|
|
<text x="747.49" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (32 samples, 0.16%)</title><rect x="1037.3" y="293" width="1.9" height="15.0" fill="rgb(206,196,3)" rx="2" ry="2" />
|
|
<text x="1040.26" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="208.1" y="293" width="0.4" height="15.0" fill="rgb(254,169,35)" rx="2" ry="2" />
|
|
<text x="211.12" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby@plt (3 samples, 0.02%)</title><rect x="657.8" y="373" width="0.1" height="15.0" fill="rgb(210,116,13)" rx="2" ry="2" />
|
|
<text x="660.77" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (8 samples, 0.04%)</title><rect x="1068.4" y="293" width="0.5" height="15.0" fill="rgb(217,9,13)" rx="2" ry="2" />
|
|
<text x="1071.40" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log_level_enabled (14 samples, 0.07%)</title><rect x="274.7" y="581" width="0.8" height="15.0" fill="rgb(243,68,36)" rx="2" ry="2" />
|
|
<text x="277.68" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="145.2" y="293" width="0.2" height="15.0" fill="rgb(243,67,23)" rx="2" ry="2" />
|
|
<text x="148.16" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_server_hello (4 samples, 0.02%)</title><rect x="225.2" y="453" width="0.2" height="15.0" fill="rgb(244,188,24)" rx="2" ry="2" />
|
|
<text x="228.16" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithCnntcloseData (3 samples, 0.02%)</title><rect x="921.0" y="389" width="0.2" height="15.0" fill="rgb(212,13,13)" rx="2" ry="2" />
|
|
<text x="924.00" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="257.7" y="597" width="0.2" height="15.0" fill="rgb(228,64,14)" rx="2" ry="2" />
|
|
<text x="260.69" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (7 samples, 0.04%)</title><rect x="967.0" y="485" width="0.5" height="15.0" fill="rgb(213,79,51)" rx="2" ry="2" />
|
|
<text x="970.04" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock@plt (2 samples, 0.01%)</title><rect x="1015.8" y="373" width="0.1" height="15.0" fill="rgb(231,8,31)" rx="2" ry="2" />
|
|
<text x="1018.83" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_send_burst (256 samples, 1.30%)</title><rect x="1124.4" y="597" width="15.4" height="15.0" fill="rgb(250,161,38)" rx="2" ry="2" />
|
|
<text x="1127.40" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (21 samples, 0.11%)</title><rect x="1144.3" y="565" width="1.3" height="15.0" fill="rgb(238,120,8)" rx="2" ry="2" />
|
|
<text x="1147.33" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="224.1" y="373" width="0.2" height="15.0" fill="rgb(233,160,20)" rx="2" ry="2" />
|
|
<text x="227.08" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>c2i_ASN1_INTEGER (3 samples, 0.02%)</title><rect x="167.8" y="261" width="0.2" height="15.0" fill="rgb(219,91,44)" rx="2" ry="2" />
|
|
<text x="170.85" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sip.so] (9 samples, 0.05%)</title><rect x="1050.8" y="453" width="0.6" height="15.0" fill="rgb(238,116,31)" rx="2" ry="2" />
|
|
<text x="1053.82" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (16 samples, 0.08%)</title><rect x="227.0" y="405" width="1.0" height="15.0" fill="rgb(214,171,52)" rx="2" ry="2" />
|
|
<text x="230.02" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (73 samples, 0.37%)</title><rect x="148.3" y="485" width="4.4" height="15.0" fill="rgb(248,173,22)" rx="2" ry="2" />
|
|
<text x="151.34" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (61 samples, 0.31%)</title><rect x="220.9" y="453" width="3.7" height="15.0" fill="rgb(228,114,48)" rx="2" ry="2" />
|
|
<text x="223.90" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (1,094 samples, 5.56%)</title><rect x="153.6" y="613" width="65.7" height="15.0" fill="rgb(241,36,48)" rx="2" ry="2" />
|
|
<text x="156.62" y="623.5" >ipv4_en..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="96.7" y="581" width="0.1" height="15.0" fill="rgb(231,172,18)" rx="2" ry="2" />
|
|
<text x="99.66" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (10 samples, 0.05%)</title><rect x="153.9" y="517" width="0.6" height="15.0" fill="rgb(216,176,20)" rx="2" ry="2" />
|
|
<text x="156.86" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (2 samples, 0.01%)</title><rect x="1050.7" y="469" width="0.1" height="15.0" fill="rgb(233,68,44)" rx="2" ry="2" />
|
|
<text x="1053.70" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (3 samples, 0.02%)</title><rect x="704.8" y="405" width="0.1" height="15.0" fill="rgb(232,48,28)" rx="2" ry="2" />
|
|
<text x="707.76" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithConnection (7 samples, 0.04%)</title><rect x="412.8" y="373" width="0.5" height="15.0" fill="rgb(240,67,10)" rx="2" ry="2" />
|
|
<text x="415.84" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get (6 samples, 0.03%)</title><rect x="127.4" y="421" width="0.4" height="15.0" fill="rgb(226,48,49)" rx="2" ry="2" />
|
|
<text x="130.39" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_app_and_proto_update (13 samples, 0.07%)</title><rect x="951.4" y="405" width="0.8" height="15.0" fill="rgb(221,124,41)" rx="2" ry="2" />
|
|
<text x="954.43" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,997 samples, 10.16%)</title><rect x="898.7" y="549" width="119.9" height="15.0" fill="rgb(218,22,4)" rx="2" ry="2" />
|
|
<text x="901.74" y="559.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="208.2" y="197" width="0.3" height="15.0" fill="rgb(206,177,33)" rx="2" ry="2" />
|
|
<text x="211.18" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_DocFormatCallBack (3 samples, 0.02%)</title><rect x="408.6" y="309" width="0.2" height="15.0" fill="rgb(239,65,37)" rx="2" ry="2" />
|
|
<text x="411.57" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="145.0" y="245" width="0.1" height="15.0" fill="rgb(218,53,39)" rx="2" ry="2" />
|
|
<text x="147.98" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="156.7" y="229" width="0.2" height="15.0" fill="rgb(251,28,21)" rx="2" ry="2" />
|
|
<text x="159.74" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (43 samples, 0.22%)</title><rect x="246.1" y="533" width="2.6" height="15.0" fill="rgb(210,39,26)" rx="2" ry="2" />
|
|
<text x="249.11" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (3 samples, 0.02%)</title><rect x="1148.5" y="597" width="0.1" height="15.0" fill="rgb(241,139,2)" rx="2" ry="2" />
|
|
<text x="1151.47" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="162.0" y="197" width="0.5" height="15.0" fill="rgb(243,83,9)" rx="2" ry="2" />
|
|
<text x="165.02" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_setb (2 samples, 0.01%)</title><rect x="200.7" y="341" width="0.2" height="15.0" fill="rgb(241,75,42)" rx="2" ry="2" />
|
|
<text x="203.73" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="469.7" y="501" width="0.1" height="15.0" fill="rgb(238,148,36)" rx="2" ry="2" />
|
|
<text x="472.67" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (9 samples, 0.05%)</title><rect x="106.1" y="277" width="0.5" height="15.0" fill="rgb(227,53,13)" rx="2" ry="2" />
|
|
<text x="109.09" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (15 samples, 0.08%)</title><rect x="1075.0" y="309" width="0.9" height="15.0" fill="rgb(221,184,54)" rx="2" ry="2" />
|
|
<text x="1078.01" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stellar_on_sapp_defer_entry (6 samples, 0.03%)</title><rect x="733.8" y="421" width="0.4" height="15.0" fill="rgb(227,87,54)" rx="2" ry="2" />
|
|
<text x="736.81" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (128 samples, 0.65%)</title><rect x="160.9" y="421" width="7.7" height="15.0" fill="rgb(228,168,14)" rx="2" ry="2" />
|
|
<text x="163.88" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (4 samples, 0.02%)</title><rect x="1153.9" y="485" width="0.3" height="15.0" fill="rgb(245,228,29)" rx="2" ry="2" />
|
|
<text x="1156.93" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="1148.3" y="549" width="0.2" height="15.0" fill="rgb(209,24,41)" rx="2" ry="2" />
|
|
<text x="1151.29" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get0_current_l4_header@plt (2 samples, 0.01%)</title><rect x="206.2" y="437" width="0.1" height="15.0" fill="rgb(231,145,26)" rx="2" ry="2" />
|
|
<text x="209.20" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (483 samples, 2.46%)</title><rect x="1051.5" y="453" width="29.0" height="15.0" fill="rgb(240,205,20)" rx="2" ry="2" />
|
|
<text x="1054.54" y="463.5" >[s..</text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (2 samples, 0.01%)</title><rect x="156.3" y="421" width="0.1" height="15.0" fill="rgb(236,127,30)" rx="2" ry="2" />
|
|
<text x="159.26" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (526 samples, 2.68%)</title><rect x="701.5" y="485" width="31.5" height="15.0" fill="rgb(234,217,33)" rx="2" ry="2" />
|
|
<text x="704.46" y="495.5" >st..</text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (2 samples, 0.01%)</title><rect x="1031.3" y="485" width="0.1" height="15.0" fill="rgb(235,138,2)" rx="2" ry="2" />
|
|
<text x="1034.25" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (3 samples, 0.02%)</title><rect x="788.5" y="261" width="0.2" height="15.0" fill="rgb(246,105,53)" rx="2" ry="2" />
|
|
<text x="791.48" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="146.0" y="389" width="0.2" height="15.0" fill="rgb(252,154,34)" rx="2" ry="2" />
|
|
<text x="149.00" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="231.4" y="341" width="0.1" height="15.0" fill="rgb(219,31,24)" rx="2" ry="2" />
|
|
<text x="234.40" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="1083.0" y="501" width="0.1" height="15.0" fill="rgb(224,53,6)" rx="2" ry="2" />
|
|
<text x="1085.99" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (20 samples, 0.10%)</title><rect x="373.6" y="325" width="1.2" height="15.0" fill="rgb(237,70,20)" rx="2" ry="2" />
|
|
<text x="376.58" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (17 samples, 0.09%)</title><rect x="109.1" y="373" width="1.0" height="15.0" fill="rgb(233,112,54)" rx="2" ry="2" />
|
|
<text x="112.09" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="156.7" y="389" width="0.2" height="15.0" fill="rgb(224,19,19)" rx="2" ry="2" />
|
|
<text x="159.74" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (11 samples, 0.06%)</title><rect x="356.7" y="325" width="0.6" height="15.0" fill="rgb(246,82,13)" rx="2" ry="2" />
|
|
<text x="359.66" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (6 samples, 0.03%)</title><rect x="471.0" y="485" width="0.4" height="15.0" fill="rgb(213,168,33)" rx="2" ry="2" />
|
|
<text x="473.99" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (2 samples, 0.01%)</title><rect x="884.8" y="325" width="0.1" height="15.0" fill="rgb(211,70,3)" rx="2" ry="2" />
|
|
<text x="887.75" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (3 samples, 0.02%)</title><rect x="50.4" y="565" width="0.2" height="15.0" fill="rgb(252,116,28)" rx="2" ry="2" />
|
|
<text x="53.39" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (5 samples, 0.03%)</title><rect x="782.1" y="357" width="0.3" height="15.0" fill="rgb(249,208,48)" rx="2" ry="2" />
|
|
<text x="785.06" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (137 samples, 0.70%)</title><rect x="410.6" y="405" width="8.2" height="15.0" fill="rgb(241,185,31)" rx="2" ry="2" />
|
|
<text x="413.62" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithStartLine (27 samples, 0.14%)</title><rect x="917.4" y="405" width="1.6" height="15.0" fill="rgb(233,200,20)" rx="2" ry="2" />
|
|
<text x="920.40" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (8 samples, 0.04%)</title><rect x="226.5" y="405" width="0.5" height="15.0" fill="rgb(228,56,6)" rx="2" ry="2" />
|
|
<text x="229.54" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (10 samples, 0.05%)</title><rect x="959.1" y="293" width="0.6" height="15.0" fill="rgb(220,40,32)" rx="2" ry="2" />
|
|
<text x="962.05" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (3 samples, 0.02%)</title><rect x="219.3" y="469" width="0.2" height="15.0" fill="rgb(250,167,26)" rx="2" ry="2" />
|
|
<text x="222.28" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_and_record_popped_back (32 samples, 0.16%)</title><rect x="621.3" y="293" width="1.9" height="15.0" fill="rgb(220,163,28)" rx="2" ry="2" />
|
|
<text x="624.28" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (3 samples, 0.02%)</title><rect x="224.1" y="405" width="0.2" height="15.0" fill="rgb(218,131,26)" rx="2" ry="2" />
|
|
<text x="227.08" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (2 samples, 0.01%)</title><rect x="1147.4" y="501" width="0.2" height="15.0" fill="rgb(213,205,27)" rx="2" ry="2" />
|
|
<text x="1150.45" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (6 samples, 0.03%)</title><rect x="1086.2" y="373" width="0.3" height="15.0" fill="rgb(217,172,16)" rx="2" ry="2" />
|
|
<text x="1089.17" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_bin2bn (2 samples, 0.01%)</title><rect x="166.1" y="101" width="0.1" height="15.0" fill="rgb(251,15,8)" rx="2" ry="2" />
|
|
<text x="169.10" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (3 samples, 0.02%)</title><rect x="1087.9" y="309" width="0.2" height="15.0" fill="rgb(240,170,12)" rx="2" ry="2" />
|
|
<text x="1090.91" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (35 samples, 0.18%)</title><rect x="1087.6" y="325" width="2.1" height="15.0" fill="rgb(215,150,3)" rx="2" ry="2" />
|
|
<text x="1090.61" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (90 samples, 0.46%)</title><rect x="105.4" y="565" width="5.4" height="15.0" fill="rgb(233,13,31)" rx="2" ry="2" />
|
|
<text x="108.37" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>AP_bloom_add (6 samples, 0.03%)</title><rect x="1081.8" y="501" width="0.4" height="15.0" fill="rgb(209,107,9)" rx="2" ry="2" />
|
|
<text x="1084.85" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="172.0" y="389" width="0.2" height="15.0" fill="rgb(239,28,20)" rx="2" ry="2" />
|
|
<text x="175.05" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_query_one (42 samples, 0.21%)</title><rect x="838.8" y="325" width="2.5" height="15.0" fill="rgb(239,16,9)" rx="2" ry="2" />
|
|
<text x="841.78" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="53.6" y="613" width="0.1" height="15.0" fill="rgb(252,35,13)" rx="2" ry="2" />
|
|
<text x="56.57" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="155.5" y="373" width="0.2" height="15.0" fill="rgb(206,108,7)" rx="2" ry="2" />
|
|
<text x="158.54" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_new (2 samples, 0.01%)</title><rect x="384.0" y="293" width="0.1" height="15.0" fill="rgb(211,158,50)" rx="2" ry="2" />
|
|
<text x="386.97" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeHttpMethod (3 samples, 0.02%)</title><rect x="919.1" y="405" width="0.2" height="15.0" fill="rgb(254,89,29)" rx="2" ry="2" />
|
|
<text x="922.08" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>c2i_ASN1_OBJECT (5 samples, 0.03%)</title><rect x="167.4" y="213" width="0.3" height="15.0" fill="rgb(228,226,11)" rx="2" ry="2" />
|
|
<text x="170.43" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="988.7" y="373" width="0.1" height="15.0" fill="rgb(233,178,21)" rx="2" ry="2" />
|
|
<text x="991.70" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="220.1" y="405" width="0.1" height="15.0" fill="rgb(207,143,24)" rx="2" ry="2" />
|
|
<text x="223.06" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (13 samples, 0.07%)</title><rect x="1097.6" y="341" width="0.8" height="15.0" fill="rgb(241,39,46)" rx="2" ry="2" />
|
|
<text x="1100.57" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (11 samples, 0.06%)</title><rect x="1145.9" y="565" width="0.6" height="15.0" fill="rgb(238,88,21)" rx="2" ry="2" />
|
|
<text x="1148.89" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (183 samples, 0.93%)</title><rect x="712.8" y="341" width="11.0" height="15.0" fill="rgb(208,151,25)" rx="2" ry="2" />
|
|
<text x="715.80" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (112 samples, 0.57%)</title><rect x="225.4" y="485" width="6.7" height="15.0" fill="rgb(242,191,3)" rx="2" ry="2" />
|
|
<text x="228.40" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (13 samples, 0.07%)</title><rect x="1158.0" y="469" width="0.8" height="15.0" fill="rgb(206,228,37)" rx="2" ry="2" />
|
|
<text x="1161.01" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (519 samples, 2.64%)</title><rect x="437.4" y="533" width="31.1" height="15.0" fill="rgb(239,83,54)" rx="2" ry="2" />
|
|
<text x="440.38" y="543.5" >fi..</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="254.4" y="469" width="0.1" height="15.0" fill="rgb(226,99,15)" rx="2" ry="2" />
|
|
<text x="257.39" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (20 samples, 0.10%)</title><rect x="247.0" y="405" width="1.2" height="15.0" fill="rgb(205,67,50)" rx="2" ry="2" />
|
|
<text x="250.01" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="166.5" y="165" width="0.1" height="15.0" fill="rgb(247,195,20)" rx="2" ry="2" />
|
|
<text x="169.47" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_dos_metric_update (111 samples, 0.56%)</title><rect x="579.5" y="389" width="6.7" height="15.0" fill="rgb(251,35,22)" rx="2" ry="2" />
|
|
<text x="582.50" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (2 samples, 0.01%)</title><rect x="383.2" y="277" width="0.2" height="15.0" fill="rgb(223,137,27)" rx="2" ry="2" />
|
|
<text x="386.25" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (38 samples, 0.19%)</title><rect x="154.5" y="469" width="2.2" height="15.0" fill="rgb(219,82,33)" rx="2" ry="2" />
|
|
<text x="157.46" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="245.4" y="405" width="0.2" height="15.0" fill="rgb(217,43,25)" rx="2" ry="2" />
|
|
<text x="248.45" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_min_count (10 samples, 0.05%)</title><rect x="720.2" y="293" width="0.6" height="15.0" fill="rgb(214,164,21)" rx="2" ry="2" />
|
|
<text x="723.24" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stellar_get_current_thread_id@plt (2 samples, 0.01%)</title><rect x="226.4" y="405" width="0.1" height="15.0" fill="rgb(241,204,3)" rx="2" ry="2" />
|
|
<text x="229.42" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="744.4" y="405" width="0.1" height="15.0" fill="rgb(240,174,25)" rx="2" ry="2" />
|
|
<text x="747.37" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="178.3" y="341" width="0.8" height="15.0" fill="rgb(236,12,7)" rx="2" ry="2" />
|
|
<text x="181.35" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_decompressed_name (4 samples, 0.02%)</title><rect x="1182.1" y="613" width="0.3" height="15.0" fill="rgb(245,211,2)" rx="2" ry="2" />
|
|
<text x="1185.14" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (2 samples, 0.01%)</title><rect x="582.7" y="261" width="0.2" height="15.0" fill="rgb(227,63,19)" rx="2" ry="2" />
|
|
<text x="585.75" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1083.4" y="437" width="0.1" height="15.0" fill="rgb(252,86,0)" rx="2" ry="2" />
|
|
<text x="1086.41" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (3 samples, 0.02%)</title><rect x="1100.2" y="341" width="0.2" height="15.0" fill="rgb(224,182,45)" rx="2" ry="2" />
|
|
<text x="1103.21" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (7 samples, 0.04%)</title><rect x="1184.3" y="389" width="0.4" height="15.0" fill="rgb(239,133,7)" rx="2" ry="2" />
|
|
<text x="1187.30" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>find_or_add_metric (2 samples, 0.01%)</title><rect x="1077.2" y="357" width="0.1" height="15.0" fill="rgb(235,205,0)" rx="2" ry="2" />
|
|
<text x="1080.17" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1144.3" y="389" width="0.3" height="15.0" fill="rgb(210,163,31)" rx="2" ry="2" />
|
|
<text x="1147.33" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___snprintf (5 samples, 0.03%)</title><rect x="171.4" y="421" width="0.3" height="15.0" fill="rgb(239,126,6)" rx="2" ry="2" />
|
|
<text x="174.39" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_current_layer4_header (2 samples, 0.01%)</title><rect x="205.4" y="437" width="0.1" height="15.0" fill="rgb(250,59,50)" rx="2" ry="2" />
|
|
<text x="208.36" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (34 samples, 0.17%)</title><rect x="707.3" y="325" width="2.1" height="15.0" fill="rgb(228,99,18)" rx="2" ry="2" />
|
|
<text x="710.34" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[mail.so] (2 samples, 0.01%)</title><rect x="931.4" y="421" width="0.1" height="15.0" fill="rgb(253,129,22)" rx="2" ry="2" />
|
|
<text x="934.39" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (4 samples, 0.02%)</title><rect x="1084.2" y="357" width="0.3" height="15.0" fill="rgb(229,165,19)" rx="2" ry="2" />
|
|
<text x="1087.25" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (16 samples, 0.08%)</title><rect x="1144.6" y="453" width="1.0" height="15.0" fill="rgb(210,151,53)" rx="2" ry="2" />
|
|
<text x="1147.63" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="153.6" y="453" width="0.3" height="15.0" fill="rgb(237,25,26)" rx="2" ry="2" />
|
|
<text x="156.62" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (666 samples, 3.39%)</title><rect x="482.2" y="405" width="39.9" height="15.0" fill="rgb(223,168,48)" rx="2" ry="2" />
|
|
<text x="485.16" y="415.5" >tra..</text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (2 samples, 0.01%)</title><rect x="245.7" y="421" width="0.2" height="15.0" fill="rgb(235,138,32)" rx="2" ry="2" />
|
|
<text x="248.75" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="254.4" y="357" width="0.1" height="15.0" fill="rgb(234,51,30)" rx="2" ry="2" />
|
|
<text x="257.39" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_CreateString (2 samples, 0.01%)</title><rect x="229.7" y="405" width="0.1" height="15.0" fill="rgb(241,11,32)" rx="2" ry="2" />
|
|
<text x="232.72" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (11 samples, 0.06%)</title><rect x="785.2" y="245" width="0.6" height="15.0" fill="rgb(209,35,2)" rx="2" ry="2" />
|
|
<text x="788.18" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (9 samples, 0.05%)</title><rect x="130.8" y="341" width="0.6" height="15.0" fill="rgb(225,73,1)" rx="2" ry="2" />
|
|
<text x="133.81" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="169.3" y="389" width="0.1" height="15.0" fill="rgb(253,10,32)" rx="2" ry="2" />
|
|
<text x="172.29" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="144.9" y="341" width="0.2" height="15.0" fill="rgb(229,168,15)" rx="2" ry="2" />
|
|
<text x="147.86" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_primitive_free (2 samples, 0.01%)</title><rect x="165.6" y="165" width="0.1" height="15.0" fill="rgb(247,200,38)" rx="2" ry="2" />
|
|
<text x="168.56" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (3 samples, 0.02%)</title><rect x="1074.5" y="309" width="0.1" height="15.0" fill="rgb(251,158,19)" rx="2" ry="2" />
|
|
<text x="1077.47" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_app_and_proto_update (34 samples, 0.17%)</title><rect x="705.1" y="405" width="2.0" height="15.0" fill="rgb(210,91,9)" rx="2" ry="2" />
|
|
<text x="708.06" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="169.3" y="341" width="0.1" height="15.0" fill="rgb(231,69,32)" rx="2" ry="2" />
|
|
<text x="172.29" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (3 samples, 0.02%)</title><rect x="705.5" y="309" width="0.2" height="15.0" fill="rgb(206,21,20)" rx="2" ry="2" />
|
|
<text x="708.54" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_get_direct_hit_groups (5 samples, 0.03%)</title><rect x="47.8" y="597" width="0.3" height="15.0" fill="rgb(237,20,48)" rx="2" ry="2" />
|
|
<text x="50.81" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="54.3" y="597" width="0.2" height="15.0" fill="rgb(227,139,6)" rx="2" ry="2" />
|
|
<text x="57.29" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="1189.2" y="421" width="0.5" height="15.0" fill="rgb(234,175,22)" rx="2" ry="2" />
|
|
<text x="1192.16" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (5 samples, 0.03%)</title><rect x="155.0" y="405" width="0.3" height="15.0" fill="rgb(232,219,34)" rx="2" ry="2" />
|
|
<text x="158.00" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_flag (8 samples, 0.04%)</title><rect x="39.1" y="597" width="0.5" height="15.0" fill="rgb(246,146,48)" rx="2" ry="2" />
|
|
<text x="42.11" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (13 samples, 0.07%)</title><rect x="1041.1" y="293" width="0.8" height="15.0" fill="rgb(234,219,50)" rx="2" ry="2" />
|
|
<text x="1044.10" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="1065.3" y="325" width="0.2" height="15.0" fill="rgb(227,191,48)" rx="2" ry="2" />
|
|
<text x="1068.34" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="419.0" y="309" width="0.2" height="15.0" fill="rgb(226,72,36)" rx="2" ry="2" />
|
|
<text x="422.02" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (4 samples, 0.02%)</title><rect x="1037.0" y="261" width="0.2" height="15.0" fill="rgb(238,110,54)" rx="2" ry="2" />
|
|
<text x="1039.96" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (2 samples, 0.01%)</title><rect x="1154.0" y="453" width="0.2" height="15.0" fill="rgb(245,103,10)" rx="2" ry="2" />
|
|
<text x="1157.05" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (20 samples, 0.10%)</title><rect x="702.7" y="421" width="1.2" height="15.0" fill="rgb(232,74,43)" rx="2" ry="2" />
|
|
<text x="705.72" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (31 samples, 0.16%)</title><rect x="221.7" y="325" width="1.9" height="15.0" fill="rgb(237,154,52)" rx="2" ry="2" />
|
|
<text x="224.74" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (120 samples, 0.61%)</title><rect x="207.4" y="453" width="7.2" height="15.0" fill="rgb(223,200,27)" rx="2" ry="2" />
|
|
<text x="210.40" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (3 samples, 0.02%)</title><rect x="113.2" y="405" width="0.2" height="15.0" fill="rgb(240,196,41)" rx="2" ry="2" />
|
|
<text x="116.23" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="428.0" y="325" width="0.4" height="15.0" fill="rgb(252,0,9)" rx="2" ry="2" />
|
|
<text x="430.96" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddStringToObject (10 samples, 0.05%)</title><rect x="186.3" y="421" width="0.6" height="15.0" fill="rgb(236,153,24)" rx="2" ry="2" />
|
|
<text x="189.33" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_numa_page (3 samples, 0.02%)</title><rect x="770.8" y="325" width="0.2" height="15.0" fill="rgb(211,158,45)" rx="2" ry="2" />
|
|
<text x="773.84" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (46 samples, 0.23%)</title><rect x="107.7" y="437" width="2.8" height="15.0" fill="rgb(217,67,3)" rx="2" ry="2" />
|
|
<text x="110.71" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (3 samples, 0.02%)</title><rect x="1141.7" y="501" width="0.2" height="15.0" fill="rgb(239,219,31)" rx="2" ry="2" />
|
|
<text x="1144.75" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (3 samples, 0.02%)</title><rect x="666.6" y="341" width="0.2" height="15.0" fill="rgb(230,149,46)" rx="2" ry="2" />
|
|
<text x="669.65" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (3 samples, 0.02%)</title><rect x="176.4" y="389" width="0.2" height="15.0" fill="rgb(212,128,27)" rx="2" ry="2" />
|
|
<text x="179.43" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (6 samples, 0.03%)</title><rect x="706.5" y="325" width="0.4" height="15.0" fill="rgb(219,56,15)" rx="2" ry="2" />
|
|
<text x="709.50" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (19 samples, 0.10%)</title><rect x="733.0" y="485" width="1.2" height="15.0" fill="rgb(222,223,45)" rx="2" ry="2" />
|
|
<text x="736.03" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (39 samples, 0.20%)</title><rect x="375.6" y="261" width="2.3" height="15.0" fill="rgb(243,151,21)" rx="2" ry="2" />
|
|
<text x="378.57" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_set_stream_opt (3 samples, 0.02%)</title><rect x="1054.4" y="389" width="0.2" height="15.0" fill="rgb(245,87,1)" rx="2" ry="2" />
|
|
<text x="1057.42" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (9 samples, 0.05%)</title><rect x="106.1" y="389" width="0.5" height="15.0" fill="rgb(235,182,2)" rx="2" ry="2" />
|
|
<text x="109.09" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1141.6" y="581" width="0.1" height="15.0" fill="rgb(217,80,32)" rx="2" ry="2" />
|
|
<text x="1144.57" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="249.7" y="277" width="0.1" height="15.0" fill="rgb(248,108,5)" rx="2" ry="2" />
|
|
<text x="252.71" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (8 samples, 0.04%)</title><rect x="254.6" y="581" width="0.5" height="15.0" fill="rgb(254,218,42)" rx="2" ry="2" />
|
|
<text x="257.63" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInflate2::fn_iDecode (3 samples, 0.02%)</title><rect x="408.3" y="309" width="0.2" height="15.0" fill="rgb(227,10,38)" rx="2" ry="2" />
|
|
<text x="411.33" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mpls_uc_entry (69 samples, 0.35%)</title><rect x="1096.5" y="565" width="4.1" height="15.0" fill="rgb(242,44,35)" rx="2" ry="2" />
|
|
<text x="1099.49" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (22 samples, 0.11%)</title><rect x="1184.0" y="485" width="1.3" height="15.0" fill="rgb(227,127,43)" rx="2" ry="2" />
|
|
<text x="1187.00" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (11 samples, 0.06%)</title><rect x="169.5" y="341" width="0.6" height="15.0" fill="rgb(235,205,31)" rx="2" ry="2" />
|
|
<text x="172.47" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (7 samples, 0.04%)</title><rect x="100.3" y="629" width="0.4" height="15.0" fill="rgb(234,178,2)" rx="2" ry="2" />
|
|
<text x="103.27" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (5 samples, 0.03%)</title><rect x="788.1" y="309" width="0.3" height="15.0" fill="rgb(232,166,15)" rx="2" ry="2" />
|
|
<text x="791.12" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (4 samples, 0.02%)</title><rect x="1188.2" y="421" width="0.2" height="15.0" fill="rgb(210,69,8)" rx="2" ry="2" />
|
|
<text x="1191.20" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_to_UTF8 (7 samples, 0.04%)</title><rect x="163.2" y="245" width="0.4" height="15.0" fill="rgb(244,215,5)" rx="2" ry="2" />
|
|
<text x="166.16" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="377.5" y="197" width="0.1" height="15.0" fill="rgb(247,174,16)" rx="2" ry="2" />
|
|
<text x="380.49" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (4 samples, 0.02%)</title><rect x="430.4" y="389" width="0.3" height="15.0" fill="rgb(254,212,52)" rx="2" ry="2" />
|
|
<text x="433.42" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (8 samples, 0.04%)</title><rect x="577.5" y="373" width="0.5" height="15.0" fill="rgb(230,147,49)" rx="2" ry="2" />
|
|
<text x="580.52" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_stream_scan (10 samples, 0.05%)</title><rect x="402.2" y="213" width="0.6" height="15.0" fill="rgb(240,30,45)" rx="2" ry="2" />
|
|
<text x="405.21" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_calloc (2 samples, 0.01%)</title><rect x="911.9" y="517" width="0.1" height="15.0" fill="rgb(210,191,1)" rx="2" ry="2" />
|
|
<text x="914.88" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="556.1" y="357" width="0.2" height="15.0" fill="rgb(222,42,6)" rx="2" ry="2" />
|
|
<text x="559.10" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="110.9" y="405" width="0.2" height="15.0" fill="rgb(230,95,48)" rx="2" ry="2" />
|
|
<text x="113.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (35 samples, 0.18%)</title><rect x="221.6" y="373" width="2.1" height="15.0" fill="rgb(248,171,18)" rx="2" ry="2" />
|
|
<text x="224.56" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (2 samples, 0.01%)</title><rect x="145.9" y="421" width="0.1" height="15.0" fill="rgb(251,185,31)" rx="2" ry="2" />
|
|
<text x="148.88" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="155.5" y="357" width="0.2" height="15.0" fill="rgb(222,49,2)" rx="2" ry="2" />
|
|
<text x="158.54" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (552 samples, 2.81%)</title><rect x="1048.4" y="485" width="33.1" height="15.0" fill="rgb(227,124,12)" rx="2" ry="2" />
|
|
<text x="1051.42" y="495.5" >pl..</text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (9 samples, 0.05%)</title><rect x="153.9" y="357" width="0.5" height="15.0" fill="rgb(215,30,12)" rx="2" ry="2" />
|
|
<text x="156.86" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (2 samples, 0.01%)</title><rect x="1039.2" y="277" width="0.1" height="15.0" fill="rgb(218,200,30)" rx="2" ry="2" />
|
|
<text x="1042.18" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (183 samples, 0.93%)</title><rect x="781.6" y="389" width="11.0" height="15.0" fill="rgb(217,95,53)" rx="2" ry="2" />
|
|
<text x="784.64" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (106 samples, 0.54%)</title><rect x="880.7" y="453" width="6.3" height="15.0" fill="rgb(221,51,48)" rx="2" ry="2" />
|
|
<text x="883.67" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (10 samples, 0.05%)</title><rect x="1100.0" y="453" width="0.6" height="15.0" fill="rgb(237,167,51)" rx="2" ry="2" />
|
|
<text x="1102.97" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="186.7" y="357" width="0.1" height="15.0" fill="rgb(223,192,31)" rx="2" ry="2" />
|
|
<text x="189.69" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (4 samples, 0.02%)</title><rect x="726.2" y="261" width="0.2" height="15.0" fill="rgb(219,143,35)" rx="2" ry="2" />
|
|
<text x="729.19" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509V3_EXT_d2i (11 samples, 0.06%)</title><rect x="169.5" y="421" width="0.6" height="15.0" fill="rgb(227,100,22)" rx="2" ry="2" />
|
|
<text x="172.47" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (10 samples, 0.05%)</title><rect x="153.9" y="437" width="0.6" height="15.0" fill="rgb(224,132,51)" rx="2" ry="2" />
|
|
<text x="156.86" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (2 samples, 0.01%)</title><rect x="881.0" y="373" width="0.1" height="15.0" fill="rgb(225,172,13)" rx="2" ry="2" />
|
|
<text x="883.97" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeHttpMethod (4 samples, 0.02%)</title><rect x="421.8" y="405" width="0.2" height="15.0" fill="rgb(253,217,5)" rx="2" ry="2" />
|
|
<text x="424.78" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="249.7" y="261" width="0.1" height="15.0" fill="rgb(214,165,14)" rx="2" ry="2" />
|
|
<text x="252.71" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (3 samples, 0.02%)</title><rect x="214.4" y="389" width="0.2" height="15.0" fill="rgb(239,180,32)" rx="2" ry="2" />
|
|
<text x="217.42" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (3 samples, 0.02%)</title><rect x="1084.2" y="293" width="0.2" height="15.0" fill="rgb(229,204,0)" rx="2" ry="2" />
|
|
<text x="1087.25" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (3 samples, 0.02%)</title><rect x="909.3" y="293" width="0.2" height="15.0" fill="rgb(207,182,28)" rx="2" ry="2" />
|
|
<text x="912.30" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (7 samples, 0.04%)</title><rect x="1100.2" y="389" width="0.4" height="15.0" fill="rgb(229,173,24)" rx="2" ry="2" />
|
|
<text x="1103.15" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.02%)</title><rect x="927.8" y="325" width="0.2" height="15.0" fill="rgb(211,167,47)" rx="2" ry="2" />
|
|
<text x="930.78" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_app_and_proto_update (5 samples, 0.03%)</title><rect x="352.9" y="405" width="0.3" height="15.0" fill="rgb(237,132,37)" rx="2" ry="2" />
|
|
<text x="355.94" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="222.3" y="229" width="0.3" height="15.0" fill="rgb(238,20,0)" rx="2" ry="2" />
|
|
<text x="225.28" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (26 samples, 0.13%)</title><rect x="144.8" y="565" width="1.6" height="15.0" fill="rgb(228,44,4)" rx="2" ry="2" />
|
|
<text x="147.80" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (26 samples, 0.13%)</title><rect x="386.1" y="341" width="1.6" height="15.0" fill="rgb(209,46,7)" rx="2" ry="2" />
|
|
<text x="389.13" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="254.4" y="565" width="0.1" height="15.0" fill="rgb(241,152,6)" rx="2" ry="2" />
|
|
<text x="257.39" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (43 samples, 0.22%)</title><rect x="246.1" y="469" width="2.6" height="15.0" fill="rgb(205,170,49)" rx="2" ry="2" />
|
|
<text x="249.11" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (5 samples, 0.03%)</title><rect x="229.8" y="389" width="0.3" height="15.0" fill="rgb(208,151,20)" rx="2" ry="2" />
|
|
<text x="232.84" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="929.6" y="229" width="0.2" height="15.0" fill="rgb(214,195,2)" rx="2" ry="2" />
|
|
<text x="932.58" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (2 samples, 0.01%)</title><rect x="1031.4" y="469" width="0.1" height="15.0" fill="rgb(238,5,36)" rx="2" ry="2" />
|
|
<text x="1034.37" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1141.9" y="357" width="0.3" height="15.0" fill="rgb(213,180,39)" rx="2" ry="2" />
|
|
<text x="1144.93" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ftp.so] (3 samples, 0.02%)</title><rect x="435.5" y="405" width="0.1" height="15.0" fill="rgb(206,49,13)" rx="2" ry="2" />
|
|
<text x="438.46" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (33 samples, 0.17%)</title><rect x="214.6" y="469" width="2.0" height="15.0" fill="rgb(219,185,36)" rx="2" ry="2" />
|
|
<text x="217.60" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (3 samples, 0.02%)</title><rect x="1189.7" y="389" width="0.2" height="15.0" fill="rgb(241,184,5)" rx="2" ry="2" />
|
|
<text x="1192.70" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (3 samples, 0.02%)</title><rect x="209.3" y="357" width="0.2" height="15.0" fill="rgb(209,106,6)" rx="2" ry="2" />
|
|
<text x="212.32" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (13,772 samples, 70.05%)</title><rect x="276.5" y="581" width="826.5" height="15.0" fill="rgb(210,216,29)" rx="2" ry="2" />
|
|
<text x="279.48" y="591.5" >eth_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="109.3" y="309" width="0.2" height="15.0" fill="rgb(240,228,46)" rx="2" ry="2" />
|
|
<text x="112.33" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stellar_on_sapp_defer_entry (17 samples, 0.09%)</title><rect x="1017.0" y="469" width="1.1" height="15.0" fill="rgb(239,104,24)" rx="2" ry="2" />
|
|
<text x="1020.03" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="174.9" y="373" width="0.1" height="15.0" fill="rgb(249,15,38)" rx="2" ry="2" />
|
|
<text x="177.87" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1184.1" y="293" width="0.1" height="15.0" fill="rgb(242,97,34)" rx="2" ry="2" />
|
|
<text x="1187.06" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (11 samples, 0.06%)</title><rect x="368.7" y="421" width="0.7" height="15.0" fill="rgb(213,8,46)" rx="2" ry="2" />
|
|
<text x="371.72" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (26 samples, 0.13%)</title><rect x="595.6" y="277" width="1.5" height="15.0" fill="rgb(222,130,2)" rx="2" ry="2" />
|
|
<text x="598.59" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell (4 samples, 0.02%)</title><rect x="479.1" y="341" width="0.2" height="15.0" fill="rgb(226,57,32)" rx="2" ry="2" />
|
|
<text x="482.10" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (190 samples, 0.97%)</title><rect x="132.8" y="549" width="11.4" height="15.0" fill="rgb(209,109,8)" rx="2" ry="2" />
|
|
<text x="135.80" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (4 samples, 0.02%)</title><rect x="1171.7" y="501" width="0.2" height="15.0" fill="rgb(249,220,37)" rx="2" ry="2" />
|
|
<text x="1174.69" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (5 samples, 0.03%)</title><rect x="224.6" y="405" width="0.3" height="15.0" fill="rgb(238,175,33)" rx="2" ry="2" />
|
|
<text x="227.56" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stellar_on_sapp_ip4_entry (4 samples, 0.02%)</title><rect x="892.9" y="517" width="0.2" height="15.0" fill="rgb(213,17,23)" rx="2" ry="2" />
|
|
<text x="895.85" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_init (2 samples, 0.01%)</title><rect x="657.9" y="373" width="0.2" height="15.0" fill="rgb(248,94,8)" rx="2" ry="2" />
|
|
<text x="660.95" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="254.4" y="405" width="0.1" height="15.0" fill="rgb(244,12,46)" rx="2" ry="2" />
|
|
<text x="257.39" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1184.4" y="325" width="0.2" height="15.0" fill="rgb(246,47,43)" rx="2" ry="2" />
|
|
<text x="1187.42" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (6 samples, 0.03%)</title><rect x="1141.0" y="565" width="0.4" height="15.0" fill="rgb(246,154,4)" rx="2" ry="2" />
|
|
<text x="1144.03" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (31 samples, 0.16%)</title><rect x="848.3" y="309" width="1.8" height="15.0" fill="rgb(207,57,10)" rx="2" ry="2" />
|
|
<text x="851.26" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (16 samples, 0.08%)</title><rect x="181.0" y="357" width="1.0" height="15.0" fill="rgb(223,99,20)" rx="2" ry="2" />
|
|
<text x="184.05" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (4 samples, 0.02%)</title><rect x="211.7" y="389" width="0.2" height="15.0" fill="rgb(242,111,44)" rx="2" ry="2" />
|
|
<text x="214.66" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (5 samples, 0.03%)</title><rect x="1186.0" y="341" width="0.3" height="15.0" fill="rgb(249,0,23)" rx="2" ry="2" />
|
|
<text x="1188.98" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>if_need_to_decay (46 samples, 0.23%)</title><rect x="805.8" y="293" width="2.8" height="15.0" fill="rgb(240,98,13)" rx="2" ry="2" />
|
|
<text x="808.83" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime_2 (28 samples, 0.14%)</title><rect x="141.7" y="405" width="1.7" height="15.0" fill="rgb(229,30,28)" rx="2" ry="2" />
|
|
<text x="144.68" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="245.6" y="421" width="0.1" height="15.0" fill="rgb(221,212,6)" rx="2" ry="2" />
|
|
<text x="248.63" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1147.6" y="357" width="0.3" height="15.0" fill="rgb(236,215,25)" rx="2" ry="2" />
|
|
<text x="1150.63" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (2 samples, 0.01%)</title><rect x="254.7" y="341" width="0.1" height="15.0" fill="rgb(216,76,48)" rx="2" ry="2" />
|
|
<text x="257.69" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_entry_dying (4 samples, 0.02%)</title><rect x="490.2" y="277" width="0.2" height="15.0" fill="rgb(211,198,49)" rx="2" ry="2" />
|
|
<text x="493.20" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="159.0" y="277" width="0.1" height="15.0" fill="rgb(244,210,45)" rx="2" ry="2" />
|
|
<text x="162.02" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (5 samples, 0.03%)</title><rect x="1142.2" y="469" width="0.3" height="15.0" fill="rgb(220,100,6)" rx="2" ry="2" />
|
|
<text x="1145.17" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (15 samples, 0.08%)</title><rect x="919.6" y="261" width="0.9" height="15.0" fill="rgb(230,189,3)" rx="2" ry="2" />
|
|
<text x="922.62" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (4 samples, 0.02%)</title><rect x="929.0" y="213" width="0.2" height="15.0" fill="rgb(224,135,41)" rx="2" ry="2" />
|
|
<text x="931.98" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (5 samples, 0.03%)</title><rect x="1144.3" y="501" width="0.3" height="15.0" fill="rgb(217,112,17)" rx="2" ry="2" />
|
|
<text x="1147.33" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_group (7 samples, 0.04%)</title><rect x="555.6" y="357" width="0.4" height="15.0" fill="rgb(225,213,34)" rx="2" ry="2" />
|
|
<text x="558.56" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="425.6" y="437" width="0.2" height="15.0" fill="rgb(247,151,4)" rx="2" ry="2" />
|
|
<text x="428.62" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_port (2 samples, 0.01%)</title><rect x="743.6" y="453" width="0.1" height="15.0" fill="rgb(211,17,34)" rx="2" ry="2" />
|
|
<text x="746.59" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="157.5" y="245" width="0.3" height="15.0" fill="rgb(222,199,7)" rx="2" ry="2" />
|
|
<text x="160.52" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get0_current_payload (2 samples, 0.01%)</title><rect x="152.3" y="421" width="0.1" height="15.0" fill="rgb(210,221,20)" rx="2" ry="2" />
|
|
<text x="155.30" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (6 samples, 0.03%)</title><rect x="223.7" y="373" width="0.3" height="15.0" fill="rgb(251,113,16)" rx="2" ry="2" />
|
|
<text x="226.66" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_get_metadata (3 samples, 0.02%)</title><rect x="1107.1" y="549" width="0.1" height="15.0" fill="rgb(212,4,21)" rx="2" ry="2" />
|
|
<text x="1110.06" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (9 samples, 0.05%)</title><rect x="153.9" y="405" width="0.5" height="15.0" fill="rgb(238,75,53)" rx="2" ry="2" />
|
|
<text x="156.86" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="253.9" y="453" width="0.1" height="15.0" fill="rgb(225,177,7)" rx="2" ry="2" />
|
|
<text x="256.85" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="254.0" y="533" width="0.3" height="15.0" fill="rgb(246,107,31)" rx="2" ry="2" />
|
|
<text x="257.03" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (5 samples, 0.03%)</title><rect x="228.5" y="325" width="0.3" height="15.0" fill="rgb(247,156,14)" rx="2" ry="2" />
|
|
<text x="231.52" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="412.8" y="245" width="0.4" height="15.0" fill="rgb(253,33,31)" rx="2" ry="2" />
|
|
<text x="415.84" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (2 samples, 0.01%)</title><rect x="920.4" y="245" width="0.1" height="15.0" fill="rgb(235,208,18)" rx="2" ry="2" />
|
|
<text x="923.40" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="1148.2" y="597" width="0.1" height="15.0" fill="rgb(234,80,44)" rx="2" ry="2" />
|
|
<text x="1151.17" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="145.4" y="325" width="0.1" height="15.0" fill="rgb(221,18,15)" rx="2" ry="2" />
|
|
<text x="148.40" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_mult64to128 (2 samples, 0.01%)</title><rect x="961.8" y="197" width="0.1" height="15.0" fill="rgb(241,56,15)" rx="2" ry="2" />
|
|
<text x="964.75" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (48 samples, 0.24%)</title><rect x="580.0" y="325" width="2.9" height="15.0" fill="rgb(214,99,42)" rx="2" ry="2" />
|
|
<text x="582.98" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_data_construct (2 samples, 0.01%)</title><rect x="1003.5" y="261" width="0.1" height="15.0" fill="rgb(206,119,45)" rx="2" ry="2" />
|
|
<text x="1006.47" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findLineEnd (6 samples, 0.03%)</title><rect x="418.4" y="373" width="0.3" height="15.0" fill="rgb(236,67,2)" rx="2" ry="2" />
|
|
<text x="421.36" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (4 samples, 0.02%)</title><rect x="221.2" y="309" width="0.2" height="15.0" fill="rgb(208,163,35)" rx="2" ry="2" />
|
|
<text x="224.20" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="34.7" y="597" width="0.2" height="15.0" fill="rgb(217,113,10)" rx="2" ry="2" />
|
|
<text x="37.73" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (32 samples, 0.16%)</title><rect x="625.4" y="309" width="1.9" height="15.0" fill="rgb(233,183,54)" rx="2" ry="2" />
|
|
<text x="628.42" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (156 samples, 0.79%)</title><rect x="243.8" y="597" width="9.3" height="15.0" fill="rgb(228,2,25)" rx="2" ry="2" />
|
|
<text x="246.77" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (5 samples, 0.03%)</title><rect x="1160.5" y="533" width="0.3" height="15.0" fill="rgb(210,208,10)" rx="2" ry="2" />
|
|
<text x="1163.53" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (13 samples, 0.07%)</title><rect x="146.5" y="437" width="0.8" height="15.0" fill="rgb(222,60,43)" rx="2" ry="2" />
|
|
<text x="149.54" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (3 samples, 0.02%)</title><rect x="1184.0" y="421" width="0.2" height="15.0" fill="rgb(206,200,23)" rx="2" ry="2" />
|
|
<text x="1187.00" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (12 samples, 0.06%)</title><rect x="144.8" y="469" width="0.7" height="15.0" fill="rgb(254,221,1)" rx="2" ry="2" />
|
|
<text x="147.80" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_create_pool (12 samples, 0.06%)</title><rect x="1167.3" y="549" width="0.7" height="15.0" fill="rgb(239,80,34)" rx="2" ry="2" />
|
|
<text x="1170.25" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_min_count (4 samples, 0.02%)</title><rect x="1039.3" y="293" width="0.2" height="15.0" fill="rgb(223,141,12)" rx="2" ry="2" />
|
|
<text x="1042.30" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (6 samples, 0.03%)</title><rect x="1177.1" y="517" width="0.4" height="15.0" fill="rgb(250,212,29)" rx="2" ry="2" />
|
|
<text x="1180.10" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="918.2" y="197" width="0.1" height="15.0" fill="rgb(215,212,37)" rx="2" ry="2" />
|
|
<text x="921.18" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="254.0" y="469" width="0.3" height="15.0" fill="rgb(209,166,47)" rx="2" ry="2" />
|
|
<text x="257.03" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="186.3" y="389" width="0.3" height="15.0" fill="rgb(232,6,5)" rx="2" ry="2" />
|
|
<text x="189.33" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (162 samples, 0.82%)</title><rect x="712.9" y="325" width="9.7" height="15.0" fill="rgb(251,204,14)" rx="2" ry="2" />
|
|
<text x="715.86" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (9 samples, 0.05%)</title><rect x="1056.9" y="373" width="0.5" height="15.0" fill="rgb(237,142,49)" rx="2" ry="2" />
|
|
<text x="1059.88" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="360.6" y="485" width="0.1" height="15.0" fill="rgb(228,148,0)" rx="2" ry="2" />
|
|
<text x="363.56" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (9 samples, 0.05%)</title><rect x="562.1" y="421" width="0.5" height="15.0" fill="rgb(242,146,26)" rx="2" ry="2" />
|
|
<text x="565.10" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="227.7" y="213" width="0.2" height="15.0" fill="rgb(205,93,11)" rx="2" ry="2" />
|
|
<text x="230.68" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="221.9" y="213" width="0.2" height="15.0" fill="rgb(234,107,18)" rx="2" ry="2" />
|
|
<text x="224.86" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (194 samples, 0.99%)</title><rect x="232.1" y="565" width="11.7" height="15.0" fill="rgb(215,224,8)" rx="2" ry="2" />
|
|
<text x="235.12" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (11 samples, 0.06%)</title><rect x="1043.4" y="325" width="0.6" height="15.0" fill="rgb(246,61,12)" rx="2" ry="2" />
|
|
<text x="1046.38" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="227.7" y="197" width="0.2" height="15.0" fill="rgb(240,123,50)" rx="2" ry="2" />
|
|
<text x="230.68" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1166.6" y="533" width="0.2" height="15.0" fill="rgb(226,60,24)" rx="2" ry="2" />
|
|
<text x="1169.59" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="933.7" y="389" width="0.1" height="15.0" fill="rgb(211,0,24)" rx="2" ry="2" />
|
|
<text x="936.67" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="34.1" y="501" width="0.3" height="15.0" fill="rgb(224,171,47)" rx="2" ry="2" />
|
|
<text x="37.13" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="1059.2" y="389" width="0.1" height="15.0" fill="rgb(206,178,0)" rx="2" ry="2" />
|
|
<text x="1062.22" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (5 samples, 0.03%)</title><rect x="105.7" y="373" width="0.3" height="15.0" fill="rgb(218,124,16)" rx="2" ry="2" />
|
|
<text x="108.67" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="207.1" y="421" width="0.2" height="15.0" fill="rgb(243,131,13)" rx="2" ry="2" />
|
|
<text x="210.10" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="184.5" y="389" width="0.3" height="15.0" fill="rgb(254,110,2)" rx="2" ry="2" />
|
|
<text x="187.53" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (3 samples, 0.02%)</title><rect x="189.5" y="405" width="0.1" height="15.0" fill="rgb(227,153,47)" rx="2" ry="2" />
|
|
<text x="192.45" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_ip_address_set (12 samples, 0.06%)</title><rect x="988.8" y="405" width="0.7" height="15.0" fill="rgb(247,88,51)" rx="2" ry="2" />
|
|
<text x="991.82" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="34.0" y="549" width="0.4" height="15.0" fill="rgb(219,186,16)" rx="2" ry="2" />
|
|
<text x="37.01" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (15 samples, 0.08%)</title><rect x="1075.0" y="277" width="0.9" height="15.0" fill="rgb(225,70,12)" rx="2" ry="2" />
|
|
<text x="1078.01" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (5 samples, 0.03%)</title><rect x="1159.2" y="501" width="0.3" height="15.0" fill="rgb(228,158,42)" rx="2" ry="2" />
|
|
<text x="1162.21" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_timeout (3 samples, 0.02%)</title><rect x="698.5" y="501" width="0.2" height="15.0" fill="rgb(253,180,34)" rx="2" ry="2" />
|
|
<text x="701.52" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (2 samples, 0.01%)</title><rect x="582.6" y="229" width="0.1" height="15.0" fill="rgb(235,110,44)" rx="2" ry="2" />
|
|
<text x="585.62" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (7 samples, 0.04%)</title><rect x="783.6" y="261" width="0.4" height="15.0" fill="rgb(205,184,39)" rx="2" ry="2" />
|
|
<text x="786.62" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (17 samples, 0.09%)</title><rect x="1178.2" y="485" width="1.1" height="15.0" fill="rgb(220,222,47)" rx="2" ry="2" />
|
|
<text x="1181.24" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1097.3" y="437" width="0.2" height="15.0" fill="rgb(206,91,26)" rx="2" ry="2" />
|
|
<text x="1100.33" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="19.7" y="581" width="0.2" height="15.0" fill="rgb(253,198,34)" rx="2" ry="2" />
|
|
<text x="22.72" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_min_count (18 samples, 0.09%)</title><rect x="615.9" y="293" width="1.1" height="15.0" fill="rgb(225,171,25)" rx="2" ry="2" />
|
|
<text x="618.93" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (8 samples, 0.04%)</title><rect x="958.0" y="245" width="0.5" height="15.0" fill="rgb(216,217,53)" rx="2" ry="2" />
|
|
<text x="960.97" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="1141.4" y="629" width="0.1" height="15.0" fill="rgb(234,57,47)" rx="2" ry="2" />
|
|
<text x="1144.39" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[glimpse_detector.so] (2 samples, 0.01%)</title><rect x="477.8" y="421" width="0.1" height="15.0" fill="rgb(209,81,19)" rx="2" ry="2" />
|
|
<text x="480.77" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime_2 (27 samples, 0.14%)</title><rect x="240.8" y="421" width="1.6" height="15.0" fill="rgb(235,84,21)" rx="2" ry="2" />
|
|
<text x="243.83" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1142.7" y="485" width="0.2" height="15.0" fill="rgb(241,142,44)" rx="2" ry="2" />
|
|
<text x="1145.71" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="255.1" y="453" width="0.1" height="15.0" fill="rgb(243,62,42)" rx="2" ry="2" />
|
|
<text x="258.11" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (203 samples, 1.03%)</title><rect x="1032.5" y="453" width="12.2" height="15.0" fill="rgb(243,160,43)" rx="2" ry="2" />
|
|
<text x="1035.51" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="153.9" y="309" width="0.5" height="15.0" fill="rgb(228,135,17)" rx="2" ry="2" />
|
|
<text x="156.92" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="349.2" y="469" width="0.1" height="15.0" fill="rgb(232,216,19)" rx="2" ry="2" />
|
|
<text x="352.22" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (7 samples, 0.04%)</title><rect x="349.5" y="469" width="0.4" height="15.0" fill="rgb(224,215,46)" rx="2" ry="2" />
|
|
<text x="352.46" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (11 samples, 0.06%)</title><rect x="789.2" y="309" width="0.7" height="15.0" fill="rgb(229,190,28)" rx="2" ry="2" />
|
|
<text x="792.20" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_new (5 samples, 0.03%)</title><rect x="160.9" y="373" width="0.3" height="15.0" fill="rgb(249,199,34)" rx="2" ry="2" />
|
|
<text x="163.88" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (12 samples, 0.06%)</title><rect x="1155.4" y="453" width="0.8" height="15.0" fill="rgb(216,89,44)" rx="2" ry="2" />
|
|
<text x="1158.43" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_min_count (3 samples, 0.02%)</title><rect x="354.4" y="293" width="0.2" height="15.0" fill="rgb(214,15,27)" rx="2" ry="2" />
|
|
<text x="357.44" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (8 samples, 0.04%)</title><rect x="1076.5" y="309" width="0.5" height="15.0" fill="rgb(232,168,26)" rx="2" ry="2" />
|
|
<text x="1079.51" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="523.7" y="405" width="0.2" height="15.0" fill="rgb(210,212,37)" rx="2" ry="2" />
|
|
<text x="526.69" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>DNS_UDP_ENTRY (12 samples, 0.06%)</title><rect x="1048.7" y="469" width="0.7" height="15.0" fill="rgb(224,216,19)" rx="2" ry="2" />
|
|
<text x="1051.66" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (3 samples, 0.02%)</title><rect x="192.9" y="421" width="0.2" height="15.0" fill="rgb(208,18,20)" rx="2" ry="2" />
|
|
<text x="195.87" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (11 samples, 0.06%)</title><rect x="1145.9" y="501" width="0.6" height="15.0" fill="rgb(222,159,20)" rx="2" ry="2" />
|
|
<text x="1148.89" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (2 samples, 0.01%)</title><rect x="1189.9" y="629" width="0.1" height="15.0" fill="rgb(221,15,8)" rx="2" ry="2" />
|
|
<text x="1192.88" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (3 samples, 0.02%)</title><rect x="105.7" y="213" width="0.1" height="15.0" fill="rgb(205,204,42)" rx="2" ry="2" />
|
|
<text x="108.67" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ja3_md5sum (5 samples, 0.03%)</title><rect x="254.8" y="453" width="0.3" height="15.0" fill="rgb(252,5,28)" rx="2" ry="2" />
|
|
<text x="257.81" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>identify_gtp (2 samples, 0.01%)</title><rect x="678.1" y="517" width="0.1" height="15.0" fill="rgb(240,190,12)" rx="2" ry="2" />
|
|
<text x="681.11" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="539.5" y="453" width="0.1" height="15.0" fill="rgb(247,196,41)" rx="2" ry="2" />
|
|
<text x="542.47" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (190 samples, 0.97%)</title><rect x="132.8" y="453" width="11.4" height="15.0" fill="rgb(250,26,11)" rx="2" ry="2" />
|
|
<text x="135.80" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (27 samples, 0.14%)</title><rect x="1097.3" y="485" width="1.6" height="15.0" fill="rgb(211,183,5)" rx="2" ry="2" />
|
|
<text x="1100.27" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,640 samples, 8.34%)</title><rect x="338.6" y="533" width="98.4" height="15.0" fill="rgb(241,20,37)" rx="2" ry="2" />
|
|
<text x="341.59" y="543.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="384.0" y="181" width="0.1" height="15.0" fill="rgb(207,83,42)" rx="2" ry="2" />
|
|
<text x="386.97" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (5 samples, 0.03%)</title><rect x="105.7" y="389" width="0.3" height="15.0" fill="rgb(228,42,13)" rx="2" ry="2" />
|
|
<text x="108.67" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (3 samples, 0.02%)</title><rect x="585.9" y="357" width="0.2" height="15.0" fill="rgb(224,187,29)" rx="2" ry="2" />
|
|
<text x="588.93" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpLinkNode (8 samples, 0.04%)</title><rect x="422.9" y="421" width="0.4" height="15.0" fill="rgb(219,65,34)" rx="2" ry="2" />
|
|
<text x="425.86" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (11 samples, 0.06%)</title><rect x="374.0" y="277" width="0.7" height="15.0" fill="rgb(245,11,39)" rx="2" ry="2" />
|
|
<text x="377.00" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (13 samples, 0.07%)</title><rect x="1146.5" y="581" width="0.8" height="15.0" fill="rgb(244,163,3)" rx="2" ry="2" />
|
|
<text x="1149.55" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.02%)</title><rect x="1095.0" y="501" width="0.2" height="15.0" fill="rgb(241,83,48)" rx="2" ry="2" />
|
|
<text x="1097.99" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (4 samples, 0.02%)</title><rect x="354.6" y="293" width="0.3" height="15.0" fill="rgb(223,14,41)" rx="2" ry="2" />
|
|
<text x="357.62" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (22 samples, 0.11%)</title><rect x="256.0" y="629" width="1.3" height="15.0" fill="rgb(227,165,36)" rx="2" ry="2" />
|
|
<text x="258.95" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (4 samples, 0.02%)</title><rect x="1033.8" y="389" width="0.2" height="15.0" fill="rgb(206,126,33)" rx="2" ry="2" />
|
|
<text x="1036.77" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (2 samples, 0.01%)</title><rect x="1003.3" y="261" width="0.1" height="15.0" fill="rgb(217,211,29)" rx="2" ry="2" />
|
|
<text x="1006.29" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (23 samples, 0.12%)</title><rect x="665.7" y="485" width="1.4" height="15.0" fill="rgb(218,61,46)" rx="2" ry="2" />
|
|
<text x="668.75" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (2 samples, 0.01%)</title><rect x="1086.8" y="405" width="0.1" height="15.0" fill="rgb(233,154,23)" rx="2" ry="2" />
|
|
<text x="1089.77" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="181" width="0.3" height="15.0" fill="rgb(229,16,3)" rx="2" ry="2" />
|
|
<text x="1146.85" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (3 samples, 0.02%)</title><rect x="1188.3" y="405" width="0.1" height="15.0" fill="rgb(217,112,49)" rx="2" ry="2" />
|
|
<text x="1191.26" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (16 samples, 0.08%)</title><rect x="1141.7" y="581" width="1.0" height="15.0" fill="rgb(219,158,45)" rx="2" ry="2" />
|
|
<text x="1144.75" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (4 samples, 0.02%)</title><rect x="223.8" y="341" width="0.2" height="15.0" fill="rgb(249,120,0)" rx="2" ry="2" />
|
|
<text x="226.78" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (5 samples, 0.03%)</title><rect x="113.4" y="405" width="0.3" height="15.0" fill="rgb(236,78,33)" rx="2" ry="2" />
|
|
<text x="116.41" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (4 samples, 0.02%)</title><rect x="107.3" y="309" width="0.3" height="15.0" fill="rgb(226,112,21)" rx="2" ry="2" />
|
|
<text x="110.35" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.02%)</title><rect x="921.0" y="341" width="0.2" height="15.0" fill="rgb(237,31,22)" rx="2" ry="2" />
|
|
<text x="924.00" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get0_current_payload@plt (2 samples, 0.01%)</title><rect x="242.9" y="437" width="0.1" height="15.0" fill="rgb(221,110,8)" rx="2" ry="2" />
|
|
<text x="245.93" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (585 samples, 2.98%)</title><rect x="1046.7" y="517" width="35.1" height="15.0" fill="rgb(244,51,36)" rx="2" ry="2" />
|
|
<text x="1049.68" y="527.5" >st..</text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (3 samples, 0.02%)</title><rect x="788.2" y="293" width="0.2" height="15.0" fill="rgb(247,15,43)" rx="2" ry="2" />
|
|
<text x="791.24" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="989.1" y="341" width="0.1" height="15.0" fill="rgb(219,115,34)" rx="2" ry="2" />
|
|
<text x="992.12" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (2 samples, 0.01%)</title><rect x="1141.8" y="453" width="0.1" height="15.0" fill="rgb(237,15,50)" rx="2" ry="2" />
|
|
<text x="1144.81" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_query_one (4 samples, 0.02%)</title><rect x="788.4" y="325" width="0.3" height="15.0" fill="rgb(232,56,23)" rx="2" ry="2" />
|
|
<text x="791.42" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (4 samples, 0.02%)</title><rect x="227.7" y="373" width="0.2" height="15.0" fill="rgb(236,191,33)" rx="2" ry="2" />
|
|
<text x="230.68" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_cstring_value (35 samples, 0.18%)</title><rect x="180.0" y="405" width="2.1" height="15.0" fill="rgb(209,95,2)" rx="2" ry="2" />
|
|
<text x="182.97" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (18 samples, 0.09%)</title><rect x="917.8" y="277" width="1.1" height="15.0" fill="rgb(221,223,18)" rx="2" ry="2" />
|
|
<text x="920.82" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (15 samples, 0.08%)</title><rect x="910.7" y="389" width="0.9" height="15.0" fill="rgb(216,170,20)" rx="2" ry="2" />
|
|
<text x="913.68" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="374.8" y="261" width="0.1" height="15.0" fill="rgb(217,112,45)" rx="2" ry="2" />
|
|
<text x="377.79" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="219.0" y="405" width="0.1" height="15.0" fill="rgb(250,7,17)" rx="2" ry="2" />
|
|
<text x="221.98" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (29 samples, 0.15%)</title><rect x="1097.3" y="501" width="1.7" height="15.0" fill="rgb(215,123,28)" rx="2" ry="2" />
|
|
<text x="1100.27" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="413.4" y="229" width="0.3" height="15.0" fill="rgb(232,12,1)" rx="2" ry="2" />
|
|
<text x="416.44" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_64bits_reset_withSeed (2 samples, 0.01%)</title><rect x="1075.9" y="293" width="0.1" height="15.0" fill="rgb(230,141,35)" rx="2" ry="2" />
|
|
<text x="1078.91" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2,174 samples, 11.06%)</title><rect x="745.8" y="453" width="130.4" height="15.0" fill="rgb(252,168,51)" rx="2" ry="2" />
|
|
<text x="748.75" y="463.5" >[stellar_on_sapp..</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (5 samples, 0.03%)</title><rect x="1144.3" y="469" width="0.3" height="15.0" fill="rgb(214,222,43)" rx="2" ry="2" />
|
|
<text x="1147.33" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_0to16_128b (10 samples, 0.05%)</title><rect x="724.4" y="261" width="0.6" height="15.0" fill="rgb(252,100,9)" rx="2" ry="2" />
|
|
<text x="727.39" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_xorshift64 (6 samples, 0.03%)</title><rect x="847.8" y="229" width="0.4" height="15.0" fill="rgb(241,19,22)" rx="2" ry="2" />
|
|
<text x="850.84" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (45 samples, 0.23%)</title><rect x="216.6" y="453" width="2.7" height="15.0" fill="rgb(232,188,36)" rx="2" ry="2" />
|
|
<text x="219.58" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (37 samples, 0.19%)</title><rect x="150.4" y="437" width="2.2" height="15.0" fill="rgb(207,123,9)" rx="2" ry="2" />
|
|
<text x="153.38" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="561.6" y="357" width="0.1" height="15.0" fill="rgb(208,16,34)" rx="2" ry="2" />
|
|
<text x="564.56" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithContentLength (8 samples, 0.04%)</title><rect x="927.7" y="373" width="0.4" height="15.0" fill="rgb(230,198,37)" rx="2" ry="2" />
|
|
<text x="930.66" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_thread (14,698 samples, 74.76%)</title><rect x="257.9" y="645" width="882.1" height="15.0" fill="rgb(212,140,30)" rx="2" ry="2" />
|
|
<text x="260.87" y="655.5" >start_thread</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="176.4" y="261" width="0.2" height="15.0" fill="rgb(251,226,38)" rx="2" ry="2" />
|
|
<text x="179.43" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="253.9" y="421" width="0.1" height="15.0" fill="rgb(250,4,26)" rx="2" ry="2" />
|
|
<text x="256.85" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (3 samples, 0.02%)</title><rect x="1063.4" y="293" width="0.2" height="15.0" fill="rgb(231,63,6)" rx="2" ry="2" />
|
|
<text x="1066.42" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.07%)</title><rect x="49.6" y="549" width="0.8" height="15.0" fill="rgb(206,171,53)" rx="2" ry="2" />
|
|
<text x="52.61" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (126 samples, 0.64%)</title><rect x="953.2" y="341" width="7.6" height="15.0" fill="rgb(220,46,45)" rx="2" ry="2" />
|
|
<text x="956.23" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (105 samples, 0.53%)</title><rect x="1008.5" y="357" width="6.3" height="15.0" fill="rgb(211,179,18)" rx="2" ry="2" />
|
|
<text x="1011.51" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="1096.9" y="293" width="0.1" height="15.0" fill="rgb(227,96,0)" rx="2" ry="2" />
|
|
<text x="1099.91" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (3 samples, 0.02%)</title><rect x="350.1" y="373" width="0.1" height="15.0" fill="rgb(249,152,0)" rx="2" ry="2" />
|
|
<text x="353.06" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1145.6" y="501" width="0.3" height="15.0" fill="rgb(243,47,31)" rx="2" ry="2" />
|
|
<text x="1148.59" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="1142.7" y="533" width="0.2" height="15.0" fill="rgb(250,85,48)" rx="2" ry="2" />
|
|
<text x="1145.71" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_ltv2 (2 samples, 0.01%)</title><rect x="933.9" y="389" width="0.1" height="15.0" fill="rgb(221,11,0)" rx="2" ry="2" />
|
|
<text x="936.91" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (3 samples, 0.02%)</title><rect x="1087.9" y="293" width="0.2" height="15.0" fill="rgb(223,17,9)" rx="2" ry="2" />
|
|
<text x="1090.91" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="164.1" y="165" width="0.1" height="15.0" fill="rgb(221,15,39)" rx="2" ry="2" />
|
|
<text x="167.12" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (12 samples, 0.06%)</title><rect x="170.6" y="405" width="0.7" height="15.0" fill="rgb(248,40,6)" rx="2" ry="2" />
|
|
<text x="173.61" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (3 samples, 0.02%)</title><rect x="1086.0" y="325" width="0.2" height="15.0" fill="rgb(251,216,50)" rx="2" ry="2" />
|
|
<text x="1088.99" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_create_pool (4 samples, 0.02%)</title><rect x="377.7" y="229" width="0.2" height="15.0" fill="rgb(211,107,22)" rx="2" ry="2" />
|
|
<text x="380.67" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (8 samples, 0.04%)</title><rect x="206.9" y="517" width="0.5" height="15.0" fill="rgb(208,184,26)" rx="2" ry="2" />
|
|
<text x="209.92" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="912.5" y="485" width="0.6" height="15.0" fill="rgb(247,90,20)" rx="2" ry="2" />
|
|
<text x="915.48" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (21 samples, 0.11%)</title><rect x="159.6" y="357" width="1.3" height="15.0" fill="rgb(229,161,5)" rx="2" ry="2" />
|
|
<text x="162.62" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="217.0" y="309" width="0.1" height="15.0" fill="rgb(219,92,0)" rx="2" ry="2" />
|
|
<text x="220.00" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (3 samples, 0.02%)</title><rect x="709.0" y="277" width="0.1" height="15.0" fill="rgb(235,199,25)" rx="2" ry="2" />
|
|
<text x="711.96" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (15 samples, 0.08%)</title><rect x="183.0" y="405" width="0.9" height="15.0" fill="rgb(207,63,39)" rx="2" ry="2" />
|
|
<text x="186.03" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="379.9" y="293" width="0.2" height="15.0" fill="rgb(220,84,10)" rx="2" ry="2" />
|
|
<text x="382.95" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (15 samples, 0.08%)</title><rect x="1075.0" y="293" width="0.9" height="15.0" fill="rgb(236,112,7)" rx="2" ry="2" />
|
|
<text x="1078.01" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_dos_dimension_get (2 samples, 0.01%)</title><rect x="585.7" y="373" width="0.1" height="15.0" fill="rgb(254,156,44)" rx="2" ry="2" />
|
|
<text x="588.69" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (12 samples, 0.06%)</title><rect x="1189.2" y="597" width="0.7" height="15.0" fill="rgb(207,136,46)" rx="2" ry="2" />
|
|
<text x="1192.16" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="224.6" y="437" width="0.3" height="15.0" fill="rgb(248,79,22)" rx="2" ry="2" />
|
|
<text x="227.56" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (6 samples, 0.03%)</title><rect x="949.0" y="469" width="0.3" height="15.0" fill="rgb(212,83,37)" rx="2" ry="2" />
|
|
<text x="951.97" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="879.0" y="389" width="0.1" height="15.0" fill="rgb(254,104,0)" rx="2" ry="2" />
|
|
<text x="881.99" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (2 samples, 0.01%)</title><rect x="920.9" y="341" width="0.1" height="15.0" fill="rgb(237,171,44)" rx="2" ry="2" />
|
|
<text x="923.88" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (26 samples, 0.13%)</title><rect x="1097.3" y="469" width="1.6" height="15.0" fill="rgb(225,201,4)" rx="2" ry="2" />
|
|
<text x="1100.33" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_new_ex_data (2 samples, 0.01%)</title><rect x="160.9" y="341" width="0.1" height="15.0" fill="rgb(229,222,18)" rx="2" ry="2" />
|
|
<text x="163.88" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1145.3" y="325" width="0.2" height="15.0" fill="rgb(224,158,51)" rx="2" ry="2" />
|
|
<text x="1148.35" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mail_identify_imap (3 samples, 0.02%)</title><rect x="423.6" y="421" width="0.2" height="15.0" fill="rgb(217,127,16)" rx="2" ry="2" />
|
|
<text x="426.58" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="229.8" y="373" width="0.2" height="15.0" fill="rgb(250,96,15)" rx="2" ry="2" />
|
|
<text x="232.84" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1044.9" y="357" width="0.2" height="15.0" fill="rgb(238,219,24)" rx="2" ry="2" />
|
|
<text x="1047.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="189.7" y="341" width="0.1" height="15.0" fill="rgb(236,216,43)" rx="2" ry="2" />
|
|
<text x="192.69" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ja3_md5sum (5 samples, 0.03%)</title><rect x="430.7" y="389" width="0.3" height="15.0" fill="rgb(241,122,54)" rx="2" ry="2" />
|
|
<text x="433.66" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_enc_save (2 samples, 0.01%)</title><rect x="168.4" y="325" width="0.2" height="15.0" fill="rgb(233,103,40)" rx="2" ry="2" />
|
|
<text x="171.45" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memchr_avx2 (2 samples, 0.01%)</title><rect x="930.1" y="341" width="0.1" height="15.0" fill="rgb(241,61,17)" rx="2" ry="2" />
|
|
<text x="933.07" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (9 samples, 0.05%)</title><rect x="714.1" y="277" width="0.6" height="15.0" fill="rgb(208,117,1)" rx="2" ry="2" />
|
|
<text x="717.12" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (11 samples, 0.06%)</title><rect x="220.9" y="437" width="0.7" height="15.0" fill="rgb(218,79,14)" rx="2" ry="2" />
|
|
<text x="223.90" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddStringToObject (4 samples, 0.02%)</title><rect x="156.0" y="421" width="0.2" height="15.0" fill="rgb(221,85,4)" rx="2" ry="2" />
|
|
<text x="158.96" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (13 samples, 0.07%)</title><rect x="1146.5" y="533" width="0.8" height="15.0" fill="rgb(241,53,15)" rx="2" ry="2" />
|
|
<text x="1149.55" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (3 samples, 0.02%)</title><rect x="788.5" y="277" width="0.2" height="15.0" fill="rgb(252,49,30)" rx="2" ry="2" />
|
|
<text x="791.48" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="208.2" y="277" width="0.3" height="15.0" fill="rgb(238,82,33)" rx="2" ry="2" />
|
|
<text x="211.18" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (5 samples, 0.03%)</title><rect x="910.7" y="309" width="0.3" height="15.0" fill="rgb(218,172,8)" rx="2" ry="2" />
|
|
<text x="913.68" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sip.so] (8 samples, 0.04%)</title><rect x="1050.9" y="437" width="0.5" height="15.0" fill="rgb(232,177,6)" rx="2" ry="2" />
|
|
<text x="1053.88" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (32 samples, 0.16%)</title><rect x="707.3" y="309" width="2.0" height="15.0" fill="rgb(216,97,25)" rx="2" ry="2" />
|
|
<text x="710.34" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="733.0" y="453" width="0.1" height="15.0" fill="rgb(239,119,5)" rx="2" ry="2" />
|
|
<text x="736.03" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (3 samples, 0.02%)</title><rect x="253.9" y="629" width="0.1" height="15.0" fill="rgb(215,2,29)" rx="2" ry="2" />
|
|
<text x="256.85" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1147.7" y="293" width="0.2" height="15.0" fill="rgb(232,57,31)" rx="2" ry="2" />
|
|
<text x="1150.75" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="325" width="0.3" height="15.0" fill="rgb(225,162,24)" rx="2" ry="2" />
|
|
<text x="1146.85" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (5 samples, 0.03%)</title><rect x="1144.3" y="485" width="0.3" height="15.0" fill="rgb(214,138,30)" rx="2" ry="2" />
|
|
<text x="1147.33" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="384.3" y="261" width="0.2" height="15.0" fill="rgb(234,150,26)" rx="2" ry="2" />
|
|
<text x="387.27" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (28 samples, 0.14%)</title><rect x="558.8" y="389" width="1.7" height="15.0" fill="rgb(209,53,25)" rx="2" ry="2" />
|
|
<text x="561.80" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (1,219 samples, 6.20%)</title><rect x="587.7" y="389" width="73.1" height="15.0" fill="rgb(209,47,2)" rx="2" ry="2" />
|
|
<text x="590.67" y="399.5" >traffic_..</text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___snprintf (2 samples, 0.01%)</title><rect x="157.8" y="277" width="0.1" height="15.0" fill="rgb(233,20,20)" rx="2" ry="2" />
|
|
<text x="160.76" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="227.7" y="261" width="0.2" height="15.0" fill="rgb(216,53,9)" rx="2" ry="2" />
|
|
<text x="230.68" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (2 samples, 0.01%)</title><rect x="707.6" y="261" width="0.2" height="15.0" fill="rgb(221,54,36)" rx="2" ry="2" />
|
|
<text x="710.64" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (11 samples, 0.06%)</title><rect x="707.9" y="277" width="0.6" height="15.0" fill="rgb(229,77,34)" rx="2" ry="2" />
|
|
<text x="710.88" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1154.0" y="437" width="0.2" height="15.0" fill="rgb(210,198,7)" rx="2" ry="2" />
|
|
<text x="1157.05" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="419.0" y="341" width="0.2" height="15.0" fill="rgb(225,141,39)" rx="2" ry="2" />
|
|
<text x="421.96" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (4 samples, 0.02%)</title><rect x="949.1" y="421" width="0.2" height="15.0" fill="rgb(253,55,53)" rx="2" ry="2" />
|
|
<text x="952.09" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (3 samples, 0.02%)</title><rect x="633.6" y="261" width="0.2" height="15.0" fill="rgb(209,72,1)" rx="2" ry="2" />
|
|
<text x="636.58" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_mult64to128 (2 samples, 0.01%)</title><rect x="1075.7" y="197" width="0.1" height="15.0" fill="rgb(215,4,19)" rx="2" ry="2" />
|
|
<text x="1078.73" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_new (3 samples, 0.02%)</title><rect x="162.1" y="133" width="0.2" height="15.0" fill="rgb(248,155,15)" rx="2" ry="2" />
|
|
<text x="165.14" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="1179.8" y="533" width="0.4" height="15.0" fill="rgb(221,76,16)" rx="2" ry="2" />
|
|
<text x="1182.80" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (5 samples, 0.03%)</title><rect x="1184.8" y="405" width="0.3" height="15.0" fill="rgb(237,74,23)" rx="2" ry="2" />
|
|
<text x="1187.78" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="348.7" y="485" width="0.2" height="15.0" fill="rgb(216,150,21)" rx="2" ry="2" />
|
|
<text x="351.74" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (11 samples, 0.06%)</title><rect x="220.9" y="421" width="0.7" height="15.0" fill="rgb(246,60,4)" rx="2" ry="2" />
|
|
<text x="223.90" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (3 samples, 0.02%)</title><rect x="927.8" y="309" width="0.2" height="15.0" fill="rgb(214,98,40)" rx="2" ry="2" />
|
|
<text x="930.78" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="879.0" y="421" width="0.1" height="15.0" fill="rgb(221,144,29)" rx="2" ry="2" />
|
|
<text x="881.99" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_incrby (4 samples, 0.02%)</title><rect x="1089.5" y="309" width="0.2" height="15.0" fill="rgb(253,56,5)" rx="2" ry="2" />
|
|
<text x="1092.47" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="106.0" y="293" width="0.1" height="15.0" fill="rgb(219,107,47)" rx="2" ry="2" />
|
|
<text x="108.97" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="348.7" y="469" width="0.2" height="15.0" fill="rgb(229,103,32)" rx="2" ry="2" />
|
|
<text x="351.74" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (115 samples, 0.58%)</title><rect x="880.2" y="501" width="6.9" height="15.0" fill="rgb(250,71,15)" rx="2" ry="2" />
|
|
<text x="883.19" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="255.1" y="373" width="0.1" height="15.0" fill="rgb(247,68,38)" rx="2" ry="2" />
|
|
<text x="258.11" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (8 samples, 0.04%)</title><rect x="1080.7" y="453" width="0.5" height="15.0" fill="rgb(227,201,39)" rx="2" ry="2" />
|
|
<text x="1083.71" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (12 samples, 0.06%)</title><rect x="1167.3" y="533" width="0.7" height="15.0" fill="rgb(251,30,19)" rx="2" ry="2" />
|
|
<text x="1170.25" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (2 samples, 0.01%)</title><rect x="357.3" y="373" width="0.1" height="15.0" fill="rgb(206,158,23)" rx="2" ry="2" />
|
|
<text x="360.32" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (7 samples, 0.04%)</title><rect x="436.6" y="517" width="0.4" height="15.0" fill="rgb(217,32,24)" rx="2" ry="2" />
|
|
<text x="439.60" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_new_reserve (4 samples, 0.02%)</title><rect x="164.9" y="245" width="0.2" height="15.0" fill="rgb(241,138,12)" rx="2" ry="2" />
|
|
<text x="167.90" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.8] (20 samples, 0.10%)</title><rect x="1111.5" y="581" width="1.2" height="15.0" fill="rgb(238,96,26)" rx="2" ry="2" />
|
|
<text x="1114.50" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (6 samples, 0.03%)</title><rect x="414.0" y="309" width="0.3" height="15.0" fill="rgb(239,35,36)" rx="2" ry="2" />
|
|
<text x="416.98" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="105.7" y="309" width="0.3" height="15.0" fill="rgb(247,205,32)" rx="2" ry="2" />
|
|
<text x="108.67" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="350.1" y="325" width="0.1" height="15.0" fill="rgb(216,218,14)" rx="2" ry="2" />
|
|
<text x="353.06" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="212.7" y="325" width="0.2" height="15.0" fill="rgb(249,43,42)" rx="2" ry="2" />
|
|
<text x="215.68" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_one_resource_record (6 samples, 0.03%)</title><rect x="1182.0" y="629" width="0.4" height="15.0" fill="rgb(210,129,37)" rx="2" ry="2" />
|
|
<text x="1185.02" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (5 samples, 0.03%)</title><rect x="158.8" y="325" width="0.3" height="15.0" fill="rgb(233,75,39)" rx="2" ry="2" />
|
|
<text x="161.84" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (10 samples, 0.05%)</title><rect x="153.9" y="533" width="0.6" height="15.0" fill="rgb(247,94,2)" rx="2" ry="2" />
|
|
<text x="156.86" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="219.8" y="325" width="0.3" height="15.0" fill="rgb(239,218,4)" rx="2" ry="2" />
|
|
<text x="222.82" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (66 samples, 0.34%)</title><rect x="1087.4" y="373" width="4.0" height="15.0" fill="rgb(230,79,22)" rx="2" ry="2" />
|
|
<text x="1090.43" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (6 samples, 0.03%)</title><rect x="144.8" y="437" width="0.4" height="15.0" fill="rgb(220,110,46)" rx="2" ry="2" />
|
|
<text x="147.80" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_0to16_128b (6 samples, 0.03%)</title><rect x="1075.0" y="261" width="0.4" height="15.0" fill="rgb(214,206,25)" rx="2" ry="2" />
|
|
<text x="1078.01" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="1172.5" y="517" width="0.1" height="15.0" fill="rgb(220,222,23)" rx="2" ry="2" />
|
|
<text x="1175.47" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (3 samples, 0.02%)</title><rect x="921.0" y="357" width="0.2" height="15.0" fill="rgb(221,227,36)" rx="2" ry="2" />
|
|
<text x="924.00" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get (14 samples, 0.07%)</title><rect x="1059.3" y="405" width="0.9" height="15.0" fill="rgb(221,127,18)" rx="2" ry="2" />
|
|
<text x="1062.34" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="879.0" y="437" width="0.1" height="15.0" fill="rgb(208,94,35)" rx="2" ry="2" />
|
|
<text x="881.99" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (277 samples, 1.41%)</title><rect x="190.3" y="533" width="16.6" height="15.0" fill="rgb(215,167,21)" rx="2" ry="2" />
|
|
<text x="193.29" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="522.8" y="357" width="0.2" height="15.0" fill="rgb(245,192,51)" rx="2" ry="2" />
|
|
<text x="525.85" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="220.1" y="357" width="0.1" height="15.0" fill="rgb(237,19,20)" rx="2" ry="2" />
|
|
<text x="223.06" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_copy (2 samples, 0.01%)</title><rect x="154.0" y="213" width="0.2" height="15.0" fill="rgb(231,191,45)" rx="2" ry="2" />
|
|
<text x="157.04" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (2 samples, 0.01%)</title><rect x="666.1" y="309" width="0.1" height="15.0" fill="rgb(228,179,51)" rx="2" ry="2" />
|
|
<text x="669.11" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (63 samples, 0.32%)</title><rect x="110.8" y="501" width="3.8" height="15.0" fill="rgb(254,145,50)" rx="2" ry="2" />
|
|
<text x="113.77" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="153.6" y="533" width="0.3" height="15.0" fill="rgb(253,195,32)" rx="2" ry="2" />
|
|
<text x="156.62" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (16 samples, 0.08%)</title><rect x="181.0" y="389" width="1.0" height="15.0" fill="rgb(206,77,18)" rx="2" ry="2" />
|
|
<text x="184.05" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="414.0" y="277" width="0.3" height="15.0" fill="rgb(207,137,31)" rx="2" ry="2" />
|
|
<text x="416.98" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_MONT_CTX_set (3 samples, 0.02%)</title><rect x="166.6" y="181" width="0.2" height="15.0" fill="rgb(247,161,47)" rx="2" ry="2" />
|
|
<text x="169.59" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_group (4 samples, 0.02%)</title><rect x="1141.9" y="325" width="0.3" height="15.0" fill="rgb(236,56,5)" rx="2" ry="2" />
|
|
<text x="1144.93" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="224.3" y="421" width="0.1" height="15.0" fill="rgb(253,146,4)" rx="2" ry="2" />
|
|
<text x="227.26" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (5 samples, 0.03%)</title><rect x="788.9" y="277" width="0.3" height="15.0" fill="rgb(210,122,9)" rx="2" ry="2" />
|
|
<text x="791.90" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RDP_UDP_ENTRY (2 samples, 0.01%)</title><rect x="1050.6" y="469" width="0.1" height="15.0" fill="rgb(214,172,47)" rx="2" ry="2" />
|
|
<text x="1053.58" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (3 samples, 0.02%)</title><rect x="1003.6" y="229" width="0.2" height="15.0" fill="rgb(239,171,28)" rx="2" ry="2" />
|
|
<text x="1006.59" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="254.3" y="405" width="0.1" height="15.0" fill="rgb(247,53,14)" rx="2" ry="2" />
|
|
<text x="257.27" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (12 samples, 0.06%)</title><rect x="178.3" y="389" width="0.8" height="15.0" fill="rgb(232,136,0)" rx="2" ry="2" />
|
|
<text x="181.35" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="146.2" y="389" width="0.2" height="15.0" fill="rgb(251,164,51)" rx="2" ry="2" />
|
|
<text x="149.24" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (3 samples, 0.02%)</title><rect x="1099.7" y="469" width="0.2" height="15.0" fill="rgb(252,187,38)" rx="2" ry="2" />
|
|
<text x="1102.73" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (46 samples, 0.23%)</title><rect x="375.4" y="293" width="2.7" height="15.0" fill="rgb(239,219,44)" rx="2" ry="2" />
|
|
<text x="378.39" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (10 samples, 0.05%)</title><rect x="144.2" y="469" width="0.6" height="15.0" fill="rgb(214,142,51)" rx="2" ry="2" />
|
|
<text x="147.20" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_make_jhash (4 samples, 0.02%)</title><rect x="1029.9" y="517" width="0.2" height="15.0" fill="rgb(249,124,54)" rx="2" ry="2" />
|
|
<text x="1032.87" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="224.9" y="405" width="0.1" height="15.0" fill="rgb(223,136,11)" rx="2" ry="2" />
|
|
<text x="227.86" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1147.6" y="325" width="0.1" height="15.0" fill="rgb(212,115,40)" rx="2" ry="2" />
|
|
<text x="1150.63" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="383.8" y="261" width="0.2" height="15.0" fill="rgb(230,147,10)" rx="2" ry="2" />
|
|
<text x="386.85" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (3 samples, 0.02%)</title><rect x="254.1" y="373" width="0.2" height="15.0" fill="rgb(219,114,46)" rx="2" ry="2" />
|
|
<text x="257.09" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (84 samples, 0.43%)</title><rect x="921.7" y="357" width="5.0" height="15.0" fill="rgb(228,126,26)" rx="2" ry="2" />
|
|
<text x="924.66" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (10 samples, 0.05%)</title><rect x="1097.6" y="325" width="0.6" height="15.0" fill="rgb(229,80,33)" rx="2" ry="2" />
|
|
<text x="1100.57" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_l_avx (5 samples, 0.03%)</title><rect x="1051.1" y="421" width="0.3" height="15.0" fill="rgb(247,5,52)" rx="2" ry="2" />
|
|
<text x="1054.06" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (49 samples, 0.25%)</title><rect x="496.1" y="261" width="3.0" height="15.0" fill="rgb(225,31,40)" rx="2" ry="2" />
|
|
<text x="499.14" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (4 samples, 0.02%)</title><rect x="219.8" y="357" width="0.3" height="15.0" fill="rgb(215,19,22)" rx="2" ry="2" />
|
|
<text x="222.82" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___snprintf (2 samples, 0.01%)</title><rect x="171.8" y="437" width="0.1" height="15.0" fill="rgb(228,89,28)" rx="2" ry="2" />
|
|
<text x="174.81" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH128_mix32B (5 samples, 0.03%)</title><rect x="1006.5" y="245" width="0.3" height="15.0" fill="rgb(232,115,2)" rx="2" ry="2" />
|
|
<text x="1009.47" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1142.7" y="501" width="0.2" height="15.0" fill="rgb(248,143,15)" rx="2" ry="2" />
|
|
<text x="1145.71" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="227.7" y="309" width="0.2" height="15.0" fill="rgb(242,179,32)" rx="2" ry="2" />
|
|
<text x="230.68" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="153.6" y="485" width="0.3" height="15.0" fill="rgb(232,186,2)" rx="2" ry="2" />
|
|
<text x="156.62" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="733.9" y="373" width="0.1" height="15.0" fill="rgb(205,195,28)" rx="2" ry="2" />
|
|
<text x="736.93" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (2 samples, 0.01%)</title><rect x="249.7" y="405" width="0.1" height="15.0" fill="rgb(232,187,35)" rx="2" ry="2" />
|
|
<text x="252.71" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (4 samples, 0.02%)</title><rect x="470.6" y="453" width="0.3" height="15.0" fill="rgb(244,52,24)" rx="2" ry="2" />
|
|
<text x="473.63" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (36 samples, 0.18%)</title><rect x="729.7" y="325" width="2.1" height="15.0" fill="rgb(239,158,29)" rx="2" ry="2" />
|
|
<text x="732.67" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="409.7" y="373" width="0.1" height="15.0" fill="rgb(232,215,17)" rx="2" ry="2" />
|
|
<text x="412.66" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (3 samples, 0.02%)</title><rect x="144.0" y="405" width="0.2" height="15.0" fill="rgb(220,99,53)" rx="2" ry="2" />
|
|
<text x="147.02" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (13 samples, 0.07%)</title><rect x="1003.8" y="309" width="0.7" height="15.0" fill="rgb(222,199,36)" rx="2" ry="2" />
|
|
<text x="1006.77" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (16 samples, 0.08%)</title><rect x="147.4" y="517" width="0.9" height="15.0" fill="rgb(211,164,36)" rx="2" ry="2" />
|
|
<text x="150.38" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="105.8" y="277" width="0.2" height="15.0" fill="rgb(223,176,0)" rx="2" ry="2" />
|
|
<text x="108.85" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (5 samples, 0.03%)</title><rect x="1061.8" y="341" width="0.3" height="15.0" fill="rgb(209,182,23)" rx="2" ry="2" />
|
|
<text x="1064.80" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1180.2" y="645" width="0.1" height="15.0" fill="rgb(241,162,21)" rx="2" ry="2" />
|
|
<text x="1183.16" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>file_buffer (2 samples, 0.01%)</title><rect x="1184.1" y="229" width="0.1" height="15.0" fill="rgb(245,159,20)" rx="2" ry="2" />
|
|
<text x="1187.06" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (16 samples, 0.08%)</title><rect x="881.5" y="373" width="1.0" height="15.0" fill="rgb(229,0,24)" rx="2" ry="2" />
|
|
<text x="884.51" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (26 samples, 0.13%)</title><rect x="386.1" y="357" width="1.6" height="15.0" fill="rgb(243,8,39)" rx="2" ry="2" />
|
|
<text x="389.13" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="764.8" y="421" width="0.1" height="15.0" fill="rgb(235,162,7)" rx="2" ry="2" />
|
|
<text x="767.78" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (234 samples, 1.19%)</title><rect x="712.7" y="357" width="14.1" height="15.0" fill="rgb(216,214,18)" rx="2" ry="2" />
|
|
<text x="715.74" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="385.0" y="245" width="0.2" height="15.0" fill="rgb(235,48,51)" rx="2" ry="2" />
|
|
<text x="387.99" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_group (2 samples, 0.01%)</title><rect x="1054.8" y="357" width="0.1" height="15.0" fill="rgb(219,126,31)" rx="2" ry="2" />
|
|
<text x="1057.78" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1142.3" y="309" width="0.2" height="15.0" fill="rgb(231,65,43)" rx="2" ry="2" />
|
|
<text x="1145.35" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (20 samples, 0.10%)</title><rect x="508.4" y="261" width="1.2" height="15.0" fill="rgb(212,207,15)" rx="2" ry="2" />
|
|
<text x="511.38" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (43 samples, 0.22%)</title><rect x="246.1" y="453" width="2.6" height="15.0" fill="rgb(251,192,27)" rx="2" ry="2" />
|
|
<text x="249.11" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (30 samples, 0.15%)</title><rect x="507.8" y="277" width="1.8" height="15.0" fill="rgb(209,65,50)" rx="2" ry="2" />
|
|
<text x="510.78" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="219.5" y="421" width="0.1" height="15.0" fill="rgb(209,128,18)" rx="2" ry="2" />
|
|
<text x="222.46" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="221.9" y="181" width="0.2" height="15.0" fill="rgb(235,207,15)" rx="2" ry="2" />
|
|
<text x="224.92" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell (21 samples, 0.11%)</title><rect x="774.4" y="341" width="1.2" height="15.0" fill="rgb(245,134,52)" rx="2" ry="2" />
|
|
<text x="777.38" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_add_stream (2 samples, 0.01%)</title><rect x="1023.0" y="517" width="0.2" height="15.0" fill="rgb(205,35,4)" rx="2" ry="2" />
|
|
<text x="1026.03" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (14 samples, 0.07%)</title><rect x="220.1" y="453" width="0.8" height="15.0" fill="rgb(214,111,53)" rx="2" ry="2" />
|
|
<text x="223.06" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (15 samples, 0.08%)</title><rect x="386.5" y="245" width="0.9" height="15.0" fill="rgb(221,191,18)" rx="2" ry="2" />
|
|
<text x="389.55" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="1178.5" y="341" width="0.7" height="15.0" fill="rgb(240,148,0)" rx="2" ry="2" />
|
|
<text x="1181.54" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_trunk_cache (5 samples, 0.03%)</title><rect x="934.7" y="421" width="0.3" height="15.0" fill="rgb(225,31,32)" rx="2" ry="2" />
|
|
<text x="937.75" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (2 samples, 0.01%)</title><rect x="881.6" y="277" width="0.1" height="15.0" fill="rgb(216,160,31)" rx="2" ry="2" />
|
|
<text x="884.57" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (3 samples, 0.02%)</title><rect x="253.9" y="533" width="0.1" height="15.0" fill="rgb(221,151,34)" rx="2" ry="2" />
|
|
<text x="256.85" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (29 samples, 0.15%)</title><rect x="157.9" y="453" width="1.7" height="15.0" fill="rgb(238,106,24)" rx="2" ry="2" />
|
|
<text x="160.88" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (3 samples, 0.02%)</title><rect x="254.6" y="437" width="0.2" height="15.0" fill="rgb(243,198,38)" rx="2" ry="2" />
|
|
<text x="257.63" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (35 samples, 0.18%)</title><rect x="414.3" y="357" width="2.1" height="15.0" fill="rgb(244,227,33)" rx="2" ry="2" />
|
|
<text x="417.34" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (11 samples, 0.06%)</title><rect x="255.3" y="597" width="0.7" height="15.0" fill="rgb(209,64,43)" rx="2" ry="2" />
|
|
<text x="258.29" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (5 samples, 0.03%)</title><rect x="105.7" y="405" width="0.3" height="15.0" fill="rgb(219,3,19)" rx="2" ry="2" />
|
|
<text x="108.67" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="106.6" y="373" width="0.6" height="15.0" fill="rgb(220,36,24)" rx="2" ry="2" />
|
|
<text x="109.63" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="222.6" y="213" width="0.1" height="15.0" fill="rgb(254,51,42)" rx="2" ry="2" />
|
|
<text x="225.58" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_create_pool (2 samples, 0.01%)</title><rect x="1050.4" y="325" width="0.1" height="15.0" fill="rgb(244,90,18)" rx="2" ry="2" />
|
|
<text x="1053.40" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (3 samples, 0.02%)</title><rect x="239.0" y="421" width="0.1" height="15.0" fill="rgb(210,28,34)" rx="2" ry="2" />
|
|
<text x="241.97" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (15 samples, 0.08%)</title><rect x="710.2" y="357" width="0.9" height="15.0" fill="rgb(211,118,50)" rx="2" ry="2" />
|
|
<text x="713.16" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (2 samples, 0.01%)</title><rect x="705.2" y="357" width="0.2" height="15.0" fill="rgb(231,139,51)" rx="2" ry="2" />
|
|
<text x="708.24" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="36.4" y="581" width="0.3" height="15.0" fill="rgb(248,85,4)" rx="2" ry="2" />
|
|
<text x="39.41" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (3 samples, 0.02%)</title><rect x="231.3" y="421" width="0.2" height="15.0" fill="rgb(227,79,26)" rx="2" ry="2" />
|
|
<text x="234.34" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="1155.5" y="389" width="0.7" height="15.0" fill="rgb(221,76,27)" rx="2" ry="2" />
|
|
<text x="1158.49" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (9 samples, 0.05%)</title><rect x="106.1" y="293" width="0.5" height="15.0" fill="rgb(229,23,52)" rx="2" ry="2" />
|
|
<text x="109.09" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (5 samples, 0.03%)</title><rect x="586.7" y="389" width="0.3" height="15.0" fill="rgb(226,123,1)" rx="2" ry="2" />
|
|
<text x="589.71" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="219.0" y="389" width="0.1" height="15.0" fill="rgb(206,193,16)" rx="2" ry="2" />
|
|
<text x="221.98" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="218.4" y="389" width="0.1" height="15.0" fill="rgb(232,4,46)" rx="2" ry="2" />
|
|
<text x="221.38" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (8 samples, 0.04%)</title><rect x="1187.4" y="469" width="0.5" height="15.0" fill="rgb(254,118,6)" rx="2" ry="2" />
|
|
<text x="1190.42" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get (2 samples, 0.01%)</title><rect x="704.9" y="405" width="0.2" height="15.0" fill="rgb(243,108,42)" rx="2" ry="2" />
|
|
<text x="707.94" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (2 samples, 0.01%)</title><rect x="1142.3" y="341" width="0.2" height="15.0" fill="rgb(238,183,43)" rx="2" ry="2" />
|
|
<text x="1145.35" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (2 samples, 0.01%)</title><rect x="417.2" y="213" width="0.1" height="15.0" fill="rgb(224,177,5)" rx="2" ry="2" />
|
|
<text x="420.22" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_app_and_proto_update (2 samples, 0.01%)</title><rect x="1097.5" y="389" width="0.1" height="15.0" fill="rgb(234,40,39)" rx="2" ry="2" />
|
|
<text x="1100.45" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="1187.4" y="453" width="0.5" height="15.0" fill="rgb(205,151,34)" rx="2" ry="2" />
|
|
<text x="1190.42" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (7 samples, 0.04%)</title><rect x="168.9" y="341" width="0.4" height="15.0" fill="rgb(241,198,41)" rx="2" ry="2" />
|
|
<text x="171.87" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (78 samples, 0.40%)</title><rect x="506.6" y="341" width="4.7" height="15.0" fill="rgb(226,117,3)" rx="2" ry="2" />
|
|
<text x="509.64" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (4 samples, 0.02%)</title><rect x="1147.6" y="501" width="0.3" height="15.0" fill="rgb(251,114,19)" rx="2" ry="2" />
|
|
<text x="1150.63" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (6 samples, 0.03%)</title><rect x="211.3" y="389" width="0.4" height="15.0" fill="rgb(208,73,48)" rx="2" ry="2" />
|
|
<text x="214.30" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (1,023 samples, 5.20%)</title><rect x="468.5" y="533" width="61.4" height="15.0" fill="rgb(218,203,51)" rx="2" ry="2" />
|
|
<text x="471.53" y="543.5" >lrustr..</text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (5 samples, 0.03%)</title><rect x="144.8" y="421" width="0.3" height="15.0" fill="rgb(205,43,39)" rx="2" ry="2" />
|
|
<text x="147.80" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (26 samples, 0.13%)</title><rect x="144.8" y="517" width="1.6" height="15.0" fill="rgb(245,50,25)" rx="2" ry="2" />
|
|
<text x="147.80" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (6 samples, 0.03%)</title><rect x="775.9" y="261" width="0.4" height="15.0" fill="rgb(247,13,44)" rx="2" ry="2" />
|
|
<text x="778.94" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (5 samples, 0.03%)</title><rect x="254.8" y="421" width="0.3" height="15.0" fill="rgb(225,58,24)" rx="2" ry="2" />
|
|
<text x="257.81" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="793.6" y="341" width="0.1" height="15.0" fill="rgb(235,93,15)" rx="2" ry="2" />
|
|
<text x="796.59" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (4 samples, 0.02%)</title><rect x="385.5" y="341" width="0.2" height="15.0" fill="rgb(252,135,25)" rx="2" ry="2" />
|
|
<text x="388.47" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (2 samples, 0.01%)</title><rect x="709.3" y="309" width="0.1" height="15.0" fill="rgb(247,205,19)" rx="2" ry="2" />
|
|
<text x="712.26" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (16 samples, 0.08%)</title><rect x="49.6" y="581" width="1.0" height="15.0" fill="rgb(208,184,52)" rx="2" ry="2" />
|
|
<text x="52.61" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (10 samples, 0.05%)</title><rect x="144.2" y="565" width="0.6" height="15.0" fill="rgb(212,77,9)" rx="2" ry="2" />
|
|
<text x="147.20" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (11 samples, 0.06%)</title><rect x="220.9" y="405" width="0.7" height="15.0" fill="rgb(219,118,18)" rx="2" ry="2" />
|
|
<text x="223.90" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (23 samples, 0.12%)</title><rect x="881.4" y="405" width="1.4" height="15.0" fill="rgb(246,210,30)" rx="2" ry="2" />
|
|
<text x="884.39" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="473.9" y="389" width="0.2" height="15.0" fill="rgb(222,117,51)" rx="2" ry="2" />
|
|
<text x="476.93" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (3 samples, 0.02%)</title><rect x="201.2" y="405" width="0.2" height="15.0" fill="rgb(249,173,48)" rx="2" ry="2" />
|
|
<text x="204.22" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="254.6" y="421" width="0.2" height="15.0" fill="rgb(217,26,2)" rx="2" ry="2" />
|
|
<text x="257.63" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="147.5" y="405" width="0.4" height="15.0" fill="rgb(233,76,51)" rx="2" ry="2" />
|
|
<text x="150.50" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (3 samples, 0.02%)</title><rect x="130.2" y="389" width="0.2" height="15.0" fill="rgb(214,94,38)" rx="2" ry="2" />
|
|
<text x="133.21" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (3 samples, 0.02%)</title><rect x="951.9" y="357" width="0.2" height="15.0" fill="rgb(246,213,42)" rx="2" ry="2" />
|
|
<text x="954.91" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (17 samples, 0.09%)</title><rect x="146.4" y="485" width="1.0" height="15.0" fill="rgb(216,96,54)" rx="2" ry="2" />
|
|
<text x="149.36" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="161.0" y="341" width="0.2" height="15.0" fill="rgb(228,145,22)" rx="2" ry="2" />
|
|
<text x="164.00" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_buildHttpInforLink (3 samples, 0.02%)</title><rect x="930.5" y="405" width="0.2" height="15.0" fill="rgb(231,51,23)" rx="2" ry="2" />
|
|
<text x="933.55" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (2 samples, 0.01%)</title><rect x="358.8" y="501" width="0.1" height="15.0" fill="rgb(247,212,36)" rx="2" ry="2" />
|
|
<text x="361.76" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="189.9" y="309" width="0.4" height="15.0" fill="rgb(232,125,52)" rx="2" ry="2" />
|
|
<text x="192.93" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (9 samples, 0.05%)</title><rect x="194.4" y="421" width="0.5" height="15.0" fill="rgb(251,166,30)" rx="2" ry="2" />
|
|
<text x="197.37" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (8 samples, 0.04%)</title><rect x="624.8" y="261" width="0.4" height="15.0" fill="rgb(237,202,29)" rx="2" ry="2" />
|
|
<text x="627.76" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (6 samples, 0.03%)</title><rect x="415.8" y="197" width="0.3" height="15.0" fill="rgb(212,171,21)" rx="2" ry="2" />
|
|
<text x="418.78" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (4 samples, 0.02%)</title><rect x="145.2" y="373" width="0.2" height="15.0" fill="rgb(213,112,27)" rx="2" ry="2" />
|
|
<text x="148.16" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_client_hello (5 samples, 0.03%)</title><rect x="110.5" y="437" width="0.3" height="15.0" fill="rgb(236,143,2)" rx="2" ry="2" />
|
|
<text x="113.47" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (2 samples, 0.01%)</title><rect x="760.6" y="405" width="0.1" height="15.0" fill="rgb(230,11,21)" rx="2" ry="2" />
|
|
<text x="763.58" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="257.7" y="613" width="0.2" height="15.0" fill="rgb(228,190,22)" rx="2" ry="2" />
|
|
<text x="260.69" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="1066.2" y="373" width="0.2" height="15.0" fill="rgb(221,200,31)" rx="2" ry="2" />
|
|
<text x="1069.24" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (16 samples, 0.08%)</title><rect x="359.6" y="485" width="1.0" height="15.0" fill="rgb(245,216,54)" rx="2" ry="2" />
|
|
<text x="362.60" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (6 samples, 0.03%)</title><rect x="481.7" y="373" width="0.3" height="15.0" fill="rgb(225,39,49)" rx="2" ry="2" />
|
|
<text x="484.68" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (37 samples, 0.19%)</title><rect x="464.5" y="501" width="2.2" height="15.0" fill="rgb(211,199,9)" rx="2" ry="2" />
|
|
<text x="467.51" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (3 samples, 0.02%)</title><rect x="909.3" y="357" width="0.2" height="15.0" fill="rgb(254,111,1)" rx="2" ry="2" />
|
|
<text x="912.30" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (16 samples, 0.08%)</title><rect x="509.8" y="309" width="0.9" height="15.0" fill="rgb(207,0,9)" rx="2" ry="2" />
|
|
<text x="512.76" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (128 samples, 0.65%)</title><rect x="160.9" y="405" width="7.7" height="15.0" fill="rgb(254,185,52)" rx="2" ry="2" />
|
|
<text x="163.88" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (22 samples, 0.11%)</title><rect x="34.9" y="597" width="1.3" height="15.0" fill="rgb(232,83,28)" rx="2" ry="2" />
|
|
<text x="37.91" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (4 samples, 0.02%)</title><rect x="1033.3" y="341" width="0.2" height="15.0" fill="rgb(210,59,26)" rx="2" ry="2" />
|
|
<text x="1036.29" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (57 samples, 0.29%)</title><rect x="129.4" y="549" width="3.4" height="15.0" fill="rgb(218,121,30)" rx="2" ry="2" />
|
|
<text x="132.37" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (2 samples, 0.01%)</title><rect x="254.4" y="549" width="0.1" height="15.0" fill="rgb(226,160,26)" rx="2" ry="2" />
|
|
<text x="257.39" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (3 samples, 0.02%)</title><rect x="958.5" y="277" width="0.1" height="15.0" fill="rgb(251,42,40)" rx="2" ry="2" />
|
|
<text x="961.45" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="928.3" y="277" width="0.1" height="15.0" fill="rgb(239,28,48)" rx="2" ry="2" />
|
|
<text x="931.26" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findLineEnd_CR (3 samples, 0.02%)</title><rect x="930.1" y="357" width="0.1" height="15.0" fill="rgb(205,105,4)" rx="2" ry="2" />
|
|
<text x="933.07" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="1143.7" y="613" width="0.4" height="15.0" fill="rgb(242,146,13)" rx="2" ry="2" />
|
|
<text x="1146.73" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_memalign (4 samples, 0.02%)</title><rect x="159.4" y="309" width="0.2" height="15.0" fill="rgb(226,199,4)" rx="2" ry="2" />
|
|
<text x="162.38" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_withSecret (18 samples, 0.09%)</title><rect x="1005.8" y="293" width="1.1" height="15.0" fill="rgb(243,170,0)" rx="2" ry="2" />
|
|
<text x="1008.81" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="473.2" y="453" width="0.1" height="15.0" fill="rgb(226,102,10)" rx="2" ry="2" />
|
|
<text x="476.15" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (37 samples, 0.19%)</title><rect x="1144.3" y="645" width="2.2" height="15.0" fill="rgb(221,194,11)" rx="2" ry="2" />
|
|
<text x="1147.33" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_group (2 samples, 0.01%)</title><rect x="1142.2" y="341" width="0.1" height="15.0" fill="rgb(246,106,19)" rx="2" ry="2" />
|
|
<text x="1145.23" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="245.4" y="389" width="0.2" height="15.0" fill="rgb(249,67,36)" rx="2" ry="2" />
|
|
<text x="248.45" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (4 samples, 0.02%)</title><rect x="105.4" y="549" width="0.2" height="15.0" fill="rgb(236,129,16)" rx="2" ry="2" />
|
|
<text x="108.37" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="473.2" y="421" width="0.1" height="15.0" fill="rgb(215,213,2)" rx="2" ry="2" />
|
|
<text x="476.15" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1177.9" y="517" width="0.2" height="15.0" fill="rgb(214,200,13)" rx="2" ry="2" />
|
|
<text x="1180.88" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (9 samples, 0.05%)</title><rect x="106.1" y="373" width="0.5" height="15.0" fill="rgb(235,127,35)" rx="2" ry="2" />
|
|
<text x="109.09" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="178.4" y="293" width="0.7" height="15.0" fill="rgb(241,198,20)" rx="2" ry="2" />
|
|
<text x="181.41" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.02%)</title><rect x="909.3" y="309" width="0.2" height="15.0" fill="rgb(214,115,3)" rx="2" ry="2" />
|
|
<text x="912.30" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="1142.7" y="549" width="0.2" height="15.0" fill="rgb(239,82,3)" rx="2" ry="2" />
|
|
<text x="1145.71" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (3 samples, 0.02%)</title><rect x="1084.2" y="325" width="0.2" height="15.0" fill="rgb(219,57,30)" rx="2" ry="2" />
|
|
<text x="1087.25" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="921.0" y="277" width="0.2" height="15.0" fill="rgb(215,187,54)" rx="2" ry="2" />
|
|
<text x="924.00" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (10 samples, 0.05%)</title><rect x="1099.0" y="469" width="0.6" height="15.0" fill="rgb(236,16,16)" rx="2" ry="2" />
|
|
<text x="1102.01" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (70 samples, 0.36%)</title><rect x="379.9" y="309" width="4.2" height="15.0" fill="rgb(213,94,50)" rx="2" ry="2" />
|
|
<text x="382.89" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (6 samples, 0.03%)</title><rect x="208.1" y="389" width="0.4" height="15.0" fill="rgb(222,46,4)" rx="2" ry="2" />
|
|
<text x="211.12" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1031.8" y="437" width="0.1" height="15.0" fill="rgb(209,66,37)" rx="2" ry="2" />
|
|
<text x="1034.79" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="927.8" y="261" width="0.2" height="15.0" fill="rgb(211,35,42)" rx="2" ry="2" />
|
|
<text x="930.78" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1147.6" y="437" width="0.3" height="15.0" fill="rgb(228,204,9)" rx="2" ry="2" />
|
|
<text x="1150.63" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="385.0" y="133" width="0.2" height="15.0" fill="rgb(253,25,15)" rx="2" ry="2" />
|
|
<text x="388.05" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (3 samples, 0.02%)</title><rect x="780.5" y="357" width="0.2" height="15.0" fill="rgb(224,37,29)" rx="2" ry="2" />
|
|
<text x="783.50" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (12 samples, 0.06%)</title><rect x="1183.3" y="613" width="0.7" height="15.0" fill="rgb(218,216,4)" rx="2" ry="2" />
|
|
<text x="1186.28" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (24 samples, 0.12%)</title><rect x="696.1" y="501" width="1.4" height="15.0" fill="rgb(252,144,7)" rx="2" ry="2" />
|
|
<text x="699.06" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (4 samples, 0.02%)</title><rect x="168.6" y="293" width="0.3" height="15.0" fill="rgb(241,3,11)" rx="2" ry="2" />
|
|
<text x="171.63" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_copy (2 samples, 0.01%)</title><rect x="222.2" y="229" width="0.1" height="15.0" fill="rgb(248,55,14)" rx="2" ry="2" />
|
|
<text x="225.16" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="224.1" y="309" width="0.2" height="15.0" fill="rgb(213,188,8)" rx="2" ry="2" />
|
|
<text x="227.08" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (3 samples, 0.02%)</title><rect x="949.4" y="485" width="0.2" height="15.0" fill="rgb(236,211,34)" rx="2" ry="2" />
|
|
<text x="952.39" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (14 samples, 0.07%)</title><rect x="1160.8" y="533" width="0.9" height="15.0" fill="rgb(246,104,6)" rx="2" ry="2" />
|
|
<text x="1163.83" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (4 samples, 0.02%)</title><rect x="164.0" y="181" width="0.2" height="15.0" fill="rgb(245,54,13)" rx="2" ry="2" />
|
|
<text x="167.00" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>packet_get_direction (2 samples, 0.01%)</title><rect x="242.6" y="437" width="0.1" height="15.0" fill="rgb(229,153,27)" rx="2" ry="2" />
|
|
<text x="245.57" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_ip_plugin_table_get_ex_data (8 samples, 0.04%)</title><rect x="53.7" y="613" width="0.5" height="15.0" fill="rgb(229,67,44)" rx="2" ry="2" />
|
|
<text x="56.69" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (18 samples, 0.09%)</title><rect x="106.6" y="437" width="1.1" height="15.0" fill="rgb(253,37,19)" rx="2" ry="2" />
|
|
<text x="109.63" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_query_one (16 samples, 0.08%)</title><rect x="1004.5" y="325" width="1.0" height="15.0" fill="rgb(218,24,35)" rx="2" ry="2" />
|
|
<text x="1007.55" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (45 samples, 0.23%)</title><rect x="216.6" y="501" width="2.7" height="15.0" fill="rgb(211,157,15)" rx="2" ry="2" />
|
|
<text x="219.58" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (2 samples, 0.01%)</title><rect x="1085.4" y="293" width="0.2" height="15.0" fill="rgb(231,55,28)" rx="2" ry="2" />
|
|
<text x="1088.45" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (9 samples, 0.05%)</title><rect x="184.8" y="373" width="0.6" height="15.0" fill="rgb(228,23,20)" rx="2" ry="2" />
|
|
<text x="187.83" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (38 samples, 0.19%)</title><rect x="154.5" y="437" width="2.2" height="15.0" fill="rgb(239,109,9)" rx="2" ry="2" />
|
|
<text x="157.46" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_pop_and_record_popped_back (2 samples, 0.01%)</title><rect x="884.6" y="293" width="0.2" height="15.0" fill="rgb(223,65,34)" rx="2" ry="2" />
|
|
<text x="887.63" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_palloc (6 samples, 0.03%)</title><rect x="179.2" y="389" width="0.4" height="15.0" fill="rgb(253,58,4)" rx="2" ry="2" />
|
|
<text x="182.25" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="1141.9" y="277" width="0.3" height="15.0" fill="rgb(208,66,41)" rx="2" ry="2" />
|
|
<text x="1144.93" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (12 samples, 0.06%)</title><rect x="1167.3" y="517" width="0.7" height="15.0" fill="rgb(231,72,45)" rx="2" ry="2" />
|
|
<text x="1170.25" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (3 samples, 0.02%)</title><rect x="798.0" y="373" width="0.2" height="15.0" fill="rgb(205,40,46)" rx="2" ry="2" />
|
|
<text x="801.03" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_version@plt (2 samples, 0.01%)</title><rect x="934.6" y="421" width="0.1" height="15.0" fill="rgb(230,190,32)" rx="2" ry="2" />
|
|
<text x="937.63" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="436.4" y="485" width="0.1" height="15.0" fill="rgb(229,143,26)" rx="2" ry="2" />
|
|
<text x="439.42" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="145.8" y="405" width="0.1" height="15.0" fill="rgb(227,45,46)" rx="2" ry="2" />
|
|
<text x="148.76" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="787.9" y="245" width="0.1" height="15.0" fill="rgb(209,127,43)" rx="2" ry="2" />
|
|
<text x="790.88" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (156 samples, 0.79%)</title><rect x="425.3" y="453" width="9.3" height="15.0" fill="rgb(211,166,30)" rx="2" ry="2" />
|
|
<text x="428.26" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (5 samples, 0.03%)</title><rect x="171.4" y="405" width="0.3" height="15.0" fill="rgb(213,4,33)" rx="2" ry="2" />
|
|
<text x="174.39" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (4 samples, 0.02%)</title><rect x="732.5" y="453" width="0.3" height="15.0" fill="rgb(250,172,49)" rx="2" ry="2" />
|
|
<text x="735.55" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (7 samples, 0.04%)</title><rect x="917.4" y="389" width="0.4" height="15.0" fill="rgb(245,16,21)" rx="2" ry="2" />
|
|
<text x="920.40" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="184.7" y="373" width="0.1" height="15.0" fill="rgb(221,190,5)" rx="2" ry="2" />
|
|
<text x="187.65" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchr_avx2 (2 samples, 0.01%)</title><rect x="522.0" y="357" width="0.1" height="15.0" fill="rgb(249,199,20)" rx="2" ry="2" />
|
|
<text x="525.01" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (2 samples, 0.01%)</title><rect x="349.5" y="325" width="0.1" height="15.0" fill="rgb(244,225,25)" rx="2" ry="2" />
|
|
<text x="352.46" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get0_current_payload (3 samples, 0.02%)</title><rect x="242.7" y="437" width="0.2" height="15.0" fill="rgb(228,137,16)" rx="2" ry="2" />
|
|
<text x="245.75" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="377.7" y="149" width="0.2" height="15.0" fill="rgb(225,140,51)" rx="2" ry="2" />
|
|
<text x="380.73" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (6 samples, 0.03%)</title><rect x="189.9" y="389" width="0.4" height="15.0" fill="rgb(216,69,35)" rx="2" ry="2" />
|
|
<text x="192.93" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="184.0" y="389" width="0.4" height="15.0" fill="rgb(237,43,41)" rx="2" ry="2" />
|
|
<text x="186.99" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_lv1 (2 samples, 0.01%)</title><rect x="172.4" y="437" width="0.1" height="15.0" fill="rgb(224,29,46)" rx="2" ry="2" />
|
|
<text x="175.41" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (4 samples, 0.02%)</title><rect x="1034.6" y="293" width="0.3" height="15.0" fill="rgb(235,170,8)" rx="2" ry="2" />
|
|
<text x="1037.62" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (7 samples, 0.04%)</title><rect x="666.1" y="341" width="0.4" height="15.0" fill="rgb(246,1,42)" rx="2" ry="2" />
|
|
<text x="669.11" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (2 samples, 0.01%)</title><rect x="1145.5" y="357" width="0.1" height="15.0" fill="rgb(235,42,50)" rx="2" ry="2" />
|
|
<text x="1148.47" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_integer (6 samples, 0.03%)</title><rect x="192.5" y="421" width="0.4" height="15.0" fill="rgb(228,207,45)" rx="2" ry="2" />
|
|
<text x="195.51" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (8 samples, 0.04%)</title><rect x="1041.4" y="261" width="0.5" height="15.0" fill="rgb(242,192,0)" rx="2" ry="2" />
|
|
<text x="1044.40" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (190 samples, 0.97%)</title><rect x="81.1" y="597" width="11.4" height="15.0" fill="rgb(214,100,33)" rx="2" ry="2" />
|
|
<text x="84.06" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (5 samples, 0.03%)</title><rect x="47.3" y="533" width="0.3" height="15.0" fill="rgb(215,221,47)" rx="2" ry="2" />
|
|
<text x="50.33" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (15 samples, 0.08%)</title><rect x="893.1" y="549" width="0.9" height="15.0" fill="rgb(214,228,11)" rx="2" ry="2" />
|
|
<text x="896.09" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (5 samples, 0.03%)</title><rect x="349.0" y="501" width="0.3" height="15.0" fill="rgb(254,45,10)" rx="2" ry="2" />
|
|
<text x="352.04" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="144.9" y="325" width="0.2" height="15.0" fill="rgb(233,25,40)" rx="2" ry="2" />
|
|
<text x="147.86" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (12 samples, 0.06%)</title><rect x="1142.9" y="453" width="0.7" height="15.0" fill="rgb(228,19,51)" rx="2" ry="2" />
|
|
<text x="1145.89" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="252.3" y="341" width="0.2" height="15.0" fill="rgb(215,149,52)" rx="2" ry="2" />
|
|
<text x="255.35" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1147.9" y="405" width="0.3" height="15.0" fill="rgb(222,4,21)" rx="2" ry="2" />
|
|
<text x="1150.87" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="1080.7" y="437" width="0.1" height="15.0" fill="rgb(233,6,46)" rx="2" ry="2" />
|
|
<text x="1083.71" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (815 samples, 4.15%)</title><rect x="104.5" y="629" width="48.9" height="15.0" fill="rgb(207,34,43)" rx="2" ry="2" />
|
|
<text x="107.53" y="639.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (16 samples, 0.08%)</title><rect x="147.4" y="437" width="0.9" height="15.0" fill="rgb(248,20,31)" rx="2" ry="2" />
|
|
<text x="150.38" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="417.6" y="229" width="0.1" height="15.0" fill="rgb(240,139,1)" rx="2" ry="2" />
|
|
<text x="420.58" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (10 samples, 0.05%)</title><rect x="1188.0" y="469" width="0.6" height="15.0" fill="rgb(239,8,11)" rx="2" ry="2" />
|
|
<text x="1191.02" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (19 samples, 0.10%)</title><rect x="156.7" y="485" width="1.2" height="15.0" fill="rgb(213,3,29)" rx="2" ry="2" />
|
|
<text x="159.74" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (2 samples, 0.01%)</title><rect x="1184.8" y="373" width="0.2" height="15.0" fill="rgb(225,126,41)" rx="2" ry="2" />
|
|
<text x="1187.84" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="376.6" y="213" width="0.1" height="15.0" fill="rgb(243,81,8)" rx="2" ry="2" />
|
|
<text x="379.59" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_opt_from_rawpkt (4 samples, 0.02%)</title><rect x="1016.7" y="453" width="0.3" height="15.0" fill="rgb(222,132,45)" rx="2" ry="2" />
|
|
<text x="1019.73" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (320 samples, 1.63%)</title><rect x="678.6" y="533" width="19.2" height="15.0" fill="rgb(210,127,43)" rx="2" ry="2" />
|
|
<text x="681.59" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (277 samples, 1.41%)</title><rect x="190.3" y="469" width="16.6" height="15.0" fill="rgb(239,135,32)" rx="2" ry="2" />
|
|
<text x="193.29" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (24 samples, 0.12%)</title><rect x="158.2" y="389" width="1.4" height="15.0" fill="rgb(221,167,1)" rx="2" ry="2" />
|
|
<text x="161.18" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (3 samples, 0.02%)</title><rect x="1099.3" y="357" width="0.2" height="15.0" fill="rgb(221,163,10)" rx="2" ry="2" />
|
|
<text x="1102.31" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="257.3" y="581" width="0.4" height="15.0" fill="rgb(242,2,33)" rx="2" ry="2" />
|
|
<text x="260.33" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="145.4" y="389" width="0.1" height="15.0" fill="rgb(205,204,47)" rx="2" ry="2" />
|
|
<text x="148.40" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (4 samples, 0.02%)</title><rect x="583.6" y="245" width="0.2" height="15.0" fill="rgb(224,15,24)" rx="2" ry="2" />
|
|
<text x="586.59" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pop_heap (3 samples, 0.02%)</title><rect x="959.9" y="261" width="0.2" height="15.0" fill="rgb(237,154,6)" rx="2" ry="2" />
|
|
<text x="962.89" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (801 samples, 4.07%)</title><rect x="105.4" y="613" width="48.0" height="15.0" fill="rgb(212,71,6)" rx="2" ry="2" />
|
|
<text x="108.37" y="623.5" >eth_..</text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_ip_address_set (9 samples, 0.05%)</title><rect x="793.3" y="405" width="0.5" height="15.0" fill="rgb(247,197,17)" rx="2" ry="2" />
|
|
<text x="796.29" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (194 samples, 0.99%)</title><rect x="232.1" y="517" width="11.7" height="15.0" fill="rgb(248,23,48)" rx="2" ry="2" />
|
|
<text x="235.12" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_reset_withSeed (2 samples, 0.01%)</title><rect x="632.9" y="309" width="0.1" height="15.0" fill="rgb(217,72,42)" rx="2" ry="2" />
|
|
<text x="635.92" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_unlock@plt (2 samples, 0.01%)</title><rect x="660.7" y="373" width="0.1" height="15.0" fill="rgb(243,180,49)" rx="2" ry="2" />
|
|
<text x="663.71" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="948.9" y="485" width="0.4" height="15.0" fill="rgb(234,217,9)" rx="2" ry="2" />
|
|
<text x="951.85" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (7 samples, 0.04%)</title><rect x="100.3" y="613" width="0.4" height="15.0" fill="rgb(251,35,7)" rx="2" ry="2" />
|
|
<text x="103.27" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (2 samples, 0.01%)</title><rect x="1096.9" y="373" width="0.1" height="15.0" fill="rgb(220,173,44)" rx="2" ry="2" />
|
|
<text x="1099.91" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (120 samples, 0.61%)</title><rect x="207.4" y="469" width="7.2" height="15.0" fill="rgb(210,45,31)" rx="2" ry="2" />
|
|
<text x="210.40" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (2 samples, 0.01%)</title><rect x="704.2" y="341" width="0.1" height="15.0" fill="rgb(205,63,16)" rx="2" ry="2" />
|
|
<text x="707.22" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (5 samples, 0.03%)</title><rect x="788.9" y="309" width="0.3" height="15.0" fill="rgb(223,11,7)" rx="2" ry="2" />
|
|
<text x="791.90" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (33 samples, 0.17%)</title><rect x="414.4" y="309" width="2.0" height="15.0" fill="rgb(251,187,20)" rx="2" ry="2" />
|
|
<text x="417.40" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (73 samples, 0.37%)</title><rect x="148.3" y="453" width="4.4" height="15.0" fill="rgb(214,98,24)" rx="2" ry="2" />
|
|
<text x="151.34" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (8 samples, 0.04%)</title><rect x="251.7" y="437" width="0.5" height="15.0" fill="rgb(213,134,35)" rx="2" ry="2" />
|
|
<text x="254.75" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="105.7" y="293" width="0.1" height="15.0" fill="rgb(235,112,16)" rx="2" ry="2" />
|
|
<text x="108.67" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (12 samples, 0.06%)</title><rect x="152.7" y="565" width="0.7" height="15.0" fill="rgb(251,95,25)" rx="2" ry="2" />
|
|
<text x="155.72" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="376.6" y="197" width="0.1" height="15.0" fill="rgb(219,209,17)" rx="2" ry="2" />
|
|
<text x="379.59" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>parse_resource_record (21 samples, 0.11%)</title><rect x="1182.0" y="645" width="1.3" height="15.0" fill="rgb(212,173,28)" rx="2" ry="2" />
|
|
<text x="1185.02" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (19 samples, 0.10%)</title><rect x="158.2" y="341" width="1.1" height="15.0" fill="rgb(230,138,39)" rx="2" ry="2" />
|
|
<text x="161.18" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>memcpy@plt (2 samples, 0.01%)</title><rect x="369.4" y="421" width="0.1" height="15.0" fill="rgb(246,117,48)" rx="2" ry="2" />
|
|
<text x="372.38" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="756.6" y="421" width="0.4" height="15.0" fill="rgb(209,222,2)" rx="2" ry="2" />
|
|
<text x="759.56" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (65 samples, 0.33%)</title><rect x="43.8" y="549" width="3.9" height="15.0" fill="rgb(223,124,50)" rx="2" ry="2" />
|
|
<text x="46.79" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (2 samples, 0.01%)</title><rect x="1185.0" y="357" width="0.1" height="15.0" fill="rgb(210,204,35)" rx="2" ry="2" />
|
|
<text x="1187.96" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="1144.1" y="517" width="0.2" height="15.0" fill="rgb(214,203,20)" rx="2" ry="2" />
|
|
<text x="1147.15" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_fieldstat_tag_set (2 samples, 0.01%)</title><rect x="793.2" y="373" width="0.1" height="15.0" fill="rgb(216,45,27)" rx="2" ry="2" />
|
|
<text x="796.17" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (5 samples, 0.03%)</title><rect x="1189.2" y="373" width="0.3" height="15.0" fill="rgb(234,20,15)" rx="2" ry="2" />
|
|
<text x="1192.16" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (876 samples, 4.46%)</title><rect x="800.1" y="357" width="52.6" height="15.0" fill="rgb(209,140,41)" rx="2" ry="2" />
|
|
<text x="803.13" y="367.5" >field..</text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (150 samples, 0.76%)</title><rect x="1035.6" y="389" width="9.0" height="15.0" fill="rgb(222,176,5)" rx="2" ry="2" />
|
|
<text x="1038.64" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (15 samples, 0.08%)</title><rect x="157.0" y="389" width="0.9" height="15.0" fill="rgb(245,223,33)" rx="2" ry="2" />
|
|
<text x="159.98" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="53.5" y="581" width="0.1" height="15.0" fill="rgb(223,172,10)" rx="2" ry="2" />
|
|
<text x="56.45" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="522.8" y="469" width="0.2" height="15.0" fill="rgb(253,187,14)" rx="2" ry="2" />
|
|
<text x="525.79" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (86 samples, 0.44%)</title><rect x="1184.0" y="597" width="5.2" height="15.0" fill="rgb(209,27,15)" rx="2" ry="2" />
|
|
<text x="1187.00" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="1187.5" y="437" width="0.4" height="15.0" fill="rgb(252,53,46)" rx="2" ry="2" />
|
|
<text x="1190.48" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (11 samples, 0.06%)</title><rect x="1003.9" y="293" width="0.6" height="15.0" fill="rgb(216,178,28)" rx="2" ry="2" />
|
|
<text x="1006.89" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (4 samples, 0.02%)</title><rect x="219.8" y="389" width="0.3" height="15.0" fill="rgb(237,174,42)" rx="2" ry="2" />
|
|
<text x="222.82" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="756.7" y="389" width="0.1" height="15.0" fill="rgb(241,20,39)" rx="2" ry="2" />
|
|
<text x="759.68" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (9 samples, 0.05%)</title><rect x="349.9" y="485" width="0.6" height="15.0" fill="rgb(213,111,8)" rx="2" ry="2" />
|
|
<text x="352.94" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (5 samples, 0.03%)</title><rect x="1143.8" y="517" width="0.3" height="15.0" fill="rgb(223,204,10)" rx="2" ry="2" />
|
|
<text x="1146.79" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (4 samples, 0.02%)</title><rect x="581.5" y="245" width="0.2" height="15.0" fill="rgb(211,214,54)" rx="2" ry="2" />
|
|
<text x="584.48" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_marsio_6 (19,661 samples, 100.00%)</title><rect x="10.0" y="677" width="1180.0" height="15.0" fill="rgb(251,25,42)" rx="2" ry="2" />
|
|
<text x="13.00" y="687.5" >sapp_marsio_6</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (9 samples, 0.05%)</title><rect x="106.6" y="389" width="0.6" height="15.0" fill="rgb(239,206,29)" rx="2" ry="2" />
|
|
<text x="109.63" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="431.7" y="405" width="0.2" height="15.0" fill="rgb(225,1,43)" rx="2" ry="2" />
|
|
<text x="434.74" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_make_jhash (30 samples, 0.15%)</title><rect x="466.7" y="517" width="1.8" height="15.0" fill="rgb(241,15,12)" rx="2" ry="2" />
|
|
<text x="469.73" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1147.9" y="421" width="0.3" height="15.0" fill="rgb(221,211,35)" rx="2" ry="2" />
|
|
<text x="1150.87" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="1144.1" y="421" width="0.2" height="15.0" fill="rgb(210,28,3)" rx="2" ry="2" />
|
|
<text x="1147.15" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (11 samples, 0.06%)</title><rect x="1145.9" y="597" width="0.6" height="15.0" fill="rgb(241,88,49)" rx="2" ry="2" />
|
|
<text x="1148.89" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>task_numa_work (12 samples, 0.06%)</title><rect x="247.5" y="293" width="0.7" height="15.0" fill="rgb(225,180,33)" rx="2" ry="2" />
|
|
<text x="250.49" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_xorshift64 (4 samples, 0.02%)</title><rect x="508.1" y="213" width="0.3" height="15.0" fill="rgb(253,143,4)" rx="2" ry="2" />
|
|
<text x="511.14" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (4 samples, 0.02%)</title><rect x="437.1" y="533" width="0.3" height="15.0" fill="rgb(238,99,17)" rx="2" ry="2" />
|
|
<text x="440.14" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (10 samples, 0.05%)</title><rect x="778.8" y="373" width="0.6" height="15.0" fill="rgb(244,54,33)" rx="2" ry="2" />
|
|
<text x="781.82" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="156.7" y="373" width="0.2" height="15.0" fill="rgb(218,214,27)" rx="2" ry="2" />
|
|
<text x="159.74" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (85 samples, 0.43%)</title><rect x="42.6" y="581" width="5.1" height="15.0" fill="rgb(218,12,34)" rx="2" ry="2" />
|
|
<text x="45.59" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (4 samples, 0.02%)</title><rect x="582.5" y="261" width="0.2" height="15.0" fill="rgb(253,177,39)" rx="2" ry="2" />
|
|
<text x="585.50" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="165" width="0.3" height="15.0" fill="rgb(248,40,19)" rx="2" ry="2" />
|
|
<text x="1146.85" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>file_ascmagic (3 samples, 0.02%)</title><rect x="403.7" y="197" width="0.1" height="15.0" fill="rgb(227,67,54)" rx="2" ry="2" />
|
|
<text x="406.65" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (126 samples, 0.64%)</title><rect x="410.7" y="389" width="7.5" height="15.0" fill="rgb(211,105,26)" rx="2" ry="2" />
|
|
<text x="413.68" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (185 samples, 0.94%)</title><rect x="1083.1" y="501" width="11.1" height="15.0" fill="rgb(225,133,23)" rx="2" ry="2" />
|
|
<text x="1086.11" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_64bits_reset_withSeed (3 samples, 0.02%)</title><rect x="509.6" y="293" width="0.2" height="15.0" fill="rgb(232,203,0)" rx="2" ry="2" />
|
|
<text x="512.58" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (54 samples, 0.27%)</title><rect x="517.3" y="341" width="3.3" height="15.0" fill="rgb(219,95,43)" rx="2" ry="2" />
|
|
<text x="520.33" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="925.3" y="197" width="0.1" height="15.0" fill="rgb(231,160,26)" rx="2" ry="2" />
|
|
<text x="928.26" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (57 samples, 0.29%)</title><rect x="573.3" y="373" width="3.4" height="15.0" fill="rgb(216,19,48)" rx="2" ry="2" />
|
|
<text x="576.26" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (16 samples, 0.08%)</title><rect x="147.4" y="485" width="0.9" height="15.0" fill="rgb(227,166,47)" rx="2" ry="2" />
|
|
<text x="150.38" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithLength (3 samples, 0.02%)</title><rect x="928.0" y="357" width="0.1" height="15.0" fill="rgb(227,166,31)" rx="2" ry="2" />
|
|
<text x="930.96" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (32 samples, 0.16%)</title><rect x="102.4" y="597" width="1.9" height="15.0" fill="rgb(219,113,53)" rx="2" ry="2" />
|
|
<text x="105.37" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libosfp.so.1.3] (2 samples, 0.01%)</title><rect x="1148.3" y="485" width="0.2" height="15.0" fill="rgb(216,181,7)" rx="2" ry="2" />
|
|
<text x="1151.35" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (3 samples, 0.02%)</title><rect x="908.5" y="501" width="0.2" height="15.0" fill="rgb(216,169,16)" rx="2" ry="2" />
|
|
<text x="911.52" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_set_scan_district (2 samples, 0.01%)</title><rect x="413.1" y="213" width="0.1" height="15.0" fill="rgb(237,12,49)" rx="2" ry="2" />
|
|
<text x="416.08" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_query_one (35 samples, 0.18%)</title><rect x="625.2" y="325" width="2.1" height="15.0" fill="rgb(217,48,46)" rx="2" ry="2" />
|
|
<text x="628.24" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (2 samples, 0.01%)</title><rect x="1073.7" y="261" width="0.2" height="15.0" fill="rgb(229,55,22)" rx="2" ry="2" />
|
|
<text x="1076.75" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (346 samples, 1.76%)</title><rect x="388.0" y="373" width="20.8" height="15.0" fill="rgb(222,222,10)" rx="2" ry="2" />
|
|
<text x="391.05" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (13 samples, 0.07%)</title><rect x="21.9" y="533" width="0.8" height="15.0" fill="rgb(248,70,11)" rx="2" ry="2" />
|
|
<text x="24.88" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (736 samples, 3.74%)</title><rect x="974.0" y="501" width="44.2" height="15.0" fill="rgb(218,113,6)" rx="2" ry="2" />
|
|
<text x="977.00" y="511.5" >call..</text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (13 samples, 0.07%)</title><rect x="170.6" y="437" width="0.8" height="15.0" fill="rgb(217,215,22)" rx="2" ry="2" />
|
|
<text x="173.61" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="917.5" y="309" width="0.3" height="15.0" fill="rgb(236,212,11)" rx="2" ry="2" />
|
|
<text x="920.46" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get0_current_payload (5 samples, 0.03%)</title><rect x="206.5" y="437" width="0.3" height="15.0" fill="rgb(223,227,26)" rx="2" ry="2" />
|
|
<text x="209.50" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="1084.1" y="325" width="0.1" height="15.0" fill="rgb(217,107,39)" rx="2" ry="2" />
|
|
<text x="1087.13" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (3 samples, 0.02%)</title><rect x="219.3" y="485" width="0.2" height="15.0" fill="rgb(250,144,5)" rx="2" ry="2" />
|
|
<text x="222.28" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get (4 samples, 0.02%)</title><rect x="151.9" y="421" width="0.2" height="15.0" fill="rgb(239,112,51)" rx="2" ry="2" />
|
|
<text x="154.88" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (8 samples, 0.04%)</title><rect x="206.9" y="533" width="0.5" height="15.0" fill="rgb(237,75,31)" rx="2" ry="2" />
|
|
<text x="209.92" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (4 samples, 0.02%)</title><rect x="219.8" y="421" width="0.3" height="15.0" fill="rgb(220,91,25)" rx="2" ry="2" />
|
|
<text x="222.82" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (12 samples, 0.06%)</title><rect x="1183.3" y="661" width="0.7" height="15.0" fill="rgb(241,3,37)" rx="2" ry="2" />
|
|
<text x="1186.28" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (50 samples, 0.25%)</title><rect x="221.6" y="437" width="3.0" height="15.0" fill="rgb(220,103,39)" rx="2" ry="2" />
|
|
<text x="224.56" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1147.6" y="405" width="0.3" height="15.0" fill="rgb(232,148,5)" rx="2" ry="2" />
|
|
<text x="1150.63" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_avx2_movbe (2 samples, 0.01%)</title><rect x="316.9" y="565" width="0.1" height="15.0" fill="rgb(208,132,32)" rx="2" ry="2" />
|
|
<text x="319.93" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_primitive_free (6 samples, 0.03%)</title><rect x="109.5" y="293" width="0.4" height="15.0" fill="rgb(210,128,24)" rx="2" ry="2" />
|
|
<text x="112.51" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_delete_item (25 samples, 0.13%)</title><rect x="1161.7" y="533" width="1.5" height="15.0" fill="rgb(231,61,36)" rx="2" ry="2" />
|
|
<text x="1164.67" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1141.4" y="565" width="0.1" height="15.0" fill="rgb(241,48,26)" rx="2" ry="2" />
|
|
<text x="1144.39" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="733.4" y="373" width="0.2" height="15.0" fill="rgb(223,60,1)" rx="2" ry="2" />
|
|
<text x="736.39" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="760.5" y="373" width="0.1" height="15.0" fill="rgb(251,123,12)" rx="2" ry="2" />
|
|
<text x="763.46" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (2 samples, 0.01%)</title><rect x="734.0" y="405" width="0.2" height="15.0" fill="rgb(247,204,49)" rx="2" ry="2" />
|
|
<text x="737.05" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_easy_counter_incrby (89 samples, 0.45%)</title><rect x="774.1" y="389" width="5.3" height="15.0" fill="rgb(238,178,44)" rx="2" ry="2" />
|
|
<text x="777.08" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (151 samples, 0.77%)</title><rect x="410.3" y="421" width="9.0" height="15.0" fill="rgb(235,0,23)" rx="2" ry="2" />
|
|
<text x="413.26" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (2 samples, 0.01%)</title><rect x="254.3" y="469" width="0.1" height="15.0" fill="rgb(254,20,2)" rx="2" ry="2" />
|
|
<text x="257.27" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="428.3" y="309" width="0.1" height="15.0" fill="rgb(209,88,30)" rx="2" ry="2" />
|
|
<text x="431.26" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pop_heap (6 samples, 0.03%)</title><rect x="503.7" y="261" width="0.4" height="15.0" fill="rgb(228,137,16)" rx="2" ry="2" />
|
|
<text x="506.70" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (387 samples, 1.97%)</title><rect x="991.6" y="373" width="23.2" height="15.0" fill="rgb(212,112,50)" rx="2" ry="2" />
|
|
<text x="994.58" y="383.5" >f..</text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (6 samples, 0.03%)</title><rect x="213.0" y="421" width="0.4" height="15.0" fill="rgb(243,179,15)" rx="2" ry="2" />
|
|
<text x="216.04" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="254.3" y="437" width="0.1" height="15.0" fill="rgb(244,18,7)" rx="2" ry="2" />
|
|
<text x="257.27" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (233 samples, 1.19%)</title><rect x="1066.4" y="389" width="13.9" height="15.0" fill="rgb(251,5,51)" rx="2" ry="2" />
|
|
<text x="1069.36" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (295 samples, 1.50%)</title><rect x="172.6" y="485" width="17.7" height="15.0" fill="rgb(217,220,2)" rx="2" ry="2" />
|
|
<text x="175.59" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_CreateString (3 samples, 0.02%)</title><rect x="156.0" y="405" width="0.2" height="15.0" fill="rgb(206,158,27)" rx="2" ry="2" />
|
|
<text x="159.02" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="207.2" y="405" width="0.1" height="15.0" fill="rgb(212,66,23)" rx="2" ry="2" />
|
|
<text x="210.16" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (6 samples, 0.03%)</title><rect x="834.3" y="277" width="0.4" height="15.0" fill="rgb(223,218,36)" rx="2" ry="2" />
|
|
<text x="837.34" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (54 samples, 0.27%)</title><rect x="1144.3" y="661" width="3.3" height="15.0" fill="rgb(206,2,6)" rx="2" ry="2" />
|
|
<text x="1147.33" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1141.4" y="581" width="0.1" height="15.0" fill="rgb(243,209,12)" rx="2" ry="2" />
|
|
<text x="1144.39" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="221.9" y="165" width="0.2" height="15.0" fill="rgb(235,99,23)" rx="2" ry="2" />
|
|
<text x="224.92" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>file_vprintf (2 samples, 0.01%)</title><rect x="1184.1" y="197" width="0.1" height="15.0" fill="rgb(224,138,26)" rx="2" ry="2" />
|
|
<text x="1187.06" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (4 samples, 0.02%)</title><rect x="499.7" y="245" width="0.2" height="15.0" fill="rgb(244,157,41)" rx="2" ry="2" />
|
|
<text x="502.68" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (59 samples, 0.30%)</title><rect x="668.0" y="549" width="3.6" height="15.0" fill="rgb(223,214,25)" rx="2" ry="2" />
|
|
<text x="671.03" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (3 samples, 0.02%)</title><rect x="211.7" y="357" width="0.2" height="15.0" fill="rgb(216,66,2)" rx="2" ry="2" />
|
|
<text x="214.72" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_app_and_proto_update (2 samples, 0.01%)</title><rect x="1099.2" y="389" width="0.1" height="15.0" fill="rgb(230,206,48)" rx="2" ry="2" />
|
|
<text x="1102.19" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_insert (2 samples, 0.01%)</title><rect x="154.2" y="229" width="0.1" height="15.0" fill="rgb(242,91,48)" rx="2" ry="2" />
|
|
<text x="157.22" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultRegion (18 samples, 0.09%)</title><rect x="928.4" y="373" width="1.1" height="15.0" fill="rgb(214,129,22)" rx="2" ry="2" />
|
|
<text x="931.38" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (43 samples, 0.22%)</title><rect x="246.1" y="517" width="2.6" height="15.0" fill="rgb(220,227,35)" rx="2" ry="2" />
|
|
<text x="249.11" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="223.1" y="117" width="0.1" height="15.0" fill="rgb(240,5,4)" rx="2" ry="2" />
|
|
<text x="226.12" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (6 samples, 0.03%)</title><rect x="384.1" y="341" width="0.4" height="15.0" fill="rgb(222,192,48)" rx="2" ry="2" />
|
|
<text x="387.15" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_polling_inject_context (4 samples, 0.02%)</title><rect x="1018.4" y="533" width="0.2" height="15.0" fill="rgb(212,149,38)" rx="2" ry="2" />
|
|
<text x="1021.35" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (5 samples, 0.03%)</title><rect x="222.3" y="213" width="0.3" height="15.0" fill="rgb(215,121,20)" rx="2" ry="2" />
|
|
<text x="225.28" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="105.4" y="453" width="0.2" height="15.0" fill="rgb(235,173,44)" rx="2" ry="2" />
|
|
<text x="108.37" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (6 samples, 0.03%)</title><rect x="223.7" y="357" width="0.3" height="15.0" fill="rgb(234,99,13)" rx="2" ry="2" />
|
|
<text x="226.66" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1147.9" y="357" width="0.3" height="15.0" fill="rgb(246,16,3)" rx="2" ry="2" />
|
|
<text x="1150.87" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="22.5" y="517" width="0.2" height="15.0" fill="rgb(241,50,48)" rx="2" ry="2" />
|
|
<text x="25.54" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="414.0" y="293" width="0.3" height="15.0" fill="rgb(230,53,18)" rx="2" ry="2" />
|
|
<text x="416.98" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="478.0" y="421" width="0.1" height="15.0" fill="rgb(217,162,9)" rx="2" ry="2" />
|
|
<text x="480.95" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (197 samples, 1.00%)</title><rect x="1082.7" y="517" width="11.8" height="15.0" fill="rgb(252,129,4)" rx="2" ry="2" />
|
|
<text x="1085.69" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (2 samples, 0.01%)</title><rect x="882.2" y="325" width="0.2" height="15.0" fill="rgb(251,205,40)" rx="2" ry="2" />
|
|
<text x="885.23" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (3 samples, 0.02%)</title><rect x="1144.1" y="629" width="0.2" height="15.0" fill="rgb(247,73,34)" rx="2" ry="2" />
|
|
<text x="1147.15" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (16 samples, 0.08%)</title><rect x="147.4" y="565" width="0.9" height="15.0" fill="rgb(220,175,15)" rx="2" ry="2" />
|
|
<text x="150.38" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_thread (86 samples, 0.44%)</title><rect x="1184.0" y="661" width="5.2" height="15.0" fill="rgb(242,86,38)" rx="2" ry="2" />
|
|
<text x="1187.00" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (3 samples, 0.02%)</title><rect x="1044.9" y="389" width="0.2" height="15.0" fill="rgb(218,72,23)" rx="2" ry="2" />
|
|
<text x="1047.88" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (5 samples, 0.03%)</title><rect x="157.9" y="405" width="0.3" height="15.0" fill="rgb(213,162,52)" rx="2" ry="2" />
|
|
<text x="160.88" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (2 samples, 0.01%)</title><rect x="523.9" y="405" width="0.1" height="15.0" fill="rgb(218,13,26)" rx="2" ry="2" />
|
|
<text x="526.87" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (288 samples, 1.46%)</title><rect x="1150.7" y="581" width="17.3" height="15.0" fill="rgb(225,88,12)" rx="2" ry="2" />
|
|
<text x="1153.69" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_set_scan_district (3 samples, 0.02%)</title><rect x="413.5" y="213" width="0.2" height="15.0" fill="rgb(214,225,20)" rx="2" ry="2" />
|
|
<text x="416.50" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_htable.so] (2 samples, 0.01%)</title><rect x="325.8" y="533" width="0.1" height="15.0" fill="rgb(235,92,33)" rx="2" ry="2" />
|
|
<text x="328.75" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>map_flow_id_hash_to_bucket (2 samples, 0.01%)</title><rect x="714.7" y="293" width="0.1" height="15.0" fill="rgb(207,118,9)" rx="2" ry="2" />
|
|
<text x="717.66" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (13 samples, 0.07%)</title><rect x="908.8" y="485" width="0.7" height="15.0" fill="rgb(253,149,48)" rx="2" ry="2" />
|
|
<text x="911.76" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (9 samples, 0.05%)</title><rect x="885.1" y="357" width="0.6" height="15.0" fill="rgb(241,179,14)" rx="2" ry="2" />
|
|
<text x="888.11" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (8 samples, 0.04%)</title><rect x="355.0" y="309" width="0.5" height="15.0" fill="rgb(245,96,21)" rx="2" ry="2" />
|
|
<text x="358.04" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (2 samples, 0.01%)</title><rect x="437.0" y="533" width="0.1" height="15.0" fill="rgb(233,207,27)" rx="2" ry="2" />
|
|
<text x="440.02" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (12 samples, 0.06%)</title><rect x="113.7" y="421" width="0.7" height="15.0" fill="rgb(244,74,52)" rx="2" ry="2" />
|
|
<text x="116.71" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (34 samples, 0.17%)</title><rect x="51.2" y="613" width="2.0" height="15.0" fill="rgb(209,180,0)" rx="2" ry="2" />
|
|
<text x="54.17" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (6 samples, 0.03%)</title><rect x="910.7" y="341" width="0.3" height="15.0" fill="rgb(213,190,48)" rx="2" ry="2" />
|
|
<text x="913.68" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (50 samples, 0.25%)</title><rect x="207.5" y="421" width="3.0" height="15.0" fill="rgb(239,98,43)" rx="2" ry="2" />
|
|
<text x="210.46" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (5 samples, 0.03%)</title><rect x="1145.6" y="565" width="0.3" height="15.0" fill="rgb(240,33,5)" rx="2" ry="2" />
|
|
<text x="1148.59" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (102 samples, 0.52%)</title><rect x="880.9" y="437" width="6.1" height="15.0" fill="rgb(248,18,26)" rx="2" ry="2" />
|
|
<text x="883.91" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (3 samples, 0.02%)</title><rect x="1074.5" y="277" width="0.1" height="15.0" fill="rgb(239,197,6)" rx="2" ry="2" />
|
|
<text x="1077.47" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (13 samples, 0.07%)</title><rect x="908.8" y="469" width="0.7" height="15.0" fill="rgb(234,221,43)" rx="2" ry="2" />
|
|
<text x="911.76" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_mult64to128 (2 samples, 0.01%)</title><rect x="709.4" y="197" width="0.1" height="15.0" fill="rgb(235,45,25)" rx="2" ry="2" />
|
|
<text x="712.38" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="252.3" y="405" width="0.2" height="15.0" fill="rgb(234,137,45)" rx="2" ry="2" />
|
|
<text x="255.35" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (10 samples, 0.05%)</title><rect x="144.2" y="517" width="0.6" height="15.0" fill="rgb(221,46,26)" rx="2" ry="2" />
|
|
<text x="147.20" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (3 samples, 0.02%)</title><rect x="1095.0" y="549" width="0.2" height="15.0" fill="rgb(244,37,43)" rx="2" ry="2" />
|
|
<text x="1097.99" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (2 samples, 0.01%)</title><rect x="522.8" y="421" width="0.2" height="15.0" fill="rgb(208,226,36)" rx="2" ry="2" />
|
|
<text x="525.85" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_easy_counter_incrby (50 samples, 0.25%)</title><rect x="985.5" y="389" width="3.0" height="15.0" fill="rgb(238,56,18)" rx="2" ry="2" />
|
|
<text x="988.46" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (22 samples, 0.11%)</title><rect x="626.0" y="277" width="1.3" height="15.0" fill="rgb(254,77,32)" rx="2" ry="2" />
|
|
<text x="629.02" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>parse_query_question (9 samples, 0.05%)</title><rect x="1181.5" y="645" width="0.5" height="15.0" fill="rgb(215,222,34)" rx="2" ry="2" />
|
|
<text x="1184.48" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (4 samples, 0.02%)</title><rect x="1041.6" y="245" width="0.3" height="15.0" fill="rgb(229,209,11)" rx="2" ry="2" />
|
|
<text x="1044.64" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="431.9" y="405" width="0.1" height="15.0" fill="rgb(229,36,4)" rx="2" ry="2" />
|
|
<text x="434.86" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1141.9" y="405" width="0.3" height="15.0" fill="rgb(249,208,2)" rx="2" ry="2" />
|
|
<text x="1144.93" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (7 samples, 0.04%)</title><rect x="210.5" y="405" width="0.4" height="15.0" fill="rgb(234,147,17)" rx="2" ry="2" />
|
|
<text x="213.52" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (10 samples, 0.05%)</title><rect x="153.9" y="421" width="0.6" height="15.0" fill="rgb(220,155,14)" rx="2" ry="2" />
|
|
<text x="156.86" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="220.7" y="293" width="0.1" height="15.0" fill="rgb(227,150,31)" rx="2" ry="2" />
|
|
<text x="223.72" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="920.8" y="277" width="0.1" height="15.0" fill="rgb(234,67,18)" rx="2" ry="2" />
|
|
<text x="923.76" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[mail.so] (4 samples, 0.02%)</title><rect x="423.9" y="405" width="0.3" height="15.0" fill="rgb(224,1,23)" rx="2" ry="2" />
|
|
<text x="426.94" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (5 samples, 0.03%)</title><rect x="219.5" y="517" width="0.3" height="15.0" fill="rgb(231,161,48)" rx="2" ry="2" />
|
|
<text x="222.46" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (7 samples, 0.04%)</title><rect x="412.8" y="325" width="0.5" height="15.0" fill="rgb(207,92,21)" rx="2" ry="2" />
|
|
<text x="415.84" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="157.8" y="261" width="0.1" height="15.0" fill="rgb(235,16,43)" rx="2" ry="2" />
|
|
<text x="160.76" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="145.5" y="373" width="0.3" height="15.0" fill="rgb(206,41,16)" rx="2" ry="2" />
|
|
<text x="148.52" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="360.6" y="469" width="0.1" height="15.0" fill="rgb(228,177,6)" rx="2" ry="2" />
|
|
<text x="363.56" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (18 samples, 0.09%)</title><rect x="520.6" y="373" width="1.1" height="15.0" fill="rgb(241,86,42)" rx="2" ry="2" />
|
|
<text x="523.63" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (3 samples, 0.02%)</title><rect x="148.0" y="405" width="0.2" height="15.0" fill="rgb(214,19,20)" rx="2" ry="2" />
|
|
<text x="151.04" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="178.5" y="245" width="0.6" height="15.0" fill="rgb(247,49,42)" rx="2" ry="2" />
|
|
<text x="181.47" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (6 samples, 0.03%)</title><rect x="929.5" y="357" width="0.4" height="15.0" fill="rgb(241,125,46)" rx="2" ry="2" />
|
|
<text x="932.52" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1054.8" y="373" width="0.2" height="15.0" fill="rgb(244,153,12)" rx="2" ry="2" />
|
|
<text x="1057.78" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (8 samples, 0.04%)</title><rect x="1005.0" y="277" width="0.5" height="15.0" fill="rgb(226,163,50)" rx="2" ry="2" />
|
|
<text x="1008.03" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_opt_from_rawpkt (2 samples, 0.01%)</title><rect x="876.2" y="453" width="0.1" height="15.0" fill="rgb(249,0,14)" rx="2" ry="2" />
|
|
<text x="879.23" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (16 samples, 0.08%)</title><rect x="147.4" y="453" width="0.9" height="15.0" fill="rgb(242,110,12)" rx="2" ry="2" />
|
|
<text x="150.38" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_entry_dying (3 samples, 0.02%)</title><rect x="598.0" y="277" width="0.2" height="15.0" fill="rgb(230,9,32)" rx="2" ry="2" />
|
|
<text x="601.05" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (14 samples, 0.07%)</title><rect x="1186.6" y="485" width="0.8" height="15.0" fill="rgb(212,61,29)" rx="2" ry="2" />
|
|
<text x="1189.58" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssh.so] (2 samples, 0.01%)</title><rect x="425.1" y="421" width="0.1" height="15.0" fill="rgb(238,217,46)" rx="2" ry="2" />
|
|
<text x="428.08" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (20 samples, 0.10%)</title><rect x="1185.3" y="533" width="1.2" height="15.0" fill="rgb(220,42,47)" rx="2" ry="2" />
|
|
<text x="1188.32" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>islower (3 samples, 0.02%)</title><rect x="424.3" y="389" width="0.2" height="15.0" fill="rgb(230,178,28)" rx="2" ry="2" />
|
|
<text x="427.30" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="920.8" y="325" width="0.1" height="15.0" fill="rgb(220,52,3)" rx="2" ry="2" />
|
|
<text x="923.76" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="238.7" y="421" width="0.1" height="15.0" fill="rgb(214,80,27)" rx="2" ry="2" />
|
|
<text x="241.67" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="219.8" y="245" width="0.3" height="15.0" fill="rgb(248,52,35)" rx="2" ry="2" />
|
|
<text x="222.82" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (12 samples, 0.06%)</title><rect x="780.0" y="373" width="0.7" height="15.0" fill="rgb(220,132,8)" rx="2" ry="2" />
|
|
<text x="782.96" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell (3 samples, 0.02%)</title><rect x="1033.1" y="341" width="0.2" height="15.0" fill="rgb(252,27,35)" rx="2" ry="2" />
|
|
<text x="1036.11" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="1033.4" y="309" width="0.1" height="15.0" fill="rgb(245,26,47)" rx="2" ry="2" />
|
|
<text x="1036.41" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>memcpy@plt (2 samples, 0.01%)</title><rect x="510.6" y="261" width="0.1" height="15.0" fill="rgb(212,153,31)" rx="2" ry="2" />
|
|
<text x="513.60" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (22 samples, 0.11%)</title><rect x="919.3" y="309" width="1.3" height="15.0" fill="rgb(239,35,48)" rx="2" ry="2" />
|
|
<text x="922.32" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_memcpy (5 samples, 0.03%)</title><rect x="789.6" y="277" width="0.3" height="15.0" fill="rgb(225,190,33)" rx="2" ry="2" />
|
|
<text x="792.56" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (565 samples, 2.87%)</title><rect x="801.9" y="309" width="33.9" height="15.0" fill="rgb(240,209,36)" rx="2" ry="2" />
|
|
<text x="804.87" y="319.5" >he..</text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (176 samples, 0.90%)</title><rect x="842.1" y="325" width="10.5" height="15.0" fill="rgb(241,227,9)" rx="2" ry="2" />
|
|
<text x="845.08" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="253.0" y="373" width="0.1" height="15.0" fill="rgb(240,192,45)" rx="2" ry="2" />
|
|
<text x="256.01" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (3 samples, 0.02%)</title><rect x="100.4" y="565" width="0.2" height="15.0" fill="rgb(222,111,42)" rx="2" ry="2" />
|
|
<text x="103.45" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (4 samples, 0.02%)</title><rect x="705.5" y="325" width="0.2" height="15.0" fill="rgb(219,37,20)" rx="2" ry="2" />
|
|
<text x="708.48" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_to_available_heap (2 samples, 0.01%)</title><rect x="622.0" y="277" width="0.1" height="15.0" fill="rgb(237,191,17)" rx="2" ry="2" />
|
|
<text x="625.00" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (2 samples, 0.01%)</title><rect x="1160.0" y="517" width="0.1" height="15.0" fill="rgb(229,194,17)" rx="2" ry="2" />
|
|
<text x="1162.99" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (9 samples, 0.05%)</title><rect x="1000.9" y="293" width="0.6" height="15.0" fill="rgb(222,109,6)" rx="2" ry="2" />
|
|
<text x="1003.95" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="1044.9" y="437" width="0.3" height="15.0" fill="rgb(248,132,8)" rx="2" ry="2" />
|
|
<text x="1047.88" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (3 samples, 0.02%)</title><rect x="921.0" y="373" width="0.2" height="15.0" fill="rgb(206,174,34)" rx="2" ry="2" />
|
|
<text x="924.00" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (7 samples, 0.04%)</title><rect x="185.0" y="357" width="0.4" height="15.0" fill="rgb(216,183,6)" rx="2" ry="2" />
|
|
<text x="187.95" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_sysvec_apic_timer_interrupt (12 samples, 0.06%)</title><rect x="247.5" y="357" width="0.7" height="15.0" fill="rgb(221,188,29)" rx="2" ry="2" />
|
|
<text x="250.49" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="169.3" y="373" width="0.1" height="15.0" fill="rgb(222,59,26)" rx="2" ry="2" />
|
|
<text x="172.29" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (6 samples, 0.03%)</title><rect x="576.7" y="373" width="0.3" height="15.0" fill="rgb(226,7,7)" rx="2" ry="2" />
|
|
<text x="579.68" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="219.8" y="261" width="0.3" height="15.0" fill="rgb(249,50,23)" rx="2" ry="2" />
|
|
<text x="222.82" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="408.9" y="277" width="0.3" height="15.0" fill="rgb(215,59,51)" rx="2" ry="2" />
|
|
<text x="411.93" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (3 samples, 0.02%)</title><rect x="1144.1" y="453" width="0.2" height="15.0" fill="rgb(223,174,0)" rx="2" ry="2" />
|
|
<text x="1147.15" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (3 samples, 0.02%)</title><rect x="1142.7" y="565" width="0.2" height="15.0" fill="rgb(213,192,2)" rx="2" ry="2" />
|
|
<text x="1145.71" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_integer (3 samples, 0.02%)</title><rect x="215.3" y="421" width="0.2" height="15.0" fill="rgb(254,196,46)" rx="2" ry="2" />
|
|
<text x="218.32" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="172.0" y="405" width="0.3" height="15.0" fill="rgb(243,121,24)" rx="2" ry="2" />
|
|
<text x="175.05" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="910.3" y="485" width="0.1" height="15.0" fill="rgb(213,164,14)" rx="2" ry="2" />
|
|
<text x="913.32" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (2 samples, 0.01%)</title><rect x="226.1" y="405" width="0.1" height="15.0" fill="rgb(236,65,46)" rx="2" ry="2" />
|
|
<text x="229.06" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (7 samples, 0.04%)</title><rect x="1084.1" y="373" width="0.4" height="15.0" fill="rgb(214,11,49)" rx="2" ry="2" />
|
|
<text x="1087.07" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_cstring (2 samples, 0.01%)</title><rect x="1173.1" y="533" width="0.2" height="15.0" fill="rgb(223,0,37)" rx="2" ry="2" />
|
|
<text x="1176.14" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>raw_ip_frag_list_stream_detach (6 samples, 0.03%)</title><rect x="531.7" y="517" width="0.3" height="15.0" fill="rgb(229,105,26)" rx="2" ry="2" />
|
|
<text x="534.67" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (16 samples, 0.08%)</title><rect x="559.3" y="373" width="0.9" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
|
|
<text x="562.28" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="254.0" y="597" width="0.4" height="15.0" fill="rgb(246,112,52)" rx="2" ry="2" />
|
|
<text x="257.03" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (5 samples, 0.03%)</title><rect x="1061.1" y="341" width="0.3" height="15.0" fill="rgb(236,113,48)" rx="2" ry="2" />
|
|
<text x="1064.08" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (3 samples, 0.02%)</title><rect x="703.6" y="405" width="0.1" height="15.0" fill="rgb(242,125,23)" rx="2" ry="2" />
|
|
<text x="706.56" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CZipFormat::AddOneSection (15 samples, 0.08%)</title><rect x="384.5" y="293" width="0.9" height="15.0" fill="rgb(244,104,21)" rx="2" ry="2" />
|
|
<text x="387.51" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (3 samples, 0.02%)</title><rect x="253.9" y="373" width="0.1" height="15.0" fill="rgb(224,195,1)" rx="2" ry="2" />
|
|
<text x="256.85" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (5 samples, 0.03%)</title><rect x="960.5" y="309" width="0.3" height="15.0" fill="rgb(223,45,54)" rx="2" ry="2" />
|
|
<text x="963.49" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1171.8" y="389" width="0.1" height="15.0" fill="rgb(240,49,40)" rx="2" ry="2" />
|
|
<text x="1174.75" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (12 samples, 0.06%)</title><rect x="471.8" y="469" width="0.7" height="15.0" fill="rgb(219,60,53)" rx="2" ry="2" />
|
|
<text x="474.77" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (10 samples, 0.05%)</title><rect x="144.2" y="533" width="0.6" height="15.0" fill="rgb(206,178,46)" rx="2" ry="2" />
|
|
<text x="147.20" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (45 samples, 0.23%)</title><rect x="580.0" y="293" width="2.7" height="15.0" fill="rgb(236,154,19)" rx="2" ry="2" />
|
|
<text x="583.04" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RSA_free (2 samples, 0.01%)</title><rect x="169.0" y="293" width="0.2" height="15.0" fill="rgb(208,34,30)" rx="2" ry="2" />
|
|
<text x="172.05" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stratum_identify (5 samples, 0.03%)</title><rect x="434.8" y="437" width="0.3" height="15.0" fill="rgb(237,85,35)" rx="2" ry="2" />
|
|
<text x="437.80" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (43 samples, 0.22%)</title><rect x="144.8" y="581" width="2.6" height="15.0" fill="rgb(212,52,25)" rx="2" ry="2" />
|
|
<text x="147.80" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="220.1" y="373" width="0.1" height="15.0" fill="rgb(213,39,28)" rx="2" ry="2" />
|
|
<text x="223.06" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (1,254 samples, 6.38%)</title><rect x="361.3" y="517" width="75.3" height="15.0" fill="rgb(208,157,52)" rx="2" ry="2" />
|
|
<text x="364.34" y="527.5" >stream_p..</text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (35 samples, 0.18%)</title><rect x="221.6" y="389" width="2.1" height="15.0" fill="rgb(253,27,29)" rx="2" ry="2" />
|
|
<text x="224.56" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="377.5" y="181" width="0.1" height="15.0" fill="rgb(220,6,1)" rx="2" ry="2" />
|
|
<text x="380.49" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (3 samples, 0.02%)</title><rect x="254.1" y="389" width="0.2" height="15.0" fill="rgb(252,138,26)" rx="2" ry="2" />
|
|
<text x="257.09" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_insert (2 samples, 0.01%)</title><rect x="222.7" y="245" width="0.1" height="15.0" fill="rgb(238,148,30)" rx="2" ry="2" />
|
|
<text x="225.70" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_new (14 samples, 0.07%)</title><rect x="1167.1" y="565" width="0.9" height="15.0" fill="rgb(234,128,6)" rx="2" ry="2" />
|
|
<text x="1170.13" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (35 samples, 0.18%)</title><rect x="40.1" y="581" width="2.1" height="15.0" fill="rgb(214,147,36)" rx="2" ry="2" />
|
|
<text x="43.07" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (3 samples, 0.02%)</title><rect x="354.6" y="277" width="0.2" height="15.0" fill="rgb(249,157,14)" rx="2" ry="2" />
|
|
<text x="357.62" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (23 samples, 0.12%)</title><rect x="665.7" y="501" width="1.4" height="15.0" fill="rgb(247,48,5)" rx="2" ry="2" />
|
|
<text x="668.75" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (11 samples, 0.06%)</title><rect x="220.9" y="373" width="0.7" height="15.0" fill="rgb(215,198,9)" rx="2" ry="2" />
|
|
<text x="223.90" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="733.8" y="405" width="0.2" height="15.0" fill="rgb(241,64,36)" rx="2" ry="2" />
|
|
<text x="736.81" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="928.3" y="293" width="0.1" height="15.0" fill="rgb(209,99,4)" rx="2" ry="2" />
|
|
<text x="931.26" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (4 samples, 0.02%)</title><rect x="1068.6" y="245" width="0.3" height="15.0" fill="rgb(217,52,6)" rx="2" ry="2" />
|
|
<text x="1071.65" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mul128_fold64 (2 samples, 0.01%)</title><rect x="1041.5" y="213" width="0.1" height="15.0" fill="rgb(253,20,26)" rx="2" ry="2" />
|
|
<text x="1044.52" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_ipentry (3 samples, 0.02%)</title><rect x="892.7" y="517" width="0.2" height="15.0" fill="rgb(236,197,23)" rx="2" ry="2" />
|
|
<text x="895.67" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (17 samples, 0.09%)</title><rect x="1146.5" y="645" width="1.1" height="15.0" fill="rgb(249,187,26)" rx="2" ry="2" />
|
|
<text x="1149.55" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (47 samples, 0.24%)</title><rect x="707.3" y="357" width="2.9" height="15.0" fill="rgb(251,22,51)" rx="2" ry="2" />
|
|
<text x="710.34" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="1141.9" y="309" width="0.3" height="15.0" fill="rgb(210,67,54)" rx="2" ry="2" />
|
|
<text x="1144.93" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="1050.3" y="405" width="0.2" height="15.0" fill="rgb(215,70,0)" rx="2" ry="2" />
|
|
<text x="1053.34" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="1167.3" y="437" width="0.7" height="15.0" fill="rgb(244,2,32)" rx="2" ry="2" />
|
|
<text x="1170.31" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="1057.7" y="421" width="0.3" height="15.0" fill="rgb(212,21,43)" rx="2" ry="2" />
|
|
<text x="1060.72" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>file_softmagic (2 samples, 0.01%)</title><rect x="404.0" y="197" width="0.1" height="15.0" fill="rgb(243,60,15)" rx="2" ry="2" />
|
|
<text x="406.95" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (22 samples, 0.11%)</title><rect x="724.4" y="309" width="1.3" height="15.0" fill="rgb(231,61,54)" rx="2" ry="2" />
|
|
<text x="727.39" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="220.2" y="357" width="0.7" height="15.0" fill="rgb(208,63,30)" rx="2" ry="2" />
|
|
<text x="223.18" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="219.0" y="421" width="0.1" height="15.0" fill="rgb(231,129,43)" rx="2" ry="2" />
|
|
<text x="221.98" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (9 samples, 0.05%)</title><rect x="408.9" y="389" width="0.5" height="15.0" fill="rgb(207,41,17)" rx="2" ry="2" />
|
|
<text x="411.87" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="744.4" y="357" width="0.1" height="15.0" fill="rgb(210,122,52)" rx="2" ry="2" />
|
|
<text x="747.37" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (3 samples, 0.02%)</title><rect x="951.7" y="357" width="0.2" height="15.0" fill="rgb(209,76,51)" rx="2" ry="2" />
|
|
<text x="954.73" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="1147.1" y="453" width="0.2" height="15.0" fill="rgb(239,6,50)" rx="2" ry="2" />
|
|
<text x="1150.15" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (2 samples, 0.01%)</title><rect x="156.9" y="469" width="0.1" height="15.0" fill="rgb(218,15,25)" rx="2" ry="2" />
|
|
<text x="159.86" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="220.1" y="341" width="0.1" height="15.0" fill="rgb(251,68,35)" rx="2" ry="2" />
|
|
<text x="223.06" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_before_add (6 samples, 0.03%)</title><rect x="1067.2" y="357" width="0.4" height="15.0" fill="rgb(235,206,6)" rx="2" ry="2" />
|
|
<text x="1070.20" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (7 samples, 0.04%)</title><rect x="223.7" y="421" width="0.4" height="15.0" fill="rgb(254,93,5)" rx="2" ry="2" />
|
|
<text x="226.66" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop4 (2 samples, 0.01%)</title><rect x="218.4" y="421" width="0.1" height="15.0" fill="rgb(227,19,8)" rx="2" ry="2" />
|
|
<text x="221.38" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>count_add (2 samples, 0.01%)</title><rect x="488.2" y="293" width="0.1" height="15.0" fill="rgb(238,79,48)" rx="2" ry="2" />
|
|
<text x="491.16" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (12 samples, 0.06%)</title><rect x="220.2" y="421" width="0.7" height="15.0" fill="rgb(213,101,11)" rx="2" ry="2" />
|
|
<text x="223.18" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (12 samples, 0.06%)</title><rect x="355.0" y="341" width="0.7" height="15.0" fill="rgb(216,134,20)" rx="2" ry="2" />
|
|
<text x="357.98" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>find_or_add_metric (2 samples, 0.01%)</title><rect x="791.1" y="357" width="0.1" height="15.0" fill="rgb(250,216,29)" rx="2" ry="2" />
|
|
<text x="794.07" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.07%)</title><rect x="1187.9" y="565" width="0.8" height="15.0" fill="rgb(213,56,10)" rx="2" ry="2" />
|
|
<text x="1190.90" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (3 samples, 0.02%)</title><rect x="575.2" y="309" width="0.2" height="15.0" fill="rgb(232,48,27)" rx="2" ry="2" />
|
|
<text x="578.18" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_string_embed_free (3 samples, 0.02%)</title><rect x="110.1" y="325" width="0.2" height="15.0" fill="rgb(205,81,15)" rx="2" ry="2" />
|
|
<text x="113.11" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="252.3" y="357" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
|
|
<text x="255.35" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (9 samples, 0.05%)</title><rect x="1148.6" y="549" width="0.6" height="15.0" fill="rgb(212,7,10)" rx="2" ry="2" />
|
|
<text x="1151.65" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (246 samples, 1.25%)</title><rect x="114.6" y="485" width="14.7" height="15.0" fill="rgb(227,149,28)" rx="2" ry="2" />
|
|
<text x="117.55" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (6 samples, 0.03%)</title><rect x="909.1" y="389" width="0.4" height="15.0" fill="rgb(247,26,52)" rx="2" ry="2" />
|
|
<text x="912.12" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_numa_page (2 samples, 0.01%)</title><rect x="250.7" y="325" width="0.1" height="15.0" fill="rgb(234,45,19)" rx="2" ry="2" />
|
|
<text x="253.67" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (20 samples, 0.10%)</title><rect x="1185.3" y="485" width="1.2" height="15.0" fill="rgb(228,24,19)" rx="2" ry="2" />
|
|
<text x="1188.32" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (18 samples, 0.09%)</title><rect x="433.5" y="421" width="1.1" height="15.0" fill="rgb(231,145,10)" rx="2" ry="2" />
|
|
<text x="436.48" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sip.so] (5 samples, 0.03%)</title><rect x="436.0" y="437" width="0.3" height="15.0" fill="rgb(242,187,15)" rx="2" ry="2" />
|
|
<text x="439.00" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (59 samples, 0.30%)</title><rect x="954.9" y="277" width="3.6" height="15.0" fill="rgb(233,120,17)" rx="2" ry="2" />
|
|
<text x="957.91" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (2 samples, 0.01%)</title><rect x="1141.8" y="469" width="0.1" height="15.0" fill="rgb(241,44,6)" rx="2" ry="2" />
|
|
<text x="1144.81" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (117 samples, 0.60%)</title><rect x="1170.4" y="549" width="7.1" height="15.0" fill="rgb(247,129,51)" rx="2" ry="2" />
|
|
<text x="1173.43" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_ncopy (6 samples, 0.03%)</title><rect x="163.2" y="213" width="0.4" height="15.0" fill="rgb(205,61,36)" rx="2" ry="2" />
|
|
<text x="166.22" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.02%)</title><rect x="1095.0" y="469" width="0.2" height="15.0" fill="rgb(239,92,41)" rx="2" ry="2" />
|
|
<text x="1097.99" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (8 samples, 0.04%)</title><rect x="1187.4" y="517" width="0.5" height="15.0" fill="rgb(219,42,23)" rx="2" ry="2" />
|
|
<text x="1190.42" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (8 samples, 0.04%)</title><rect x="254.6" y="517" width="0.5" height="15.0" fill="rgb(253,190,20)" rx="2" ry="2" />
|
|
<text x="257.63" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="257.3" y="629" width="0.4" height="15.0" fill="rgb(235,95,11)" rx="2" ry="2" />
|
|
<text x="260.27" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="158.2" y="325" width="0.5" height="15.0" fill="rgb(254,105,45)" rx="2" ry="2" />
|
|
<text x="161.24" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (4 samples, 0.02%)</title><rect x="481.2" y="341" width="0.2" height="15.0" fill="rgb(217,21,16)" rx="2" ry="2" />
|
|
<text x="484.20" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (182 samples, 0.93%)</title><rect x="159.6" y="453" width="10.9" height="15.0" fill="rgb(207,55,24)" rx="2" ry="2" />
|
|
<text x="162.62" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (296 samples, 1.51%)</title><rect x="597.5" y="293" width="17.8" height="15.0" fill="rgb(214,173,1)" rx="2" ry="2" />
|
|
<text x="600.51" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (16 samples, 0.08%)</title><rect x="108.1" y="373" width="0.9" height="15.0" fill="rgb(246,28,44)" rx="2" ry="2" />
|
|
<text x="111.07" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_min_count (2 samples, 0.01%)</title><rect x="708.8" y="293" width="0.2" height="15.0" fill="rgb(252,194,26)" rx="2" ry="2" />
|
|
<text x="711.84" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (6 samples, 0.03%)</title><rect x="59.9" y="565" width="0.3" height="15.0" fill="rgb(240,95,42)" rx="2" ry="2" />
|
|
<text x="62.87" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (57 samples, 0.29%)</title><rect x="129.4" y="485" width="3.4" height="15.0" fill="rgb(251,12,35)" rx="2" ry="2" />
|
|
<text x="132.37" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_min_count (3 samples, 0.02%)</title><rect x="881.9" y="309" width="0.2" height="15.0" fill="rgb(207,85,54)" rx="2" ry="2" />
|
|
<text x="884.93" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (5 samples, 0.03%)</title><rect x="929.6" y="325" width="0.3" height="15.0" fill="rgb(205,95,25)" rx="2" ry="2" />
|
|
<text x="932.58" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="1180.5" y="613" width="0.5" height="15.0" fill="rgb(205,72,33)" rx="2" ry="2" />
|
|
<text x="1183.46" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="384.0" y="117" width="0.1" height="15.0" fill="rgb(240,34,5)" rx="2" ry="2" />
|
|
<text x="386.97" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (193 samples, 0.98%)</title><rect x="1168.0" y="629" width="11.6" height="15.0" fill="rgb(244,39,6)" rx="2" ry="2" />
|
|
<text x="1171.03" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="176.4" y="309" width="0.2" height="15.0" fill="rgb(214,4,38)" rx="2" ry="2" />
|
|
<text x="179.43" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="106.1" y="341" width="0.5" height="15.0" fill="rgb(207,30,42)" rx="2" ry="2" />
|
|
<text x="109.09" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (6 samples, 0.03%)</title><rect x="186.6" y="389" width="0.3" height="15.0" fill="rgb(226,144,52)" rx="2" ry="2" />
|
|
<text x="189.57" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="214.4" y="341" width="0.2" height="15.0" fill="rgb(241,223,47)" rx="2" ry="2" />
|
|
<text x="217.42" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="254.4" y="485" width="0.1" height="15.0" fill="rgb(226,128,17)" rx="2" ry="2" />
|
|
<text x="257.39" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (3 samples, 0.02%)</title><rect x="1090.3" y="277" width="0.2" height="15.0" fill="rgb(219,143,53)" rx="2" ry="2" />
|
|
<text x="1093.31" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (39 samples, 0.20%)</title><rect x="243.8" y="549" width="2.3" height="15.0" fill="rgb(230,75,9)" rx="2" ry="2" />
|
|
<text x="246.77" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="145.4" y="421" width="0.1" height="15.0" fill="rgb(248,157,32)" rx="2" ry="2" />
|
|
<text x="148.40" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (55 samples, 0.28%)</title><rect x="380.1" y="293" width="3.3" height="15.0" fill="rgb(221,214,28)" rx="2" ry="2" />
|
|
<text x="383.07" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>nmx_palloc (3 samples, 0.02%)</title><rect x="132.3" y="389" width="0.1" height="15.0" fill="rgb(248,23,36)" rx="2" ry="2" />
|
|
<text x="135.26" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2,123 samples, 10.80%)</title><rect x="748.2" y="437" width="127.4" height="15.0" fill="rgb(235,146,52)" rx="2" ry="2" />
|
|
<text x="751.15" y="447.5" >[stellar_on_sap..</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="219.8" y="309" width="0.3" height="15.0" fill="rgb(242,67,32)" rx="2" ry="2" />
|
|
<text x="222.82" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_del (21 samples, 0.11%)</title><rect x="734.5" y="501" width="1.2" height="15.0" fill="rgb(226,214,14)" rx="2" ry="2" />
|
|
<text x="737.47" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (4 samples, 0.02%)</title><rect x="181.7" y="325" width="0.2" height="15.0" fill="rgb(217,98,3)" rx="2" ry="2" />
|
|
<text x="184.71" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>packet_io_hook_input (58 samples, 0.30%)</title><rect x="1104.4" y="581" width="3.4" height="15.0" fill="rgb(250,208,9)" rx="2" ry="2" />
|
|
<text x="1107.36" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="107.7" y="373" width="0.4" height="15.0" fill="rgb(213,165,53)" rx="2" ry="2" />
|
|
<text x="110.71" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (8 samples, 0.04%)</title><rect x="206.9" y="565" width="0.5" height="15.0" fill="rgb(240,217,39)" rx="2" ry="2" />
|
|
<text x="209.92" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (6 samples, 0.03%)</title><rect x="228.9" y="405" width="0.3" height="15.0" fill="rgb(214,180,5)" rx="2" ry="2" />
|
|
<text x="231.88" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="1167.4" y="373" width="0.6" height="15.0" fill="rgb(228,199,15)" rx="2" ry="2" />
|
|
<text x="1170.43" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (49 samples, 0.25%)</title><rect x="1096.7" y="533" width="2.9" height="15.0" fill="rgb(218,185,35)" rx="2" ry="2" />
|
|
<text x="1099.67" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop4 (3 samples, 0.02%)</title><rect x="254.1" y="421" width="0.2" height="15.0" fill="rgb(225,108,22)" rx="2" ry="2" />
|
|
<text x="257.09" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (11 samples, 0.06%)</title><rect x="169.5" y="389" width="0.6" height="15.0" fill="rgb(206,214,28)" rx="2" ry="2" />
|
|
<text x="172.47" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (3 samples, 0.02%)</title><rect x="770.8" y="341" width="0.2" height="15.0" fill="rgb(228,99,46)" rx="2" ry="2" />
|
|
<text x="773.84" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_memcpy (6 samples, 0.03%)</title><rect x="726.1" y="277" width="0.4" height="15.0" fill="rgb(237,155,34)" rx="2" ry="2" />
|
|
<text x="729.13" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (10 samples, 0.05%)</title><rect x="555.5" y="373" width="0.6" height="15.0" fill="rgb(219,94,41)" rx="2" ry="2" />
|
|
<text x="558.50" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (2 samples, 0.01%)</title><rect x="254.3" y="501" width="0.1" height="15.0" fill="rgb(253,131,54)" rx="2" ry="2" />
|
|
<text x="257.27" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="701.9" y="421" width="0.2" height="15.0" fill="rgb(211,64,24)" rx="2" ry="2" />
|
|
<text x="704.88" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>EC_GROUP_new_by_curve_name (11 samples, 0.06%)</title><rect x="166.5" y="213" width="0.6" height="15.0" fill="rgb(220,106,4)" rx="2" ry="2" />
|
|
<text x="169.47" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (4 samples, 0.02%)</title><rect x="1073.0" y="277" width="0.3" height="15.0" fill="rgb(247,19,12)" rx="2" ry="2" />
|
|
<text x="1076.03" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (16 samples, 0.08%)</title><rect x="208.8" y="405" width="0.9" height="15.0" fill="rgb(243,54,29)" rx="2" ry="2" />
|
|
<text x="211.78" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (7 samples, 0.04%)</title><rect x="412.8" y="341" width="0.5" height="15.0" fill="rgb(218,158,28)" rx="2" ry="2" />
|
|
<text x="415.84" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (51 samples, 0.26%)</title><rect x="1173.3" y="533" width="3.0" height="15.0" fill="rgb(253,133,35)" rx="2" ry="2" />
|
|
<text x="1176.26" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (78 samples, 0.40%)</title><rect x="352.8" y="437" width="4.7" height="15.0" fill="rgb(206,15,9)" rx="2" ry="2" />
|
|
<text x="355.82" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (4 samples, 0.02%)</title><rect x="574.9" y="309" width="0.3" height="15.0" fill="rgb(251,221,52)" rx="2" ry="2" />
|
|
<text x="577.94" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell_topk (11 samples, 0.06%)</title><rect x="881.5" y="357" width="0.7" height="15.0" fill="rgb(229,167,41)" rx="2" ry="2" />
|
|
<text x="884.51" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="1142.2" y="357" width="0.3" height="15.0" fill="rgb(227,173,53)" rx="2" ry="2" />
|
|
<text x="1145.17" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (4 samples, 0.02%)</title><rect x="173.9" y="405" width="0.2" height="15.0" fill="rgb(218,190,46)" rx="2" ry="2" />
|
|
<text x="176.91" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="163.9" y="197" width="0.3" height="15.0" fill="rgb(244,108,9)" rx="2" ry="2" />
|
|
<text x="166.94" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (2 samples, 0.01%)</title><rect x="523.6" y="437" width="0.1" height="15.0" fill="rgb(221,81,42)" rx="2" ry="2" />
|
|
<text x="526.57" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (295 samples, 1.50%)</title><rect x="172.6" y="517" width="17.7" height="15.0" fill="rgb(207,90,47)" rx="2" ry="2" />
|
|
<text x="175.59" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (6 samples, 0.03%)</title><rect x="967.0" y="453" width="0.4" height="15.0" fill="rgb(224,171,1)" rx="2" ry="2" />
|
|
<text x="970.04" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (13 samples, 0.07%)</title><rect x="109.3" y="325" width="0.8" height="15.0" fill="rgb(228,122,37)" rx="2" ry="2" />
|
|
<text x="112.33" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (3 samples, 0.02%)</title><rect x="934.9" y="405" width="0.1" height="15.0" fill="rgb(220,186,36)" rx="2" ry="2" />
|
|
<text x="937.87" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (238 samples, 1.21%)</title><rect x="952.5" y="389" width="14.2" height="15.0" fill="rgb(244,43,10)" rx="2" ry="2" />
|
|
<text x="955.45" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (8 samples, 0.04%)</title><rect x="556.6" y="405" width="0.5" height="15.0" fill="rgb(243,23,12)" rx="2" ry="2" />
|
|
<text x="559.58" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CZipFormat::AddDocData (15 samples, 0.08%)</title><rect x="384.5" y="309" width="0.9" height="15.0" fill="rgb(205,53,35)" rx="2" ry="2" />
|
|
<text x="387.51" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ja3_md5sum (6 samples, 0.03%)</title><rect x="171.9" y="437" width="0.4" height="15.0" fill="rgb(211,172,16)" rx="2" ry="2" />
|
|
<text x="174.93" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (3 samples, 0.02%)</title><rect x="884.9" y="325" width="0.2" height="15.0" fill="rgb(253,130,40)" rx="2" ry="2" />
|
|
<text x="887.93" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (24 samples, 0.12%)</title><rect x="416.5" y="341" width="1.4" height="15.0" fill="rgb(227,211,13)" rx="2" ry="2" />
|
|
<text x="419.50" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (45 samples, 0.23%)</title><rect x="216.6" y="517" width="2.7" height="15.0" fill="rgb(232,175,49)" rx="2" ry="2" />
|
|
<text x="219.58" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="665.4" y="437" width="0.3" height="15.0" fill="rgb(213,105,15)" rx="2" ry="2" />
|
|
<text x="668.45" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (12 samples, 0.06%)</title><rect x="581.7" y="277" width="0.7" height="15.0" fill="rgb(241,11,7)" rx="2" ry="2" />
|
|
<text x="584.72" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (245 samples, 1.25%)</title><rect x="157.9" y="485" width="14.7" height="15.0" fill="rgb(210,141,54)" rx="2" ry="2" />
|
|
<text x="160.88" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="208.2" y="213" width="0.3" height="15.0" fill="rgb(208,212,1)" rx="2" ry="2" />
|
|
<text x="211.18" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>file_printf (2 samples, 0.01%)</title><rect x="403.8" y="197" width="0.2" height="15.0" fill="rgb(252,195,18)" rx="2" ry="2" />
|
|
<text x="406.83" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="244.7" y="357" width="0.1" height="15.0" fill="rgb(210,192,43)" rx="2" ry="2" />
|
|
<text x="247.73" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (2 samples, 0.01%)</title><rect x="252.5" y="437" width="0.1" height="15.0" fill="rgb(213,1,3)" rx="2" ry="2" />
|
|
<text x="255.53" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (10 samples, 0.05%)</title><rect x="1159.2" y="517" width="0.6" height="15.0" fill="rgb(230,14,50)" rx="2" ry="2" />
|
|
<text x="1162.15" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (2 samples, 0.01%)</title><rect x="349.5" y="293" width="0.1" height="15.0" fill="rgb(236,3,11)" rx="2" ry="2" />
|
|
<text x="352.46" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_group (73 samples, 0.37%)</title><rect x="20.7" y="581" width="4.4" height="15.0" fill="rgb(227,224,33)" rx="2" ry="2" />
|
|
<text x="23.68" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_query_one (7 samples, 0.04%)</title><rect x="960.4" y="325" width="0.4" height="15.0" fill="rgb(231,86,16)" rx="2" ry="2" />
|
|
<text x="963.37" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (6 samples, 0.03%)</title><rect x="145.5" y="437" width="0.4" height="15.0" fill="rgb(222,227,6)" rx="2" ry="2" />
|
|
<text x="148.52" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="350.1" y="277" width="0.1" height="15.0" fill="rgb(206,214,44)" rx="2" ry="2" />
|
|
<text x="353.06" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (295 samples, 1.50%)</title><rect x="172.6" y="501" width="17.7" height="15.0" fill="rgb(220,109,26)" rx="2" ry="2" />
|
|
<text x="175.59" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (9 samples, 0.05%)</title><rect x="162.0" y="229" width="0.5" height="15.0" fill="rgb(212,103,8)" rx="2" ry="2" />
|
|
<text x="164.96" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (12 samples, 0.06%)</title><rect x="1189.2" y="581" width="0.7" height="15.0" fill="rgb(218,43,16)" rx="2" ry="2" />
|
|
<text x="1192.16" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="1148.6" y="533" width="0.6" height="15.0" fill="rgb(237,165,51)" rx="2" ry="2" />
|
|
<text x="1151.65" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (3 samples, 0.02%)</title><rect x="928.2" y="357" width="0.2" height="15.0" fill="rgb(221,175,17)" rx="2" ry="2" />
|
|
<text x="931.20" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1189.9" y="501" width="0.1" height="15.0" fill="rgb(215,170,26)" rx="2" ry="2" />
|
|
<text x="1192.88" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="413.5" y="197" width="0.2" height="15.0" fill="rgb(244,100,23)" rx="2" ry="2" />
|
|
<text x="416.50" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="129.8" y="389" width="0.2" height="15.0" fill="rgb(240,103,46)" rx="2" ry="2" />
|
|
<text x="132.79" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (824 samples, 4.19%)</title><rect x="473.3" y="469" width="49.4" height="15.0" fill="rgb(215,143,11)" rx="2" ry="2" />
|
|
<text x="476.27" y="479.5" >[ste..</text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (15 samples, 0.08%)</title><rect x="1078.9" y="325" width="0.9" height="15.0" fill="rgb(235,2,52)" rx="2" ry="2" />
|
|
<text x="1081.91" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (74 samples, 0.38%)</title><rect x="248.7" y="517" width="4.4" height="15.0" fill="rgb(212,73,34)" rx="2" ry="2" />
|
|
<text x="251.69" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (5 samples, 0.03%)</title><rect x="32.7" y="565" width="0.3" height="15.0" fill="rgb(224,62,12)" rx="2" ry="2" />
|
|
<text x="35.69" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (12 samples, 0.06%)</title><rect x="1142.9" y="421" width="0.7" height="15.0" fill="rgb(228,20,23)" rx="2" ry="2" />
|
|
<text x="1145.89" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_stream_search (8 samples, 0.04%)</title><rect x="735.7" y="533" width="0.5" height="15.0" fill="rgb(222,53,53)" rx="2" ry="2" />
|
|
<text x="738.73" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (4 samples, 0.02%)</title><rect x="522.8" y="485" width="0.2" height="15.0" fill="rgb(229,75,21)" rx="2" ry="2" />
|
|
<text x="525.79" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (74 samples, 0.38%)</title><rect x="248.7" y="453" width="4.4" height="15.0" fill="rgb(250,97,43)" rx="2" ry="2" />
|
|
<text x="251.69" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (3 samples, 0.02%)</title><rect x="787.8" y="277" width="0.2" height="15.0" fill="rgb(222,227,35)" rx="2" ry="2" />
|
|
<text x="790.82" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (14 samples, 0.07%)</title><rect x="950.1" y="437" width="0.9" height="15.0" fill="rgb(205,16,31)" rx="2" ry="2" />
|
|
<text x="953.11" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>imap4_entry_fun (5 samples, 0.03%)</title><rect x="423.5" y="437" width="0.3" height="15.0" fill="rgb(216,203,11)" rx="2" ry="2" />
|
|
<text x="426.46" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (5 samples, 0.03%)</title><rect x="218.5" y="437" width="0.3" height="15.0" fill="rgb(207,7,2)" rx="2" ry="2" />
|
|
<text x="221.50" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (22 samples, 0.11%)</title><rect x="919.3" y="325" width="1.3" height="15.0" fill="rgb(234,222,11)" rx="2" ry="2" />
|
|
<text x="922.32" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1097.3" y="405" width="0.2" height="15.0" fill="rgb(226,148,50)" rx="2" ry="2" />
|
|
<text x="1100.33" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="223.1" y="213" width="0.1" height="15.0" fill="rgb(222,52,53)" rx="2" ry="2" />
|
|
<text x="226.12" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (2 samples, 0.01%)</title><rect x="141.4" y="357" width="0.2" height="15.0" fill="rgb(239,176,45)" rx="2" ry="2" />
|
|
<text x="144.44" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="219.3" y="277" width="0.2" height="15.0" fill="rgb(220,201,46)" rx="2" ry="2" />
|
|
<text x="222.28" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (7 samples, 0.04%)</title><rect x="169.7" y="309" width="0.4" height="15.0" fill="rgb(214,78,31)" rx="2" ry="2" />
|
|
<text x="172.71" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="208.2" y="261" width="0.3" height="15.0" fill="rgb(207,90,54)" rx="2" ry="2" />
|
|
<text x="211.18" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (3 samples, 0.02%)</title><rect x="666.9" y="389" width="0.2" height="15.0" fill="rgb(205,198,4)" rx="2" ry="2" />
|
|
<text x="669.95" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="224.3" y="389" width="0.1" height="15.0" fill="rgb(206,129,39)" rx="2" ry="2" />
|
|
<text x="227.26" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="97.2" y="565" width="0.2" height="15.0" fill="rgb(244,27,49)" rx="2" ry="2" />
|
|
<text x="100.21" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="227.7" y="277" width="0.2" height="15.0" fill="rgb(232,225,51)" rx="2" ry="2" />
|
|
<text x="230.68" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="412.8" y="277" width="0.4" height="15.0" fill="rgb(228,53,42)" rx="2" ry="2" />
|
|
<text x="415.84" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (26 samples, 0.13%)</title><rect x="144.8" y="501" width="1.6" height="15.0" fill="rgb(224,171,31)" rx="2" ry="2" />
|
|
<text x="147.80" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_type_new (2 samples, 0.01%)</title><rect x="222.6" y="181" width="0.1" height="15.0" fill="rgb(218,203,47)" rx="2" ry="2" />
|
|
<text x="225.58" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (45 samples, 0.23%)</title><rect x="1005.7" y="341" width="2.7" height="15.0" fill="rgb(221,16,5)" rx="2" ry="2" />
|
|
<text x="1008.69" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (17 samples, 0.09%)</title><rect x="154.5" y="421" width="1.0" height="15.0" fill="rgb(254,19,6)" rx="2" ry="2" />
|
|
<text x="157.52" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (12 samples, 0.06%)</title><rect x="168.6" y="405" width="0.7" height="15.0" fill="rgb(245,115,5)" rx="2" ry="2" />
|
|
<text x="171.57" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (3 samples, 0.02%)</title><rect x="219.3" y="421" width="0.2" height="15.0" fill="rgb(245,131,52)" rx="2" ry="2" />
|
|
<text x="222.28" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (69 samples, 0.35%)</title><rect x="882.8" y="405" width="4.2" height="15.0" fill="rgb(251,73,38)" rx="2" ry="2" />
|
|
<text x="885.83" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (2 samples, 0.01%)</title><rect x="1179.5" y="581" width="0.1" height="15.0" fill="rgb(220,94,31)" rx="2" ry="2" />
|
|
<text x="1182.50" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (9 samples, 0.05%)</title><rect x="909.0" y="421" width="0.5" height="15.0" fill="rgb(245,158,37)" rx="2" ry="2" />
|
|
<text x="912.00" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1023.9" y="469" width="0.2" height="15.0" fill="rgb(213,61,44)" rx="2" ry="2" />
|
|
<text x="1026.93" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="254.5" y="389" width="0.1" height="15.0" fill="rgb(229,72,18)" rx="2" ry="2" />
|
|
<text x="257.51" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (12 samples, 0.06%)</title><rect x="163.6" y="229" width="0.7" height="15.0" fill="rgb(211,81,40)" rx="2" ry="2" />
|
|
<text x="166.58" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>min_heap_shift_down_ (2 samples, 0.01%)</title><rect x="582.6" y="245" width="0.1" height="15.0" fill="rgb(250,36,52)" rx="2" ry="2" />
|
|
<text x="585.62" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_merge (9 samples, 0.05%)</title><rect x="383.4" y="293" width="0.6" height="15.0" fill="rgb(242,80,54)" rx="2" ry="2" />
|
|
<text x="386.43" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1189.9" y="581" width="0.1" height="15.0" fill="rgb(213,3,5)" rx="2" ry="2" />
|
|
<text x="1192.88" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (9 samples, 0.05%)</title><rect x="130.8" y="357" width="0.6" height="15.0" fill="rgb(216,76,32)" rx="2" ry="2" />
|
|
<text x="133.81" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (2 samples, 0.01%)</title><rect x="1148.2" y="629" width="0.1" height="15.0" fill="rgb(248,148,32)" rx="2" ry="2" />
|
|
<text x="1151.17" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (89 samples, 0.45%)</title><rect x="220.1" y="485" width="5.3" height="15.0" fill="rgb(208,41,8)" rx="2" ry="2" />
|
|
<text x="223.06" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="140.7" y="421" width="0.5" height="15.0" fill="rgb(206,107,29)" rx="2" ry="2" />
|
|
<text x="143.66" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="470.9" y="485" width="0.1" height="15.0" fill="rgb(212,58,48)" rx="2" ry="2" />
|
|
<text x="473.87" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="224.1" y="277" width="0.2" height="15.0" fill="rgb(226,58,50)" rx="2" ry="2" />
|
|
<text x="227.14" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (41 samples, 0.21%)</title><rect x="177.1" y="405" width="2.5" height="15.0" fill="rgb(243,208,22)" rx="2" ry="2" />
|
|
<text x="180.15" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (2 samples, 0.01%)</title><rect x="890.2" y="501" width="0.1" height="15.0" fill="rgb(237,141,21)" rx="2" ry="2" />
|
|
<text x="893.15" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="153.4" y="517" width="0.2" height="15.0" fill="rgb(226,130,18)" rx="2" ry="2" />
|
|
<text x="156.44" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log_level_enabled (2 samples, 0.01%)</title><rect x="1049.4" y="469" width="0.1" height="15.0" fill="rgb(225,228,11)" rx="2" ry="2" />
|
|
<text x="1052.38" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (2 samples, 0.01%)</title><rect x="188.0" y="405" width="0.1" height="15.0" fill="rgb(241,5,1)" rx="2" ry="2" />
|
|
<text x="190.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (39 samples, 0.20%)</title><rect x="243.8" y="517" width="2.3" height="15.0" fill="rgb(208,129,33)" rx="2" ry="2" />
|
|
<text x="246.77" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="909.1" y="245" width="0.2" height="15.0" fill="rgb(207,104,18)" rx="2" ry="2" />
|
|
<text x="912.12" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_stream_carry_tunnel_type (2 samples, 0.01%)</title><rect x="358.2" y="517" width="0.1" height="15.0" fill="rgb(245,195,43)" rx="2" ry="2" />
|
|
<text x="361.16" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (8 samples, 0.04%)</title><rect x="355.0" y="277" width="0.5" height="15.0" fill="rgb(230,195,38)" rx="2" ry="2" />
|
|
<text x="358.04" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (2 samples, 0.01%)</title><rect x="246.5" y="421" width="0.1" height="15.0" fill="rgb(210,177,21)" rx="2" ry="2" />
|
|
<text x="249.47" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_dp_trace_measurements_can_emit@plt (4 samples, 0.02%)</title><rect x="1124.2" y="581" width="0.2" height="15.0" fill="rgb(254,106,1)" rx="2" ry="2" />
|
|
<text x="1127.16" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="374.2" y="261" width="0.5" height="15.0" fill="rgb(221,228,46)" rx="2" ry="2" />
|
|
<text x="377.24" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (290 samples, 1.48%)</title><rect x="1150.6" y="597" width="17.4" height="15.0" fill="rgb(243,189,29)" rx="2" ry="2" />
|
|
<text x="1153.63" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (120 samples, 0.61%)</title><rect x="207.4" y="485" width="7.2" height="15.0" fill="rgb(211,13,36)" rx="2" ry="2" />
|
|
<text x="210.40" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>strlen@plt (2 samples, 0.01%)</title><rect x="511.2" y="309" width="0.1" height="15.0" fill="rgb(205,6,54)" rx="2" ry="2" />
|
|
<text x="514.20" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="219.0" y="373" width="0.1" height="15.0" fill="rgb(252,65,17)" rx="2" ry="2" />
|
|
<text x="221.98" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (149 samples, 0.76%)</title><rect x="457.8" y="517" width="8.9" height="15.0" fill="rgb(218,227,0)" rx="2" ry="2" />
|
|
<text x="460.79" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (49 samples, 0.25%)</title><rect x="29.5" y="533" width="2.9" height="15.0" fill="rgb(218,100,30)" rx="2" ry="2" />
|
|
<text x="32.51" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (5 samples, 0.03%)</title><rect x="227.6" y="389" width="0.3" height="15.0" fill="rgb(231,86,49)" rx="2" ry="2" />
|
|
<text x="230.62" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (3 samples, 0.02%)</title><rect x="1094.3" y="469" width="0.2" height="15.0" fill="rgb(227,184,45)" rx="2" ry="2" />
|
|
<text x="1097.27" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (13 samples, 0.07%)</title><rect x="1000.1" y="245" width="0.8" height="15.0" fill="rgb(222,213,4)" rx="2" ry="2" />
|
|
<text x="1003.11" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="476.0" y="405" width="0.3" height="15.0" fill="rgb(227,161,50)" rx="2" ry="2" />
|
|
<text x="479.03" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (89 samples, 0.45%)</title><rect x="220.1" y="501" width="5.3" height="15.0" fill="rgb(229,41,32)" rx="2" ry="2" />
|
|
<text x="223.06" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_easy_counter_incrby (15 samples, 0.08%)</title><rect x="1083.9" y="405" width="0.9" height="15.0" fill="rgb(235,146,16)" rx="2" ry="2" />
|
|
<text x="1086.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="949.7" y="469" width="0.1" height="15.0" fill="rgb(224,124,19)" rx="2" ry="2" />
|
|
<text x="952.69" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1189.9" y="565" width="0.1" height="15.0" fill="rgb(249,46,44)" rx="2" ry="2" />
|
|
<text x="1192.88" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="1148.3" y="421" width="0.2" height="15.0" fill="rgb(241,218,41)" rx="2" ry="2" />
|
|
<text x="1151.35" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="402.0" y="197" width="0.2" height="15.0" fill="rgb(210,227,15)" rx="2" ry="2" />
|
|
<text x="405.03" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="255.1" y="469" width="0.1" height="15.0" fill="rgb(215,35,13)" rx="2" ry="2" />
|
|
<text x="258.11" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_tripleMatching (59 samples, 0.30%)</title><rect x="375.2" y="389" width="3.5" height="15.0" fill="rgb(225,6,9)" rx="2" ry="2" />
|
|
<text x="378.21" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (3 samples, 0.02%)</title><rect x="254.1" y="405" width="0.2" height="15.0" fill="rgb(249,35,46)" rx="2" ry="2" />
|
|
<text x="257.09" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (19 samples, 0.10%)</title><rect x="523.0" y="469" width="1.2" height="15.0" fill="rgb(213,44,30)" rx="2" ry="2" />
|
|
<text x="526.03" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (3 samples, 0.02%)</title><rect x="1087.9" y="277" width="0.2" height="15.0" fill="rgb(247,73,35)" rx="2" ry="2" />
|
|
<text x="1090.91" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="254.0" y="501" width="0.3" height="15.0" fill="rgb(205,36,17)" rx="2" ry="2" />
|
|
<text x="257.03" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (17 samples, 0.09%)</title><rect x="146.4" y="469" width="1.0" height="15.0" fill="rgb(213,135,30)" rx="2" ry="2" />
|
|
<text x="149.36" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1144.1" y="469" width="0.2" height="15.0" fill="rgb(241,55,6)" rx="2" ry="2" />
|
|
<text x="1147.15" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (2 samples, 0.01%)</title><rect x="960.3" y="277" width="0.1" height="15.0" fill="rgb(226,73,42)" rx="2" ry="2" />
|
|
<text x="963.25" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (8 samples, 0.04%)</title><rect x="206.9" y="581" width="0.5" height="15.0" fill="rgb(241,217,16)" rx="2" ry="2" />
|
|
<text x="209.92" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="1148.6" y="517" width="0.6" height="15.0" fill="rgb(213,69,26)" rx="2" ry="2" />
|
|
<text x="1151.65" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="39.0" y="581" width="0.1" height="15.0" fill="rgb(238,221,41)" rx="2" ry="2" />
|
|
<text x="41.99" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1141.2" y="469" width="0.2" height="15.0" fill="rgb(249,78,20)" rx="2" ry="2" />
|
|
<text x="1144.21" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_common_stat_get (16 samples, 0.08%)</title><rect x="577.5" y="389" width="1.0" height="15.0" fill="rgb(253,162,42)" rx="2" ry="2" />
|
|
<text x="580.52" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (188 samples, 0.96%)</title><rect x="841.4" y="341" width="11.2" height="15.0" fill="rgb(227,23,34)" rx="2" ry="2" />
|
|
<text x="844.36" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (13 samples, 0.07%)</title><rect x="1146.5" y="549" width="0.8" height="15.0" fill="rgb(231,145,15)" rx="2" ry="2" />
|
|
<text x="1149.55" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (125 samples, 0.64%)</title><rect x="1086.6" y="421" width="7.5" height="15.0" fill="rgb(220,97,28)" rx="2" ry="2" />
|
|
<text x="1089.59" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (896 samples, 4.56%)</title><rect x="153.6" y="597" width="53.8" height="15.0" fill="rgb(241,58,15)" rx="2" ry="2" />
|
|
<text x="156.62" y="607.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (6 samples, 0.03%)</title><rect x="1040.3" y="293" width="0.4" height="15.0" fill="rgb(229,158,22)" rx="2" ry="2" />
|
|
<text x="1043.32" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1141.6" y="549" width="0.1" height="15.0" fill="rgb(240,134,43)" rx="2" ry="2" />
|
|
<text x="1144.57" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (12 samples, 0.06%)</title><rect x="152.7" y="485" width="0.7" height="15.0" fill="rgb(218,29,28)" rx="2" ry="2" />
|
|
<text x="155.72" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (11 samples, 0.06%)</title><rect x="919.7" y="245" width="0.6" height="15.0" fill="rgb(254,147,51)" rx="2" ry="2" />
|
|
<text x="922.68" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (10 samples, 0.05%)</title><rect x="144.2" y="453" width="0.6" height="15.0" fill="rgb(224,39,31)" rx="2" ry="2" />
|
|
<text x="147.20" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (21 samples, 0.11%)</title><rect x="1144.3" y="597" width="1.3" height="15.0" fill="rgb(214,197,5)" rx="2" ry="2" />
|
|
<text x="1147.33" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (6 samples, 0.03%)</title><rect x="951.7" y="373" width="0.4" height="15.0" fill="rgb(254,73,31)" rx="2" ry="2" />
|
|
<text x="954.73" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="26.6" y="565" width="0.2" height="15.0" fill="rgb(232,177,45)" rx="2" ry="2" />
|
|
<text x="29.62" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (11 samples, 0.06%)</title><rect x="169.5" y="373" width="0.6" height="15.0" fill="rgb(218,76,34)" rx="2" ry="2" />
|
|
<text x="172.47" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="1143.8" y="293" width="0.3" height="15.0" fill="rgb(248,214,21)" rx="2" ry="2" />
|
|
<text x="1146.85" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (2 samples, 0.01%)</title><rect x="884.6" y="245" width="0.2" height="15.0" fill="rgb(236,201,49)" rx="2" ry="2" />
|
|
<text x="887.63" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="933.2" y="309" width="0.2" height="15.0" fill="rgb(252,218,14)" rx="2" ry="2" />
|
|
<text x="936.25" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (2 samples, 0.01%)</title><rect x="255.1" y="405" width="0.1" height="15.0" fill="rgb(211,7,33)" rx="2" ry="2" />
|
|
<text x="258.11" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_htable.so] (3 samples, 0.02%)</title><rect x="411.3" y="357" width="0.2" height="15.0" fill="rgb(211,37,13)" rx="2" ry="2" />
|
|
<text x="414.34" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (4 samples, 0.02%)</title><rect x="1033.5" y="357" width="0.3" height="15.0" fill="rgb(248,5,11)" rx="2" ry="2" />
|
|
<text x="1036.53" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="251.4" y="405" width="0.2" height="15.0" fill="rgb(244,23,39)" rx="2" ry="2" />
|
|
<text x="254.39" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (17 samples, 0.09%)</title><rect x="350.6" y="517" width="1.0" height="15.0" fill="rgb(235,77,26)" rx="2" ry="2" />
|
|
<text x="353.60" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1171.8" y="421" width="0.1" height="15.0" fill="rgb(233,116,3)" rx="2" ry="2" />
|
|
<text x="1174.75" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (2 samples, 0.01%)</title><rect x="1045.1" y="405" width="0.1" height="15.0" fill="rgb(228,133,17)" rx="2" ry="2" />
|
|
<text x="1048.12" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_primitive_free (2 samples, 0.01%)</title><rect x="223.9" y="309" width="0.1" height="15.0" fill="rgb(220,126,3)" rx="2" ry="2" />
|
|
<text x="226.90" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_64bits_reset (2 samples, 0.01%)</title><rect x="632.9" y="277" width="0.1" height="15.0" fill="rgb(227,194,45)" rx="2" ry="2" />
|
|
<text x="635.92" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_get_sid_list (2 samples, 0.01%)</title><rect x="667.7" y="501" width="0.1" height="15.0" fill="rgb(215,6,2)" rx="2" ry="2" />
|
|
<text x="670.73" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="221.9" y="245" width="0.2" height="15.0" fill="rgb(208,196,9)" rx="2" ry="2" />
|
|
<text x="224.86" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_do_adb (2 samples, 0.01%)</title><rect x="165.3" y="181" width="0.1" height="15.0" fill="rgb(205,202,2)" rx="2" ry="2" />
|
|
<text x="168.26" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_is_ctrlbuf (3 samples, 0.02%)</title><rect x="1108.7" y="597" width="0.2" height="15.0" fill="rgb(250,140,22)" rx="2" ry="2" />
|
|
<text x="1111.68" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (152 samples, 0.77%)</title><rect x="511.5" y="357" width="9.1" height="15.0" fill="rgb(235,18,54)" rx="2" ry="2" />
|
|
<text x="514.50" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_get_direct_hit_groups (5 samples, 0.03%)</title><rect x="32.7" y="581" width="0.3" height="15.0" fill="rgb(253,82,10)" rx="2" ry="2" />
|
|
<text x="35.69" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (16 samples, 0.08%)</title><rect x="1144.6" y="421" width="1.0" height="15.0" fill="rgb(212,53,38)" rx="2" ry="2" />
|
|
<text x="1147.63" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (264 samples, 1.34%)</title><rect x="156.7" y="549" width="15.9" height="15.0" fill="rgb(254,216,41)" rx="2" ry="2" />
|
|
<text x="159.74" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="223.1" y="165" width="0.1" height="15.0" fill="rgb(226,107,9)" rx="2" ry="2" />
|
|
<text x="226.12" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (45 samples, 0.23%)</title><rect x="428.5" y="421" width="2.7" height="15.0" fill="rgb(219,206,44)" rx="2" ry="2" />
|
|
<text x="431.50" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vdso_clock_gettime (11 samples, 0.06%)</title><rect x="1059.5" y="373" width="0.7" height="15.0" fill="rgb(237,112,41)" rx="2" ry="2" />
|
|
<text x="1062.52" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (2 samples, 0.01%)</title><rect x="165.0" y="213" width="0.1" height="15.0" fill="rgb(254,156,18)" rx="2" ry="2" />
|
|
<text x="168.02" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (7 samples, 0.04%)</title><rect x="349.5" y="437" width="0.4" height="15.0" fill="rgb(232,57,7)" rx="2" ry="2" />
|
|
<text x="352.46" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInflate2::fn_BuildDynamicHuffmanCodeDict (2 samples, 0.01%)</title><rect x="1141.8" y="341" width="0.1" height="15.0" fill="rgb(250,61,22)" rx="2" ry="2" />
|
|
<text x="1144.81" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (31 samples, 0.16%)</title><rect x="221.7" y="309" width="1.9" height="15.0" fill="rgb(237,184,45)" rx="2" ry="2" />
|
|
<text x="224.74" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (12 samples, 0.06%)</title><rect x="144.8" y="485" width="0.7" height="15.0" fill="rgb(251,161,2)" rx="2" ry="2" />
|
|
<text x="147.80" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="176.4" y="197" width="0.2" height="15.0" fill="rgb(210,129,53)" rx="2" ry="2" />
|
|
<text x="179.43" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (277 samples, 1.41%)</title><rect x="190.3" y="517" width="16.6" height="15.0" fill="rgb(209,109,46)" rx="2" ry="2" />
|
|
<text x="193.29" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clock_gettime@plt (2 samples, 0.01%)</title><rect x="571.3" y="389" width="0.2" height="15.0" fill="rgb(249,39,42)" rx="2" ry="2" />
|
|
<text x="574.34" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (4 samples, 0.02%)</title><rect x="885.2" y="325" width="0.3" height="15.0" fill="rgb(220,43,11)" rx="2" ry="2" />
|
|
<text x="888.23" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="252.2" y="421" width="0.1" height="15.0" fill="rgb(227,117,8)" rx="2" ry="2" />
|
|
<text x="255.23" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (5 samples, 0.03%)</title><rect x="1145.6" y="613" width="0.3" height="15.0" fill="rgb(244,75,48)" rx="2" ry="2" />
|
|
<text x="1148.59" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="54.1" y="597" width="0.1" height="15.0" fill="rgb(235,91,27)" rx="2" ry="2" />
|
|
<text x="57.05" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (12 samples, 0.06%)</title><rect x="838.1" y="277" width="0.7" height="15.0" fill="rgb(241,54,37)" rx="2" ry="2" />
|
|
<text x="841.06" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (5 samples, 0.03%)</title><rect x="988.2" y="373" width="0.3" height="15.0" fill="rgb(240,37,43)" rx="2" ry="2" />
|
|
<text x="991.16" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dns.so] (3 samples, 0.02%)</title><rect x="1044.9" y="405" width="0.2" height="15.0" fill="rgb(238,3,0)" rx="2" ry="2" />
|
|
<text x="1047.88" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (12 samples, 0.06%)</title><rect x="1144.6" y="341" width="0.7" height="15.0" fill="rgb(249,97,47)" rx="2" ry="2" />
|
|
<text x="1147.63" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mix16B (2 samples, 0.01%)</title><rect x="509.3" y="229" width="0.1" height="15.0" fill="rgb(216,56,53)" rx="2" ry="2" />
|
|
<text x="512.28" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_THREAD_write_lock (2 samples, 0.01%)</title><rect x="160.9" y="325" width="0.1" height="15.0" fill="rgb(234,196,52)" rx="2" ry="2" />
|
|
<text x="163.88" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (12 samples, 0.06%)</title><rect x="1061.4" y="357" width="0.7" height="15.0" fill="rgb(223,147,41)" rx="2" ry="2" />
|
|
<text x="1064.38" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="106.1" y="325" width="0.5" height="15.0" fill="rgb(209,154,25)" rx="2" ry="2" />
|
|
<text x="109.09" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (6 samples, 0.03%)</title><rect x="505.1" y="277" width="0.3" height="15.0" fill="rgb(225,103,47)" rx="2" ry="2" />
|
|
<text x="508.08" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="414.0" y="261" width="0.3" height="15.0" fill="rgb(244,171,40)" rx="2" ry="2" />
|
|
<text x="416.98" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (5 samples, 0.03%)</title><rect x="508.1" y="229" width="0.3" height="15.0" fill="rgb(219,202,1)" rx="2" ry="2" />
|
|
<text x="511.08" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (17 samples, 0.09%)</title><rect x="105.6" y="469" width="1.0" height="15.0" fill="rgb(237,106,10)" rx="2" ry="2" />
|
|
<text x="108.61" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="106.1" y="357" width="0.5" height="15.0" fill="rgb(208,129,6)" rx="2" ry="2" />
|
|
<text x="109.09" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (2 samples, 0.01%)</title><rect x="1091.2" y="261" width="0.1" height="15.0" fill="rgb(242,119,14)" rx="2" ry="2" />
|
|
<text x="1094.15" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (4 samples, 0.02%)</title><rect x="930.2" y="357" width="0.3" height="15.0" fill="rgb(226,20,44)" rx="2" ry="2" />
|
|
<text x="933.25" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (120 samples, 0.61%)</title><rect x="207.4" y="501" width="7.2" height="15.0" fill="rgb(247,78,12)" rx="2" ry="2" />
|
|
<text x="210.40" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_mq_publish_message (16 samples, 0.08%)</title><rect x="33.7" y="581" width="1.0" height="15.0" fill="rgb(229,229,36)" rx="2" ry="2" />
|
|
<text x="36.71" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (277 samples, 1.41%)</title><rect x="190.3" y="485" width="16.6" height="15.0" fill="rgb(219,64,7)" rx="2" ry="2" />
|
|
<text x="193.29" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (16 samples, 0.08%)</title><rect x="1141.7" y="565" width="1.0" height="15.0" fill="rgb(230,164,14)" rx="2" ry="2" />
|
|
<text x="1144.75" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="254.5" y="453" width="0.1" height="15.0" fill="rgb(247,108,33)" rx="2" ry="2" />
|
|
<text x="257.51" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="254.0" y="453" width="0.3" height="15.0" fill="rgb(214,109,12)" rx="2" ry="2" />
|
|
<text x="257.03" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_and_copy_streamindex (5 samples, 0.03%)</title><rect x="1023.2" y="517" width="0.3" height="15.0" fill="rgb(229,43,12)" rx="2" ry="2" />
|
|
<text x="1026.15" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (21 samples, 0.11%)</title><rect x="384.1" y="357" width="1.3" height="15.0" fill="rgb(252,122,44)" rx="2" ry="2" />
|
|
<text x="387.15" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1142.8" y="405" width="0.1" height="15.0" fill="rgb(224,79,46)" rx="2" ry="2" />
|
|
<text x="1145.77" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (11 samples, 0.06%)</title><rect x="112.6" y="405" width="0.6" height="15.0" fill="rgb(253,193,40)" rx="2" ry="2" />
|
|
<text x="115.57" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (6 samples, 0.03%)</title><rect x="910.7" y="325" width="0.3" height="15.0" fill="rgb(227,100,8)" rx="2" ry="2" />
|
|
<text x="913.68" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (19 samples, 0.10%)</title><rect x="722.6" y="309" width="1.2" height="15.0" fill="rgb(208,46,19)" rx="2" ry="2" />
|
|
<text x="725.65" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_propluginfo_plugid (3 samples, 0.02%)</title><rect x="922.0" y="309" width="0.1" height="15.0" fill="rgb(238,33,45)" rx="2" ry="2" />
|
|
<text x="924.96" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="1155.6" y="309" width="0.6" height="15.0" fill="rgb(253,119,20)" rx="2" ry="2" />
|
|
<text x="1158.61" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (7 samples, 0.04%)</title><rect x="349.5" y="405" width="0.4" height="15.0" fill="rgb(240,21,3)" rx="2" ry="2" />
|
|
<text x="352.46" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (101 samples, 0.51%)</title><rect x="579.6" y="373" width="6.1" height="15.0" fill="rgb(230,26,53)" rx="2" ry="2" />
|
|
<text x="582.62" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (13 samples, 0.07%)</title><rect x="1146.5" y="597" width="0.8" height="15.0" fill="rgb(237,138,54)" rx="2" ry="2" />
|
|
<text x="1149.55" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (80 samples, 0.41%)</title><rect x="921.8" y="325" width="4.8" height="15.0" fill="rgb(228,153,43)" rx="2" ry="2" />
|
|
<text x="924.84" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (4 samples, 0.02%)</title><rect x="1143.8" y="453" width="0.3" height="15.0" fill="rgb(216,162,22)" rx="2" ry="2" />
|
|
<text x="1146.85" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (32 samples, 0.16%)</title><rect x="165.9" y="245" width="1.9" height="15.0" fill="rgb(247,66,2)" rx="2" ry="2" />
|
|
<text x="168.86" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (11 samples, 0.06%)</title><rect x="220.9" y="341" width="0.7" height="15.0" fill="rgb(221,211,36)" rx="2" ry="2" />
|
|
<text x="223.90" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>posix_memalign (2 samples, 0.01%)</title><rect x="384.0" y="245" width="0.1" height="15.0" fill="rgb(239,10,28)" rx="2" ry="2" />
|
|
<text x="386.97" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="152.7" y="469" width="0.7" height="15.0" fill="rgb(220,123,32)" rx="2" ry="2" />
|
|
<text x="155.72" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (22 samples, 0.11%)</title><rect x="256.0" y="645" width="1.3" height="15.0" fill="rgb(251,4,52)" rx="2" ry="2" />
|
|
<text x="258.95" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (5 samples, 0.03%)</title><rect x="1048.8" y="453" width="0.3" height="15.0" fill="rgb(210,217,15)" rx="2" ry="2" />
|
|
<text x="1051.78" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_no_init (3 samples, 0.02%)</title><rect x="200.4" y="357" width="0.2" height="15.0" fill="rgb(229,86,20)" rx="2" ry="2" />
|
|
<text x="203.37" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="1142.9" y="469" width="0.7" height="15.0" fill="rgb(218,1,54)" rx="2" ry="2" />
|
|
<text x="1145.89" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (69 samples, 0.35%)</title><rect x="922.4" y="277" width="4.2" height="15.0" fill="rgb(242,111,14)" rx="2" ry="2" />
|
|
<text x="925.44" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (75 samples, 0.38%)</title><rect x="1152.7" y="517" width="4.5" height="15.0" fill="rgb(214,13,17)" rx="2" ry="2" />
|
|
<text x="1155.73" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add_by_recording_popped_data (152 samples, 0.77%)</title><rect x="713.0" y="309" width="9.1" height="15.0" fill="rgb(254,132,24)" rx="2" ry="2" />
|
|
<text x="715.98" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="232.0" y="309" width="0.1" height="15.0" fill="rgb(233,209,1)" rx="2" ry="2" />
|
|
<text x="235.00" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (9 samples, 0.05%)</title><rect x="130.8" y="373" width="0.6" height="15.0" fill="rgb(245,176,5)" rx="2" ry="2" />
|
|
<text x="133.81" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="1189.9" y="597" width="0.1" height="15.0" fill="rgb(212,147,14)" rx="2" ry="2" />
|
|
<text x="1192.88" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="909.1" y="293" width="0.2" height="15.0" fill="rgb(236,7,41)" rx="2" ry="2" />
|
|
<text x="912.12" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (7 samples, 0.04%)</title><rect x="92.0" y="533" width="0.5" height="15.0" fill="rgb(209,204,23)" rx="2" ry="2" />
|
|
<text x="95.04" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="277" width="0.2" height="15.0" fill="rgb(241,48,12)" rx="2" ry="2" />
|
|
<text x="1145.47" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (11 samples, 0.06%)</title><rect x="1090.7" y="341" width="0.7" height="15.0" fill="rgb(247,117,3)" rx="2" ry="2" />
|
|
<text x="1093.73" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="1074.5" y="261" width="0.1" height="15.0" fill="rgb(246,32,11)" rx="2" ry="2" />
|
|
<text x="1077.53" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="96.2" y="597" width="0.1" height="15.0" fill="rgb(238,217,22)" rx="2" ry="2" />
|
|
<text x="99.18" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (13 samples, 0.07%)</title><rect x="626.6" y="261" width="0.7" height="15.0" fill="rgb(223,39,47)" rx="2" ry="2" />
|
|
<text x="629.56" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (17 samples, 0.09%)</title><rect x="1178.2" y="469" width="1.1" height="15.0" fill="rgb(250,67,31)" rx="2" ry="2" />
|
|
<text x="1181.24" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (6 samples, 0.03%)</title><rect x="876.7" y="437" width="0.4" height="15.0" fill="rgb(222,88,3)" rx="2" ry="2" />
|
|
<text x="879.71" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (38 samples, 0.19%)</title><rect x="154.5" y="533" width="2.2" height="15.0" fill="rgb(252,36,15)" rx="2" ry="2" />
|
|
<text x="157.46" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_get_direct_hit_groups (2 samples, 0.01%)</title><rect x="256.6" y="581" width="0.1" height="15.0" fill="rgb(215,197,39)" rx="2" ry="2" />
|
|
<text x="259.61" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (42 samples, 0.21%)</title><rect x="1077.3" y="357" width="2.5" height="15.0" fill="rgb(251,41,32)" rx="2" ry="2" />
|
|
<text x="1080.29" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="158.2" y="277" width="0.2" height="15.0" fill="rgb(233,183,51)" rx="2" ry="2" />
|
|
<text x="161.24" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (16 samples, 0.08%)</title><rect x="1064.7" y="389" width="0.9" height="15.0" fill="rgb(247,153,47)" rx="2" ry="2" />
|
|
<text x="1067.68" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="158.9" y="293" width="0.2" height="15.0" fill="rgb(248,228,35)" rx="2" ry="2" />
|
|
<text x="161.90" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (9 samples, 0.05%)</title><rect x="489.1" y="245" width="0.6" height="15.0" fill="rgb(215,169,32)" rx="2" ry="2" />
|
|
<text x="492.12" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_CreateString (2 samples, 0.01%)</title><rect x="218.8" y="421" width="0.1" height="15.0" fill="rgb(209,182,50)" rx="2" ry="2" />
|
|
<text x="221.80" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (7 samples, 0.04%)</title><rect x="1033.1" y="357" width="0.4" height="15.0" fill="rgb(235,84,13)" rx="2" ry="2" />
|
|
<text x="1036.11" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="168.7" y="229" width="0.2" height="15.0" fill="rgb(216,178,21)" rx="2" ry="2" />
|
|
<text x="171.75" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (7 samples, 0.04%)</title><rect x="1017.1" y="453" width="0.4" height="15.0" fill="rgb(209,11,14)" rx="2" ry="2" />
|
|
<text x="1020.09" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="913.2" y="501" width="0.1" height="15.0" fill="rgb(241,133,21)" rx="2" ry="2" />
|
|
<text x="916.20" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (2 samples, 0.01%)</title><rect x="733.9" y="341" width="0.1" height="15.0" fill="rgb(239,196,49)" rx="2" ry="2" />
|
|
<text x="736.93" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="249.7" y="213" width="0.1" height="15.0" fill="rgb(207,105,8)" rx="2" ry="2" />
|
|
<text x="252.71" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="352.3" y="453" width="0.5" height="15.0" fill="rgb(225,220,48)" rx="2" ry="2" />
|
|
<text x="355.28" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (6 samples, 0.03%)</title><rect x="210.5" y="389" width="0.4" height="15.0" fill="rgb(244,224,18)" rx="2" ry="2" />
|
|
<text x="213.52" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (27 samples, 0.14%)</title><rect x="386.1" y="373" width="1.6" height="15.0" fill="rgb(253,228,39)" rx="2" ry="2" />
|
|
<text x="389.07" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (130 samples, 0.66%)</title><rect x="627.9" y="341" width="7.8" height="15.0" fill="rgb(216,82,39)" rx="2" ry="2" />
|
|
<text x="630.94" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get_ex_data (4 samples, 0.02%)</title><rect x="990.7" y="389" width="0.3" height="15.0" fill="rgb(250,2,39)" rx="2" ry="2" />
|
|
<text x="993.74" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1032.3" y="405" width="0.1" height="15.0" fill="rgb(226,5,12)" rx="2" ry="2" />
|
|
<text x="1035.27" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_count (5 samples, 0.03%)</title><rect x="708.5" y="293" width="0.3" height="15.0" fill="rgb(206,209,3)" rx="2" ry="2" />
|
|
<text x="711.54" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_freeBuf (5 samples, 0.03%)</title><rect x="409.5" y="389" width="0.3" height="15.0" fill="rgb(211,0,12)" rx="2" ry="2" />
|
|
<text x="412.48" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="417.1" y="197" width="0.1" height="15.0" fill="rgb(251,141,33)" rx="2" ry="2" />
|
|
<text x="420.10" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (43 samples, 0.22%)</title><rect x="246.1" y="485" width="2.6" height="15.0" fill="rgb(235,68,4)" rx="2" ry="2" />
|
|
<text x="249.11" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (2 samples, 0.01%)</title><rect x="1031.4" y="485" width="0.1" height="15.0" fill="rgb(216,49,40)" rx="2" ry="2" />
|
|
<text x="1034.37" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (3 samples, 0.02%)</title><rect x="361.1" y="501" width="0.2" height="15.0" fill="rgb(226,18,43)" rx="2" ry="2" />
|
|
<text x="364.10" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="178.5" y="213" width="0.6" height="15.0" fill="rgb(225,71,34)" rx="2" ry="2" />
|
|
<text x="181.53" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_init_context (4 samples, 0.02%)</title><rect x="426.0" y="437" width="0.2" height="15.0" fill="rgb(232,212,49)" rx="2" ry="2" />
|
|
<text x="428.98" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (8 samples, 0.04%)</title><rect x="254.6" y="485" width="0.5" height="15.0" fill="rgb(218,165,16)" rx="2" ry="2" />
|
|
<text x="257.63" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="909.1" y="325" width="0.2" height="15.0" fill="rgb(248,212,51)" rx="2" ry="2" />
|
|
<text x="912.12" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (14 samples, 0.07%)</title><rect x="145.5" y="469" width="0.9" height="15.0" fill="rgb(215,77,4)" rx="2" ry="2" />
|
|
<text x="148.52" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS@plt (2 samples, 0.01%)</title><rect x="408.1" y="325" width="0.1" height="15.0" fill="rgb(233,125,41)" rx="2" ry="2" />
|
|
<text x="411.09" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (7 samples, 0.04%)</title><rect x="349.5" y="453" width="0.4" height="15.0" fill="rgb(241,184,44)" rx="2" ry="2" />
|
|
<text x="352.46" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (14,698 samples, 74.76%)</title><rect x="257.9" y="629" width="882.1" height="15.0" fill="rgb(243,99,41)" rx="2" ry="2" />
|
|
<text x="260.87" y="639.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (7 samples, 0.04%)</title><rect x="830.6" y="277" width="0.4" height="15.0" fill="rgb(223,150,23)" rx="2" ry="2" />
|
|
<text x="833.56" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime_2 (2 samples, 0.01%)</title><rect x="152.0" y="405" width="0.1" height="15.0" fill="rgb(211,163,42)" rx="2" ry="2" />
|
|
<text x="155.00" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_get_type (2 samples, 0.01%)</title><rect x="484.4" y="341" width="0.2" height="15.0" fill="rgb(245,170,8)" rx="2" ry="2" />
|
|
<text x="487.44" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (4 samples, 0.02%)</title><rect x="385.5" y="357" width="0.2" height="15.0" fill="rgb(253,222,45)" rx="2" ry="2" />
|
|
<text x="388.47" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_9to16_128b (15 samples, 0.08%)</title><rect x="630.0" y="245" width="0.9" height="15.0" fill="rgb(236,57,14)" rx="2" ry="2" />
|
|
<text x="632.98" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (15 samples, 0.08%)</title><rect x="157.0" y="437" width="0.9" height="15.0" fill="rgb(248,72,4)" rx="2" ry="2" />
|
|
<text x="159.98" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1024.0" y="437" width="0.1" height="15.0" fill="rgb(239,97,49)" rx="2" ry="2" />
|
|
<text x="1026.99" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_get_object (2 samples, 0.01%)</title><rect x="223.3" y="197" width="0.1" height="15.0" fill="rgb(215,154,8)" rx="2" ry="2" />
|
|
<text x="226.30" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="219.3" y="261" width="0.2" height="15.0" fill="rgb(221,219,3)" rx="2" ry="2" />
|
|
<text x="222.28" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1166.6" y="517" width="0.2" height="15.0" fill="rgb(224,221,1)" rx="2" ry="2" />
|
|
<text x="1169.59" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (3 samples, 0.02%)</title><rect x="911.3" y="325" width="0.2" height="15.0" fill="rgb(248,150,21)" rx="2" ry="2" />
|
|
<text x="914.34" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (216 samples, 1.10%)</title><rect x="1151.9" y="549" width="13.0" height="15.0" fill="rgb(242,77,22)" rx="2" ry="2" />
|
|
<text x="1154.89" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (6 samples, 0.03%)</title><rect x="886.4" y="357" width="0.4" height="15.0" fill="rgb(249,194,42)" rx="2" ry="2" />
|
|
<text x="889.43" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (246 samples, 1.25%)</title><rect x="114.6" y="517" width="14.7" height="15.0" fill="rgb(214,183,24)" rx="2" ry="2" />
|
|
<text x="117.55" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_bsearch_ex_ (2 samples, 0.01%)</title><rect x="1142.6" y="69" width="0.1" height="15.0" fill="rgb(246,104,2)" rx="2" ry="2" />
|
|
<text x="1145.59" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="107.7" y="357" width="0.4" height="15.0" fill="rgb(212,122,13)" rx="2" ry="2" />
|
|
<text x="110.71" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (16 samples, 0.08%)</title><rect x="1144.6" y="389" width="1.0" height="15.0" fill="rgb(251,13,3)" rx="2" ry="2" />
|
|
<text x="1147.63" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (11 samples, 0.06%)</title><rect x="1188.0" y="485" width="0.6" height="15.0" fill="rgb(233,221,30)" rx="2" ry="2" />
|
|
<text x="1190.96" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="921.0" y="261" width="0.2" height="15.0" fill="rgb(208,215,17)" rx="2" ry="2" />
|
|
<text x="924.00" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (7 samples, 0.04%)</title><rect x="162.1" y="181" width="0.4" height="15.0" fill="rgb(236,64,28)" rx="2" ry="2" />
|
|
<text x="165.08" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="145.5" y="341" width="0.3" height="15.0" fill="rgb(233,111,27)" rx="2" ry="2" />
|
|
<text x="148.52" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (5 samples, 0.03%)</title><rect x="1084.5" y="373" width="0.3" height="15.0" fill="rgb(209,197,40)" rx="2" ry="2" />
|
|
<text x="1087.49" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="351.6" y="501" width="0.1" height="15.0" fill="rgb(229,184,28)" rx="2" ry="2" />
|
|
<text x="354.62" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (4 samples, 0.02%)</title><rect x="145.2" y="341" width="0.2" height="15.0" fill="rgb(226,48,30)" rx="2" ry="2" />
|
|
<text x="148.16" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (37 samples, 0.19%)</title><rect x="95.4" y="613" width="2.2" height="15.0" fill="rgb(227,92,19)" rx="2" ry="2" />
|
|
<text x="98.40" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (11 samples, 0.06%)</title><rect x="254.6" y="629" width="0.7" height="15.0" fill="rgb(225,44,43)" rx="2" ry="2" />
|
|
<text x="257.63" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_opt_from_rawpkt@plt (2 samples, 0.01%)</title><rect x="663.0" y="453" width="0.1" height="15.0" fill="rgb(206,72,17)" rx="2" ry="2" />
|
|
<text x="665.99" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.02%)</title><rect x="522.8" y="437" width="0.2" height="15.0" fill="rgb(252,213,22)" rx="2" ry="2" />
|
|
<text x="525.85" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (10 samples, 0.05%)</title><rect x="1065.0" y="357" width="0.6" height="15.0" fill="rgb(213,96,47)" rx="2" ry="2" />
|
|
<text x="1067.98" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_group (2 samples, 0.01%)</title><rect x="1147.7" y="341" width="0.2" height="15.0" fill="rgb(254,106,10)" rx="2" ry="2" />
|
|
<text x="1150.75" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (9 samples, 0.05%)</title><rect x="106.6" y="341" width="0.6" height="15.0" fill="rgb(227,96,28)" rx="2" ry="2" />
|
|
<text x="109.63" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_traffic_tags_get (4 samples, 0.02%)</title><rect x="1016.0" y="389" width="0.2" height="15.0" fill="rgb(215,80,34)" rx="2" ry="2" />
|
|
<text x="1019.01" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (60 samples, 0.31%)</title><rect x="954.9" y="293" width="3.6" height="15.0" fill="rgb(234,205,36)" rx="2" ry="2" />
|
|
<text x="957.85" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (5 samples, 0.03%)</title><rect x="473.0" y="485" width="0.3" height="15.0" fill="rgb(253,103,48)" rx="2" ry="2" />
|
|
<text x="475.97" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (2 samples, 0.01%)</title><rect x="1085.7" y="325" width="0.1" height="15.0" fill="rgb(210,110,9)" rx="2" ry="2" />
|
|
<text x="1088.69" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="1147.9" y="325" width="0.2" height="15.0" fill="rgb(218,221,3)" rx="2" ry="2" />
|
|
<text x="1150.87" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_new (4 samples, 0.02%)</title><rect x="214.4" y="437" width="0.2" height="15.0" fill="rgb(240,78,29)" rx="2" ry="2" />
|
|
<text x="217.36" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cal_tag_hash_xxhash128 (11 samples, 0.06%)</title><rect x="986.3" y="325" width="0.7" height="15.0" fill="rgb(220,95,10)" rx="2" ry="2" />
|
|
<text x="989.30" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (24 samples, 0.12%)</title><rect x="1097.5" y="421" width="1.4" height="15.0" fill="rgb(236,220,18)" rx="2" ry="2" />
|
|
<text x="1100.45" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="1032.6" y="421" width="0.3" height="15.0" fill="rgb(220,8,12)" rx="2" ry="2" />
|
|
<text x="1035.63" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (6 samples, 0.03%)</title><rect x="1062.9" y="293" width="0.3" height="15.0" fill="rgb(214,221,11)" rx="2" ry="2" />
|
|
<text x="1065.88" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (3 samples, 0.02%)</title><rect x="990.1" y="277" width="0.2" height="15.0" fill="rgb(236,51,51)" rx="2" ry="2" />
|
|
<text x="993.08" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="931.1" y="341" width="0.1" height="15.0" fill="rgb(228,125,43)" rx="2" ry="2" />
|
|
<text x="934.09" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (3 samples, 0.02%)</title><rect x="1159.5" y="501" width="0.2" height="15.0" fill="rgb(205,105,32)" rx="2" ry="2" />
|
|
<text x="1162.51" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_dos_metric_update (198 samples, 1.01%)</title><rect x="781.4" y="405" width="11.9" height="15.0" fill="rgb(230,218,30)" rx="2" ry="2" />
|
|
<text x="784.40" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.02%)</title><rect x="909.3" y="325" width="0.2" height="15.0" fill="rgb(206,42,52)" rx="2" ry="2" />
|
|
<text x="912.30" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="238.8" y="405" width="0.2" height="15.0" fill="rgb(221,170,29)" rx="2" ry="2" />
|
|
<text x="241.85" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="357" width="0.2" height="15.0" fill="rgb(247,143,42)" rx="2" ry="2" />
|
|
<text x="1145.47" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (3 samples, 0.02%)</title><rect x="1148.5" y="629" width="0.1" height="15.0" fill="rgb(206,221,20)" rx="2" ry="2" />
|
|
<text x="1151.47" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_add (26 samples, 0.13%)</title><rect x="734.2" y="517" width="1.5" height="15.0" fill="rgb(242,68,34)" rx="2" ry="2" />
|
|
<text x="737.17" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>powf32x (2 samples, 0.01%)</title><rect x="990.0" y="261" width="0.1" height="15.0" fill="rgb(243,115,5)" rx="2" ry="2" />
|
|
<text x="992.96" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (6 samples, 0.03%)</title><rect x="1171.9" y="517" width="0.4" height="15.0" fill="rgb(215,38,53)" rx="2" ry="2" />
|
|
<text x="1174.93" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="254.3" y="453" width="0.1" height="15.0" fill="rgb(236,52,33)" rx="2" ry="2" />
|
|
<text x="257.27" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_get_compile_table_ids@plt (2 samples, 0.01%)</title><rect x="32.5" y="581" width="0.1" height="15.0" fill="rgb(215,36,39)" rx="2" ry="2" />
|
|
<text x="35.51" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_ipv4 (20 samples, 0.10%)</title><rect x="891.9" y="533" width="1.2" height="15.0" fill="rgb(247,85,45)" rx="2" ry="2" />
|
|
<text x="894.89" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="106.0" y="309" width="0.1" height="15.0" fill="rgb(240,101,54)" rx="2" ry="2" />
|
|
<text x="108.97" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (16 samples, 0.08%)</title><rect x="147.4" y="501" width="0.9" height="15.0" fill="rgb(225,132,0)" rx="2" ry="2" />
|
|
<text x="150.38" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>strlen@plt (8 samples, 0.04%)</title><rect x="852.2" y="309" width="0.4" height="15.0" fill="rgb(217,43,14)" rx="2" ry="2" />
|
|
<text x="855.16" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (2 samples, 0.01%)</title><rect x="478.6" y="341" width="0.1" height="15.0" fill="rgb(213,117,46)" rx="2" ry="2" />
|
|
<text x="481.62" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (12 samples, 0.06%)</title><rect x="1004.8" y="293" width="0.7" height="15.0" fill="rgb(251,160,41)" rx="2" ry="2" />
|
|
<text x="1007.79" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_session_attribute_cstring_value_get0 (8 samples, 0.04%)</title><rect x="213.5" y="421" width="0.4" height="15.0" fill="rgb(252,78,5)" rx="2" ry="2" />
|
|
<text x="216.46" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (3 samples, 0.02%)</title><rect x="933.2" y="373" width="0.2" height="15.0" fill="rgb(219,58,49)" rx="2" ry="2" />
|
|
<text x="936.25" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (73 samples, 0.37%)</title><rect x="148.3" y="501" width="4.4" height="15.0" fill="rgb(253,112,4)" rx="2" ry="2" />
|
|
<text x="151.34" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_insert_and_record_popped_back (17 samples, 0.09%)</title><rect x="503.0" y="293" width="1.1" height="15.0" fill="rgb(212,122,37)" rx="2" ry="2" />
|
|
<text x="506.04" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (2 samples, 0.01%)</title><rect x="231.8" y="421" width="0.1" height="15.0" fill="rgb(228,54,4)" rx="2" ry="2" />
|
|
<text x="234.76" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (571 samples, 2.90%)</title><rect x="699.9" y="501" width="34.3" height="15.0" fill="rgb(247,32,40)" rx="2" ry="2" />
|
|
<text x="702.90" y="511.5" >ud..</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="254.6" y="389" width="0.2" height="15.0" fill="rgb(226,21,26)" rx="2" ry="2" />
|
|
<text x="257.63" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="47.5" y="517" width="0.1" height="15.0" fill="rgb(225,218,48)" rx="2" ry="2" />
|
|
<text x="50.51" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (4 samples, 0.02%)</title><rect x="1184.0" y="453" width="0.2" height="15.0" fill="rgb(248,88,37)" rx="2" ry="2" />
|
|
<text x="1187.00" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (12 samples, 0.06%)</title><rect x="1189.2" y="661" width="0.7" height="15.0" fill="rgb(232,217,52)" rx="2" ry="2" />
|
|
<text x="1192.16" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="931.1" y="373" width="0.1" height="15.0" fill="rgb(247,163,11)" rx="2" ry="2" />
|
|
<text x="934.09" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (15 samples, 0.08%)</title><rect x="247.3" y="373" width="0.9" height="15.0" fill="rgb(241,10,24)" rx="2" ry="2" />
|
|
<text x="250.31" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (4 samples, 0.02%)</title><rect x="930.2" y="389" width="0.3" height="15.0" fill="rgb(241,213,47)" rx="2" ry="2" />
|
|
<text x="933.25" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (28 samples, 0.14%)</title><rect x="784.2" y="277" width="1.6" height="15.0" fill="rgb(249,135,30)" rx="2" ry="2" />
|
|
<text x="787.16" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vdso_clock_gettime (41 samples, 0.21%)</title><rect x="568.9" y="373" width="2.4" height="15.0" fill="rgb(213,70,50)" rx="2" ry="2" />
|
|
<text x="571.88" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_pop_free (9 samples, 0.05%)</title><rect x="165.1" y="229" width="0.6" height="15.0" fill="rgb(219,139,21)" rx="2" ry="2" />
|
|
<text x="168.14" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mix16B (3 samples, 0.02%)</title><rect x="776.1" y="229" width="0.2" height="15.0" fill="rgb(250,60,40)" rx="2" ry="2" />
|
|
<text x="779.12" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (24 samples, 0.12%)</title><rect x="386.1" y="325" width="1.5" height="15.0" fill="rgb(243,35,43)" rx="2" ry="2" />
|
|
<text x="389.13" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_easy_counter_incrby (29 samples, 0.15%)</title><rect x="705.2" y="389" width="1.8" height="15.0" fill="rgb(250,123,24)" rx="2" ry="2" />
|
|
<text x="708.24" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (4 samples, 0.02%)</title><rect x="146.0" y="421" width="0.2" height="15.0" fill="rgb(232,24,42)" rx="2" ry="2" />
|
|
<text x="149.00" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="223.4" y="181" width="0.1" height="15.0" fill="rgb(243,192,21)" rx="2" ry="2" />
|
|
<text x="226.42" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_init_with_fieldstat_tag (2 samples, 0.01%)</title><rect x="881.0" y="357" width="0.1" height="15.0" fill="rgb(211,211,23)" rx="2" ry="2" />
|
|
<text x="883.97" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cell_manager_add_cell (3 samples, 0.02%)</title><rect x="1084.1" y="357" width="0.1" height="15.0" fill="rgb(208,129,31)" rx="2" ry="2" />
|
|
<text x="1087.07" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_session_decode (18 samples, 0.09%)</title><rect x="989.5" y="405" width="1.1" height="15.0" fill="rgb(245,161,13)" rx="2" ry="2" />
|
|
<text x="992.54" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_get_domain_from_fqdn (3 samples, 0.02%)</title><rect x="660.9" y="373" width="0.2" height="15.0" fill="rgb(220,60,32)" rx="2" ry="2" />
|
|
<text x="663.95" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="1141.6" y="533" width="0.1" height="15.0" fill="rgb(236,46,47)" rx="2" ry="2" />
|
|
<text x="1144.57" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (8 samples, 0.04%)</title><rect x="1179.7" y="629" width="0.5" height="15.0" fill="rgb(227,190,22)" rx="2" ry="2" />
|
|
<text x="1182.68" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (24 samples, 0.12%)</title><rect x="158.2" y="373" width="1.4" height="15.0" fill="rgb(205,150,18)" rx="2" ry="2" />
|
|
<text x="161.18" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="145.2" y="261" width="0.2" height="15.0" fill="rgb(250,219,30)" rx="2" ry="2" />
|
|
<text x="148.16" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (5 samples, 0.03%)</title><rect x="980.5" y="389" width="0.3" height="15.0" fill="rgb(235,43,24)" rx="2" ry="2" />
|
|
<text x="983.54" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_topk_metric_update (153 samples, 0.78%)</title><rect x="1035.5" y="405" width="9.2" height="15.0" fill="rgb(235,78,1)" rx="2" ry="2" />
|
|
<text x="1038.52" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="254.6" y="405" width="0.2" height="15.0" fill="rgb(223,159,22)" rx="2" ry="2" />
|
|
<text x="257.63" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (111 samples, 0.56%)</title><rect x="608.6" y="261" width="6.7" height="15.0" fill="rgb(207,203,28)" rx="2" ry="2" />
|
|
<text x="611.61" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="1176.4" y="517" width="0.2" height="15.0" fill="rgb(232,24,50)" rx="2" ry="2" />
|
|
<text x="1179.44" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (24 samples, 0.12%)</title><rect x="416.5" y="325" width="1.4" height="15.0" fill="rgb(220,165,10)" rx="2" ry="2" />
|
|
<text x="419.50" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_digest (12 samples, 0.06%)</title><rect x="961.2" y="309" width="0.7" height="15.0" fill="rgb(224,51,21)" rx="2" ry="2" />
|
|
<text x="964.21" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_group (2 samples, 0.01%)</title><rect x="918.3" y="197" width="0.1" height="15.0" fill="rgb(244,123,9)" rx="2" ry="2" />
|
|
<text x="921.30" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="167.5" y="165" width="0.2" height="15.0" fill="rgb(245,18,21)" rx="2" ry="2" />
|
|
<text x="170.55" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get0_addr (2 samples, 0.01%)</title><rect x="1065.6" y="389" width="0.2" height="15.0" fill="rgb(209,4,46)" rx="2" ry="2" />
|
|
<text x="1068.64" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (21 samples, 0.11%)</title><rect x="1144.3" y="581" width="1.3" height="15.0" fill="rgb(238,223,38)" rx="2" ry="2" />
|
|
<text x="1147.33" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="1188.0" y="389" width="0.1" height="15.0" fill="rgb(245,167,41)" rx="2" ry="2" />
|
|
<text x="1191.02" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="219.3" y="357" width="0.2" height="15.0" fill="rgb(244,227,24)" rx="2" ry="2" />
|
|
<text x="222.28" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (246 samples, 1.25%)</title><rect x="114.6" y="501" width="14.7" height="15.0" fill="rgb(210,30,5)" rx="2" ry="2" />
|
|
<text x="117.55" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="523.7" y="389" width="0.2" height="15.0" fill="rgb(225,79,43)" rx="2" ry="2" />
|
|
<text x="526.69" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (112 samples, 0.57%)</title><rect x="225.4" y="501" width="6.7" height="15.0" fill="rgb(254,197,20)" rx="2" ry="2" />
|
|
<text x="228.40" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="105.7" y="357" width="0.3" height="15.0" fill="rgb(246,194,50)" rx="2" ry="2" />
|
|
<text x="108.67" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="471.5" y="469" width="0.2" height="15.0" fill="rgb(227,213,0)" rx="2" ry="2" />
|
|
<text x="474.53" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="471.0" y="469" width="0.2" height="15.0" fill="rgb(222,107,47)" rx="2" ry="2" />
|
|
<text x="473.99" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get (2 samples, 0.01%)</title><rect x="378.0" y="261" width="0.1" height="15.0" fill="rgb(241,21,0)" rx="2" ry="2" />
|
|
<text x="380.97" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.02%)</title><rect x="219.3" y="533" width="0.2" height="15.0" fill="rgb(247,15,5)" rx="2" ry="2" />
|
|
<text x="222.28" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (16 samples, 0.08%)</title><rect x="1062.6" y="325" width="1.0" height="15.0" fill="rgb(217,147,11)" rx="2" ry="2" />
|
|
<text x="1065.64" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (112 samples, 0.57%)</title><rect x="225.4" y="581" width="6.7" height="15.0" fill="rgb(252,12,41)" rx="2" ry="2" />
|
|
<text x="228.40" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1143.8" y="405" width="0.3" height="15.0" fill="rgb(217,158,10)" rx="2" ry="2" />
|
|
<text x="1146.85" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>traffic_common_counter_incrby (27 samples, 0.14%)</title><rect x="1084.9" y="405" width="1.6" height="15.0" fill="rgb(216,78,3)" rx="2" ry="2" />
|
|
<text x="1087.91" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (7 samples, 0.04%)</title><rect x="1188.7" y="469" width="0.5" height="15.0" fill="rgb(211,96,18)" rx="2" ry="2" />
|
|
<text x="1191.74" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (5 samples, 0.03%)</title><rect x="880.4" y="437" width="0.3" height="15.0" fill="rgb(230,111,22)" rx="2" ry="2" />
|
|
<text x="883.37" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (4 samples, 0.02%)</title><rect x="157.5" y="261" width="0.3" height="15.0" fill="rgb(211,54,6)" rx="2" ry="2" />
|
|
<text x="160.52" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___snprintf (10 samples, 0.05%)</title><rect x="1145.9" y="437" width="0.6" height="15.0" fill="rgb(237,202,3)" rx="2" ry="2" />
|
|
<text x="1148.95" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (4 samples, 0.02%)</title><rect x="1175.9" y="517" width="0.2" height="15.0" fill="rgb(223,59,36)" rx="2" ry="2" />
|
|
<text x="1178.90" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (108 samples, 0.55%)</title><rect x="225.4" y="437" width="6.5" height="15.0" fill="rgb(249,184,2)" rx="2" ry="2" />
|
|
<text x="228.40" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (9 samples, 0.05%)</title><rect x="349.3" y="501" width="0.6" height="15.0" fill="rgb(246,33,40)" rx="2" ry="2" />
|
|
<text x="352.34" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="220.3" y="325" width="0.1" height="15.0" fill="rgb(238,103,20)" rx="2" ry="2" />
|
|
<text x="223.30" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (6 samples, 0.03%)</title><rect x="160.3" y="293" width="0.3" height="15.0" fill="rgb(253,193,13)" rx="2" ry="2" />
|
|
<text x="163.28" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (7 samples, 0.04%)</title><rect x="100.3" y="597" width="0.4" height="15.0" fill="rgb(230,209,46)" rx="2" ry="2" />
|
|
<text x="103.27" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (489 samples, 2.49%)</title><rect x="379.5" y="405" width="29.3" height="15.0" fill="rgb(228,221,14)" rx="2" ry="2" />
|
|
<text x="382.47" y="415.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="1142.2" y="325" width="0.1" height="15.0" fill="rgb(234,205,27)" rx="2" ry="2" />
|
|
<text x="1145.23" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cycle_pkt_dump_by_classify (2 samples, 0.01%)</title><rect x="276.4" y="581" width="0.1" height="15.0" fill="rgb(214,171,43)" rx="2" ry="2" />
|
|
<text x="279.36" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_update (2 samples, 0.01%)</title><rect x="1091.3" y="309" width="0.1" height="15.0" fill="rgb(240,15,9)" rx="2" ry="2" />
|
|
<text x="1094.27" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CDeflateFormat::AddDocData (7 samples, 0.04%)</title><rect x="408.3" y="325" width="0.5" height="15.0" fill="rgb(214,135,40)" rx="2" ry="2" />
|
|
<text x="411.33" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (2 samples, 0.01%)</title><rect x="1184.1" y="405" width="0.1" height="15.0" fill="rgb(227,29,43)" rx="2" ry="2" />
|
|
<text x="1187.06" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_avx2 (2 samples, 0.01%)</title><rect x="986.8" y="309" width="0.2" height="15.0" fill="rgb(222,99,49)" rx="2" ry="2" />
|
|
<text x="989.84" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (2 samples, 0.01%)</title><rect x="479.6" y="309" width="0.1" height="15.0" fill="rgb(252,151,47)" rx="2" ry="2" />
|
|
<text x="482.58" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_128bits_internal (18 samples, 0.09%)</title><rect x="1005.8" y="277" width="1.1" height="15.0" fill="rgb(253,90,11)" rx="2" ry="2" />
|
|
<text x="1008.81" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (2 samples, 0.01%)</title><rect x="580.8" y="229" width="0.1" height="15.0" fill="rgb(212,84,0)" rx="2" ry="2" />
|
|
<text x="583.82" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="1167.3" y="453" width="0.7" height="15.0" fill="rgb(245,49,19)" rx="2" ry="2" />
|
|
<text x="1170.31" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="701.3" y="485" width="0.2" height="15.0" fill="rgb(214,14,9)" rx="2" ry="2" />
|
|
<text x="704.34" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (4 samples, 0.02%)</title><rect x="1171.7" y="485" width="0.2" height="15.0" fill="rgb(215,100,27)" rx="2" ry="2" />
|
|
<text x="1174.69" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_or_new_cell (5 samples, 0.03%)</title><rect x="585.1" y="325" width="0.3" height="15.0" fill="rgb(247,65,18)" rx="2" ry="2" />
|
|
<text x="588.09" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (5 samples, 0.03%)</title><rect x="1145.6" y="597" width="0.3" height="15.0" fill="rgb(239,204,25)" rx="2" ry="2" />
|
|
<text x="1148.59" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (8 samples, 0.04%)</title><rect x="350.0" y="469" width="0.5" height="15.0" fill="rgb(238,74,53)" rx="2" ry="2" />
|
|
<text x="353.00" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="909.1" y="277" width="0.2" height="15.0" fill="rgb(228,128,10)" rx="2" ry="2" />
|
|
<text x="912.12" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1058.0" y="389" width="0.2" height="15.0" fill="rgb(250,134,54)" rx="2" ry="2" />
|
|
<text x="1061.02" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_ipport_union_addr (3 samples, 0.02%)</title><rect x="1022.8" y="517" width="0.2" height="15.0" fill="rgb(249,93,42)" rx="2" ry="2" />
|
|
<text x="1025.79" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="582.7" y="245" width="0.2" height="15.0" fill="rgb(227,212,53)" rx="2" ry="2" />
|
|
<text x="585.75" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (117 samples, 0.60%)</title><rect x="161.2" y="309" width="7.1" height="15.0" fill="rgb(216,153,4)" rx="2" ry="2" />
|
|
<text x="164.24" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (5 samples, 0.03%)</title><rect x="1040.4" y="277" width="0.3" height="15.0" fill="rgb(222,67,7)" rx="2" ry="2" />
|
|
<text x="1043.38" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (4 samples, 0.02%)</title><rect x="470.6" y="421" width="0.3" height="15.0" fill="rgb(210,163,36)" rx="2" ry="2" />
|
|
<text x="473.63" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="412.8" y="261" width="0.4" height="15.0" fill="rgb(240,215,10)" rx="2" ry="2" />
|
|
<text x="415.84" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="93.3" y="629" width="0.1" height="15.0" fill="rgb(214,117,19)" rx="2" ry="2" />
|
|
<text x="96.30" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libutable.so] (2 samples, 0.01%)</title><rect x="253.0" y="421" width="0.1" height="15.0" fill="rgb(228,2,32)" rx="2" ry="2" />
|
|
<text x="256.01" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (11 samples, 0.06%)</title><rect x="183.3" y="373" width="0.6" height="15.0" fill="rgb(240,104,30)" rx="2" ry="2" />
|
|
<text x="186.27" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_memcpy (4 samples, 0.02%)</title><rect x="1007.4" y="277" width="0.2" height="15.0" fill="rgb(219,57,39)" rx="2" ry="2" />
|
|
<text x="1010.37" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.02%)</title><rect x="1148.3" y="581" width="0.2" height="15.0" fill="rgb(239,215,54)" rx="2" ry="2" />
|
|
<text x="1151.29" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (106 samples, 0.54%)</title><rect x="824.1" y="261" width="6.3" height="15.0" fill="rgb(239,125,11)" rx="2" ry="2" />
|
|
<text x="827.07" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="385.0" y="261" width="0.2" height="15.0" fill="rgb(239,152,17)" rx="2" ry="2" />
|
|
<text x="387.99" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cycle_pkt_dump_by_classify (6 samples, 0.03%)</title><rect x="1107.9" y="597" width="0.4" height="15.0" fill="rgb(218,19,18)" rx="2" ry="2" />
|
|
<text x="1110.90" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_get0_integer_value (2 samples, 0.01%)</title><rect x="218.0" y="421" width="0.1" height="15.0" fill="rgb(217,64,29)" rx="2" ry="2" />
|
|
<text x="220.96" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_group (2 samples, 0.01%)</title><rect x="158.2" y="293" width="0.2" height="15.0" fill="rgb(254,194,40)" rx="2" ry="2" />
|
|
<text x="161.24" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="1094.1" y="469" width="0.1" height="15.0" fill="rgb(233,34,3)" rx="2" ry="2" />
|
|
<text x="1097.09" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_itoa_word (2 samples, 0.01%)</title><rect x="185.3" y="341" width="0.1" height="15.0" fill="rgb(239,213,8)" rx="2" ry="2" />
|
|
<text x="188.25" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (19 samples, 0.10%)</title><rect x="917.8" y="309" width="1.2" height="15.0" fill="rgb(210,16,19)" rx="2" ry="2" />
|
|
<text x="920.82" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_not_logic (2 samples, 0.01%)</title><rect x="382.8" y="261" width="0.1" height="15.0" fill="rgb(212,199,1)" rx="2" ry="2" />
|
|
<text x="385.77" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mul128_fold64 (3 samples, 0.02%)</title><rect x="776.1" y="213" width="0.2" height="15.0" fill="rgb(231,125,8)" rx="2" ry="2" />
|
|
<text x="779.12" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (9 samples, 0.05%)</title><rect x="253.2" y="485" width="0.5" height="15.0" fill="rgb(233,149,20)" rx="2" ry="2" />
|
|
<text x="256.19" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dictator_malloc (2 samples, 0.01%)</title><rect x="1049.2" y="453" width="0.1" height="15.0" fill="rgb(227,35,26)" rx="2" ry="2" />
|
|
<text x="1052.20" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (6 samples, 0.03%)</title><rect x="1098.4" y="341" width="0.3" height="15.0" fill="rgb(246,121,45)" rx="2" ry="2" />
|
|
<text x="1101.35" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (120 samples, 0.61%)</title><rect x="207.4" y="549" width="7.2" height="15.0" fill="rgb(236,124,45)" rx="2" ry="2" />
|
|
<text x="210.40" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_traffic_entry (197 samples, 1.00%)</title><rect x="1032.9" y="421" width="11.8" height="15.0" fill="rgb(233,209,15)" rx="2" ry="2" />
|
|
<text x="1035.87" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.02%)</title><rect x="254.6" y="453" width="0.2" height="15.0" fill="rgb(205,192,27)" rx="2" ry="2" />
|
|
<text x="257.63" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (4 samples, 0.02%)</title><rect x="1147.3" y="565" width="0.3" height="15.0" fill="rgb(239,180,45)" rx="2" ry="2" />
|
|
<text x="1150.33" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="422.9" y="277" width="0.4" height="15.0" fill="rgb(214,12,1)" rx="2" ry="2" />
|
|
<text x="425.86" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_positioningACompleteLine (7 samples, 0.04%)</title><rect x="418.4" y="389" width="0.4" height="15.0" fill="rgb(216,19,25)" rx="2" ry="2" />
|
|
<text x="421.36" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_xorshift64 (4 samples, 0.02%)</title><rect x="1075.1" y="213" width="0.3" height="15.0" fill="rgb(238,72,45)" rx="2" ry="2" />
|
|
<text x="1078.13" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="253.3" y="437" width="0.4" height="15.0" fill="rgb(251,91,44)" rx="2" ry="2" />
|
|
<text x="256.25" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (184 samples, 0.94%)</title><rect x="1083.2" y="485" width="11.0" height="15.0" fill="rgb(245,59,23)" rx="2" ry="2" />
|
|
<text x="1086.17" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithLength (3 samples, 0.02%)</title><rect x="413.7" y="357" width="0.2" height="15.0" fill="rgb(209,184,15)" rx="2" ry="2" />
|
|
<text x="416.74" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (3 samples, 0.02%)</title><rect x="1148.3" y="565" width="0.2" height="15.0" fill="rgb(249,117,0)" rx="2" ry="2" />
|
|
<text x="1151.29" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_cardinality (4 samples, 0.02%)</title><rect x="809.4" y="277" width="0.2" height="15.0" fill="rgb(245,180,27)" rx="2" ry="2" />
|
|
<text x="812.37" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (3 samples, 0.02%)</title><rect x="428.6" y="405" width="0.1" height="15.0" fill="rgb(244,203,33)" rx="2" ry="2" />
|
|
<text x="431.56" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (5 samples, 0.03%)</title><rect x="778.5" y="325" width="0.3" height="15.0" fill="rgb(249,67,48)" rx="2" ry="2" />
|
|
<text x="781.52" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="146.0" y="373" width="0.2" height="15.0" fill="rgb(238,167,3)" rx="2" ry="2" />
|
|
<text x="149.00" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="218.4" y="373" width="0.1" height="15.0" fill="rgb(221,111,41)" rx="2" ry="2" />
|
|
<text x="221.38" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="223.4" y="197" width="0.1" height="15.0" fill="rgb(226,83,29)" rx="2" ry="2" />
|
|
<text x="226.42" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cmp_int (2 samples, 0.01%)</title><rect x="1073.7" y="245" width="0.2" height="15.0" fill="rgb(238,10,38)" rx="2" ry="2" />
|
|
<text x="1076.75" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (16 samples, 0.08%)</title><rect x="108.1" y="389" width="0.9" height="15.0" fill="rgb(229,24,20)" rx="2" ry="2" />
|
|
<text x="111.07" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (10 samples, 0.05%)</title><rect x="961.3" y="261" width="0.6" height="15.0" fill="rgb(226,124,35)" rx="2" ry="2" />
|
|
<text x="964.33" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="145.8" y="357" width="0.1" height="15.0" fill="rgb(249,39,9)" rx="2" ry="2" />
|
|
<text x="148.76" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (3 samples, 0.02%)</title><rect x="780.5" y="325" width="0.2" height="15.0" fill="rgb(207,213,0)" rx="2" ry="2" />
|
|
<text x="783.50" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (8 samples, 0.04%)</title><rect x="1184.2" y="405" width="0.5" height="15.0" fill="rgb(216,0,15)" rx="2" ry="2" />
|
|
<text x="1187.24" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_memcpy (19 samples, 0.10%)</title><rect x="849.0" y="277" width="1.1" height="15.0" fill="rgb(217,168,19)" rx="2" ry="2" />
|
|
<text x="851.98" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (5 samples, 0.03%)</title><rect x="478.5" y="405" width="0.3" height="15.0" fill="rgb(209,85,12)" rx="2" ry="2" />
|
|
<text x="481.49" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (2 samples, 0.01%)</title><rect x="1189.9" y="661" width="0.1" height="15.0" fill="rgb(220,223,40)" rx="2" ry="2" />
|
|
<text x="1192.88" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="1044.9" y="373" width="0.2" height="15.0" fill="rgb(222,93,4)" rx="2" ry="2" />
|
|
<text x="1047.88" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (4 samples, 0.02%)</title><rect x="255.4" y="453" width="0.3" height="15.0" fill="rgb(231,222,39)" rx="2" ry="2" />
|
|
<text x="258.41" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (46 samples, 0.23%)</title><rect x="375.4" y="309" width="2.7" height="15.0" fill="rgb(251,47,42)" rx="2" ry="2" />
|
|
<text x="378.39" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="254.7" y="293" width="0.1" height="15.0" fill="rgb(221,106,32)" rx="2" ry="2" />
|
|
<text x="257.69" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="155.5" y="405" width="0.2" height="15.0" fill="rgb(208,125,5)" rx="2" ry="2" />
|
|
<text x="158.54" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (78 samples, 0.40%)</title><rect x="352.8" y="453" width="4.7" height="15.0" fill="rgb(236,85,33)" rx="2" ry="2" />
|
|
<text x="355.82" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpStream (2 samples, 0.01%)</title><rect x="522.8" y="405" width="0.2" height="15.0" fill="rgb(231,13,0)" rx="2" ry="2" />
|
|
<text x="525.85" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (5 samples, 0.03%)</title><rect x="1147.9" y="437" width="0.3" height="15.0" fill="rgb(215,222,51)" rx="2" ry="2" />
|
|
<text x="1150.87" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (11 samples, 0.06%)</title><rect x="220.2" y="341" width="0.6" height="15.0" fill="rgb(250,83,11)" rx="2" ry="2" />
|
|
<text x="223.18" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="253.2" y="581" width="0.6" height="15.0" fill="rgb(212,103,35)" rx="2" ry="2" />
|
|
<text x="256.19" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (57 samples, 0.29%)</title><rect x="129.4" y="453" width="3.4" height="15.0" fill="rgb(240,181,19)" rx="2" ry="2" />
|
|
<text x="132.37" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_current_worker_thread_id (8 samples, 0.04%)</title><rect x="571.6" y="405" width="0.5" height="15.0" fill="rgb(252,32,51)" rx="2" ry="2" />
|
|
<text x="574.64" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (29 samples, 0.15%)</title><rect x="625.6" y="293" width="1.7" height="15.0" fill="rgb(208,12,22)" rx="2" ry="2" />
|
|
<text x="628.60" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_avalanche (3 samples, 0.02%)</title><rect x="355.3" y="245" width="0.2" height="15.0" fill="rgb(245,61,23)" rx="2" ry="2" />
|
|
<text x="358.34" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (11 samples, 0.06%)</title><rect x="253.2" y="597" width="0.7" height="15.0" fill="rgb(224,195,14)" rx="2" ry="2" />
|
|
<text x="256.19" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (24 samples, 0.12%)</title><rect x="222.2" y="261" width="1.4" height="15.0" fill="rgb(209,156,17)" rx="2" ry="2" />
|
|
<text x="225.16" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (9 samples, 0.05%)</title><rect x="542.5" y="469" width="0.5" height="15.0" fill="rgb(250,165,51)" rx="2" ry="2" />
|
|
<text x="545.47" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="227.7" y="325" width="0.2" height="15.0" fill="rgb(216,32,11)" rx="2" ry="2" />
|
|
<text x="230.68" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>isalnum (3 samples, 0.02%)</title><rect x="145.2" y="245" width="0.2" height="15.0" fill="rgb(232,182,43)" rx="2" ry="2" />
|
|
<text x="148.22" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (47 samples, 0.24%)</title><rect x="369.6" y="421" width="2.8" height="15.0" fill="rgb(226,170,50)" rx="2" ry="2" />
|
|
<text x="372.56" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_string_embed_free (2 samples, 0.01%)</title><rect x="223.9" y="293" width="0.1" height="15.0" fill="rgb(253,19,7)" rx="2" ry="2" />
|
|
<text x="226.90" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_17to128_128b (2 samples, 0.01%)</title><rect x="885.4" y="277" width="0.1" height="15.0" fill="rgb(253,26,33)" rx="2" ry="2" />
|
|
<text x="888.35" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (2 samples, 0.01%)</title><rect x="254.4" y="533" width="0.1" height="15.0" fill="rgb(226,19,26)" rx="2" ry="2" />
|
|
<text x="257.39" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (3 samples, 0.02%)</title><rect x="93.1" y="613" width="0.1" height="15.0" fill="rgb(239,125,8)" rx="2" ry="2" />
|
|
<text x="96.06" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (136 samples, 0.69%)</title><rect x="649.4" y="325" width="8.1" height="15.0" fill="rgb(242,187,47)" rx="2" ry="2" />
|
|
<text x="652.36" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInflate2::fn_iDecode (8 samples, 0.04%)</title><rect x="384.5" y="261" width="0.5" height="15.0" fill="rgb(209,114,24)" rx="2" ry="2" />
|
|
<text x="387.51" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="1167.4" y="357" width="0.5" height="15.0" fill="rgb(227,99,27)" rx="2" ry="2" />
|
|
<text x="1170.43" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (4 samples, 0.02%)</title><rect x="1179.9" y="501" width="0.2" height="15.0" fill="rgb(212,221,35)" rx="2" ry="2" />
|
|
<text x="1182.86" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="704.2" y="357" width="0.1" height="15.0" fill="rgb(220,228,32)" rx="2" ry="2" />
|
|
<text x="707.22" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="1180.5" y="597" width="0.5" height="15.0" fill="rgb(242,22,25)" rx="2" ry="2" />
|
|
<text x="1183.46" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="1044.9" y="325" width="0.2" height="15.0" fill="rgb(231,225,11)" rx="2" ry="2" />
|
|
<text x="1047.88" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_get0_current_packet@plt (2 samples, 0.01%)</title><rect x="206.4" y="437" width="0.1" height="15.0" fill="rgb(240,118,15)" rx="2" ry="2" />
|
|
<text x="209.38" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="431.7" y="373" width="0.2" height="15.0" fill="rgb(231,16,0)" rx="2" ry="2" />
|
|
<text x="434.74" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="1058.0" y="357" width="0.2" height="15.0" fill="rgb(252,62,6)" rx="2" ry="2" />
|
|
<text x="1061.02" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (2 samples, 0.01%)</title><rect x="256.6" y="565" width="0.1" height="15.0" fill="rgb(240,70,30)" rx="2" ry="2" />
|
|
<text x="259.61" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (16 samples, 0.08%)</title><rect x="256.0" y="597" width="1.0" height="15.0" fill="rgb(230,75,35)" rx="2" ry="2" />
|
|
<text x="259.01" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (3 samples, 0.02%)</title><rect x="192.9" y="405" width="0.2" height="15.0" fill="rgb(227,50,46)" rx="2" ry="2" />
|
|
<text x="195.87" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_len_9to16_128b (4 samples, 0.02%)</title><rect x="1005.8" y="245" width="0.2" height="15.0" fill="rgb(240,105,6)" rx="2" ry="2" />
|
|
<text x="1008.81" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="93.1" y="565" width="0.1" height="15.0" fill="rgb(241,30,19)" rx="2" ry="2" />
|
|
<text x="96.12" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_find_one_cell (7 samples, 0.04%)</title><rect x="710.6" y="325" width="0.5" height="15.0" fill="rgb(225,123,29)" rx="2" ry="2" />
|
|
<text x="713.64" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="145.5" y="357" width="0.3" height="15.0" fill="rgb(242,107,54)" rx="2" ry="2" />
|
|
<text x="148.52" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH3_mix16B (2 samples, 0.01%)</title><rect x="583.2" y="213" width="0.1" height="15.0" fill="rgb(236,82,22)" rx="2" ry="2" />
|
|
<text x="586.17" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="219.3" y="341" width="0.2" height="15.0" fill="rgb(252,166,53)" rx="2" ry="2" />
|
|
<text x="222.28" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.02%)</title><rect x="219.3" y="501" width="0.2" height="15.0" fill="rgb(222,118,13)" rx="2" ry="2" />
|
|
<text x="222.28" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (6 samples, 0.03%)</title><rect x="169.8" y="277" width="0.3" height="15.0" fill="rgb(243,67,10)" rx="2" ry="2" />
|
|
<text x="172.77" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>utable_add_integer (2 samples, 0.01%)</title><rect x="383.1" y="277" width="0.1" height="15.0" fill="rgb(207,187,13)" rx="2" ry="2" />
|
|
<text x="386.13" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>memcasemem (10 samples, 0.05%)</title><rect x="378.1" y="373" width="0.6" height="15.0" fill="rgb(215,75,7)" rx="2" ry="2" />
|
|
<text x="381.15" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="189.7" y="309" width="0.1" height="15.0" fill="rgb(212,57,32)" rx="2" ry="2" />
|
|
<text x="192.69" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>firewall_current_timestamp_ms_get (11 samples, 0.06%)</title><rect x="984.3" y="405" width="0.7" height="15.0" fill="rgb(215,208,53)" rx="2" ry="2" />
|
|
<text x="987.32" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (3 samples, 0.02%)</title><rect x="55.2" y="597" width="0.2" height="15.0" fill="rgb(227,120,46)" rx="2" ry="2" />
|
|
<text x="58.19" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.4.1] (9 samples, 0.05%)</title><rect x="106.1" y="261" width="0.5" height="15.0" fill="rgb(253,182,3)" rx="2" ry="2" />
|
|
<text x="109.09" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_timeout (14 samples, 0.07%)</title><rect x="967.5" y="501" width="0.8" height="15.0" fill="rgb(206,61,48)" rx="2" ry="2" />
|
|
<text x="970.46" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2,491 samples, 12.67%)</title><rect x="104.5" y="645" width="149.5" height="15.0" fill="rgb(210,162,34)" rx="2" ry="2" />
|
|
<text x="107.53" y="655.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>heavy_keeper_add (11 samples, 0.06%)</title><rect x="881.5" y="341" width="0.7" height="15.0" fill="rgb(247,139,7)" rx="2" ry="2" />
|
|
<text x="884.51" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (67 samples, 0.34%)</title><rect x="1096.6" y="549" width="4.0" height="15.0" fill="rgb(223,188,27)" rx="2" ry="2" />
|
|
<text x="1099.61" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (194 samples, 0.99%)</title><rect x="232.1" y="485" width="11.7" height="15.0" fill="rgb(222,214,40)" rx="2" ry="2" />
|
|
<text x="235.12" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="384.3" y="277" width="0.2" height="15.0" fill="rgb(213,16,34)" rx="2" ry="2" />
|
|
<text x="387.27" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="144.9" y="293" width="0.1" height="15.0" fill="rgb(219,192,10)" rx="2" ry="2" />
|
|
<text x="147.86" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_avx2 (2 samples, 0.01%)</title><rect x="960.6" y="261" width="0.1" height="15.0" fill="rgb(240,146,35)" rx="2" ry="2" />
|
|
<text x="963.61" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (3 samples, 0.02%)</title><rect x="1148.3" y="629" width="0.2" height="15.0" fill="rgb(209,85,39)" rx="2" ry="2" />
|
|
<text x="1151.29" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="239.0" y="405" width="0.1" height="15.0" fill="rgb(240,1,1)" rx="2" ry="2" />
|
|
<text x="241.97" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_client_hello (3 samples, 0.02%)</title><rect x="1188.4" y="421" width="0.2" height="15.0" fill="rgb(240,6,32)" rx="2" ry="2" />
|
|
<text x="1191.44" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (3 samples, 0.02%)</title><rect x="1144.1" y="613" width="0.2" height="15.0" fill="rgb(245,181,12)" rx="2" ry="2" />
|
|
<text x="1147.15" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_find_entry (6 samples, 0.03%)</title><rect x="503.2" y="277" width="0.3" height="15.0" fill="rgb(227,20,31)" rx="2" ry="2" />
|
|
<text x="506.16" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_initHttpCommonInfor (2 samples, 0.01%)</title><rect x="421.5" y="389" width="0.2" height="15.0" fill="rgb(254,208,10)" rx="2" ry="2" />
|
|
<text x="424.54" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithChunkedData (6 samples, 0.03%)</title><rect x="920.6" y="389" width="0.4" height="15.0" fill="rgb(221,23,37)" rx="2" ry="2" />
|
|
<text x="923.64" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (7 samples, 0.04%)</title><rect x="1188.7" y="485" width="0.5" height="15.0" fill="rgb(221,108,47)" rx="2" ry="2" />
|
|
<text x="1191.74" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (12 samples, 0.06%)</title><rect x="1189.2" y="533" width="0.7" height="15.0" fill="rgb(212,98,52)" rx="2" ry="2" />
|
|
<text x="1192.16" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libm-2.28.so] (10 samples, 0.05%)</title><rect x="994.6" y="261" width="0.6" height="15.0" fill="rgb(224,51,12)" rx="2" ry="2" />
|
|
<text x="997.64" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_cube_add (15 samples, 0.08%)</title><rect x="666.0" y="389" width="0.9" height="15.0" fill="rgb(240,35,44)" rx="2" ry="2" />
|
|
<text x="669.05" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>metric_counter_incrby (308 samples, 1.57%)</title><rect x="853.1" y="357" width="18.4" height="15.0" fill="rgb(224,69,42)" rx="2" ry="2" />
|
|
<text x="856.06" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_avx2_unaligned_erms (3 samples, 0.02%)</title><rect x="1081.6" y="469" width="0.2" height="15.0" fill="rgb(214,156,2)" rx="2" ry="2" />
|
|
<text x="1084.61" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithCnntcloseData (29 samples, 0.15%)</title><rect x="385.9" y="389" width="1.8" height="15.0" fill="rgb(222,125,37)" rx="2" ry="2" />
|
|
<text x="388.95" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[stellar_on_sapp.so] (286 samples, 1.45%)</title><rect x="949.9" y="469" width="17.1" height="15.0" fill="rgb(245,215,26)" rx="2" ry="2" />
|
|
<text x="952.87" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sorted_set_get_cell_id (2 samples, 0.01%)</title><rect x="1097.6" y="277" width="0.2" height="15.0" fill="rgb(232,161,36)" rx="2" ry="2" />
|
|
<text x="1100.63" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (2 samples, 0.01%)</title><rect x="1096.9" y="357" width="0.1" height="15.0" fill="rgb(247,192,1)" rx="2" ry="2" />
|
|
<text x="1099.91" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="157.9" y="357" width="0.3" height="15.0" fill="rgb(233,209,40)" rx="2" ry="2" />
|
|
<text x="160.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tag_hash_key_cmp (17 samples, 0.09%)</title><rect x="718.8" y="261" width="1.0" height="15.0" fill="rgb(231,145,11)" rx="2" ry="2" />
|
|
<text x="721.80" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_clear_free (2 samples, 0.01%)</title><rect x="166.5" y="181" width="0.1" height="15.0" fill="rgb(221,40,26)" rx="2" ry="2" />
|
|
<text x="169.47" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (74 samples, 0.38%)</title><rect x="248.7" y="485" width="4.4" height="15.0" fill="rgb(216,148,1)" rx="2" ry="2" />
|
|
<text x="251.69" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>XXH_INLINE_XXH3_128bits_update (11 samples, 0.06%)</title><rect x="1006.9" y="309" width="0.7" height="15.0" fill="rgb(250,204,23)" rx="2" ry="2" />
|
|
<text x="1009.95" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_counter_incrby (212 samples, 1.08%)</title><rect x="1067.1" y="373" width="12.7" height="15.0" fill="rgb(236,93,53)" rx="2" ry="2" />
|
|
<text x="1070.08" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (12 samples, 0.06%)</title><rect x="1189.2" y="565" width="0.7" height="15.0" fill="rgb(213,210,47)" rx="2" ry="2" />
|
|
<text x="1192.16" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (9 samples, 0.05%)</title><rect x="1147.6" y="517" width="0.6" height="15.0" fill="rgb(223,165,23)" rx="2" ry="2" />
|
|
<text x="1150.63" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>adjust_heap_node (36 samples, 0.18%)</title><rect x="500.7" y="277" width="2.2" height="15.0" fill="rgb(234,157,15)" rx="2" ry="2" />
|
|
<text x="503.70" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="106.0" y="277" width="0.1" height="15.0" fill="rgb(246,49,10)" rx="2" ry="2" />
|
|
<text x="108.97" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="1142.5" y="149" width="0.2" height="15.0" fill="rgb(250,72,43)" rx="2" ry="2" />
|
|
<text x="1145.47" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.02%)</title><rect x="428.6" y="389" width="0.1" height="15.0" fill="rgb(245,21,39)" rx="2" ry="2" />
|
|
<text x="431.56" y="399.5" ></text>
|
|
</g>
|
|
</g>
|
|
</svg>
|