13917 lines
636 KiB
XML
13917 lines
636 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="838" onload="init(evt)" viewBox="0 0 1200 838" 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="838.0" fill="url(#background)" />
|
|
<text id="title" x="600.00" y="24" >Flame Graph</text>
|
|
<text id="details" x="10.00" y="821" > </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="821" > </text>
|
|
<g id="frames">
|
|
<g >
|
|
<title>__memcmp_sse4_1 (11 samples, 0.05%)</title><rect x="155.3" y="709" width="0.6" height="15.0" fill="rgb(208,163,43)" rx="2" ry="2" />
|
|
<text x="158.29" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (20 samples, 0.10%)</title><rect x="789.4" y="501" width="1.1" height="15.0" fill="rgb(234,132,51)" rx="2" ry="2" />
|
|
<text x="792.35" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (8 samples, 0.04%)</title><rect x="1019.8" y="421" width="0.5" height="15.0" fill="rgb(214,7,34)" rx="2" ry="2" />
|
|
<text x="1022.82" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (48 samples, 0.24%)</title><rect x="385.3" y="405" width="2.9" height="15.0" fill="rgb(243,179,41)" rx="2" ry="2" />
|
|
<text x="388.34" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (6 samples, 0.03%)</title><rect x="300.8" y="533" width="0.3" height="15.0" fill="rgb(208,30,12)" rx="2" ry="2" />
|
|
<text x="303.75" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (9 samples, 0.04%)</title><rect x="48.6" y="661" width="0.6" height="15.0" fill="rgb(224,123,35)" rx="2" ry="2" />
|
|
<text x="51.64" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="1011.1" y="613" width="0.2" height="15.0" fill="rgb(232,89,5)" rx="2" ry="2" />
|
|
<text x="1014.09" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (13 samples, 0.06%)</title><rect x="973.3" y="501" width="0.7" height="15.0" fill="rgb(225,105,43)" rx="2" ry="2" />
|
|
<text x="976.28" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="583.4" y="341" width="0.1" height="15.0" fill="rgb(217,121,33)" rx="2" ry="2" />
|
|
<text x="586.37" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="1019.4" y="437" width="0.1" height="15.0" fill="rgb(240,95,48)" rx="2" ry="2" />
|
|
<text x="1022.41" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (4 samples, 0.02%)</title><rect x="968.0" y="581" width="0.3" height="15.0" fill="rgb(254,59,45)" rx="2" ry="2" />
|
|
<text x="971.03" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (4 samples, 0.02%)</title><rect x="383.8" y="613" width="0.2" height="15.0" fill="rgb(254,77,29)" rx="2" ry="2" />
|
|
<text x="386.81" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="535.9" y="485" width="0.2" height="15.0" fill="rgb(239,121,31)" rx="2" ry="2" />
|
|
<text x="538.94" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchrnul (4 samples, 0.02%)</title><rect x="630.9" y="405" width="0.2" height="15.0" fill="rgb(244,190,32)" rx="2" ry="2" />
|
|
<text x="633.91" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__hrtimer_init (2 samples, 0.01%)</title><rect x="925.6" y="597" width="0.1" height="15.0" fill="rgb(220,115,47)" rx="2" ry="2" />
|
|
<text x="928.61" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="269.9" y="677" width="0.2" height="15.0" fill="rgb(220,174,36)" rx="2" ry="2" />
|
|
<text x="272.90" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (8 samples, 0.04%)</title><rect x="976.1" y="629" width="0.5" height="15.0" fill="rgb(246,151,22)" rx="2" ry="2" />
|
|
<text x="979.11" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (7 samples, 0.03%)</title><rect x="825.7" y="469" width="0.5" height="15.0" fill="rgb(211,217,41)" rx="2" ry="2" />
|
|
<text x="828.75" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (52 samples, 0.26%)</title><rect x="562.8" y="453" width="3.1" height="15.0" fill="rgb(219,215,49)" rx="2" ry="2" />
|
|
<text x="565.84" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (17 samples, 0.08%)</title><rect x="489.6" y="613" width="1.0" height="15.0" fill="rgb(229,120,49)" rx="2" ry="2" />
|
|
<text x="492.57" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="1020.3" y="277" width="0.5" height="15.0" fill="rgb(225,98,51)" rx="2" ry="2" />
|
|
<text x="1023.29" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (9 samples, 0.04%)</title><rect x="977.0" y="597" width="0.5" height="15.0" fill="rgb(212,15,10)" rx="2" ry="2" />
|
|
<text x="979.99" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="298.5" y="341" width="1.0" height="15.0" fill="rgb(218,158,8)" rx="2" ry="2" />
|
|
<text x="301.51" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (31 samples, 0.15%)</title><rect x="324.2" y="421" width="1.8" height="15.0" fill="rgb(217,3,23)" rx="2" ry="2" />
|
|
<text x="327.17" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (850 samples, 4.25%)</title><rect x="102.3" y="709" width="50.2" height="15.0" fill="rgb(232,180,47)" rx="2" ry="2" />
|
|
<text x="105.32" y="719.5" >__GI_..</text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (8 samples, 0.04%)</title><rect x="326.3" y="341" width="0.5" height="15.0" fill="rgb(205,215,42)" rx="2" ry="2" />
|
|
<text x="329.29" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (5 samples, 0.02%)</title><rect x="819.4" y="421" width="0.3" height="15.0" fill="rgb(211,192,9)" rx="2" ry="2" />
|
|
<text x="822.38" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (3 samples, 0.01%)</title><rect x="607.9" y="453" width="0.2" height="15.0" fill="rgb(215,136,8)" rx="2" ry="2" />
|
|
<text x="610.90" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="607.7" y="421" width="0.1" height="15.0" fill="rgb(214,157,22)" rx="2" ry="2" />
|
|
<text x="610.67" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_mark_v4 (325 samples, 1.62%)</title><rect x="692.3" y="533" width="19.2" height="15.0" fill="rgb(211,148,53)" rx="2" ry="2" />
|
|
<text x="695.32" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="304.3" y="453" width="0.1" height="15.0" fill="rgb(243,79,19)" rx="2" ry="2" />
|
|
<text x="307.29" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (5 samples, 0.02%)</title><rect x="832.5" y="421" width="0.3" height="15.0" fill="rgb(244,3,6)" rx="2" ry="2" />
|
|
<text x="835.47" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_rwlock_rdlock (3 samples, 0.01%)</title><rect x="964.8" y="565" width="0.2" height="15.0" fill="rgb(211,112,34)" rx="2" ry="2" />
|
|
<text x="967.84" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (66 samples, 0.33%)</title><rect x="551.6" y="405" width="3.9" height="15.0" fill="rgb(223,44,11)" rx="2" ry="2" />
|
|
<text x="554.57" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="300.5" y="485" width="0.3" height="15.0" fill="rgb(246,3,1)" rx="2" ry="2" />
|
|
<text x="303.46" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (5 samples, 0.02%)</title><rect x="826.8" y="437" width="0.2" height="15.0" fill="rgb(210,174,37)" rx="2" ry="2" />
|
|
<text x="829.75" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (20 samples, 0.10%)</title><rect x="976.6" y="629" width="1.2" height="15.0" fill="rgb(250,0,14)" rx="2" ry="2" />
|
|
<text x="979.58" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (85 samples, 0.42%)</title><rect x="970.5" y="693" width="5.0" height="15.0" fill="rgb(234,202,15)" rx="2" ry="2" />
|
|
<text x="973.50" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (2 samples, 0.01%)</title><rect x="978.9" y="565" width="0.1" height="15.0" fill="rgb(226,38,10)" rx="2" ry="2" />
|
|
<text x="981.88" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (147 samples, 0.73%)</title><rect x="384.0" y="581" width="8.7" height="15.0" fill="rgb(239,79,29)" rx="2" ry="2" />
|
|
<text x="387.04" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="1003.6" y="645" width="0.1" height="15.0" fill="rgb(210,133,47)" rx="2" ry="2" />
|
|
<text x="1006.60" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (3 samples, 0.01%)</title><rect x="597.7" y="469" width="0.2" height="15.0" fill="rgb(209,181,3)" rx="2" ry="2" />
|
|
<text x="600.70" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_dns_entry (33 samples, 0.16%)</title><rect x="793.5" y="389" width="2.0" height="15.0" fill="rgb(233,21,27)" rx="2" ry="2" />
|
|
<text x="796.54" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (6 samples, 0.03%)</title><rect x="300.8" y="485" width="0.3" height="15.0" fill="rgb(245,70,12)" rx="2" ry="2" />
|
|
<text x="303.75" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_itoa_word (4 samples, 0.02%)</title><rect x="1018.9" y="693" width="0.2" height="15.0" fill="rgb(225,171,36)" rx="2" ry="2" />
|
|
<text x="1021.88" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="967.8" y="485" width="0.1" height="15.0" fill="rgb(211,180,19)" rx="2" ry="2" />
|
|
<text x="970.79" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="918.8" y="549" width="0.1" height="15.0" fill="rgb(251,220,7)" rx="2" ry="2" />
|
|
<text x="921.77" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_make_hash (3 samples, 0.01%)</title><rect x="801.1" y="549" width="0.2" height="15.0" fill="rgb(243,160,45)" rx="2" ry="2" />
|
|
<text x="804.09" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (290 samples, 1.45%)</title><rect x="465.9" y="629" width="17.1" height="15.0" fill="rgb(223,200,6)" rx="2" ry="2" />
|
|
<text x="468.86" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msgq_enq (2 samples, 0.01%)</title><rect x="358.1" y="421" width="0.2" height="15.0" fill="rgb(248,144,13)" rx="2" ry="2" />
|
|
<text x="361.15" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (109 samples, 0.54%)</title><rect x="920.1" y="661" width="6.5" height="15.0" fill="rgb(209,9,45)" rx="2" ry="2" />
|
|
<text x="923.13" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (4 samples, 0.02%)</title><rect x="323.9" y="405" width="0.3" height="15.0" fill="rgb(244,143,40)" rx="2" ry="2" />
|
|
<text x="326.94" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (21 samples, 0.10%)</title><rect x="462.6" y="613" width="1.3" height="15.0" fill="rgb(211,173,6)" rx="2" ry="2" />
|
|
<text x="465.62" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (43 samples, 0.21%)</title><rect x="970.5" y="613" width="2.5" height="15.0" fill="rgb(210,43,30)" rx="2" ry="2" />
|
|
<text x="973.50" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="1020.3" y="309" width="0.5" height="15.0" fill="rgb(243,185,17)" rx="2" ry="2" />
|
|
<text x="1023.29" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="316.5" y="373" width="0.2" height="15.0" fill="rgb(220,193,19)" rx="2" ry="2" />
|
|
<text x="319.50" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (35 samples, 0.17%)</title><rect x="296.4" y="469" width="2.1" height="15.0" fill="rgb(208,226,44)" rx="2" ry="2" />
|
|
<text x="299.45" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_search (500 samples, 2.50%)</title><rect x="199.8" y="725" width="29.5" height="15.0" fill="rgb(214,227,40)" rx="2" ry="2" />
|
|
<text x="202.77" y="735.5" >ru..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (22 samples, 0.11%)</title><rect x="817.1" y="389" width="1.3" height="15.0" fill="rgb(240,157,6)" rx="2" ry="2" />
|
|
<text x="820.14" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (85 samples, 0.42%)</title><rect x="970.5" y="709" width="5.0" height="15.0" fill="rgb(220,97,30)" rx="2" ry="2" />
|
|
<text x="973.50" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (26 samples, 0.13%)</title><rect x="533.2" y="517" width="1.6" height="15.0" fill="rgb(223,179,1)" rx="2" ry="2" />
|
|
<text x="536.23" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (125 samples, 0.62%)</title><rect x="1019.3" y="709" width="7.4" height="15.0" fill="rgb(248,184,13)" rx="2" ry="2" />
|
|
<text x="1022.35" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="329.4" y="165" width="0.1" height="15.0" fill="rgb(225,71,47)" rx="2" ry="2" />
|
|
<text x="332.42" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_nanosleep (78 samples, 0.39%)</title><rect x="921.1" y="629" width="4.6" height="15.0" fill="rgb(209,41,52)" rx="2" ry="2" />
|
|
<text x="924.13" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_l_avx (3 samples, 0.01%)</title><rect x="831.6" y="469" width="0.2" height="15.0" fill="rgb(228,156,14)" rx="2" ry="2" />
|
|
<text x="834.65" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_tcpall_entry (15 samples, 0.07%)</title><rect x="753.7" y="501" width="0.8" height="15.0" fill="rgb(205,201,47)" rx="2" ry="2" />
|
|
<text x="756.66" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="984.6" y="645" width="0.2" height="15.0" fill="rgb(223,120,16)" rx="2" ry="2" />
|
|
<text x="987.60" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (21 samples, 0.10%)</title><rect x="971.0" y="485" width="1.3" height="15.0" fill="rgb(242,220,1)" rx="2" ry="2" />
|
|
<text x="974.04" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bool_matcher_match (14 samples, 0.07%)</title><rect x="273.5" y="709" width="0.8" height="15.0" fill="rgb(223,88,15)" rx="2" ry="2" />
|
|
<text x="276.50" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddNumberToObject (3 samples, 0.01%)</title><rect x="983.8" y="629" width="0.2" height="15.0" fill="rgb(206,150,6)" rx="2" ry="2" />
|
|
<text x="986.78" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="582.5" y="357" width="0.2" height="15.0" fill="rgb(243,144,10)" rx="2" ry="2" />
|
|
<text x="585.54" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (13 samples, 0.06%)</title><rect x="973.3" y="597" width="0.7" height="15.0" fill="rgb(227,102,10)" rx="2" ry="2" />
|
|
<text x="976.28" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="314.0" y="309" width="0.1" height="15.0" fill="rgb(205,37,4)" rx="2" ry="2" />
|
|
<text x="316.97" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_polling_inject_context (39 samples, 0.19%)</title><rect x="780.6" y="549" width="2.3" height="15.0" fill="rgb(217,178,29)" rx="2" ry="2" />
|
|
<text x="783.62" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="394.9" y="661" width="0.2" height="15.0" fill="rgb(219,99,47)" rx="2" ry="2" />
|
|
<text x="397.90" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (31 samples, 0.15%)</title><rect x="324.2" y="405" width="1.8" height="15.0" fill="rgb(237,185,15)" rx="2" ry="2" />
|
|
<text x="327.17" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (17 samples, 0.08%)</title><rect x="298.5" y="421" width="1.0" height="15.0" fill="rgb(241,27,5)" rx="2" ry="2" />
|
|
<text x="301.51" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (10 samples, 0.05%)</title><rect x="967.2" y="581" width="0.6" height="15.0" fill="rgb(243,42,52)" rx="2" ry="2" />
|
|
<text x="970.20" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (25 samples, 0.12%)</title><rect x="671.0" y="469" width="1.4" height="15.0" fill="rgb(214,189,27)" rx="2" ry="2" />
|
|
<text x="673.96" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (125 samples, 0.62%)</title><rect x="1019.3" y="725" width="7.4" height="15.0" fill="rgb(224,176,54)" rx="2" ry="2" />
|
|
<text x="1022.35" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (16 samples, 0.08%)</title><rect x="412.2" y="741" width="1.0" height="15.0" fill="rgb(244,9,53)" rx="2" ry="2" />
|
|
<text x="415.24" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (7 samples, 0.03%)</title><rect x="981.2" y="645" width="0.5" height="15.0" fill="rgb(224,138,32)" rx="2" ry="2" />
|
|
<text x="984.24" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (33 samples, 0.16%)</title><rect x="311.8" y="325" width="2.0" height="15.0" fill="rgb(205,210,30)" rx="2" ry="2" />
|
|
<text x="314.84" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (15 samples, 0.07%)</title><rect x="917.4" y="597" width="0.9" height="15.0" fill="rgb(235,180,29)" rx="2" ry="2" />
|
|
<text x="920.42" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (5 samples, 0.02%)</title><rect x="989.7" y="565" width="0.3" height="15.0" fill="rgb(247,158,32)" rx="2" ry="2" />
|
|
<text x="992.74" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (42 samples, 0.21%)</title><rect x="816.3" y="405" width="2.5" height="15.0" fill="rgb(244,72,32)" rx="2" ry="2" />
|
|
<text x="819.31" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (27 samples, 0.13%)</title><rect x="580.9" y="357" width="1.6" height="15.0" fill="rgb(249,57,10)" rx="2" ry="2" />
|
|
<text x="583.95" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (9 samples, 0.04%)</title><rect x="584.2" y="357" width="0.5" height="15.0" fill="rgb(209,144,46)" rx="2" ry="2" />
|
|
<text x="587.19" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (5 samples, 0.02%)</title><rect x="980.9" y="629" width="0.3" height="15.0" fill="rgb(230,15,12)" rx="2" ry="2" />
|
|
<text x="983.95" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_nat_linkinfo (45 samples, 0.22%)</title><rect x="376.5" y="437" width="2.6" height="15.0" fill="rgb(214,140,17)" rx="2" ry="2" />
|
|
<text x="379.49" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (13 samples, 0.06%)</title><rect x="967.1" y="613" width="0.8" height="15.0" fill="rgb(208,141,27)" rx="2" ry="2" />
|
|
<text x="970.14" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="590.9" y="453" width="0.1" height="15.0" fill="rgb(251,46,48)" rx="2" ry="2" />
|
|
<text x="593.92" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="990.4" y="597" width="0.1" height="15.0" fill="rgb(223,227,7)" rx="2" ry="2" />
|
|
<text x="993.38" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_primitive_free (2 samples, 0.01%)</title><rect x="582.7" y="277" width="0.1" height="15.0" fill="rgb(209,191,16)" rx="2" ry="2" />
|
|
<text x="585.66" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (13 samples, 0.06%)</title><rect x="629.0" y="469" width="0.8" height="15.0" fill="rgb(243,82,21)" rx="2" ry="2" />
|
|
<text x="632.02" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (3 samples, 0.01%)</title><rect x="332.3" y="325" width="0.1" height="15.0" fill="rgb(231,146,31)" rx="2" ry="2" />
|
|
<text x="335.25" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="338.7" y="437" width="0.1" height="15.0" fill="rgb(211,140,1)" rx="2" ry="2" />
|
|
<text x="341.68" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.01%)</title><rect x="753.5" y="453" width="0.2" height="15.0" fill="rgb(238,112,16)" rx="2" ry="2" />
|
|
<text x="756.49" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_tcp_pkt_opts (3 samples, 0.01%)</title><rect x="526.3" y="533" width="0.1" height="15.0" fill="rgb(214,196,50)" rx="2" ry="2" />
|
|
<text x="529.26" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="1020.3" y="389" width="0.5" height="15.0" fill="rgb(248,51,10)" rx="2" ry="2" />
|
|
<text x="1023.29" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TCP_ENTRY (6 samples, 0.03%)</title><rect x="591.2" y="485" width="0.4" height="15.0" fill="rgb(236,75,2)" rx="2" ry="2" />
|
|
<text x="594.21" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new00 (6 samples, 0.03%)</title><rect x="1001.7" y="581" width="0.3" height="15.0" fill="rgb(236,137,3)" rx="2" ry="2" />
|
|
<text x="1004.65" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (47 samples, 0.23%)</title><rect x="301.8" y="565" width="2.7" height="15.0" fill="rgb(249,62,18)" rx="2" ry="2" />
|
|
<text x="304.76" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_no_init (3 samples, 0.01%)</title><rect x="822.4" y="469" width="0.2" height="15.0" fill="rgb(223,204,42)" rx="2" ry="2" />
|
|
<text x="825.39" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__isoc99_sscanf (2 samples, 0.01%)</title><rect x="566.4" y="389" width="0.1" height="15.0" fill="rgb(210,95,41)" rx="2" ry="2" />
|
|
<text x="569.38" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="299.6" y="421" width="0.1" height="15.0" fill="rgb(233,224,33)" rx="2" ry="2" />
|
|
<text x="302.57" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (73 samples, 0.36%)</title><rect x="319.6" y="421" width="4.3" height="15.0" fill="rgb(206,202,29)" rx="2" ry="2" />
|
|
<text x="322.63" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="316.5" y="277" width="0.2" height="15.0" fill="rgb(232,117,52)" rx="2" ry="2" />
|
|
<text x="319.50" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (6 samples, 0.03%)</title><rect x="970.2" y="693" width="0.3" height="15.0" fill="rgb(222,182,50)" rx="2" ry="2" />
|
|
<text x="973.15" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_entry (4 samples, 0.02%)</title><rect x="333.9" y="389" width="0.2" height="15.0" fill="rgb(249,83,17)" rx="2" ry="2" />
|
|
<text x="336.90" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1020.8" y="325" width="0.1" height="15.0" fill="rgb(229,92,6)" rx="2" ry="2" />
|
|
<text x="1023.76" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (3 samples, 0.01%)</title><rect x="1007.3" y="581" width="0.1" height="15.0" fill="rgb(211,3,22)" rx="2" ry="2" />
|
|
<text x="1010.25" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.03%)</title><rect x="618.2" y="437" width="0.4" height="15.0" fill="rgb(243,154,17)" rx="2" ry="2" />
|
|
<text x="621.17" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (45 samples, 0.22%)</title><rect x="358.4" y="437" width="2.7" height="15.0" fill="rgb(208,5,13)" rx="2" ry="2" />
|
|
<text x="361.44" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_realloc (5 samples, 0.02%)</title><rect x="331.7" y="341" width="0.3" height="15.0" fill="rgb(241,116,16)" rx="2" ry="2" />
|
|
<text x="334.72" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wp_page_copy (21 samples, 0.10%)</title><rect x="707.7" y="341" width="1.3" height="15.0" fill="rgb(227,132,39)" rx="2" ry="2" />
|
|
<text x="710.71" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (13 samples, 0.06%)</title><rect x="394.1" y="709" width="0.8" height="15.0" fill="rgb(208,128,17)" rx="2" ry="2" />
|
|
<text x="397.13" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (20 samples, 0.10%)</title><rect x="298.5" y="453" width="1.2" height="15.0" fill="rgb(228,76,11)" rx="2" ry="2" />
|
|
<text x="301.51" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sip_identify_from_to (8 samples, 0.04%)</title><rect x="831.4" y="485" width="0.4" height="15.0" fill="rgb(211,0,29)" rx="2" ry="2" />
|
|
<text x="834.35" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (4 samples, 0.02%)</title><rect x="832.9" y="437" width="0.3" height="15.0" fill="rgb(220,59,19)" rx="2" ry="2" />
|
|
<text x="835.94" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (15 samples, 0.07%)</title><rect x="327.2" y="197" width="0.9" height="15.0" fill="rgb(231,90,11)" rx="2" ry="2" />
|
|
<text x="330.18" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="304.4" y="533" width="0.1" height="15.0" fill="rgb(240,171,16)" rx="2" ry="2" />
|
|
<text x="307.41" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_search (595 samples, 2.97%)</title><rect x="53.8" y="741" width="35.1" height="15.0" fill="rgb(232,157,3)" rx="2" ry="2" />
|
|
<text x="56.77" y="751.5" >ru..</text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_htable_search (11 samples, 0.05%)</title><rect x="607.1" y="453" width="0.7" height="15.0" fill="rgb(235,61,4)" rx="2" ry="2" />
|
|
<text x="610.14" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="918.9" y="597" width="0.2" height="15.0" fill="rgb(228,229,4)" rx="2" ry="2" />
|
|
<text x="921.95" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (2 samples, 0.01%)</title><rect x="412.4" y="613" width="0.1" height="15.0" fill="rgb(235,11,47)" rx="2" ry="2" />
|
|
<text x="415.36" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_realloc (2 samples, 0.01%)</title><rect x="332.1" y="325" width="0.2" height="15.0" fill="rgb(234,124,45)" rx="2" ry="2" />
|
|
<text x="335.13" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify_tcp (300 samples, 1.50%)</title><rect x="674.4" y="549" width="17.7" height="15.0" fill="rgb(233,43,38)" rx="2" ry="2" />
|
|
<text x="677.38" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_umts_user_info (3 samples, 0.01%)</title><rect x="366.5" y="501" width="0.2" height="15.0" fill="rgb(224,4,5)" rx="2" ry="2" />
|
|
<text x="369.52" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[librulescan.so.2.2] (320 samples, 1.60%)</title><rect x="277.5" y="757" width="18.8" height="15.0" fill="rgb(206,67,37)" rx="2" ry="2" />
|
|
<text x="280.45" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_itoa_word (4 samples, 0.02%)</title><rect x="1024.1" y="405" width="0.3" height="15.0" fill="rgb(207,130,0)" rx="2" ry="2" />
|
|
<text x="1027.13" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="977.6" y="501" width="0.2" height="15.0" fill="rgb(234,192,30)" rx="2" ry="2" />
|
|
<text x="980.64" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (28 samples, 0.14%)</title><rect x="793.8" y="357" width="1.6" height="15.0" fill="rgb(216,159,29)" rx="2" ry="2" />
|
|
<text x="796.78" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="371.0" y="373" width="0.2" height="15.0" fill="rgb(221,162,23)" rx="2" ry="2" />
|
|
<text x="374.01" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_realloc (5 samples, 0.02%)</title><rect x="986.9" y="533" width="0.3" height="15.0" fill="rgb(212,77,50)" rx="2" ry="2" />
|
|
<text x="989.90" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="963.8" y="693" width="0.2" height="15.0" fill="rgb(234,115,2)" rx="2" ry="2" />
|
|
<text x="966.84" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (6 samples, 0.03%)</title><rect x="970.2" y="613" width="0.3" height="15.0" fill="rgb(225,125,31)" rx="2" ry="2" />
|
|
<text x="973.15" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="394.9" y="677" width="0.2" height="15.0" fill="rgb(210,81,15)" rx="2" ry="2" />
|
|
<text x="397.90" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_http_plug.so] (2 samples, 0.01%)</title><rect x="967.9" y="501" width="0.1" height="15.0" fill="rgb(249,62,27)" rx="2" ry="2" />
|
|
<text x="970.91" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (29 samples, 0.14%)</title><rect x="586.7" y="373" width="1.7" height="15.0" fill="rgb(239,169,5)" rx="2" ry="2" />
|
|
<text x="589.67" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (24 samples, 0.12%)</title><rect x="324.4" y="325" width="1.4" height="15.0" fill="rgb(249,28,52)" rx="2" ry="2" />
|
|
<text x="327.41" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="46.9" y="693" width="0.1" height="15.0" fill="rgb(216,150,18)" rx="2" ry="2" />
|
|
<text x="49.87" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_full_scan_string (2 samples, 0.01%)</title><rect x="367.6" y="485" width="0.1" height="15.0" fill="rgb(230,168,43)" rx="2" ry="2" />
|
|
<text x="370.59" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_dns_plug.so] (27 samples, 0.13%)</title><rect x="983.0" y="661" width="1.6" height="15.0" fill="rgb(249,36,9)" rx="2" ry="2" />
|
|
<text x="986.01" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (9 samples, 0.04%)</title><rect x="394.4" y="629" width="0.5" height="15.0" fill="rgb(213,191,42)" rx="2" ry="2" />
|
|
<text x="397.37" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_realloc (2 samples, 0.01%)</title><rect x="341.5" y="357" width="0.1" height="15.0" fill="rgb(243,185,42)" rx="2" ry="2" />
|
|
<text x="344.45" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="990.3" y="613" width="0.1" height="15.0" fill="rgb(242,140,22)" rx="2" ry="2" />
|
|
<text x="993.27" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__munmap (2 samples, 0.01%)</title><rect x="675.9" y="469" width="0.1" height="15.0" fill="rgb(252,216,35)" rx="2" ry="2" />
|
|
<text x="678.92" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (10 samples, 0.05%)</title><rect x="412.5" y="581" width="0.6" height="15.0" fill="rgb(250,55,21)" rx="2" ry="2" />
|
|
<text x="415.48" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (46 samples, 0.23%)</title><rect x="945.1" y="677" width="2.8" height="15.0" fill="rgb(252,126,38)" rx="2" ry="2" />
|
|
<text x="948.14" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>process_ipv4_pkt (66 samples, 0.33%)</title><rect x="857.9" y="581" width="3.9" height="15.0" fill="rgb(220,176,6)" rx="2" ry="2" />
|
|
<text x="860.90" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (2 samples, 0.01%)</title><rect x="554.9" y="357" width="0.2" height="15.0" fill="rgb(243,226,24)" rx="2" ry="2" />
|
|
<text x="557.93" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_jump_layer (3 samples, 0.01%)</title><rect x="620.9" y="469" width="0.2" height="15.0" fill="rgb(242,160,53)" rx="2" ry="2" />
|
|
<text x="623.88" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_ip_entry (18 samples, 0.09%)</title><rect x="860.1" y="549" width="1.1" height="15.0" fill="rgb(251,224,30)" rx="2" ry="2" />
|
|
<text x="863.14" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (142 samples, 0.71%)</title><rect x="967.1" y="741" width="8.4" height="15.0" fill="rgb(240,143,7)" rx="2" ry="2" />
|
|
<text x="970.14" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (13 samples, 0.06%)</title><rect x="312.4" y="293" width="0.8" height="15.0" fill="rgb(240,2,45)" rx="2" ry="2" />
|
|
<text x="315.43" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (13 samples, 0.06%)</title><rect x="987.8" y="565" width="0.8" height="15.0" fill="rgb(244,91,7)" rx="2" ry="2" />
|
|
<text x="990.85" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (126 samples, 0.63%)</title><rect x="788.5" y="517" width="7.4" height="15.0" fill="rgb(228,118,19)" rx="2" ry="2" />
|
|
<text x="791.47" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_create (3 samples, 0.01%)</title><rect x="780.3" y="453" width="0.2" height="15.0" fill="rgb(235,203,20)" rx="2" ry="2" />
|
|
<text x="783.33" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (72 samples, 0.36%)</title><rect x="574.7" y="389" width="4.2" height="15.0" fill="rgb(219,225,27)" rx="2" ry="2" />
|
|
<text x="577.69" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (21 samples, 0.10%)</title><rect x="581.3" y="309" width="1.2" height="15.0" fill="rgb(244,211,52)" rx="2" ry="2" />
|
|
<text x="584.30" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="977.6" y="469" width="0.2" height="15.0" fill="rgb(227,221,40)" rx="2" ry="2" />
|
|
<text x="980.64" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (2 samples, 0.01%)</title><rect x="390.4" y="517" width="0.1" height="15.0" fill="rgb(206,169,53)" rx="2" ry="2" />
|
|
<text x="393.36" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (9 samples, 0.04%)</title><rect x="394.4" y="549" width="0.5" height="15.0" fill="rgb(225,97,40)" rx="2" ry="2" />
|
|
<text x="397.37" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="973.0" y="501" width="0.3" height="15.0" fill="rgb(205,6,51)" rx="2" ry="2" />
|
|
<text x="976.04" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (48 samples, 0.24%)</title><rect x="1026.8" y="709" width="2.8" height="15.0" fill="rgb(245,94,34)" rx="2" ry="2" />
|
|
<text x="1029.78" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (4 samples, 0.02%)</title><rect x="488.7" y="629" width="0.3" height="15.0" fill="rgb(210,197,53)" rx="2" ry="2" />
|
|
<text x="491.75" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="1019.3" y="581" width="0.3" height="15.0" fill="rgb(206,85,8)" rx="2" ry="2" />
|
|
<text x="1022.35" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (10 samples, 0.05%)</title><rect x="978.0" y="437" width="0.6" height="15.0" fill="rgb(205,224,15)" rx="2" ry="2" />
|
|
<text x="981.00" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (32 samples, 0.16%)</title><rect x="707.1" y="405" width="1.9" height="15.0" fill="rgb(229,104,47)" rx="2" ry="2" />
|
|
<text x="710.06" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (36 samples, 0.18%)</title><rect x="668.4" y="501" width="2.1" height="15.0" fill="rgb(228,200,52)" rx="2" ry="2" />
|
|
<text x="671.43" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="566.5" y="341" width="0.1" height="15.0" fill="rgb(214,210,8)" rx="2" ry="2" />
|
|
<text x="569.49" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="857.0" y="501" width="0.2" height="15.0" fill="rgb(230,219,15)" rx="2" ry="2" />
|
|
<text x="859.95" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithApplicationData (19 samples, 0.09%)</title><rect x="326.0" y="469" width="1.1" height="15.0" fill="rgb(231,132,54)" rx="2" ry="2" />
|
|
<text x="329.00" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (3 samples, 0.01%)</title><rect x="316.5" y="421" width="0.2" height="15.0" fill="rgb(229,189,33)" rx="2" ry="2" />
|
|
<text x="319.50" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (9 samples, 0.04%)</title><rect x="598.3" y="437" width="0.5" height="15.0" fill="rgb(238,45,35)" rx="2" ry="2" />
|
|
<text x="601.29" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pbe_uevent_malloc (3 samples, 0.01%)</title><rect x="314.4" y="341" width="0.2" height="15.0" fill="rgb(247,15,48)" rx="2" ry="2" />
|
|
<text x="317.44" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (12 samples, 0.06%)</title><rect x="967.2" y="597" width="0.7" height="15.0" fill="rgb(232,201,1)" rx="2" ry="2" />
|
|
<text x="970.20" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcpall_entry (3 samples, 0.01%)</title><rect x="974.0" y="581" width="0.2" height="15.0" fill="rgb(229,172,49)" rx="2" ry="2" />
|
|
<text x="977.04" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (22 samples, 0.11%)</title><rect x="47.9" y="709" width="1.3" height="15.0" fill="rgb(207,80,42)" rx="2" ry="2" />
|
|
<text x="50.87" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (43 samples, 0.21%)</title><rect x="970.5" y="597" width="2.5" height="15.0" fill="rgb(225,178,29)" rx="2" ry="2" />
|
|
<text x="973.50" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_ssl_plug.so] (13 samples, 0.06%)</title><rect x="330.8" y="357" width="0.7" height="15.0" fill="rgb(239,57,51)" rx="2" ry="2" />
|
|
<text x="333.78" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__ctype_tolower_loc (2 samples, 0.01%)</title><rect x="1027.4" y="533" width="0.1" height="15.0" fill="rgb(244,148,41)" rx="2" ry="2" />
|
|
<text x="1030.43" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (4 samples, 0.02%)</title><rect x="591.3" y="421" width="0.3" height="15.0" fill="rgb(230,145,31)" rx="2" ry="2" />
|
|
<text x="594.33" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="337.4" y="469" width="0.2" height="15.0" fill="rgb(227,50,1)" rx="2" ry="2" />
|
|
<text x="340.44" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[capture_packet_plug.so] (73 samples, 0.36%)</title><rect x="729.5" y="469" width="4.3" height="15.0" fill="rgb(217,163,7)" rx="2" ry="2" />
|
|
<text x="732.48" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (11 samples, 0.05%)</title><rect x="384.7" y="501" width="0.6" height="15.0" fill="rgb(208,22,1)" rx="2" ry="2" />
|
|
<text x="387.69" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="586.0" y="389" width="0.2" height="15.0" fill="rgb(239,178,36)" rx="2" ry="2" />
|
|
<text x="589.02" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (22 samples, 0.11%)</title><rect x="794.1" y="341" width="1.3" height="15.0" fill="rgb(254,157,33)" rx="2" ry="2" />
|
|
<text x="797.07" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (29 samples, 0.14%)</title><rect x="296.4" y="421" width="1.8" height="15.0" fill="rgb(238,63,35)" rx="2" ry="2" />
|
|
<text x="299.45" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (15 samples, 0.07%)</title><rect x="367.8" y="501" width="0.9" height="15.0" fill="rgb(232,142,11)" rx="2" ry="2" />
|
|
<text x="370.82" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (5 samples, 0.02%)</title><rect x="589.1" y="277" width="0.3" height="15.0" fill="rgb(252,192,36)" rx="2" ry="2" />
|
|
<text x="592.09" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (15 samples, 0.07%)</title><rect x="561.8" y="405" width="0.9" height="15.0" fill="rgb(249,95,21)" rx="2" ry="2" />
|
|
<text x="564.83" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="392.8" y="677" width="0.3" height="15.0" fill="rgb(227,104,22)" rx="2" ry="2" />
|
|
<text x="395.77" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="1020.3" y="341" width="0.5" height="15.0" fill="rgb(206,72,8)" rx="2" ry="2" />
|
|
<text x="1023.29" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___printf_fp_l (4 samples, 0.02%)</title><rect x="983.3" y="517" width="0.2" height="15.0" fill="rgb(226,158,14)" rx="2" ry="2" />
|
|
<text x="986.31" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithStartLine (3 samples, 0.01%)</title><rect x="1014.2" y="693" width="0.1" height="15.0" fill="rgb(240,196,54)" rx="2" ry="2" />
|
|
<text x="1017.16" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (6 samples, 0.03%)</title><rect x="785.4" y="485" width="0.4" height="15.0" fill="rgb(218,191,2)" rx="2" ry="2" />
|
|
<text x="788.40" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="585.3" y="245" width="0.1" height="15.0" fill="rgb(238,182,7)" rx="2" ry="2" />
|
|
<text x="588.31" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (3 samples, 0.01%)</title><rect x="535.1" y="501" width="0.1" height="15.0" fill="rgb(244,5,23)" rx="2" ry="2" />
|
|
<text x="538.05" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (12 samples, 0.06%)</title><rect x="367.9" y="293" width="0.7" height="15.0" fill="rgb(212,79,38)" rx="2" ry="2" />
|
|
<text x="370.94" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="276.4" y="629" width="0.2" height="15.0" fill="rgb(244,199,11)" rx="2" ry="2" />
|
|
<text x="279.45" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="981.8" y="565" width="0.1" height="15.0" fill="rgb(246,124,33)" rx="2" ry="2" />
|
|
<text x="984.77" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (13 samples, 0.06%)</title><rect x="973.3" y="581" width="0.7" height="15.0" fill="rgb(218,57,30)" rx="2" ry="2" />
|
|
<text x="976.28" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (19 samples, 0.09%)</title><rect x="565.9" y="421" width="1.1" height="15.0" fill="rgb(226,42,23)" rx="2" ry="2" />
|
|
<text x="568.90" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (2 samples, 0.01%)</title><rect x="329.8" y="197" width="0.1" height="15.0" fill="rgb(210,107,49)" rx="2" ry="2" />
|
|
<text x="332.78" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (15 samples, 0.07%)</title><rect x="367.8" y="453" width="0.9" height="15.0" fill="rgb(217,186,43)" rx="2" ry="2" />
|
|
<text x="370.82" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (7 samples, 0.03%)</title><rect x="981.2" y="597" width="0.5" height="15.0" fill="rgb(214,205,48)" rx="2" ry="2" />
|
|
<text x="984.24" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (23 samples, 0.11%)</title><rect x="392.8" y="725" width="1.3" height="15.0" fill="rgb(216,3,2)" rx="2" ry="2" />
|
|
<text x="395.77" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="388.2" y="549" width="0.2" height="15.0" fill="rgb(219,17,2)" rx="2" ry="2" />
|
|
<text x="391.23" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (15 samples, 0.07%)</title><rect x="748.3" y="453" width="0.9" height="15.0" fill="rgb(207,194,36)" rx="2" ry="2" />
|
|
<text x="751.30" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_stream_scan_string_detail (28 samples, 0.14%)</title><rect x="274.4" y="757" width="1.7" height="15.0" fill="rgb(244,112,43)" rx="2" ry="2" />
|
|
<text x="277.44" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new00 (2 samples, 0.01%)</title><rect x="488.0" y="437" width="0.1" height="15.0" fill="rgb(221,55,37)" rx="2" ry="2" />
|
|
<text x="490.98" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="981.8" y="517" width="0.1" height="15.0" fill="rgb(234,6,45)" rx="2" ry="2" />
|
|
<text x="984.77" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (6 samples, 0.03%)</title><rect x="630.0" y="453" width="0.4" height="15.0" fill="rgb(226,121,17)" rx="2" ry="2" />
|
|
<text x="633.02" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new (2 samples, 0.01%)</title><rect x="318.9" y="341" width="0.1" height="15.0" fill="rgb(251,13,0)" rx="2" ry="2" />
|
|
<text x="321.92" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="669.9" y="485" width="0.2" height="15.0" fill="rgb(245,109,21)" rx="2" ry="2" />
|
|
<text x="672.90" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (63 samples, 0.31%)</title><rect x="970.5" y="661" width="3.7" height="15.0" fill="rgb(229,73,32)" rx="2" ry="2" />
|
|
<text x="973.50" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="533.3" y="501" width="0.1" height="15.0" fill="rgb(253,145,29)" rx="2" ry="2" />
|
|
<text x="536.28" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="392.3" y="501" width="0.4" height="15.0" fill="rgb(234,167,21)" rx="2" ry="2" />
|
|
<text x="395.30" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="316.5" y="405" width="0.2" height="15.0" fill="rgb(217,65,27)" rx="2" ry="2" />
|
|
<text x="319.50" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="103.1" y="693" width="0.2" height="15.0" fill="rgb(216,178,50)" rx="2" ry="2" />
|
|
<text x="106.08" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (109 samples, 0.54%)</title><rect x="1005.0" y="693" width="6.4" height="15.0" fill="rgb(217,24,10)" rx="2" ry="2" />
|
|
<text x="1008.01" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_udp_entry (67 samples, 0.33%)</title><rect x="484.8" y="533" width="3.9" height="15.0" fill="rgb(205,67,16)" rx="2" ry="2" />
|
|
<text x="487.80" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="563.1" y="373" width="0.1" height="15.0" fill="rgb(216,9,51)" rx="2" ry="2" />
|
|
<text x="566.07" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="978.9" y="453" width="0.1" height="15.0" fill="rgb(249,63,47)" rx="2" ry="2" />
|
|
<text x="981.88" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (6 samples, 0.03%)</title><rect x="785.4" y="501" width="0.4" height="15.0" fill="rgb(220,7,53)" rx="2" ry="2" />
|
|
<text x="788.40" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (25 samples, 0.12%)</title><rect x="332.4" y="421" width="1.5" height="15.0" fill="rgb(215,114,7)" rx="2" ry="2" />
|
|
<text x="335.43" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>on_each_cpu_mask (19 samples, 0.09%)</title><rect x="707.7" y="261" width="1.1" height="15.0" fill="rgb(249,209,15)" rx="2" ry="2" />
|
|
<text x="710.71" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="376.2" y="373" width="0.1" height="15.0" fill="rgb(228,143,35)" rx="2" ry="2" />
|
|
<text x="379.20" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (16 samples, 0.08%)</title><rect x="327.1" y="229" width="1.0" height="15.0" fill="rgb(245,138,6)" rx="2" ry="2" />
|
|
<text x="330.12" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="301.5" y="485" width="0.1" height="15.0" fill="rgb(222,130,14)" rx="2" ry="2" />
|
|
<text x="304.46" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libhos-client-cpp.so] (2 samples, 0.01%)</title><rect x="1015.1" y="693" width="0.1" height="15.0" fill="rgb(221,203,20)" rx="2" ry="2" />
|
|
<text x="1018.10" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_CreateNumber (6 samples, 0.03%)</title><rect x="1004.4" y="613" width="0.4" height="15.0" fill="rgb(223,102,8)" rx="2" ry="2" />
|
|
<text x="1007.42" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="334.1" y="421" width="0.2" height="15.0" fill="rgb(211,79,40)" rx="2" ry="2" />
|
|
<text x="337.14" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="323.5" y="277" width="0.1" height="15.0" fill="rgb(224,36,46)" rx="2" ry="2" />
|
|
<text x="326.46" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>syscall_trace_enter (4 samples, 0.02%)</title><rect x="926.3" y="645" width="0.3" height="15.0" fill="rgb(217,39,50)" rx="2" ry="2" />
|
|
<text x="929.32" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (14 samples, 0.07%)</title><rect x="989.2" y="613" width="0.8" height="15.0" fill="rgb(226,15,9)" rx="2" ry="2" />
|
|
<text x="992.20" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="1006.0" y="645" width="0.1" height="15.0" fill="rgb(244,114,40)" rx="2" ry="2" />
|
|
<text x="1009.02" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (91 samples, 0.45%)</title><rect x="970.2" y="725" width="5.3" height="15.0" fill="rgb(229,163,52)" rx="2" ry="2" />
|
|
<text x="973.15" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="967.8" y="469" width="0.1" height="15.0" fill="rgb(236,71,35)" rx="2" ry="2" />
|
|
<text x="970.79" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (9 samples, 0.04%)</title><rect x="394.4" y="597" width="0.5" height="15.0" fill="rgb(247,38,0)" rx="2" ry="2" />
|
|
<text x="397.37" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (6 samples, 0.03%)</title><rect x="1004.4" y="597" width="0.4" height="15.0" fill="rgb(238,60,42)" rx="2" ry="2" />
|
|
<text x="1007.42" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="937.4" y="613" width="0.2" height="15.0" fill="rgb(229,26,27)" rx="2" ry="2" />
|
|
<text x="940.41" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="1003.9" y="565" width="0.1" height="15.0" fill="rgb(253,44,18)" rx="2" ry="2" />
|
|
<text x="1006.89" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (6 samples, 0.03%)</title><rect x="357.4" y="421" width="0.3" height="15.0" fill="rgb(249,105,2)" rx="2" ry="2" />
|
|
<text x="360.38" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (2 samples, 0.01%)</title><rect x="970.5" y="565" width="0.1" height="15.0" fill="rgb(254,188,1)" rx="2" ry="2" />
|
|
<text x="973.50" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (86 samples, 0.43%)</title><rect x="573.9" y="405" width="5.1" height="15.0" fill="rgb(221,94,17)" rx="2" ry="2" />
|
|
<text x="576.93" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_fqdn_plugin_get_EX_data (7 samples, 0.03%)</title><rect x="1005.5" y="629" width="0.5" height="15.0" fill="rgb(242,21,3)" rx="2" ry="2" />
|
|
<text x="1008.54" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (85 samples, 0.42%)</title><rect x="970.5" y="677" width="5.0" height="15.0" fill="rgb(246,180,16)" rx="2" ry="2" />
|
|
<text x="973.50" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="973.0" y="565" width="0.3" height="15.0" fill="rgb(216,182,50)" rx="2" ry="2" />
|
|
<text x="976.04" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (19 samples, 0.09%)</title><rect x="967.1" y="661" width="1.2" height="15.0" fill="rgb(209,38,42)" rx="2" ry="2" />
|
|
<text x="970.14" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="304.5" y="533" width="0.2" height="15.0" fill="rgb(205,32,11)" rx="2" ry="2" />
|
|
<text x="307.53" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (13 samples, 0.06%)</title><rect x="358.6" y="421" width="0.8" height="15.0" fill="rgb(234,221,36)" rx="2" ry="2" />
|
|
<text x="361.62" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="299.6" y="405" width="0.1" height="15.0" fill="rgb(230,206,24)" rx="2" ry="2" />
|
|
<text x="302.57" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (109 samples, 0.54%)</title><rect x="835.5" y="485" width="6.4" height="15.0" fill="rgb(246,182,22)" rx="2" ry="2" />
|
|
<text x="838.48" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (2 samples, 0.01%)</title><rect x="1029.5" y="677" width="0.1" height="15.0" fill="rgb(212,14,49)" rx="2" ry="2" />
|
|
<text x="1032.49" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcasecmp_l_avx (2 samples, 0.01%)</title><rect x="598.8" y="437" width="0.1" height="15.0" fill="rgb(230,147,7)" rx="2" ry="2" />
|
|
<text x="601.82" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="390.9" y="501" width="0.2" height="15.0" fill="rgb(249,94,48)" rx="2" ry="2" />
|
|
<text x="393.95" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_huge_pmd_wp_page (10 samples, 0.05%)</title><rect x="707.1" y="357" width="0.6" height="15.0" fill="rgb(234,189,48)" rx="2" ry="2" />
|
|
<text x="710.12" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="484.1" y="565" width="0.2" height="15.0" fill="rgb(228,179,50)" rx="2" ry="2" />
|
|
<text x="487.15" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="566.8" y="389" width="0.1" height="15.0" fill="rgb(207,191,50)" rx="2" ry="2" />
|
|
<text x="569.79" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (123 samples, 0.61%)</title><rect x="307.8" y="421" width="7.2" height="15.0" fill="rgb(221,211,15)" rx="2" ry="2" />
|
|
<text x="310.77" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (4 samples, 0.02%)</title><rect x="304.8" y="501" width="0.2" height="15.0" fill="rgb(249,97,4)" rx="2" ry="2" />
|
|
<text x="307.76" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (37 samples, 0.18%)</title><rect x="986.5" y="629" width="2.2" height="15.0" fill="rgb(205,144,17)" rx="2" ry="2" />
|
|
<text x="989.55" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (684 samples, 3.42%)</title><rect x="189.0" y="741" width="40.3" height="15.0" fill="rgb(230,176,34)" rx="2" ry="2" />
|
|
<text x="191.97" y="751.5" >[li..</text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="1004.2" y="565" width="0.2" height="15.0" fill="rgb(211,28,29)" rx="2" ry="2" />
|
|
<text x="1007.19" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="1020.3" y="293" width="0.5" height="15.0" fill="rgb(230,202,51)" rx="2" ry="2" />
|
|
<text x="1023.29" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (22 samples, 0.11%)</title><rect x="974.2" y="661" width="1.3" height="15.0" fill="rgb(211,86,24)" rx="2" ry="2" />
|
|
<text x="977.22" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8,087 samples, 40.43%)</title><rect x="421.6" y="709" width="477.1" height="15.0" fill="rgb(208,120,33)" rx="2" ry="2" />
|
|
<text x="424.62" y="719.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>rd_malloc (4 samples, 0.02%)</title><rect x="1001.8" y="565" width="0.2" height="15.0" fill="rgb(240,180,31)" rx="2" ry="2" />
|
|
<text x="1004.77" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (6 samples, 0.03%)</title><rect x="975.8" y="597" width="0.3" height="15.0" fill="rgb(216,146,25)" rx="2" ry="2" />
|
|
<text x="978.75" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="413.1" y="613" width="0.1" height="15.0" fill="rgb(222,42,23)" rx="2" ry="2" />
|
|
<text x="416.07" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new00 (11 samples, 0.05%)</title><rect x="357.4" y="437" width="0.6" height="15.0" fill="rgb(218,110,34)" rx="2" ry="2" />
|
|
<text x="360.38" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="832.5" y="405" width="0.2" height="15.0" fill="rgb(229,150,34)" rx="2" ry="2" />
|
|
<text x="835.53" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (39 samples, 0.19%)</title><rect x="385.8" y="389" width="2.3" height="15.0" fill="rgb(238,106,41)" rx="2" ry="2" />
|
|
<text x="388.81" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="298.4" y="389" width="0.1" height="15.0" fill="rgb(223,92,54)" rx="2" ry="2" />
|
|
<text x="301.39" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (68 samples, 0.34%)</title><rect x="530.7" y="533" width="4.1" height="15.0" fill="rgb(251,137,50)" rx="2" ry="2" />
|
|
<text x="533.75" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="371.0" y="357" width="0.2" height="15.0" fill="rgb(214,197,40)" rx="2" ry="2" />
|
|
<text x="374.01" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="782.8" y="517" width="0.1" height="15.0" fill="rgb(225,152,48)" rx="2" ry="2" />
|
|
<text x="785.80" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (16 samples, 0.08%)</title><rect x="412.2" y="725" width="1.0" height="15.0" fill="rgb(229,69,17)" rx="2" ry="2" />
|
|
<text x="415.24" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count (8 samples, 0.04%)</title><rect x="167.4" y="709" width="0.5" height="15.0" fill="rgb(224,87,18)" rx="2" ry="2" />
|
|
<text x="170.44" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (49 samples, 0.24%)</title><rect x="975.8" y="661" width="2.8" height="15.0" fill="rgb(249,7,1)" rx="2" ry="2" />
|
|
<text x="978.75" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="333.9" y="437" width="0.2" height="15.0" fill="rgb(238,193,21)" rx="2" ry="2" />
|
|
<text x="336.90" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (23 samples, 0.11%)</title><rect x="324.5" y="309" width="1.3" height="15.0" fill="rgb(213,85,41)" rx="2" ry="2" />
|
|
<text x="327.47" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (90 samples, 0.45%)</title><rect x="790.6" y="501" width="5.3" height="15.0" fill="rgb(218,133,40)" rx="2" ry="2" />
|
|
<text x="793.59" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (7 samples, 0.03%)</title><rect x="985.7" y="645" width="0.4" height="15.0" fill="rgb(252,94,10)" rx="2" ry="2" />
|
|
<text x="988.72" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (2 samples, 0.01%)</title><rect x="583.1" y="245" width="0.1" height="15.0" fill="rgb(248,122,12)" rx="2" ry="2" />
|
|
<text x="586.07" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (5 samples, 0.02%)</title><rect x="313.8" y="325" width="0.3" height="15.0" fill="rgb(244,65,33)" rx="2" ry="2" />
|
|
<text x="316.79" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (10 samples, 0.05%)</title><rect x="272.4" y="709" width="0.6" height="15.0" fill="rgb(217,223,13)" rx="2" ry="2" />
|
|
<text x="275.44" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_capture_packet_entry (241 samples, 1.20%)</title><rect x="735.1" y="485" width="14.2" height="15.0" fill="rgb(240,82,49)" rx="2" ry="2" />
|
|
<text x="738.08" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (12 samples, 0.06%)</title><rect x="531.0" y="437" width="0.8" height="15.0" fill="rgb(209,4,18)" rx="2" ry="2" />
|
|
<text x="534.04" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (3 samples, 0.01%)</title><rect x="779.3" y="533" width="0.1" height="15.0" fill="rgb(229,110,9)" rx="2" ry="2" />
|
|
<text x="782.27" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithGzipData (9 samples, 0.04%)</title><rect x="563.3" y="373" width="0.5" height="15.0" fill="rgb(207,86,25)" rx="2" ry="2" />
|
|
<text x="566.25" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (8 samples, 0.04%)</title><rect x="391.1" y="517" width="0.5" height="15.0" fill="rgb(215,158,49)" rx="2" ry="2" />
|
|
<text x="394.12" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (5 samples, 0.02%)</title><rect x="919.1" y="581" width="0.3" height="15.0" fill="rgb(218,11,19)" rx="2" ry="2" />
|
|
<text x="922.07" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (21 samples, 0.10%)</title><rect x="965.2" y="533" width="1.2" height="15.0" fill="rgb(235,7,14)" rx="2" ry="2" />
|
|
<text x="968.20" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (111 samples, 0.55%)</title><rect x="361.3" y="581" width="6.5" height="15.0" fill="rgb(208,86,53)" rx="2" ry="2" />
|
|
<text x="364.27" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (73 samples, 0.36%)</title><rect x="319.6" y="437" width="4.3" height="15.0" fill="rgb(219,123,21)" rx="2" ry="2" />
|
|
<text x="322.63" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="787.0" y="533" width="0.2" height="15.0" fill="rgb(235,195,19)" rx="2" ry="2" />
|
|
<text x="789.99" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseRegion (3 samples, 0.01%)</title><rect x="566.0" y="405" width="0.1" height="15.0" fill="rgb(243,200,29)" rx="2" ry="2" />
|
|
<text x="568.96" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="1005.3" y="645" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
|
|
<text x="1008.31" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (13 samples, 0.06%)</title><rect x="989.3" y="597" width="0.7" height="15.0" fill="rgb(211,122,29)" rx="2" ry="2" />
|
|
<text x="992.26" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (3 samples, 0.01%)</title><rect x="981.1" y="549" width="0.1" height="15.0" fill="rgb(205,94,32)" rx="2" ry="2" />
|
|
<text x="984.06" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcpall_entry (23 samples, 0.11%)</title><rect x="916.9" y="613" width="1.4" height="15.0" fill="rgb(234,78,2)" rx="2" ry="2" />
|
|
<text x="919.94" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="395.0" y="597" width="0.1" height="15.0" fill="rgb(236,155,37)" rx="2" ry="2" />
|
|
<text x="397.96" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509_NAME_get_text_by_NID (2 samples, 0.01%)</title><rect x="583.8" y="389" width="0.1" height="15.0" fill="rgb(225,38,8)" rx="2" ry="2" />
|
|
<text x="586.78" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchrnul (3 samples, 0.01%)</title><rect x="335.1" y="421" width="0.2" height="15.0" fill="rgb(211,176,7)" rx="2" ry="2" />
|
|
<text x="338.08" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_info_get (4 samples, 0.02%)</title><rect x="545.4" y="437" width="0.2" height="15.0" fill="rgb(229,35,14)" rx="2" ry="2" />
|
|
<text x="548.38" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="980.9" y="549" width="0.2" height="15.0" fill="rgb(208,178,34)" rx="2" ry="2" />
|
|
<text x="983.95" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="330.0" y="341" width="0.2" height="15.0" fill="rgb(211,156,28)" rx="2" ry="2" />
|
|
<text x="332.95" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="992.7" y="549" width="0.2" height="15.0" fill="rgb(215,216,4)" rx="2" ry="2" />
|
|
<text x="995.74" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="910.4" y="645" width="0.2" height="15.0" fill="rgb(241,120,26)" rx="2" ry="2" />
|
|
<text x="913.40" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (5 samples, 0.02%)</title><rect x="637.6" y="405" width="0.3" height="15.0" fill="rgb(231,192,3)" rx="2" ry="2" />
|
|
<text x="640.58" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (3 samples, 0.01%)</title><rect x="330.2" y="437" width="0.2" height="15.0" fill="rgb(253,178,0)" rx="2" ry="2" />
|
|
<text x="333.19" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="909.7" y="661" width="0.2" height="15.0" fill="rgb(226,167,0)" rx="2" ry="2" />
|
|
<text x="912.69" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="390.4" y="485" width="0.1" height="15.0" fill="rgb(254,103,5)" rx="2" ry="2" />
|
|
<text x="393.36" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="488.2" y="405" width="0.2" height="15.0" fill="rgb(210,41,37)" rx="2" ry="2" />
|
|
<text x="491.22" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (45 samples, 0.22%)</title><rect x="899.1" y="693" width="2.7" height="15.0" fill="rgb(247,184,15)" rx="2" ry="2" />
|
|
<text x="902.13" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="1014.2" y="597" width="0.1" height="15.0" fill="rgb(229,101,4)" rx="2" ry="2" />
|
|
<text x="1017.22" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (3 samples, 0.01%)</title><rect x="565.6" y="357" width="0.2" height="15.0" fill="rgb(205,191,24)" rx="2" ry="2" />
|
|
<text x="568.61" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (29 samples, 0.14%)</title><rect x="119.7" y="645" width="1.7" height="15.0" fill="rgb(246,75,0)" rx="2" ry="2" />
|
|
<text x="122.66" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (62 samples, 0.31%)</title><rect x="148.8" y="597" width="3.7" height="15.0" fill="rgb(239,191,2)" rx="2" ry="2" />
|
|
<text x="151.80" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (7 samples, 0.03%)</title><rect x="391.7" y="517" width="0.4" height="15.0" fill="rgb(208,219,50)" rx="2" ry="2" />
|
|
<text x="394.65" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (55 samples, 0.27%)</title><rect x="978.9" y="709" width="3.2" height="15.0" fill="rgb(231,108,24)" rx="2" ry="2" />
|
|
<text x="981.88" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="376.2" y="357" width="0.1" height="15.0" fill="rgb(231,129,40)" rx="2" ry="2" />
|
|
<text x="379.20" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (7 samples, 0.03%)</title><rect x="1019.8" y="373" width="0.4" height="15.0" fill="rgb(205,79,28)" rx="2" ry="2" />
|
|
<text x="1022.82" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_nat_linkinfo (23 samples, 0.11%)</title><rect x="1002.1" y="613" width="1.4" height="15.0" fill="rgb(221,56,41)" rx="2" ry="2" />
|
|
<text x="1005.12" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (6 samples, 0.03%)</title><rect x="970.2" y="661" width="0.3" height="15.0" fill="rgb(207,94,7)" rx="2" ry="2" />
|
|
<text x="973.15" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="1013.6" y="709" width="0.1" height="15.0" fill="rgb(252,59,49)" rx="2" ry="2" />
|
|
<text x="1016.63" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (71 samples, 0.35%)</title><rect x="384.0" y="565" width="4.2" height="15.0" fill="rgb(240,6,14)" rx="2" ry="2" />
|
|
<text x="387.04" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (35 samples, 0.17%)</title><rect x="729.6" y="453" width="2.1" height="15.0" fill="rgb(215,58,33)" rx="2" ry="2" />
|
|
<text x="732.60" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (38 samples, 0.19%)</title><rect x="1024.5" y="581" width="2.2" height="15.0" fill="rgb(214,24,46)" rx="2" ry="2" />
|
|
<text x="1027.48" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="980.9" y="533" width="0.2" height="15.0" fill="rgb(224,186,39)" rx="2" ry="2" />
|
|
<text x="983.95" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (3 samples, 0.01%)</title><rect x="983.6" y="645" width="0.2" height="15.0" fill="rgb(226,56,4)" rx="2" ry="2" />
|
|
<text x="986.60" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="388.2" y="533" width="0.2" height="15.0" fill="rgb(214,159,30)" rx="2" ry="2" />
|
|
<text x="391.23" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (8 samples, 0.04%)</title><rect x="1019.8" y="437" width="0.5" height="15.0" fill="rgb(254,123,49)" rx="2" ry="2" />
|
|
<text x="1022.82" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (100 samples, 0.50%)</title><rect x="361.9" y="517" width="5.9" height="15.0" fill="rgb(239,39,3)" rx="2" ry="2" />
|
|
<text x="364.92" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpStream (2 samples, 0.01%)</title><rect x="967.9" y="613" width="0.1" height="15.0" fill="rgb(208,103,44)" rx="2" ry="2" />
|
|
<text x="970.91" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (8 samples, 0.04%)</title><rect x="464.0" y="613" width="0.5" height="15.0" fill="rgb(250,87,38)" rx="2" ry="2" />
|
|
<text x="467.03" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (215 samples, 1.07%)</title><rect x="544.0" y="469" width="12.6" height="15.0" fill="rgb(246,184,8)" rx="2" ry="2" />
|
|
<text x="546.96" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="413.1" y="485" width="0.1" height="15.0" fill="rgb(224,47,28)" rx="2" ry="2" />
|
|
<text x="416.07" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (12 samples, 0.06%)</title><rect x="412.5" y="661" width="0.7" height="15.0" fill="rgb(230,113,10)" rx="2" ry="2" />
|
|
<text x="415.48" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (4 samples, 0.02%)</title><rect x="985.4" y="581" width="0.2" height="15.0" fill="rgb(254,31,28)" rx="2" ry="2" />
|
|
<text x="988.37" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (8 samples, 0.04%)</title><rect x="561.2" y="405" width="0.5" height="15.0" fill="rgb(226,129,17)" rx="2" ry="2" />
|
|
<text x="564.24" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_tcpall_entry (118 samples, 0.59%)</title><rect x="631.9" y="485" width="7.0" height="15.0" fill="rgb(236,111,19)" rx="2" ry="2" />
|
|
<text x="634.91" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509V3_get_d2i (4 samples, 0.02%)</title><rect x="583.5" y="389" width="0.3" height="15.0" fill="rgb(217,41,53)" rx="2" ry="2" />
|
|
<text x="586.54" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>____strtod_l_internal (3 samples, 0.01%)</title><rect x="987.7" y="517" width="0.1" height="15.0" fill="rgb(208,180,48)" rx="2" ry="2" />
|
|
<text x="990.67" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_ex_c2i (3 samples, 0.01%)</title><rect x="584.5" y="245" width="0.2" height="15.0" fill="rgb(228,104,46)" rx="2" ry="2" />
|
|
<text x="587.55" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (111 samples, 0.55%)</title><rect x="361.3" y="549" width="6.5" height="15.0" fill="rgb(235,61,49)" rx="2" ry="2" />
|
|
<text x="364.27" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (29 samples, 0.14%)</title><rect x="413.2" y="725" width="1.8" height="15.0" fill="rgb(245,97,1)" rx="2" ry="2" />
|
|
<text x="416.24" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::dec_reference_count (11 samples, 0.05%)</title><rect x="213.7" y="693" width="0.7" height="15.0" fill="rgb(216,203,8)" rx="2" ry="2" />
|
|
<text x="216.75" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (4 samples, 0.02%)</title><rect x="1028.3" y="533" width="0.2" height="15.0" fill="rgb(221,100,2)" rx="2" ry="2" />
|
|
<text x="1031.25" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (101 samples, 0.50%)</title><rect x="741.5" y="437" width="5.9" height="15.0" fill="rgb(207,34,10)" rx="2" ry="2" />
|
|
<text x="744.45" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="583.0" y="261" width="0.2" height="15.0" fill="rgb(246,19,8)" rx="2" ry="2" />
|
|
<text x="586.01" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (5 samples, 0.02%)</title><rect x="582.2" y="277" width="0.3" height="15.0" fill="rgb(245,114,45)" rx="2" ry="2" />
|
|
<text x="585.19" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (6 samples, 0.03%)</title><rect x="970.2" y="597" width="0.3" height="15.0" fill="rgb(229,131,10)" rx="2" ry="2" />
|
|
<text x="973.15" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (6 samples, 0.03%)</title><rect x="362.3" y="485" width="0.4" height="15.0" fill="rgb(240,39,46)" rx="2" ry="2" />
|
|
<text x="365.34" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (130 samples, 0.65%)</title><rect x="316.5" y="517" width="7.7" height="15.0" fill="rgb(239,117,51)" rx="2" ry="2" />
|
|
<text x="319.50" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_htable.so] (5 samples, 0.02%)</title><rect x="607.5" y="437" width="0.3" height="15.0" fill="rgb(243,102,15)" rx="2" ry="2" />
|
|
<text x="610.49" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchrnul (2 samples, 0.01%)</title><rect x="414.8" y="629" width="0.2" height="15.0" fill="rgb(222,176,4)" rx="2" ry="2" />
|
|
<text x="417.84" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (3 samples, 0.01%)</title><rect x="565.4" y="341" width="0.2" height="15.0" fill="rgb(235,16,35)" rx="2" ry="2" />
|
|
<text x="568.37" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (9 samples, 0.04%)</title><rect x="392.2" y="533" width="0.5" height="15.0" fill="rgb(248,67,8)" rx="2" ry="2" />
|
|
<text x="395.18" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="830.5" y="453" width="0.1" height="15.0" fill="rgb(207,79,20)" rx="2" ry="2" />
|
|
<text x="833.47" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="1019.3" y="453" width="0.3" height="15.0" fill="rgb(226,111,41)" rx="2" ry="2" />
|
|
<text x="1022.35" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (9 samples, 0.04%)</title><rect x="394.4" y="485" width="0.5" height="15.0" fill="rgb(215,71,40)" rx="2" ry="2" />
|
|
<text x="397.37" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (84 samples, 0.42%)</title><rect x="235.5" y="693" width="4.9" height="15.0" fill="rgb(233,53,44)" rx="2" ry="2" />
|
|
<text x="238.45" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>native_send_call_func_ipi (13 samples, 0.06%)</title><rect x="708.1" y="229" width="0.7" height="15.0" fill="rgb(251,136,36)" rx="2" ry="2" />
|
|
<text x="711.07" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (14 samples, 0.07%)</title><rect x="747.5" y="453" width="0.8" height="15.0" fill="rgb(214,96,5)" rx="2" ry="2" />
|
|
<text x="750.47" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (17 samples, 0.08%)</title><rect x="1023.4" y="533" width="1.0" height="15.0" fill="rgb(224,151,51)" rx="2" ry="2" />
|
|
<text x="1026.42" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="328.5" y="197" width="0.2" height="15.0" fill="rgb(246,3,36)" rx="2" ry="2" />
|
|
<text x="331.54" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>NewDocumentAnalyzer (7 samples, 0.03%)</title><rect x="563.4" y="341" width="0.4" height="15.0" fill="rgb(224,225,19)" rx="2" ry="2" />
|
|
<text x="566.37" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (90 samples, 0.45%)</title><rect x="327.1" y="469" width="5.3" height="15.0" fill="rgb(208,223,2)" rx="2" ry="2" />
|
|
<text x="330.12" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (15 samples, 0.07%)</title><rect x="912.2" y="661" width="0.9" height="15.0" fill="rgb(226,215,50)" rx="2" ry="2" />
|
|
<text x="915.22" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (7 samples, 0.03%)</title><rect x="328.8" y="245" width="0.4" height="15.0" fill="rgb(211,104,4)" rx="2" ry="2" />
|
|
<text x="331.77" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (58 samples, 0.29%)</title><rect x="485.1" y="485" width="3.4" height="15.0" fill="rgb(233,67,42)" rx="2" ry="2" />
|
|
<text x="488.09" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (8 samples, 0.04%)</title><rect x="387.3" y="309" width="0.5" height="15.0" fill="rgb(219,213,2)" rx="2" ry="2" />
|
|
<text x="390.29" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="963.8" y="613" width="0.2" height="15.0" fill="rgb(249,222,26)" rx="2" ry="2" />
|
|
<text x="966.84" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_ipentry (2 samples, 0.01%)</title><rect x="860.0" y="549" width="0.1" height="15.0" fill="rgb(244,31,18)" rx="2" ry="2" />
|
|
<text x="863.02" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="589.6" y="325" width="0.1" height="15.0" fill="rgb(224,39,34)" rx="2" ry="2" />
|
|
<text x="592.56" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="978.9" y="373" width="0.1" height="15.0" fill="rgb(226,196,9)" rx="2" ry="2" />
|
|
<text x="981.88" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (5 samples, 0.02%)</title><rect x="1003.8" y="581" width="0.3" height="15.0" fill="rgb(242,50,12)" rx="2" ry="2" />
|
|
<text x="1006.77" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="919.2" y="469" width="0.2" height="15.0" fill="rgb(227,109,42)" rx="2" ry="2" />
|
|
<text x="922.19" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>save_polling_inject_context (14 samples, 0.07%)</title><rect x="787.2" y="549" width="0.9" height="15.0" fill="rgb(247,103,44)" rx="2" ry="2" />
|
|
<text x="790.23" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_computeresult (214 samples, 1.07%)</title><rect x="216.6" y="693" width="12.7" height="15.0" fill="rgb(251,157,14)" rx="2" ry="2" />
|
|
<text x="219.64" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (2 samples, 0.01%)</title><rect x="544.2" y="405" width="0.1" height="15.0" fill="rgb(234,217,27)" rx="2" ry="2" />
|
|
<text x="547.20" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="413.1" y="581" width="0.1" height="15.0" fill="rgb(244,3,38)" rx="2" ry="2" />
|
|
<text x="416.07" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (11 samples, 0.05%)</title><rect x="299.8" y="517" width="0.7" height="15.0" fill="rgb(209,190,33)" rx="2" ry="2" />
|
|
<text x="302.81" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (64 samples, 0.32%)</title><rect x="625.2" y="453" width="3.8" height="15.0" fill="rgb(250,69,14)" rx="2" ry="2" />
|
|
<text x="628.25" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (5 samples, 0.02%)</title><rect x="534.8" y="501" width="0.3" height="15.0" fill="rgb(250,141,8)" rx="2" ry="2" />
|
|
<text x="537.76" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (14 samples, 0.07%)</title><rect x="787.2" y="517" width="0.9" height="15.0" fill="rgb(240,162,16)" rx="2" ry="2" />
|
|
<text x="790.23" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (30 samples, 0.15%)</title><rect x="968.3" y="629" width="1.7" height="15.0" fill="rgb(216,133,37)" rx="2" ry="2" />
|
|
<text x="971.26" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wangw_build_session_key_from_raw_ipv4 (3 samples, 0.01%)</title><rect x="621.8" y="453" width="0.2" height="15.0" fill="rgb(213,110,28)" rx="2" ry="2" />
|
|
<text x="624.83" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="560.9" y="437" width="0.2" height="15.0" fill="rgb(219,145,41)" rx="2" ry="2" />
|
|
<text x="563.95" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="786.7" y="533" width="0.1" height="15.0" fill="rgb(245,153,35)" rx="2" ry="2" />
|
|
<text x="789.70" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (8 samples, 0.04%)</title><rect x="964.0" y="565" width="0.5" height="15.0" fill="rgb(207,222,50)" rx="2" ry="2" />
|
|
<text x="967.02" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="833.8" y="501" width="0.1" height="15.0" fill="rgb(206,60,50)" rx="2" ry="2" />
|
|
<text x="836.77" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (4 samples, 0.02%)</title><rect x="914.3" y="613" width="0.2" height="15.0" fill="rgb(244,27,29)" rx="2" ry="2" />
|
|
<text x="917.29" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (3 samples, 0.01%)</title><rect x="534.8" y="485" width="0.2" height="15.0" fill="rgb(215,139,2)" rx="2" ry="2" />
|
|
<text x="537.82" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::search_expr (146 samples, 0.73%)</title><rect x="219.2" y="677" width="8.6" height="15.0" fill="rgb(233,38,34)" rx="2" ry="2" />
|
|
<text x="222.23" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (30 samples, 0.15%)</title><rect x="968.3" y="677" width="1.7" height="15.0" fill="rgb(246,21,43)" rx="2" ry="2" />
|
|
<text x="971.26" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="48.0" y="693" width="0.3" height="15.0" fill="rgb(206,60,17)" rx="2" ry="2" />
|
|
<text x="51.05" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (18 samples, 0.09%)</title><rect x="579.5" y="405" width="1.1" height="15.0" fill="rgb(206,100,17)" rx="2" ry="2" />
|
|
<text x="582.53" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new0 (2 samples, 0.01%)</title><rect x="318.9" y="325" width="0.1" height="15.0" fill="rgb(216,93,28)" rx="2" ry="2" />
|
|
<text x="321.92" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_partitioner (4 samples, 0.02%)</title><rect x="358.0" y="453" width="0.3" height="15.0" fill="rgb(209,214,39)" rx="2" ry="2" />
|
|
<text x="361.03" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (29 samples, 0.14%)</title><rect x="296.4" y="389" width="1.8" height="15.0" fill="rgb(251,136,46)" rx="2" ry="2" />
|
|
<text x="299.45" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (4 samples, 0.02%)</title><rect x="1019.3" y="629" width="0.3" height="15.0" fill="rgb(216,48,49)" rx="2" ry="2" />
|
|
<text x="1022.35" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (7,263 samples, 36.31%)</title><rect x="437.7" y="677" width="428.4" height="15.0" fill="rgb(230,69,18)" rx="2" ry="2" />
|
|
<text x="440.66" y="687.5" >eth_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="465.1" y="565" width="0.1" height="15.0" fill="rgb(249,173,54)" rx="2" ry="2" />
|
|
<text x="468.09" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="395.0" y="613" width="0.1" height="15.0" fill="rgb(218,203,42)" rx="2" ry="2" />
|
|
<text x="397.96" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (18 samples, 0.09%)</title><rect x="711.5" y="549" width="1.0" height="15.0" fill="rgb(248,218,10)" rx="2" ry="2" />
|
|
<text x="714.49" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="1013.2" y="677" width="0.1" height="15.0" fill="rgb(209,101,8)" rx="2" ry="2" />
|
|
<text x="1016.21" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (3 samples, 0.01%)</title><rect x="810.2" y="485" width="0.2" height="15.0" fill="rgb(205,82,8)" rx="2" ry="2" />
|
|
<text x="813.23" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (4 samples, 0.02%)</title><rect x="394.9" y="741" width="0.2" height="15.0" fill="rgb(208,70,19)" rx="2" ry="2" />
|
|
<text x="397.90" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="581.6" y="245" width="0.1" height="15.0" fill="rgb(248,65,38)" rx="2" ry="2" />
|
|
<text x="584.60" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (1,496 samples, 7.48%)</title><rect x="304.5" y="709" width="88.3" height="15.0" fill="rgb(237,108,36)" rx="2" ry="2" />
|
|
<text x="307.53" y="719.5" >ipv4_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="587.8" y="309" width="0.4" height="15.0" fill="rgb(239,182,21)" rx="2" ry="2" />
|
|
<text x="590.79" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>poll_idle (166 samples, 0.83%)</title><rect x="1174.3" y="645" width="9.7" height="15.0" fill="rgb(220,75,41)" rx="2" ry="2" />
|
|
<text x="1177.25" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcpall_entry (418 samples, 2.09%)</title><rect x="754.5" y="501" width="24.7" height="15.0" fill="rgb(245,12,1)" rx="2" ry="2" />
|
|
<text x="757.55" y="511.5" >t..</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_dns_entry (316 samples, 1.58%)</title><rect x="986.3" y="677" width="18.6" height="15.0" fill="rgb(242,28,28)" rx="2" ry="2" />
|
|
<text x="989.25" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="975.8" y="469" width="0.3" height="15.0" fill="rgb(233,44,11)" rx="2" ry="2" />
|
|
<text x="978.75" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="918.8" y="517" width="0.1" height="15.0" fill="rgb(214,151,54)" rx="2" ry="2" />
|
|
<text x="921.77" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="393.7" y="565" width="0.3" height="15.0" fill="rgb(230,137,49)" rx="2" ry="2" />
|
|
<text x="396.72" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (16 samples, 0.08%)</title><rect x="1023.4" y="453" width="1.0" height="15.0" fill="rgb(210,219,35)" rx="2" ry="2" />
|
|
<text x="1026.42" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (48 samples, 0.24%)</title><rect x="1026.8" y="693" width="2.8" height="15.0" fill="rgb(209,79,48)" rx="2" ry="2" />
|
|
<text x="1029.78" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="413.1" y="517" width="0.1" height="15.0" fill="rgb(221,38,5)" rx="2" ry="2" />
|
|
<text x="416.07" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithInsterestedRegion (2 samples, 0.01%)</title><rect x="590.1" y="469" width="0.2" height="15.0" fill="rgb(229,223,25)" rx="2" ry="2" />
|
|
<text x="593.15" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="484.7" y="501" width="0.1" height="15.0" fill="rgb(206,181,18)" rx="2" ry="2" />
|
|
<text x="487.68" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (18 samples, 0.09%)</title><rect x="564.1" y="341" width="1.1" height="15.0" fill="rgb(222,48,45)" rx="2" ry="2" />
|
|
<text x="567.14" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="1028.0" y="533" width="0.1" height="15.0" fill="rgb(222,28,39)" rx="2" ry="2" />
|
|
<text x="1030.96" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="275.8" y="741" width="0.1" height="15.0" fill="rgb(220,158,15)" rx="2" ry="2" />
|
|
<text x="278.80" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wire_graft_tunnel_recvfrom (4 samples, 0.02%)</title><rect x="937.4" y="661" width="0.2" height="15.0" fill="rgb(221,62,29)" rx="2" ry="2" />
|
|
<text x="940.41" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="1023.3" y="437" width="0.1" height="15.0" fill="rgb(239,216,28)" rx="2" ry="2" />
|
|
<text x="1026.30" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (377 samples, 1.88%)</title><rect x="982.7" y="709" width="22.2" height="15.0" fill="rgb(221,191,47)" rx="2" ry="2" />
|
|
<text x="985.66" y="719.5" >p..</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_app_id2name (3 samples, 0.01%)</title><rect x="980.6" y="485" width="0.2" height="15.0" fill="rgb(216,194,46)" rx="2" ry="2" />
|
|
<text x="983.59" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (119 samples, 0.59%)</title><rect x="327.1" y="485" width="7.0" height="15.0" fill="rgb(231,123,12)" rx="2" ry="2" />
|
|
<text x="330.12" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (8 samples, 0.04%)</title><rect x="913.5" y="645" width="0.4" height="15.0" fill="rgb(254,147,8)" rx="2" ry="2" />
|
|
<text x="916.46" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="323.6" y="293" width="0.2" height="15.0" fill="rgb(234,101,14)" rx="2" ry="2" />
|
|
<text x="326.58" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (3 samples, 0.01%)</title><rect x="1028.0" y="517" width="0.1" height="15.0" fill="rgb(207,160,40)" rx="2" ry="2" />
|
|
<text x="1030.96" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_check (187 samples, 0.93%)</title><rect x="681.0" y="517" width="11.1" height="15.0" fill="rgb(253,79,7)" rx="2" ry="2" />
|
|
<text x="684.05" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stratum_identify (2 samples, 0.01%)</title><rect x="605.0" y="469" width="0.1" height="15.0" fill="rgb(224,195,35)" rx="2" ry="2" />
|
|
<text x="608.01" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (4 samples, 0.02%)</title><rect x="556.4" y="373" width="0.2" height="15.0" fill="rgb(237,228,48)" rx="2" ry="2" />
|
|
<text x="559.41" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="975.8" y="517" width="0.3" height="15.0" fill="rgb(224,58,9)" rx="2" ry="2" />
|
|
<text x="978.75" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_del_stream (4 samples, 0.02%)</title><rect x="913.1" y="661" width="0.2" height="15.0" fill="rgb(206,50,5)" rx="2" ry="2" />
|
|
<text x="916.11" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_itoa_word (2 samples, 0.01%)</title><rect x="335.3" y="421" width="0.1" height="15.0" fill="rgb(250,71,10)" rx="2" ry="2" />
|
|
<text x="338.26" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (436 samples, 2.18%)</title><rect x="335.6" y="501" width="25.7" height="15.0" fill="rgb(219,109,35)" rx="2" ry="2" />
|
|
<text x="338.56" y="511.5" >[..</text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (28 samples, 0.14%)</title><rect x="530.9" y="501" width="1.6" height="15.0" fill="rgb(216,159,23)" rx="2" ry="2" />
|
|
<text x="533.87" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (32 samples, 0.16%)</title><rect x="1026.8" y="629" width="1.9" height="15.0" fill="rgb(240,147,20)" rx="2" ry="2" />
|
|
<text x="1029.78" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="412.4" y="533" width="0.1" height="15.0" fill="rgb(208,75,52)" rx="2" ry="2" />
|
|
<text x="415.36" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>docanalyze_startstream (7 samples, 0.03%)</title><rect x="563.4" y="357" width="0.4" height="15.0" fill="rgb(206,209,53)" rx="2" ry="2" />
|
|
<text x="566.37" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="299.8" y="485" width="0.2" height="15.0" fill="rgb(205,46,28)" rx="2" ry="2" />
|
|
<text x="302.81" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (248 samples, 1.24%)</title><rect x="988.9" y="645" width="14.6" height="15.0" fill="rgb(250,18,22)" rx="2" ry="2" />
|
|
<text x="991.85" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="1028.3" y="517" width="0.2" height="15.0" fill="rgb(246,106,44)" rx="2" ry="2" />
|
|
<text x="1031.25" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="975.8" y="421" width="0.3" height="15.0" fill="rgb(242,47,21)" rx="2" ry="2" />
|
|
<text x="978.75" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (3 samples, 0.01%)</title><rect x="846.3" y="453" width="0.2" height="15.0" fill="rgb(207,52,53)" rx="2" ry="2" />
|
|
<text x="849.28" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="623.1" y="469" width="0.1" height="15.0" fill="rgb(232,154,25)" rx="2" ry="2" />
|
|
<text x="626.06" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (7 samples, 0.03%)</title><rect x="391.2" y="485" width="0.4" height="15.0" fill="rgb(250,110,25)" rx="2" ry="2" />
|
|
<text x="394.18" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::find_matched_result (103 samples, 0.51%)</title><rect x="170.0" y="677" width="6.1" height="15.0" fill="rgb(220,182,31)" rx="2" ry="2" />
|
|
<text x="172.98" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_tripleMatching (7 samples, 0.03%)</title><rect x="976.6" y="581" width="0.4" height="15.0" fill="rgb(226,82,8)" rx="2" ry="2" />
|
|
<text x="979.58" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_cancel (3 samples, 0.01%)</title><rect x="1010.7" y="629" width="0.2" height="15.0" fill="rgb(205,176,2)" rx="2" ry="2" />
|
|
<text x="1013.68" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_sse42 (14 samples, 0.07%)</title><rect x="813.4" y="421" width="0.8" height="15.0" fill="rgb(239,140,19)" rx="2" ry="2" />
|
|
<text x="816.42" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (5 samples, 0.02%)</title><rect x="986.9" y="549" width="0.3" height="15.0" fill="rgb(243,224,25)" rx="2" ry="2" />
|
|
<text x="989.90" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="463.4" y="597" width="0.2" height="15.0" fill="rgb(234,76,13)" rx="2" ry="2" />
|
|
<text x="466.44" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="586.7" y="357" width="0.1" height="15.0" fill="rgb(225,87,2)" rx="2" ry="2" />
|
|
<text x="589.67" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="383.8" y="533" width="0.2" height="15.0" fill="rgb(216,38,4)" rx="2" ry="2" />
|
|
<text x="386.81" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (165 samples, 0.82%)</title><rect x="608.8" y="485" width="9.8" height="15.0" fill="rgb(218,200,5)" rx="2" ry="2" />
|
|
<text x="611.85" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_sse2 (23 samples, 0.11%)</title><rect x="114.1" y="661" width="1.4" height="15.0" fill="rgb(238,68,29)" rx="2" ry="2" />
|
|
<text x="117.11" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (16 samples, 0.08%)</title><rect x="461.7" y="597" width="0.9" height="15.0" fill="rgb(241,186,30)" rx="2" ry="2" />
|
|
<text x="464.67" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="566.5" y="309" width="0.1" height="15.0" fill="rgb(231,229,25)" rx="2" ry="2" />
|
|
<text x="569.49" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="301.6" y="597" width="0.1" height="15.0" fill="rgb(233,64,17)" rx="2" ry="2" />
|
|
<text x="304.58" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_destroy (13 samples, 0.06%)</title><rect x="791.7" y="421" width="0.7" height="15.0" fill="rgb(222,162,10)" rx="2" ry="2" />
|
|
<text x="794.65" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_scan_by_id (3 samples, 0.01%)</title><rect x="89.4" y="741" width="0.2" height="15.0" fill="rgb(214,152,50)" rx="2" ry="2" />
|
|
<text x="92.40" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (13 samples, 0.06%)</title><rect x="987.8" y="533" width="0.8" height="15.0" fill="rgb(251,82,34)" rx="2" ry="2" />
|
|
<text x="990.85" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (7 samples, 0.03%)</title><rect x="638.2" y="437" width="0.4" height="15.0" fill="rgb(213,88,33)" rx="2" ry="2" />
|
|
<text x="641.22" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_l_avx (2 samples, 0.01%)</title><rect x="567.4" y="421" width="0.2" height="15.0" fill="rgb(246,137,31)" rx="2" ry="2" />
|
|
<text x="570.44" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (55 samples, 0.27%)</title><rect x="327.1" y="453" width="3.3" height="15.0" fill="rgb(241,192,9)" rx="2" ry="2" />
|
|
<text x="330.12" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="818.0" y="357" width="0.2" height="15.0" fill="rgb(207,30,52)" rx="2" ry="2" />
|
|
<text x="821.02" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (8 samples, 0.04%)</title><rect x="977.1" y="533" width="0.4" height="15.0" fill="rgb(253,66,41)" rx="2" ry="2" />
|
|
<text x="980.05" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count (34 samples, 0.17%)</title><rect x="214.4" y="693" width="2.0" height="15.0" fill="rgb(210,40,44)" rx="2" ry="2" />
|
|
<text x="217.39" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (2 samples, 0.01%)</title><rect x="991.6" y="597" width="0.1" height="15.0" fill="rgb(218,78,10)" rx="2" ry="2" />
|
|
<text x="994.62" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (10 samples, 0.05%)</title><rect x="817.7" y="373" width="0.6" height="15.0" fill="rgb(225,104,48)" rx="2" ry="2" />
|
|
<text x="820.67" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ec_precompute_mont_data (5 samples, 0.02%)</title><rect x="585.0" y="309" width="0.3" height="15.0" fill="rgb(209,143,42)" rx="2" ry="2" />
|
|
<text x="588.02" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="977.1" y="421" width="0.1" height="15.0" fill="rgb(254,129,15)" rx="2" ry="2" />
|
|
<text x="980.05" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="388.2" y="517" width="0.2" height="15.0" fill="rgb(250,176,27)" rx="2" ry="2" />
|
|
<text x="391.23" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="369.7" y="421" width="0.1" height="15.0" fill="rgb(210,152,38)" rx="2" ry="2" />
|
|
<text x="372.65" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (5 samples, 0.02%)</title><rect x="561.2" y="373" width="0.3" height="15.0" fill="rgb(249,153,37)" rx="2" ry="2" />
|
|
<text x="564.24" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (23 samples, 0.11%)</title><rect x="1011.7" y="709" width="1.3" height="15.0" fill="rgb(254,186,15)" rx="2" ry="2" />
|
|
<text x="1014.68" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (5 samples, 0.02%)</title><rect x="980.9" y="581" width="0.3" height="15.0" fill="rgb(210,22,16)" rx="2" ry="2" />
|
|
<text x="983.95" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="589.1" y="309" width="0.3" height="15.0" fill="rgb(246,141,42)" rx="2" ry="2" />
|
|
<text x="592.09" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (7 samples, 0.03%)</title><rect x="791.9" y="389" width="0.4" height="15.0" fill="rgb(212,180,49)" rx="2" ry="2" />
|
|
<text x="794.89" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (10 samples, 0.05%)</title><rect x="545.7" y="373" width="0.6" height="15.0" fill="rgb(229,127,39)" rx="2" ry="2" />
|
|
<text x="548.73" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (9 samples, 0.04%)</title><rect x="394.4" y="581" width="0.5" height="15.0" fill="rgb(222,81,0)" rx="2" ry="2" />
|
|
<text x="397.37" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="968.0" y="533" width="0.3" height="15.0" fill="rgb(219,10,30)" rx="2" ry="2" />
|
|
<text x="971.03" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_engine_id_get (3 samples, 0.01%)</title><rect x="814.7" y="453" width="0.2" height="15.0" fill="rgb(247,50,28)" rx="2" ry="2" />
|
|
<text x="817.72" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_notify_hited_monitor_result (5 samples, 0.02%)</title><rect x="984.8" y="661" width="0.3" height="15.0" fill="rgb(233,139,48)" rx="2" ry="2" />
|
|
<text x="987.78" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (5 samples, 0.02%)</title><rect x="980.0" y="549" width="0.3" height="15.0" fill="rgb(212,170,19)" rx="2" ry="2" />
|
|
<text x="983.00" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (55 samples, 0.27%)</title><rect x="978.9" y="725" width="3.2" height="15.0" fill="rgb(216,133,14)" rx="2" ry="2" />
|
|
<text x="981.88" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (177 samples, 0.88%)</title><rect x="368.7" y="501" width="10.4" height="15.0" fill="rgb(231,129,40)" rx="2" ry="2" />
|
|
<text x="371.71" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (21 samples, 0.10%)</title><rect x="965.2" y="549" width="1.2" height="15.0" fill="rgb(241,105,44)" rx="2" ry="2" />
|
|
<text x="968.20" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (2 samples, 0.01%)</title><rect x="818.7" y="389" width="0.1" height="15.0" fill="rgb(242,195,32)" rx="2" ry="2" />
|
|
<text x="821.67" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="330.4" y="341" width="0.4" height="15.0" fill="rgb(237,168,23)" rx="2" ry="2" />
|
|
<text x="333.42" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wp_page_copy (16 samples, 0.08%)</title><rect x="678.9" y="341" width="0.9" height="15.0" fill="rgb(222,146,2)" rx="2" ry="2" />
|
|
<text x="681.87" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_sse2 (11 samples, 0.05%)</title><rect x="148.2" y="597" width="0.6" height="15.0" fill="rgb(206,175,35)" rx="2" ry="2" />
|
|
<text x="151.15" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (48 samples, 0.24%)</title><rect x="327.1" y="325" width="2.9" height="15.0" fill="rgb(237,18,31)" rx="2" ry="2" />
|
|
<text x="330.12" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[capture_packet_plug.so] (2 samples, 0.01%)</title><rect x="984.9" y="613" width="0.1" height="15.0" fill="rgb(242,116,51)" rx="2" ry="2" />
|
|
<text x="987.90" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_no_init (2 samples, 0.01%)</title><rect x="559.8" y="405" width="0.1" height="15.0" fill="rgb(236,38,39)" rx="2" ry="2" />
|
|
<text x="562.83" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="963.8" y="517" width="0.2" height="15.0" fill="rgb(237,60,43)" rx="2" ry="2" />
|
|
<text x="966.84" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (8 samples, 0.04%)</title><rect x="679.8" y="469" width="0.5" height="15.0" fill="rgb(226,102,10)" rx="2" ry="2" />
|
|
<text x="682.81" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_entry (3 samples, 0.01%)</title><rect x="1028.5" y="469" width="0.2" height="15.0" fill="rgb(209,76,19)" rx="2" ry="2" />
|
|
<text x="1031.49" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (5 samples, 0.02%)</title><rect x="832.1" y="453" width="0.3" height="15.0" fill="rgb(247,130,36)" rx="2" ry="2" />
|
|
<text x="835.06" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="566.8" y="373" width="0.1" height="15.0" fill="rgb(251,1,32)" rx="2" ry="2" />
|
|
<text x="569.79" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="276.2" y="677" width="0.4" height="15.0" fill="rgb(213,21,2)" rx="2" ry="2" />
|
|
<text x="279.15" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (31 samples, 0.15%)</title><rect x="324.2" y="453" width="1.8" height="15.0" fill="rgb(237,32,20)" rx="2" ry="2" />
|
|
<text x="327.17" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_create (3 samples, 0.01%)</title><rect x="1007.5" y="645" width="0.2" height="15.0" fill="rgb(209,200,23)" rx="2" ry="2" />
|
|
<text x="1010.55" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (51 samples, 0.25%)</title><rect x="967.1" y="709" width="3.1" height="15.0" fill="rgb(253,12,36)" rx="2" ry="2" />
|
|
<text x="970.14" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="964.4" y="549" width="0.1" height="15.0" fill="rgb(208,84,25)" rx="2" ry="2" />
|
|
<text x="967.37" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (28 samples, 0.14%)</title><rect x="1008.9" y="613" width="1.7" height="15.0" fill="rgb(207,168,19)" rx="2" ry="2" />
|
|
<text x="1011.91" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="393.5" y="597" width="0.2" height="15.0" fill="rgb(209,81,11)" rx="2" ry="2" />
|
|
<text x="396.54" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="324.0" y="293" width="0.2" height="15.0" fill="rgb(249,117,41)" rx="2" ry="2" />
|
|
<text x="326.99" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_old_init (2 samples, 0.01%)</title><rect x="980.5" y="341" width="0.1" height="15.0" fill="rgb(236,190,3)" rx="2" ry="2" />
|
|
<text x="983.47" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_addr (4 samples, 0.02%)</title><rect x="833.3" y="469" width="0.2" height="15.0" fill="rgb(227,47,2)" rx="2" ry="2" />
|
|
<text x="836.30" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="977.5" y="501" width="0.1" height="15.0" fill="rgb(206,14,9)" rx="2" ry="2" />
|
|
<text x="980.52" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (3 samples, 0.01%)</title><rect x="1028.0" y="485" width="0.1" height="15.0" fill="rgb(210,23,31)" rx="2" ry="2" />
|
|
<text x="1030.96" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (2 samples, 0.01%)</title><rect x="991.5" y="581" width="0.1" height="15.0" fill="rgb(206,209,18)" rx="2" ry="2" />
|
|
<text x="994.50" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (5 samples, 0.02%)</title><rect x="980.9" y="597" width="0.3" height="15.0" fill="rgb(213,104,10)" rx="2" ry="2" />
|
|
<text x="983.95" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (13 samples, 0.06%)</title><rect x="531.0" y="469" width="0.8" height="15.0" fill="rgb(209,189,10)" rx="2" ry="2" />
|
|
<text x="533.98" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (3 samples, 0.01%)</title><rect x="565.6" y="389" width="0.2" height="15.0" fill="rgb(223,92,51)" rx="2" ry="2" />
|
|
<text x="568.61" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (72 samples, 0.36%)</title><rect x="319.7" y="357" width="4.2" height="15.0" fill="rgb(250,122,13)" rx="2" ry="2" />
|
|
<text x="322.69" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="831.4" y="469" width="0.1" height="15.0" fill="rgb(250,26,6)" rx="2" ry="2" />
|
|
<text x="834.41" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_fqdn_plugin_get_N_ex_data (2 samples, 0.01%)</title><rect x="984.6" y="613" width="0.1" height="15.0" fill="rgb(210,107,26)" rx="2" ry="2" />
|
|
<text x="987.60" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (7 samples, 0.03%)</title><rect x="391.2" y="469" width="0.4" height="15.0" fill="rgb(236,24,47)" rx="2" ry="2" />
|
|
<text x="394.18" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (9 samples, 0.04%)</title><rect x="1022.9" y="485" width="0.5" height="15.0" fill="rgb(254,145,28)" rx="2" ry="2" />
|
|
<text x="1025.89" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="393.1" y="597" width="0.2" height="15.0" fill="rgb(216,111,15)" rx="2" ry="2" />
|
|
<text x="396.13" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (9 samples, 0.04%)</title><rect x="967.3" y="453" width="0.5" height="15.0" fill="rgb(210,180,5)" rx="2" ry="2" />
|
|
<text x="970.26" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_QUIC_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="388.2" y="485" width="0.2" height="15.0" fill="rgb(238,162,32)" rx="2" ry="2" />
|
|
<text x="391.23" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_search (10 samples, 0.05%)</title><rect x="801.7" y="549" width="0.6" height="15.0" fill="rgb(211,193,11)" rx="2" ry="2" />
|
|
<text x="804.68" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_jump_layer.so] (2 samples, 0.01%)</title><rect x="620.9" y="453" width="0.2" height="15.0" fill="rgb(240,229,4)" rx="2" ry="2" />
|
|
<text x="623.94" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_bin2bn (2 samples, 0.01%)</title><rect x="584.5" y="213" width="0.2" height="15.0" fill="rgb(211,42,6)" rx="2" ry="2" />
|
|
<text x="587.55" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="299.6" y="373" width="0.1" height="15.0" fill="rgb(211,182,2)" rx="2" ry="2" />
|
|
<text x="302.57" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (17 samples, 0.08%)</title><rect x="673.3" y="469" width="1.0" height="15.0" fill="rgb(222,24,0)" rx="2" ry="2" />
|
|
<text x="676.26" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (878 samples, 4.39%)</title><rect x="805.4" y="565" width="51.8" height="15.0" fill="rgb(209,122,2)" rx="2" ry="2" />
|
|
<text x="808.40" y="575.5" >strea..</text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCPALL_PLUG_ENTRY (9 samples, 0.04%)</title><rect x="619.6" y="485" width="0.6" height="15.0" fill="rgb(217,47,29)" rx="2" ry="2" />
|
|
<text x="622.64" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="412.4" y="485" width="0.1" height="15.0" fill="rgb(207,28,9)" rx="2" ry="2" />
|
|
<text x="415.36" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="332.7" y="341" width="0.1" height="15.0" fill="rgb(224,159,34)" rx="2" ry="2" />
|
|
<text x="335.67" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="298.5" y="357" width="1.0" height="15.0" fill="rgb(244,199,48)" rx="2" ry="2" />
|
|
<text x="301.51" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>parse_packet (4 samples, 0.02%)</title><rect x="619.9" y="469" width="0.2" height="15.0" fill="rgb(228,24,21)" rx="2" ry="2" />
|
|
<text x="622.88" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_TCP_PACKET_ENTRY (4 samples, 0.02%)</title><rect x="1013.9" y="741" width="0.3" height="15.0" fill="rgb(253,138,13)" rx="2" ry="2" />
|
|
<text x="1016.92" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (177 samples, 0.88%)</title><rect x="368.7" y="469" width="10.4" height="15.0" fill="rgb(212,50,24)" rx="2" ry="2" />
|
|
<text x="371.71" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[mail.so] (2 samples, 0.01%)</title><rect x="568.0" y="453" width="0.1" height="15.0" fill="rgb(208,223,54)" rx="2" ry="2" />
|
|
<text x="571.03" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="1028.5" y="437" width="0.2" height="15.0" fill="rgb(214,112,47)" rx="2" ry="2" />
|
|
<text x="1031.49" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_create (2 samples, 0.01%)</title><rect x="562.6" y="293" width="0.1" height="15.0" fill="rgb(247,177,34)" rx="2" ry="2" />
|
|
<text x="565.60" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="964.5" y="565" width="0.1" height="15.0" fill="rgb(246,170,50)" rx="2" ry="2" />
|
|
<text x="967.49" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_l7_protocol_id2name (4 samples, 0.02%)</title><rect x="599.1" y="437" width="0.2" height="15.0" fill="rgb(243,221,20)" rx="2" ry="2" />
|
|
<text x="602.06" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (3 samples, 0.01%)</title><rect x="1028.5" y="405" width="0.2" height="15.0" fill="rgb(220,107,31)" rx="2" ry="2" />
|
|
<text x="1031.49" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>memcasemem (2 samples, 0.01%)</title><rect x="604.7" y="453" width="0.1" height="15.0" fill="rgb(227,11,10)" rx="2" ry="2" />
|
|
<text x="607.72" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (13 samples, 0.06%)</title><rect x="973.3" y="565" width="0.7" height="15.0" fill="rgb(215,188,26)" rx="2" ry="2" />
|
|
<text x="976.28" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_id (2 samples, 0.01%)</title><rect x="412.4" y="501" width="0.1" height="15.0" fill="rgb(242,11,31)" rx="2" ry="2" />
|
|
<text x="415.36" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new0 (8 samples, 0.04%)</title><rect x="1001.6" y="597" width="0.5" height="15.0" fill="rgb(210,152,52)" rx="2" ry="2" />
|
|
<text x="1004.59" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="380.5" y="485" width="0.3" height="15.0" fill="rgb(253,95,24)" rx="2" ry="2" />
|
|
<text x="383.50" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (49 samples, 0.24%)</title><rect x="967.1" y="693" width="2.9" height="15.0" fill="rgb(245,80,51)" rx="2" ry="2" />
|
|
<text x="970.14" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (3 samples, 0.01%)</title><rect x="608.1" y="453" width="0.2" height="15.0" fill="rgb(211,139,11)" rx="2" ry="2" />
|
|
<text x="611.08" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (12 samples, 0.06%)</title><rect x="966.4" y="677" width="0.7" height="15.0" fill="rgb(217,73,5)" rx="2" ry="2" />
|
|
<text x="969.43" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="1007.7" y="613" width="0.3" height="15.0" fill="rgb(209,226,20)" rx="2" ry="2" />
|
|
<text x="1010.73" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (20 samples, 0.10%)</title><rect x="112.9" y="661" width="1.2" height="15.0" fill="rgb(226,187,28)" rx="2" ry="2" />
|
|
<text x="115.93" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (3 samples, 0.01%)</title><rect x="810.6" y="437" width="0.2" height="15.0" fill="rgb(253,134,5)" rx="2" ry="2" />
|
|
<text x="813.59" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (3 samples, 0.01%)</title><rect x="779.4" y="533" width="0.2" height="15.0" fill="rgb(232,16,53)" rx="2" ry="2" />
|
|
<text x="782.44" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (11 samples, 0.05%)</title><rect x="490.6" y="613" width="0.7" height="15.0" fill="rgb(224,136,12)" rx="2" ry="2" />
|
|
<text x="493.64" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (39 samples, 0.19%)</title><rect x="970.7" y="565" width="2.3" height="15.0" fill="rgb(209,43,3)" rx="2" ry="2" />
|
|
<text x="973.74" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (2 samples, 0.01%)</title><rect x="972.7" y="485" width="0.2" height="15.0" fill="rgb(246,116,28)" rx="2" ry="2" />
|
|
<text x="975.75" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="464.3" y="581" width="0.2" height="15.0" fill="rgb(247,41,45)" rx="2" ry="2" />
|
|
<text x="467.33" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (3 samples, 0.01%)</title><rect x="563.0" y="389" width="0.2" height="15.0" fill="rgb(249,166,29)" rx="2" ry="2" />
|
|
<text x="566.01" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (4 samples, 0.02%)</title><rect x="1028.3" y="565" width="0.2" height="15.0" fill="rgb(228,80,1)" rx="2" ry="2" />
|
|
<text x="1031.25" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (2 samples, 0.01%)</title><rect x="391.9" y="501" width="0.2" height="15.0" fill="rgb(218,19,1)" rx="2" ry="2" />
|
|
<text x="394.95" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="378.9" y="373" width="0.1" height="15.0" fill="rgb(207,166,54)" rx="2" ry="2" />
|
|
<text x="381.91" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (206 samples, 1.03%)</title><rect x="783.7" y="565" width="12.2" height="15.0" fill="rgb(213,33,13)" rx="2" ry="2" />
|
|
<text x="786.75" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="977.5" y="517" width="0.1" height="15.0" fill="rgb(228,114,43)" rx="2" ry="2" />
|
|
<text x="980.52" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_ex_i2c (2 samples, 0.01%)</title><rect x="329.0" y="149" width="0.1" height="15.0" fill="rgb(235,74,54)" rx="2" ry="2" />
|
|
<text x="332.01" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="963.8" y="725" width="0.2" height="15.0" fill="rgb(225,55,27)" rx="2" ry="2" />
|
|
<text x="966.84" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (8 samples, 0.04%)</title><rect x="632.4" y="437" width="0.5" height="15.0" fill="rgb(244,117,47)" rx="2" ry="2" />
|
|
<text x="635.44" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[librulescan.so.2.2] (4 samples, 0.02%)</title><rect x="43.0" y="709" width="0.3" height="15.0" fill="rgb(236,170,28)" rx="2" ry="2" />
|
|
<text x="46.03" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="584.5" y="261" width="0.2" height="15.0" fill="rgb(222,106,42)" rx="2" ry="2" />
|
|
<text x="587.49" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (4 samples, 0.02%)</title><rect x="393.7" y="581" width="0.3" height="15.0" fill="rgb(206,60,47)" rx="2" ry="2" />
|
|
<text x="396.72" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (8 samples, 0.04%)</title><rect x="977.1" y="565" width="0.4" height="15.0" fill="rgb(223,142,54)" rx="2" ry="2" />
|
|
<text x="980.05" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="304.4" y="437" width="0.1" height="15.0" fill="rgb(254,124,7)" rx="2" ry="2" />
|
|
<text x="307.41" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (10 samples, 0.05%)</title><rect x="1020.3" y="437" width="0.6" height="15.0" fill="rgb(250,44,48)" rx="2" ry="2" />
|
|
<text x="1023.29" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (17 samples, 0.08%)</title><rect x="666.7" y="501" width="1.0" height="15.0" fill="rgb(220,55,38)" rx="2" ry="2" />
|
|
<text x="669.72" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (17 samples, 0.08%)</title><rect x="785.4" y="549" width="1.0" height="15.0" fill="rgb(208,134,12)" rx="2" ry="2" />
|
|
<text x="788.40" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="368.8" y="405" width="0.1" height="15.0" fill="rgb(245,198,46)" rx="2" ry="2" />
|
|
<text x="371.83" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (48 samples, 0.24%)</title><rect x="601.4" y="469" width="2.8" height="15.0" fill="rgb(220,114,10)" rx="2" ry="2" />
|
|
<text x="604.42" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count (5 samples, 0.02%)</title><rect x="54.7" y="709" width="0.2" height="15.0" fill="rgb(231,107,12)" rx="2" ry="2" />
|
|
<text x="57.65" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (8 samples, 0.04%)</title><rect x="561.2" y="389" width="0.5" height="15.0" fill="rgb(230,6,39)" rx="2" ry="2" />
|
|
<text x="564.24" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (4 samples, 0.02%)</title><rect x="1013.1" y="693" width="0.2" height="15.0" fill="rgb(214,146,7)" rx="2" ry="2" />
|
|
<text x="1016.09" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="538.8" y="501" width="0.3" height="15.0" fill="rgb(252,64,18)" rx="2" ry="2" />
|
|
<text x="541.83" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="1011.1" y="597" width="0.2" height="15.0" fill="rgb(232,105,37)" rx="2" ry="2" />
|
|
<text x="1014.09" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>finish_task_switch (57 samples, 0.28%)</title><rect x="922.2" y="565" width="3.4" height="15.0" fill="rgb(219,112,0)" rx="2" ry="2" />
|
|
<text x="925.19" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_handshake_pkt_process (2 samples, 0.01%)</title><rect x="631.6" y="469" width="0.1" height="15.0" fill="rgb(234,141,31)" rx="2" ry="2" />
|
|
<text x="634.56" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (53 samples, 0.26%)</title><rect x="964.0" y="725" width="3.1" height="15.0" fill="rgb(241,219,17)" rx="2" ry="2" />
|
|
<text x="967.02" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (32 samples, 0.16%)</title><rect x="1026.8" y="645" width="1.9" height="15.0" fill="rgb(216,18,5)" rx="2" ry="2" />
|
|
<text x="1029.78" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="362.0" y="501" width="0.3" height="15.0" fill="rgb(226,79,2)" rx="2" ry="2" />
|
|
<text x="365.04" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[wire_graft_plug.so] (2 samples, 0.01%)</title><rect x="671.9" y="453" width="0.1" height="15.0" fill="rgb(214,64,16)" rx="2" ry="2" />
|
|
<text x="674.91" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="970.6" y="501" width="0.1" height="15.0" fill="rgb(208,181,50)" rx="2" ry="2" />
|
|
<text x="973.62" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_id (3 samples, 0.01%)</title><rect x="393.4" y="485" width="0.1" height="15.0" fill="rgb(208,5,37)" rx="2" ry="2" />
|
|
<text x="396.36" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (20 samples, 0.10%)</title><rect x="302.9" y="357" width="1.2" height="15.0" fill="rgb(232,228,39)" rx="2" ry="2" />
|
|
<text x="305.94" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="301.2" y="517" width="0.3" height="15.0" fill="rgb(235,162,38)" rx="2" ry="2" />
|
|
<text x="304.22" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (47 samples, 0.23%)</title><rect x="358.3" y="453" width="2.8" height="15.0" fill="rgb(249,163,35)" rx="2" ry="2" />
|
|
<text x="361.33" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (33 samples, 0.16%)</title><rect x="793.5" y="421" width="2.0" height="15.0" fill="rgb(245,215,10)" rx="2" ry="2" />
|
|
<text x="796.54" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (56 samples, 0.28%)</title><rect x="963.8" y="757" width="3.3" height="15.0" fill="rgb(219,228,33)" rx="2" ry="2" />
|
|
<text x="966.84" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (4 samples, 0.02%)</title><rect x="913.6" y="629" width="0.2" height="15.0" fill="rgb(221,83,3)" rx="2" ry="2" />
|
|
<text x="916.58" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (36 samples, 0.18%)</title><rect x="812.1" y="437" width="2.1" height="15.0" fill="rgb(210,136,18)" rx="2" ry="2" />
|
|
<text x="815.12" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (16 samples, 0.08%)</title><rect x="327.1" y="245" width="1.0" height="15.0" fill="rgb(226,108,31)" rx="2" ry="2" />
|
|
<text x="330.12" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__errno_location (2 samples, 0.01%)</title><rect x="778.4" y="437" width="0.1" height="15.0" fill="rgb(247,77,48)" rx="2" ry="2" />
|
|
<text x="781.38" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="668.7" y="485" width="0.3" height="15.0" fill="rgb(237,157,53)" rx="2" ry="2" />
|
|
<text x="671.72" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (9 samples, 0.04%)</title><rect x="967.3" y="517" width="0.5" height="15.0" fill="rgb(218,89,4)" rx="2" ry="2" />
|
|
<text x="970.26" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (7 samples, 0.03%)</title><rect x="415.1" y="741" width="0.4" height="15.0" fill="rgb(207,99,12)" rx="2" ry="2" />
|
|
<text x="418.07" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="301.1" y="549" width="0.4" height="15.0" fill="rgb(239,125,37)" rx="2" ry="2" />
|
|
<text x="304.11" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="668.5" y="485" width="0.2" height="15.0" fill="rgb(228,81,52)" rx="2" ry="2" />
|
|
<text x="671.49" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (5 samples, 0.02%)</title><rect x="48.9" y="645" width="0.3" height="15.0" fill="rgb(207,121,26)" rx="2" ry="2" />
|
|
<text x="51.87" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (180 samples, 0.90%)</title><rect x="305.1" y="533" width="10.6" height="15.0" fill="rgb(208,77,8)" rx="2" ry="2" />
|
|
<text x="308.06" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="980.5" y="453" width="0.1" height="15.0" fill="rgb(241,32,17)" rx="2" ry="2" />
|
|
<text x="983.47" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (6 samples, 0.03%)</title><rect x="801.3" y="549" width="0.4" height="15.0" fill="rgb(213,69,7)" rx="2" ry="2" />
|
|
<text x="804.33" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (3 samples, 0.01%)</title><rect x="412.3" y="693" width="0.2" height="15.0" fill="rgb(222,203,36)" rx="2" ry="2" />
|
|
<text x="415.30" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (73 samples, 0.36%)</title><rect x="749.4" y="501" width="4.3" height="15.0" fill="rgb(241,157,38)" rx="2" ry="2" />
|
|
<text x="752.36" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="323.4" y="309" width="0.5" height="15.0" fill="rgb(247,138,26)" rx="2" ry="2" />
|
|
<text x="326.40" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="972.3" y="485" width="0.2" height="15.0" fill="rgb(209,125,41)" rx="2" ry="2" />
|
|
<text x="975.27" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_mtod (4 samples, 0.02%)</title><rect x="866.2" y="677" width="0.2" height="15.0" fill="rgb(227,114,9)" rx="2" ry="2" />
|
|
<text x="869.15" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (114 samples, 0.57%)</title><rect x="844.2" y="501" width="6.7" height="15.0" fill="rgb(235,91,19)" rx="2" ry="2" />
|
|
<text x="847.15" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (9 samples, 0.04%)</title><rect x="304.5" y="645" width="0.6" height="15.0" fill="rgb(242,153,9)" rx="2" ry="2" />
|
|
<text x="307.53" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>callback_dns_business_plug (5 samples, 0.02%)</title><rect x="919.1" y="597" width="0.3" height="15.0" fill="rgb(239,189,6)" rx="2" ry="2" />
|
|
<text x="922.07" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (803 samples, 4.01%)</title><rect x="809.3" y="533" width="47.4" height="15.0" fill="rgb(241,170,2)" rx="2" ry="2" />
|
|
<text x="812.29" y="543.5" >plug..</text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="975.6" y="741" width="0.2" height="15.0" fill="rgb(218,20,36)" rx="2" ry="2" />
|
|
<text x="978.58" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamleavlist (2 samples, 0.01%)</title><rect x="642.1" y="533" width="0.1" height="15.0" fill="rgb(209,156,33)" rx="2" ry="2" />
|
|
<text x="645.12" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clear_huge_page (10 samples, 0.05%)</title><rect x="707.1" y="341" width="0.6" height="15.0" fill="rgb(207,198,26)" rx="2" ry="2" />
|
|
<text x="710.12" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (19 samples, 0.09%)</title><rect x="791.3" y="437" width="1.1" height="15.0" fill="rgb(208,205,52)" rx="2" ry="2" />
|
|
<text x="794.30" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (6 samples, 0.03%)</title><rect x="983.2" y="533" width="0.4" height="15.0" fill="rgb(208,91,35)" rx="2" ry="2" />
|
|
<text x="986.25" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="584.5" y="229" width="0.2" height="15.0" fill="rgb(222,140,6)" rx="2" ry="2" />
|
|
<text x="587.55" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_primitive_new (2 samples, 0.01%)</title><rect x="327.5" y="117" width="0.1" height="15.0" fill="rgb(252,165,32)" rx="2" ry="2" />
|
|
<text x="330.47" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (14 samples, 0.07%)</title><rect x="977.8" y="517" width="0.8" height="15.0" fill="rgb(205,162,42)" rx="2" ry="2" />
|
|
<text x="980.76" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sk_pop_free (2 samples, 0.01%)</title><rect x="299.3" y="245" width="0.2" height="15.0" fill="rgb(225,92,17)" rx="2" ry="2" />
|
|
<text x="302.34" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="562.3" y="261" width="0.2" height="15.0" fill="rgb(245,159,43)" rx="2" ry="2" />
|
|
<text x="565.31" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (66 samples, 0.33%)</title><rect x="575.0" y="373" width="3.9" height="15.0" fill="rgb(244,174,31)" rx="2" ry="2" />
|
|
<text x="578.05" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (16 samples, 0.08%)</title><rect x="327.1" y="277" width="1.0" height="15.0" fill="rgb(227,73,21)" rx="2" ry="2" />
|
|
<text x="330.12" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (12 samples, 0.06%)</title><rect x="779.9" y="501" width="0.7" height="15.0" fill="rgb(227,222,41)" rx="2" ry="2" />
|
|
<text x="782.86" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (7 samples, 0.03%)</title><rect x="981.2" y="581" width="0.5" height="15.0" fill="rgb(250,206,37)" rx="2" ry="2" />
|
|
<text x="984.24" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (4 samples, 0.02%)</title><rect x="1028.3" y="501" width="0.2" height="15.0" fill="rgb(247,56,0)" rx="2" ry="2" />
|
|
<text x="1031.25" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="1028.0" y="501" width="0.1" height="15.0" fill="rgb(224,187,8)" rx="2" ry="2" />
|
|
<text x="1030.96" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (27 samples, 0.13%)</title><rect x="1021.2" y="485" width="1.6" height="15.0" fill="rgb(222,4,28)" rx="2" ry="2" />
|
|
<text x="1024.18" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_get (27 samples, 0.13%)</title><rect x="185.8" y="741" width="1.6" height="15.0" fill="rgb(210,83,30)" rx="2" ry="2" />
|
|
<text x="188.78" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (6 samples, 0.03%)</title><rect x="1029.1" y="565" width="0.3" height="15.0" fill="rgb(218,200,28)" rx="2" ry="2" />
|
|
<text x="1032.08" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_id (2 samples, 0.01%)</title><rect x="1022.8" y="485" width="0.1" height="15.0" fill="rgb(247,120,49)" rx="2" ry="2" />
|
|
<text x="1025.77" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (7 samples, 0.03%)</title><rect x="391.2" y="453" width="0.4" height="15.0" fill="rgb(249,205,43)" rx="2" ry="2" />
|
|
<text x="394.18" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (14 samples, 0.07%)</title><rect x="582.5" y="389" width="0.9" height="15.0" fill="rgb(224,103,14)" rx="2" ry="2" />
|
|
<text x="585.54" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>default_send_IPI_mask_sequence_phys (13 samples, 0.06%)</title><rect x="708.1" y="213" width="0.7" height="15.0" fill="rgb(206,38,52)" rx="2" ry="2" />
|
|
<text x="711.07" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="566.6" y="357" width="0.1" height="15.0" fill="rgb(237,8,22)" rx="2" ry="2" />
|
|
<text x="569.61" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>DNS_UDP_ENTRY (5 samples, 0.02%)</title><rect x="919.1" y="613" width="0.3" height="15.0" fill="rgb(246,179,40)" rx="2" ry="2" />
|
|
<text x="922.07" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (4 samples, 0.02%)</title><rect x="1028.3" y="437" width="0.2" height="15.0" fill="rgb(217,144,19)" rx="2" ry="2" />
|
|
<text x="1031.25" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddNumberToObject (12 samples, 0.06%)</title><rect x="1004.1" y="629" width="0.7" height="15.0" fill="rgb(218,152,47)" rx="2" ry="2" />
|
|
<text x="1007.07" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509_NAME_get_text_by_OBJ (4 samples, 0.02%)</title><rect x="583.9" y="389" width="0.2" height="15.0" fill="rgb(247,54,23)" rx="2" ry="2" />
|
|
<text x="586.90" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="412.9" y="485" width="0.2" height="15.0" fill="rgb(235,2,10)" rx="2" ry="2" />
|
|
<text x="415.95" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="976.7" y="453" width="0.1" height="15.0" fill="rgb(230,14,14)" rx="2" ry="2" />
|
|
<text x="979.70" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (5 samples, 0.02%)</title><rect x="826.3" y="437" width="0.3" height="15.0" fill="rgb(238,89,41)" rx="2" ry="2" />
|
|
<text x="829.34" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="980.5" y="581" width="0.1" height="15.0" fill="rgb(219,20,16)" rx="2" ry="2" />
|
|
<text x="983.47" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="605.1" y="453" width="0.1" height="15.0" fill="rgb(240,80,6)" rx="2" ry="2" />
|
|
<text x="608.13" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithClientHello (25 samples, 0.12%)</title><rect x="332.4" y="469" width="1.5" height="15.0" fill="rgb(226,184,25)" rx="2" ry="2" />
|
|
<text x="335.43" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="366.4" y="437" width="0.1" height="15.0" fill="rgb(208,48,8)" rx="2" ry="2" />
|
|
<text x="369.41" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_id (10 samples, 0.05%)</title><rect x="330.9" y="341" width="0.6" height="15.0" fill="rgb(224,229,37)" rx="2" ry="2" />
|
|
<text x="333.90" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="788.6" y="485" width="0.1" height="15.0" fill="rgb(237,118,41)" rx="2" ry="2" />
|
|
<text x="791.59" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (5 samples, 0.02%)</title><rect x="832.5" y="437" width="0.3" height="15.0" fill="rgb(240,226,14)" rx="2" ry="2" />
|
|
<text x="835.47" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (43 samples, 0.21%)</title><rect x="1008.1" y="629" width="2.6" height="15.0" fill="rgb(243,206,19)" rx="2" ry="2" />
|
|
<text x="1011.14" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="581.8" y="245" width="0.3" height="15.0" fill="rgb(241,42,24)" rx="2" ry="2" />
|
|
<text x="584.83" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CIPv4Match::SearchIP (304 samples, 1.52%)</title><rect x="278.0" y="741" width="18.0" height="15.0" fill="rgb(251,227,49)" rx="2" ry="2" />
|
|
<text x="281.04" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (13 samples, 0.06%)</title><rect x="990.7" y="597" width="0.7" height="15.0" fill="rgb(230,184,50)" rx="2" ry="2" />
|
|
<text x="993.68" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="1014.2" y="565" width="0.1" height="15.0" fill="rgb(230,123,45)" rx="2" ry="2" />
|
|
<text x="1017.22" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_fqdn_plugin_get_N_ex_data (6 samples, 0.03%)</title><rect x="1005.5" y="613" width="0.4" height="15.0" fill="rgb(213,84,21)" rx="2" ry="2" />
|
|
<text x="1008.54" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (11 samples, 0.05%)</title><rect x="792.7" y="437" width="0.6" height="15.0" fill="rgb(222,213,7)" rx="2" ry="2" />
|
|
<text x="795.66" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="1026.5" y="421" width="0.2" height="15.0" fill="rgb(239,192,16)" rx="2" ry="2" />
|
|
<text x="1029.54" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_setb (2 samples, 0.01%)</title><rect x="814.5" y="405" width="0.2" height="15.0" fill="rgb(240,121,20)" rx="2" ry="2" />
|
|
<text x="817.54" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2,071 samples, 10.35%)</title><rect x="520.1" y="549" width="122.1" height="15.0" fill="rgb(244,78,26)" rx="2" ry="2" />
|
|
<text x="523.07" y="559.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_put (4 samples, 0.02%)</title><rect x="733.9" y="469" width="0.2" height="15.0" fill="rgb(246,130,17)" rx="2" ry="2" />
|
|
<text x="736.90" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (20 samples, 0.10%)</title><rect x="821.2" y="485" width="1.2" height="15.0" fill="rgb(252,136,7)" rx="2" ry="2" />
|
|
<text x="824.21" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="563.0" y="405" width="0.2" height="15.0" fill="rgb(225,116,46)" rx="2" ry="2" />
|
|
<text x="566.01" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (27 samples, 0.13%)</title><rect x="670.8" y="501" width="1.6" height="15.0" fill="rgb(211,140,1)" rx="2" ry="2" />
|
|
<text x="673.84" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_get (2 samples, 0.01%)</title><rect x="89.6" y="741" width="0.1" height="15.0" fill="rgb(251,124,1)" rx="2" ry="2" />
|
|
<text x="92.58" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (10 samples, 0.05%)</title><rect x="393.5" y="661" width="0.6" height="15.0" fill="rgb(230,13,3)" rx="2" ry="2" />
|
|
<text x="396.54" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count@plt (2 samples, 0.01%)</title><rect x="216.4" y="693" width="0.1" height="15.0" fill="rgb(223,69,7)" rx="2" ry="2" />
|
|
<text x="219.40" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (56 samples, 0.28%)</title><rect x="978.8" y="741" width="3.3" height="15.0" fill="rgb(223,131,32)" rx="2" ry="2" />
|
|
<text x="981.82" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (3 samples, 0.01%)</title><rect x="586.2" y="373" width="0.2" height="15.0" fill="rgb(238,117,32)" rx="2" ry="2" />
|
|
<text x="589.20" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (8 samples, 0.04%)</title><rect x="862.1" y="597" width="0.5" height="15.0" fill="rgb(215,72,22)" rx="2" ry="2" />
|
|
<text x="865.08" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="298.5" y="309" width="1.0" height="15.0" fill="rgb(222,42,18)" rx="2" ry="2" />
|
|
<text x="301.51" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="333.7" y="341" width="0.1" height="15.0" fill="rgb(244,182,0)" rx="2" ry="2" />
|
|
<text x="336.67" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (137 samples, 0.68%)</title><rect x="296.4" y="709" width="8.1" height="15.0" fill="rgb(230,197,23)" rx="2" ry="2" />
|
|
<text x="299.45" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="298.8" y="181" width="0.1" height="15.0" fill="rgb(214,208,16)" rx="2" ry="2" />
|
|
<text x="301.81" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="338.2" y="469" width="0.1" height="15.0" fill="rgb(217,23,31)" rx="2" ry="2" />
|
|
<text x="341.21" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="49.4" y="709" width="0.1" height="15.0" fill="rgb(229,140,12)" rx="2" ry="2" />
|
|
<text x="52.40" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (18 samples, 0.09%)</title><rect x="641.0" y="485" width="1.1" height="15.0" fill="rgb(212,157,23)" rx="2" ry="2" />
|
|
<text x="644.00" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="584.8" y="357" width="1.0" height="15.0" fill="rgb(220,79,9)" rx="2" ry="2" />
|
|
<text x="587.78" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="465.7" y="613" width="0.1" height="15.0" fill="rgb(239,206,51)" rx="2" ry="2" />
|
|
<text x="468.68" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_partitioner (3 samples, 0.01%)</title><rect x="376.3" y="421" width="0.2" height="15.0" fill="rgb(222,85,26)" rx="2" ry="2" />
|
|
<text x="379.32" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (3 samples, 0.01%)</title><rect x="1028.5" y="597" width="0.2" height="15.0" fill="rgb(220,77,48)" rx="2" ry="2" />
|
|
<text x="1031.49" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (4 samples, 0.02%)</title><rect x="984.8" y="645" width="0.3" height="15.0" fill="rgb(247,112,5)" rx="2" ry="2" />
|
|
<text x="987.84" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="304.4" y="453" width="0.1" height="15.0" fill="rgb(249,45,21)" rx="2" ry="2" />
|
|
<text x="307.41" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (134 samples, 0.67%)</title><rect x="307.8" y="469" width="7.9" height="15.0" fill="rgb(206,206,32)" rx="2" ry="2" />
|
|
<text x="310.77" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (7 samples, 0.03%)</title><rect x="1002.8" y="565" width="0.4" height="15.0" fill="rgb(205,40,28)" rx="2" ry="2" />
|
|
<text x="1005.83" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grab_mid (4 samples, 0.02%)</title><rect x="980.1" y="533" width="0.2" height="15.0" fill="rgb(226,225,15)" rx="2" ry="2" />
|
|
<text x="983.06" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (13 samples, 0.06%)</title><rect x="394.1" y="725" width="0.8" height="15.0" fill="rgb(236,196,4)" rx="2" ry="2" />
|
|
<text x="397.13" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (3 samples, 0.01%)</title><rect x="361.3" y="517" width="0.2" height="15.0" fill="rgb(223,109,2)" rx="2" ry="2" />
|
|
<text x="364.33" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="557.1" y="469" width="0.1" height="15.0" fill="rgb(208,125,13)" rx="2" ry="2" />
|
|
<text x="560.06" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (52 samples, 0.26%)</title><rect x="975.8" y="741" width="3.0" height="15.0" fill="rgb(217,64,9)" rx="2" ry="2" />
|
|
<text x="978.75" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (6 samples, 0.03%)</title><rect x="300.8" y="453" width="0.3" height="15.0" fill="rgb(205,188,19)" rx="2" ry="2" />
|
|
<text x="303.75" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (3 samples, 0.01%)</title><rect x="1006.6" y="565" width="0.2" height="15.0" fill="rgb(249,57,50)" rx="2" ry="2" />
|
|
<text x="1009.61" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_nanosleep (2 samples, 0.01%)</title><rect x="926.6" y="693" width="0.1" height="15.0" fill="rgb(232,105,49)" rx="2" ry="2" />
|
|
<text x="929.62" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="830.3" y="469" width="0.1" height="15.0" fill="rgb(234,204,33)" rx="2" ry="2" />
|
|
<text x="833.29" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (125 samples, 0.62%)</title><rect x="1019.3" y="741" width="7.4" height="15.0" fill="rgb(228,23,2)" rx="2" ry="2" />
|
|
<text x="1022.35" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="488.4" y="421" width="0.1" height="15.0" fill="rgb(210,207,30)" rx="2" ry="2" />
|
|
<text x="491.39" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="412.4" y="549" width="0.1" height="15.0" fill="rgb(235,208,1)" rx="2" ry="2" />
|
|
<text x="415.36" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="99.6" y="693" width="0.1" height="15.0" fill="rgb(234,185,11)" rx="2" ry="2" />
|
|
<text x="102.60" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="984.0" y="597" width="0.1" height="15.0" fill="rgb(241,137,25)" rx="2" ry="2" />
|
|
<text x="986.95" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="827.0" y="437" width="0.2" height="15.0" fill="rgb(240,73,0)" rx="2" ry="2" />
|
|
<text x="830.05" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="330.0" y="293" width="0.2" height="15.0" fill="rgb(254,141,23)" rx="2" ry="2" />
|
|
<text x="332.95" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="329.7" y="213" width="0.1" height="15.0" fill="rgb(229,8,9)" rx="2" ry="2" />
|
|
<text x="332.66" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="601.9" y="453" width="0.2" height="15.0" fill="rgb(226,223,40)" rx="2" ry="2" />
|
|
<text x="604.95" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (15 samples, 0.07%)</title><rect x="967.1" y="629" width="0.9" height="15.0" fill="rgb(208,59,32)" rx="2" ry="2" />
|
|
<text x="970.14" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (13 samples, 0.06%)</title><rect x="863.4" y="645" width="0.7" height="15.0" fill="rgb(220,30,4)" rx="2" ry="2" />
|
|
<text x="866.38" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (6 samples, 0.03%)</title><rect x="831.0" y="469" width="0.4" height="15.0" fill="rgb(230,22,7)" rx="2" ry="2" />
|
|
<text x="834.00" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="392.4" y="469" width="0.3" height="15.0" fill="rgb(253,209,37)" rx="2" ry="2" />
|
|
<text x="395.42" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (12 samples, 0.06%)</title><rect x="532.5" y="501" width="0.7" height="15.0" fill="rgb(218,3,8)" rx="2" ry="2" />
|
|
<text x="535.52" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithClientHello (29 samples, 0.14%)</title><rect x="586.7" y="421" width="1.7" height="15.0" fill="rgb(254,211,10)" rx="2" ry="2" />
|
|
<text x="589.67" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (6 samples, 0.03%)</title><rect x="1004.4" y="581" width="0.4" height="15.0" fill="rgb(215,34,25)" rx="2" ry="2" />
|
|
<text x="1007.42" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ddos_sketch_logging_print (2 samples, 0.01%)</title><rect x="850.8" y="485" width="0.1" height="15.0" fill="rgb(231,188,41)" rx="2" ry="2" />
|
|
<text x="853.76" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (10 samples, 0.05%)</title><rect x="1020.3" y="453" width="0.6" height="15.0" fill="rgb(239,209,35)" rx="2" ry="2" />
|
|
<text x="1023.29" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (6 samples, 0.03%)</title><rect x="300.8" y="469" width="0.3" height="15.0" fill="rgb(207,178,2)" rx="2" ry="2" />
|
|
<text x="303.75" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (31 samples, 0.15%)</title><rect x="324.2" y="437" width="1.8" height="15.0" fill="rgb(225,165,31)" rx="2" ry="2" />
|
|
<text x="327.17" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (83 samples, 0.41%)</title><rect x="1019.6" y="581" width="4.9" height="15.0" fill="rgb(207,97,21)" rx="2" ry="2" />
|
|
<text x="1022.58" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="30.2" y="661" width="0.1" height="15.0" fill="rgb(208,13,7)" rx="2" ry="2" />
|
|
<text x="33.17" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (29 samples, 0.14%)</title><rect x="586.7" y="389" width="1.7" height="15.0" fill="rgb(218,121,18)" rx="2" ry="2" />
|
|
<text x="589.67" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="484.1" y="533" width="0.2" height="15.0" fill="rgb(237,52,15)" rx="2" ry="2" />
|
|
<text x="487.15" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="621.4" y="453" width="0.1" height="15.0" fill="rgb(247,174,35)" rx="2" ry="2" />
|
|
<text x="624.41" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="392.8" y="613" width="0.2" height="15.0" fill="rgb(251,88,19)" rx="2" ry="2" />
|
|
<text x="395.77" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="413.1" y="597" width="0.1" height="15.0" fill="rgb(225,75,43)" rx="2" ry="2" />
|
|
<text x="416.07" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (53 samples, 0.26%)</title><rect x="964.0" y="709" width="3.1" height="15.0" fill="rgb(224,15,20)" rx="2" ry="2" />
|
|
<text x="967.02" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (3 samples, 0.01%)</title><rect x="560.9" y="453" width="0.2" height="15.0" fill="rgb(237,62,34)" rx="2" ry="2" />
|
|
<text x="563.89" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="975.8" y="501" width="0.3" height="15.0" fill="rgb(241,118,20)" rx="2" ry="2" />
|
|
<text x="978.75" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="299.8" y="469" width="0.2" height="15.0" fill="rgb(226,183,38)" rx="2" ry="2" />
|
|
<text x="302.81" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_realloc (33 samples, 0.16%)</title><rect x="100.4" y="693" width="1.9" height="15.0" fill="rgb(251,217,18)" rx="2" ry="2" />
|
|
<text x="103.37" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_cleanse (2 samples, 0.01%)</title><rect x="415.0" y="741" width="0.1" height="15.0" fill="rgb(240,150,20)" rx="2" ry="2" />
|
|
<text x="417.95" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (41 samples, 0.20%)</title><rect x="964.0" y="661" width="2.4" height="15.0" fill="rgb(252,90,10)" rx="2" ry="2" />
|
|
<text x="967.02" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="329.2" y="245" width="0.5" height="15.0" fill="rgb(253,208,48)" rx="2" ry="2" />
|
|
<text x="332.19" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpLinkNode (4 samples, 0.02%)</title><rect x="1028.3" y="581" width="0.2" height="15.0" fill="rgb(249,170,43)" rx="2" ry="2" />
|
|
<text x="1031.25" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="555.7" y="373" width="0.1" height="15.0" fill="rgb(213,225,1)" rx="2" ry="2" />
|
|
<text x="558.70" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ptep_clear_flush (21 samples, 0.10%)</title><rect x="707.7" y="325" width="1.3" height="15.0" fill="rgb(239,115,54)" rx="2" ry="2" />
|
|
<text x="710.71" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (4 samples, 0.02%)</title><rect x="1019.6" y="437" width="0.2" height="15.0" fill="rgb(234,101,14)" rx="2" ry="2" />
|
|
<text x="1022.58" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (4 samples, 0.02%)</title><rect x="328.9" y="181" width="0.2" height="15.0" fill="rgb(229,44,43)" rx="2" ry="2" />
|
|
<text x="331.89" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="977.5" y="549" width="0.1" height="15.0" fill="rgb(249,11,46)" rx="2" ry="2" />
|
|
<text x="980.52" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CKRF::SearchMem (220 samples, 1.10%)</title><rect x="30.3" y="725" width="13.0" height="15.0" fill="rgb(224,44,11)" rx="2" ry="2" />
|
|
<text x="33.29" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (193 samples, 0.96%)</title><rect x="367.8" y="581" width="11.4" height="15.0" fill="rgb(241,169,38)" rx="2" ry="2" />
|
|
<text x="370.82" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="383.6" y="437" width="0.1" height="15.0" fill="rgb(228,130,52)" rx="2" ry="2" />
|
|
<text x="386.57" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (9 samples, 0.04%)</title><rect x="334.8" y="437" width="0.6" height="15.0" fill="rgb(224,60,21)" rx="2" ry="2" />
|
|
<text x="337.85" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (10 samples, 0.05%)</title><rect x="393.5" y="613" width="0.6" height="15.0" fill="rgb(231,96,26)" rx="2" ry="2" />
|
|
<text x="396.54" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (32 samples, 0.16%)</title><rect x="328.1" y="277" width="1.9" height="15.0" fill="rgb(209,136,15)" rx="2" ry="2" />
|
|
<text x="331.06" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_overlay_udp (12 samples, 0.06%)</title><rect x="490.6" y="629" width="0.7" height="15.0" fill="rgb(224,49,30)" rx="2" ry="2" />
|
|
<text x="493.58" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (16 samples, 0.08%)</title><rect x="1023.4" y="421" width="1.0" height="15.0" fill="rgb(207,229,35)" rx="2" ry="2" />
|
|
<text x="1026.42" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS@plt (2 samples, 0.01%)</title><rect x="826.2" y="485" width="0.1" height="15.0" fill="rgb(238,192,32)" rx="2" ry="2" />
|
|
<text x="829.22" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="1022.8" y="421" width="0.1" height="15.0" fill="rgb(249,96,23)" rx="2" ry="2" />
|
|
<text x="1025.77" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (26 samples, 0.13%)</title><rect x="777.0" y="453" width="1.5" height="15.0" fill="rgb(248,223,39)" rx="2" ry="2" />
|
|
<text x="779.96" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (83 samples, 0.41%)</title><rect x="1019.6" y="597" width="4.9" height="15.0" fill="rgb(211,32,23)" rx="2" ry="2" />
|
|
<text x="1022.58" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="299.7" y="485" width="0.1" height="15.0" fill="rgb(224,177,24)" rx="2" ry="2" />
|
|
<text x="302.69" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="393.2" y="485" width="0.1" height="15.0" fill="rgb(229,198,2)" rx="2" ry="2" />
|
|
<text x="396.19" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="640.2" y="437" width="0.1" height="15.0" fill="rgb(212,53,50)" rx="2" ry="2" />
|
|
<text x="643.17" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (122 samples, 0.61%)</title><rect x="560.7" y="485" width="7.2" height="15.0" fill="rgb(214,215,30)" rx="2" ry="2" />
|
|
<text x="563.71" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (20 samples, 0.10%)</title><rect x="564.0" y="357" width="1.2" height="15.0" fill="rgb(238,221,17)" rx="2" ry="2" />
|
|
<text x="567.02" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (1,334 samples, 6.67%)</title><rect x="305.1" y="629" width="78.6" height="15.0" fill="rgb(209,67,12)" rx="2" ry="2" />
|
|
<text x="308.06" y="639.5" >dealipv4t..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="298.3" y="389" width="0.1" height="15.0" fill="rgb(236,17,32)" rx="2" ry="2" />
|
|
<text x="301.28" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="987.3" y="533" width="0.1" height="15.0" fill="rgb(233,87,32)" rx="2" ry="2" />
|
|
<text x="990.26" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="967.8" y="453" width="0.1" height="15.0" fill="rgb(244,64,7)" rx="2" ry="2" />
|
|
<text x="970.79" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (30 samples, 0.15%)</title><rect x="563.8" y="421" width="1.8" height="15.0" fill="rgb(254,83,1)" rx="2" ry="2" />
|
|
<text x="566.78" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (3 samples, 0.01%)</title><rect x="629.1" y="437" width="0.2" height="15.0" fill="rgb(254,108,28)" rx="2" ry="2" />
|
|
<text x="632.14" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (48 samples, 0.24%)</title><rect x="385.3" y="453" width="2.9" height="15.0" fill="rgb(231,137,35)" rx="2" ry="2" />
|
|
<text x="388.34" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (15 samples, 0.07%)</title><rect x="561.8" y="373" width="0.9" height="15.0" fill="rgb(242,225,51)" rx="2" ry="2" />
|
|
<text x="564.83" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (5 samples, 0.02%)</title><rect x="1019.8" y="341" width="0.3" height="15.0" fill="rgb(249,64,33)" rx="2" ry="2" />
|
|
<text x="1022.82" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new (9 samples, 0.04%)</title><rect x="1001.6" y="613" width="0.5" height="15.0" fill="rgb(227,2,51)" rx="2" ry="2" />
|
|
<text x="1004.59" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>o2i_ECPublicKey (2 samples, 0.01%)</title><rect x="585.8" y="357" width="0.1" height="15.0" fill="rgb(252,133,47)" rx="2" ry="2" />
|
|
<text x="588.78" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (8 samples, 0.04%)</title><rect x="464.0" y="597" width="0.5" height="15.0" fill="rgb(228,50,19)" rx="2" ry="2" />
|
|
<text x="467.03" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (3 samples, 0.01%)</title><rect x="298.0" y="357" width="0.2" height="15.0" fill="rgb(242,5,46)" rx="2" ry="2" />
|
|
<text x="300.98" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (5 samples, 0.02%)</title><rect x="271.1" y="693" width="0.3" height="15.0" fill="rgb(225,221,23)" rx="2" ry="2" />
|
|
<text x="274.08" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (7 samples, 0.03%)</title><rect x="563.4" y="309" width="0.4" height="15.0" fill="rgb(238,224,24)" rx="2" ry="2" />
|
|
<text x="566.37" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_signature_get_byid (7 samples, 0.03%)</title><rect x="550.3" y="421" width="0.4" height="15.0" fill="rgb(238,13,13)" rx="2" ry="2" />
|
|
<text x="553.27" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_avx (2 samples, 0.01%)</title><rect x="831.5" y="469" width="0.1" height="15.0" fill="rgb(205,1,33)" rx="2" ry="2" />
|
|
<text x="834.53" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="298.8" y="197" width="0.1" height="15.0" fill="rgb(210,100,15)" rx="2" ry="2" />
|
|
<text x="301.81" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="1002.5" y="549" width="0.3" height="15.0" fill="rgb(252,32,24)" rx="2" ry="2" />
|
|
<text x="1005.54" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1005.7" y="581" width="0.2" height="15.0" fill="rgb(237,194,44)" rx="2" ry="2" />
|
|
<text x="1008.72" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (3 samples, 0.01%)</title><rect x="918.7" y="597" width="0.2" height="15.0" fill="rgb(252,118,21)" rx="2" ry="2" />
|
|
<text x="921.71" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (6 samples, 0.03%)</title><rect x="1007.1" y="613" width="0.3" height="15.0" fill="rgb(240,117,24)" rx="2" ry="2" />
|
|
<text x="1010.08" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="984.2" y="613" width="0.2" height="15.0" fill="rgb(207,163,29)" rx="2" ry="2" />
|
|
<text x="987.25" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (75 samples, 0.37%)</title><rect x="160.4" y="693" width="4.4" height="15.0" fill="rgb(253,221,32)" rx="2" ry="2" />
|
|
<text x="163.42" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (10 samples, 0.05%)</title><rect x="819.7" y="421" width="0.6" height="15.0" fill="rgb(253,61,3)" rx="2" ry="2" />
|
|
<text x="822.67" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (3 samples, 0.01%)</title><rect x="414.1" y="629" width="0.1" height="15.0" fill="rgb(220,93,41)" rx="2" ry="2" />
|
|
<text x="417.07" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_region_compile (72 samples, 0.36%)</title><rect x="49.5" y="725" width="4.3" height="15.0" fill="rgb(222,118,7)" rx="2" ry="2" />
|
|
<text x="52.52" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (5 samples, 0.02%)</title><rect x="45.7" y="741" width="0.3" height="15.0" fill="rgb(217,106,50)" rx="2" ry="2" />
|
|
<text x="48.75" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_entry (10 samples, 0.05%)</title><rect x="978.0" y="501" width="0.6" height="15.0" fill="rgb(242,140,37)" rx="2" ry="2" />
|
|
<text x="981.00" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (4 samples, 0.02%)</title><rect x="298.2" y="405" width="0.2" height="15.0" fill="rgb(220,92,41)" rx="2" ry="2" />
|
|
<text x="301.16" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (8 samples, 0.04%)</title><rect x="987.4" y="533" width="0.4" height="15.0" fill="rgb(218,28,16)" rx="2" ry="2" />
|
|
<text x="990.38" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (4 samples, 0.02%)</title><rect x="968.0" y="565" width="0.3" height="15.0" fill="rgb(236,188,41)" rx="2" ry="2" />
|
|
<text x="971.03" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (227 samples, 1.13%)</title><rect x="255.2" y="709" width="13.3" height="15.0" fill="rgb(233,131,33)" rx="2" ry="2" />
|
|
<text x="258.15" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (13 samples, 0.06%)</title><rect x="531.0" y="453" width="0.8" height="15.0" fill="rgb(231,26,42)" rx="2" ry="2" />
|
|
<text x="533.98" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="394.2" y="613" width="0.1" height="15.0" fill="rgb(211,193,30)" rx="2" ry="2" />
|
|
<text x="397.19" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="331.3" y="261" width="0.1" height="15.0" fill="rgb(210,54,1)" rx="2" ry="2" />
|
|
<text x="334.31" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeResponseEntityPresent (4 samples, 0.02%)</title><rect x="323.9" y="485" width="0.3" height="15.0" fill="rgb(233,29,24)" rx="2" ry="2" />
|
|
<text x="326.94" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="1020.3" y="357" width="0.5" height="15.0" fill="rgb(210,147,24)" rx="2" ry="2" />
|
|
<text x="1023.29" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="973.0" y="581" width="0.3" height="15.0" fill="rgb(234,26,23)" rx="2" ry="2" />
|
|
<text x="976.04" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="978.9" y="357" width="0.1" height="15.0" fill="rgb(244,203,51)" rx="2" ry="2" />
|
|
<text x="981.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (6 samples, 0.03%)</title><rect x="975.8" y="629" width="0.3" height="15.0" fill="rgb(223,201,7)" rx="2" ry="2" />
|
|
<text x="978.75" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ftp.so] (4 samples, 0.02%)</title><rect x="591.3" y="437" width="0.3" height="15.0" fill="rgb(220,46,5)" rx="2" ry="2" />
|
|
<text x="594.33" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (9 samples, 0.04%)</title><rect x="394.4" y="517" width="0.5" height="15.0" fill="rgb(243,156,29)" rx="2" ry="2" />
|
|
<text x="397.37" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="313.2" y="293" width="0.2" height="15.0" fill="rgb(247,172,27)" rx="2" ry="2" />
|
|
<text x="316.20" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="983.8" y="597" width="0.2" height="15.0" fill="rgb(230,29,5)" rx="2" ry="2" />
|
|
<text x="986.84" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_by_id_raw (7 samples, 0.03%)</title><rect x="194.6" y="709" width="0.4" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
|
|
<text x="197.63" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (3 samples, 0.01%)</title><rect x="395.0" y="581" width="0.1" height="15.0" fill="rgb(236,151,46)" rx="2" ry="2" />
|
|
<text x="397.96" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (10 samples, 0.05%)</title><rect x="393.5" y="645" width="0.6" height="15.0" fill="rgb(224,206,28)" rx="2" ry="2" />
|
|
<text x="396.54" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (12 samples, 0.06%)</title><rect x="966.4" y="693" width="0.7" height="15.0" fill="rgb(219,118,13)" rx="2" ry="2" />
|
|
<text x="969.43" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (6 samples, 0.03%)</title><rect x="560.2" y="437" width="0.3" height="15.0" fill="rgb(254,119,26)" rx="2" ry="2" />
|
|
<text x="563.18" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithClientHello (10 samples, 0.05%)</title><rect x="412.5" y="629" width="0.6" height="15.0" fill="rgb(219,22,54)" rx="2" ry="2" />
|
|
<text x="415.48" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CIPMaskIndex::Find (95 samples, 0.47%)</title><rect x="283.6" y="725" width="5.7" height="15.0" fill="rgb(208,84,23)" rx="2" ry="2" />
|
|
<text x="286.65" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>finish_task_switch (93 samples, 0.46%)</title><rect x="1184.2" y="661" width="5.5" height="15.0" fill="rgb(214,145,12)" rx="2" ry="2" />
|
|
<text x="1187.22" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (6 samples, 0.03%)</title><rect x="865.7" y="661" width="0.4" height="15.0" fill="rgb(254,226,36)" rx="2" ry="2" />
|
|
<text x="868.74" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (193 samples, 0.96%)</title><rect x="367.8" y="597" width="11.4" height="15.0" fill="rgb(241,81,45)" rx="2" ry="2" />
|
|
<text x="370.82" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (6 samples, 0.03%)</title><rect x="785.4" y="453" width="0.4" height="15.0" fill="rgb(212,26,7)" rx="2" ry="2" />
|
|
<text x="788.40" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeRequestEntityPresent (3 samples, 0.01%)</title><rect x="565.6" y="437" width="0.2" height="15.0" fill="rgb(228,217,19)" rx="2" ry="2" />
|
|
<text x="568.61" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>quic_protocol_identify (6 samples, 0.03%)</title><rect x="831.0" y="485" width="0.4" height="15.0" fill="rgb(239,99,49)" rx="2" ry="2" />
|
|
<text x="834.00" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_releaseSslStream (5 samples, 0.02%)</title><rect x="590.6" y="469" width="0.3" height="15.0" fill="rgb(212,157,18)" rx="2" ry="2" />
|
|
<text x="593.56" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (4 samples, 0.02%)</title><rect x="671.3" y="453" width="0.2" height="15.0" fill="rgb(252,208,0)" rx="2" ry="2" />
|
|
<text x="674.26" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (87 samples, 0.43%)</title><rect x="551.0" y="421" width="5.1" height="15.0" fill="rgb(214,202,37)" rx="2" ry="2" />
|
|
<text x="553.98" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (30 samples, 0.15%)</title><rect x="968.3" y="597" width="1.7" height="15.0" fill="rgb(241,227,30)" rx="2" ry="2" />
|
|
<text x="971.26" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::dec_reference_count (2 samples, 0.01%)</title><rect x="182.6" y="693" width="0.1" height="15.0" fill="rgb(211,156,52)" rx="2" ry="2" />
|
|
<text x="185.60" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="556.3" y="421" width="0.3" height="15.0" fill="rgb(220,211,44)" rx="2" ry="2" />
|
|
<text x="559.29" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (3 samples, 0.01%)</title><rect x="334.1" y="501" width="0.2" height="15.0" fill="rgb(219,197,11)" rx="2" ry="2" />
|
|
<text x="337.14" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (4 samples, 0.02%)</title><rect x="556.4" y="405" width="0.2" height="15.0" fill="rgb(221,210,28)" rx="2" ry="2" />
|
|
<text x="559.41" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (13 samples, 0.06%)</title><rect x="973.3" y="549" width="0.7" height="15.0" fill="rgb(229,53,13)" rx="2" ry="2" />
|
|
<text x="976.28" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (5 samples, 0.02%)</title><rect x="969.5" y="533" width="0.3" height="15.0" fill="rgb(253,102,0)" rx="2" ry="2" />
|
|
<text x="972.50" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CZipFormat::AddDocData (2 samples, 0.01%)</title><rect x="563.3" y="341" width="0.1" height="15.0" fill="rgb(225,194,24)" rx="2" ry="2" />
|
|
<text x="566.25" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="1028.3" y="469" width="0.2" height="15.0" fill="rgb(208,134,1)" rx="2" ry="2" />
|
|
<text x="1031.25" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="1027.7" y="549" width="0.1" height="15.0" fill="rgb(206,222,32)" rx="2" ry="2" />
|
|
<text x="1030.66" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[capture_packet_plug.so] (6 samples, 0.03%)</title><rect x="379.2" y="517" width="0.4" height="15.0" fill="rgb(225,210,27)" rx="2" ry="2" />
|
|
<text x="382.21" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (29 samples, 0.14%)</title><rect x="825.5" y="501" width="1.7" height="15.0" fill="rgb(228,44,13)" rx="2" ry="2" />
|
|
<text x="828.45" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="368.8" y="437" width="0.1" height="15.0" fill="rgb(205,149,34)" rx="2" ry="2" />
|
|
<text x="371.83" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[capture_packet_plug.so] (85 samples, 0.42%)</title><rect x="729.1" y="485" width="5.0" height="15.0" fill="rgb(236,190,39)" rx="2" ry="2" />
|
|
<text x="732.13" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::get_mapped_id (111 samples, 0.55%)</title><rect x="176.1" y="677" width="6.5" height="15.0" fill="rgb(213,28,17)" rx="2" ry="2" />
|
|
<text x="179.05" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (385 samples, 1.92%)</title><rect x="619.3" y="533" width="22.8" height="15.0" fill="rgb(221,155,49)" rx="2" ry="2" />
|
|
<text x="622.35" y="543.5" >s..</text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="560.5" y="469" width="0.2" height="15.0" fill="rgb(218,170,5)" rx="2" ry="2" />
|
|
<text x="563.54" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (30 samples, 0.15%)</title><rect x="1024.5" y="421" width="1.7" height="15.0" fill="rgb(232,11,27)" rx="2" ry="2" />
|
|
<text x="1027.48" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (35 samples, 0.17%)</title><rect x="296.4" y="501" width="2.1" height="15.0" fill="rgb(220,169,41)" rx="2" ry="2" />
|
|
<text x="299.45" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_dump_sig (20 samples, 0.10%)</title><rect x="558.8" y="453" width="1.2" height="15.0" fill="rgb(247,132,2)" rx="2" ry="2" />
|
|
<text x="561.83" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wangw_build_session_key_from_raw_ipv4@plt (2 samples, 0.01%)</title><rect x="622.0" y="453" width="0.1" height="15.0" fill="rgb(212,152,32)" rx="2" ry="2" />
|
|
<text x="625.00" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (8 samples, 0.04%)</title><rect x="1019.8" y="389" width="0.5" height="15.0" fill="rgb(212,224,37)" rx="2" ry="2" />
|
|
<text x="1022.82" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (3 samples, 0.01%)</title><rect x="850.3" y="421" width="0.2" height="15.0" fill="rgb(210,109,20)" rx="2" ry="2" />
|
|
<text x="853.35" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>quic_protocol_identify (3 samples, 0.01%)</title><rect x="1026.5" y="501" width="0.2" height="15.0" fill="rgb(248,162,32)" rx="2" ry="2" />
|
|
<text x="1029.54" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="276.2" y="693" width="0.4" height="15.0" fill="rgb(249,92,41)" rx="2" ry="2" />
|
|
<text x="279.15" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (35 samples, 0.17%)</title><rect x="1024.5" y="517" width="2.0" height="15.0" fill="rgb(235,142,47)" rx="2" ry="2" />
|
|
<text x="1027.48" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (138 samples, 0.69%)</title><rect x="326.0" y="501" width="8.1" height="15.0" fill="rgb(244,29,52)" rx="2" ry="2" />
|
|
<text x="329.00" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="323.9" y="421" width="0.3" height="15.0" fill="rgb(252,215,49)" rx="2" ry="2" />
|
|
<text x="326.94" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="327.6" y="117" width="0.4" height="15.0" fill="rgb(239,187,7)" rx="2" ry="2" />
|
|
<text x="330.59" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_CreateObject (2 samples, 0.01%)</title><rect x="984.0" y="629" width="0.1" height="15.0" fill="rgb(216,13,36)" rx="2" ry="2" />
|
|
<text x="986.95" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (29 samples, 0.14%)</title><rect x="362.9" y="469" width="1.7" height="15.0" fill="rgb(230,61,24)" rx="2" ry="2" />
|
|
<text x="365.93" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_nat_linkinfo (3 samples, 0.01%)</title><rect x="325.8" y="357" width="0.2" height="15.0" fill="rgb(253,159,54)" rx="2" ry="2" />
|
|
<text x="328.82" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="919.1" y="501" width="0.3" height="15.0" fill="rgb(228,213,5)" rx="2" ry="2" />
|
|
<text x="922.13" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (10 samples, 0.05%)</title><rect x="792.7" y="421" width="0.5" height="15.0" fill="rgb(237,182,16)" rx="2" ry="2" />
|
|
<text x="795.66" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (9 samples, 0.04%)</title><rect x="860.6" y="533" width="0.5" height="15.0" fill="rgb(254,147,45)" rx="2" ry="2" />
|
|
<text x="863.61" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (3 samples, 0.01%)</title><rect x="330.2" y="421" width="0.2" height="15.0" fill="rgb(232,59,32)" rx="2" ry="2" />
|
|
<text x="333.19" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (5 samples, 0.02%)</title><rect x="915.0" y="645" width="0.3" height="15.0" fill="rgb(245,157,3)" rx="2" ry="2" />
|
|
<text x="918.00" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CIPv4Match::search_rule (5 samples, 0.02%)</title><rect x="213.5" y="693" width="0.2" height="15.0" fill="rgb(233,14,19)" rx="2" ry="2" />
|
|
<text x="216.45" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[librulescan.so.2.2] (2 samples, 0.01%)</title><rect x="216.5" y="693" width="0.1" height="15.0" fill="rgb(207,17,31)" rx="2" ry="2" />
|
|
<text x="219.52" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="991.1" y="581" width="0.1" height="15.0" fill="rgb(225,45,45)" rx="2" ry="2" />
|
|
<text x="994.09" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (2 samples, 0.01%)</title><rect x="1020.8" y="389" width="0.1" height="15.0" fill="rgb(245,94,39)" rx="2" ry="2" />
|
|
<text x="1023.76" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_mod_inverse (2 samples, 0.01%)</title><rect x="585.2" y="277" width="0.1" height="15.0" fill="rgb(228,85,43)" rx="2" ry="2" />
|
|
<text x="588.19" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (3 samples, 0.01%)</title><rect x="390.7" y="501" width="0.2" height="15.0" fill="rgb(207,22,34)" rx="2" ry="2" />
|
|
<text x="393.71" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (125 samples, 0.62%)</title><rect x="1019.3" y="677" width="7.4" height="15.0" fill="rgb(224,156,22)" rx="2" ry="2" />
|
|
<text x="1022.35" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (3 samples, 0.01%)</title><rect x="1028.5" y="613" width="0.2" height="15.0" fill="rgb(215,41,6)" rx="2" ry="2" />
|
|
<text x="1031.49" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (16 samples, 0.08%)</title><rect x="734.1" y="469" width="1.0" height="15.0" fill="rgb(222,164,44)" rx="2" ry="2" />
|
|
<text x="737.14" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (37 samples, 0.18%)</title><rect x="557.8" y="469" width="2.2" height="15.0" fill="rgb(227,126,19)" rx="2" ry="2" />
|
|
<text x="560.82" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[librulescan.so.2.2] (8 samples, 0.04%)</title><rect x="29.8" y="709" width="0.5" height="15.0" fill="rgb(235,41,14)" rx="2" ry="2" />
|
|
<text x="32.82" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (48 samples, 0.24%)</title><rect x="327.1" y="405" width="2.9" height="15.0" fill="rgb(221,63,7)" rx="2" ry="2" />
|
|
<text x="330.12" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,334 samples, 6.67%)</title><rect x="305.1" y="613" width="78.6" height="15.0" fill="rgb(207,67,24)" rx="2" ry="2" />
|
|
<text x="308.06" y="623.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="546.0" y="309" width="0.1" height="15.0" fill="rgb(226,52,53)" rx="2" ry="2" />
|
|
<text x="548.97" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>DNS_UDP_ENTRY (2 samples, 0.01%)</title><rect x="825.1" y="517" width="0.1" height="15.0" fill="rgb(211,184,17)" rx="2" ry="2" />
|
|
<text x="828.10" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (10 samples, 0.05%)</title><rect x="966.4" y="581" width="0.6" height="15.0" fill="rgb(241,96,35)" rx="2" ry="2" />
|
|
<text x="969.43" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="301.2" y="485" width="0.1" height="15.0" fill="rgb(235,149,21)" rx="2" ry="2" />
|
|
<text x="304.22" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CZipFormat::AddOneSection (2 samples, 0.01%)</title><rect x="563.3" y="325" width="0.1" height="15.0" fill="rgb(251,15,39)" rx="2" ry="2" />
|
|
<text x="566.25" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="591.4" y="405" width="0.2" height="15.0" fill="rgb(245,71,47)" rx="2" ry="2" />
|
|
<text x="594.45" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (5 samples, 0.02%)</title><rect x="387.5" y="293" width="0.3" height="15.0" fill="rgb(225,92,11)" rx="2" ry="2" />
|
|
<text x="390.47" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="918.8" y="565" width="0.1" height="15.0" fill="rgb(249,106,1)" rx="2" ry="2" />
|
|
<text x="921.77" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_add (70 samples, 0.35%)</title><rect x="676.2" y="501" width="4.1" height="15.0" fill="rgb(218,226,27)" rx="2" ry="2" />
|
|
<text x="679.15" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (7 samples, 0.03%)</title><rect x="530.3" y="517" width="0.4" height="15.0" fill="rgb(235,76,24)" rx="2" ry="2" />
|
|
<text x="533.33" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CUNZIP::fn_iUnGZ (2 samples, 0.01%)</title><rect x="563.3" y="309" width="0.1" height="15.0" fill="rgb(249,218,31)" rx="2" ry="2" />
|
|
<text x="566.25" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (26 samples, 0.13%)</title><rect x="377.3" y="389" width="1.6" height="15.0" fill="rgb(213,24,45)" rx="2" ry="2" />
|
|
<text x="380.32" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (11 samples, 0.05%)</title><rect x="392.1" y="549" width="0.6" height="15.0" fill="rgb(205,164,38)" rx="2" ry="2" />
|
|
<text x="395.07" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (5 samples, 0.02%)</title><rect x="300.5" y="517" width="0.3" height="15.0" fill="rgb(235,210,21)" rx="2" ry="2" />
|
|
<text x="303.46" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_create (2 samples, 0.01%)</title><rect x="332.9" y="373" width="0.1" height="15.0" fill="rgb(245,171,45)" rx="2" ry="2" />
|
|
<text x="335.90" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_MONT_CTX_set (5 samples, 0.02%)</title><rect x="585.0" y="293" width="0.3" height="15.0" fill="rgb(230,206,20)" rx="2" ry="2" />
|
|
<text x="588.02" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="583.1" y="229" width="0.1" height="15.0" fill="rgb(249,202,44)" rx="2" ry="2" />
|
|
<text x="586.07" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_SSL_PLUG_ENTRY (14 samples, 0.07%)</title><rect x="586.8" y="341" width="0.9" height="15.0" fill="rgb(239,1,12)" rx="2" ry="2" />
|
|
<text x="589.85" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[capture_packet_plug.so] (4 samples, 0.02%)</title><rect x="1013.9" y="725" width="0.3" height="15.0" fill="rgb(253,172,8)" rx="2" ry="2" />
|
|
<text x="1016.92" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (9 samples, 0.04%)</title><rect x="560.0" y="469" width="0.5" height="15.0" fill="rgb(249,151,19)" rx="2" ry="2" />
|
|
<text x="563.01" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="586.1" y="341" width="0.1" height="15.0" fill="rgb(253,131,38)" rx="2" ry="2" />
|
|
<text x="589.08" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (9 samples, 0.04%)</title><rect x="326.3" y="357" width="0.5" height="15.0" fill="rgb(236,4,23)" rx="2" ry="2" />
|
|
<text x="329.29" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="390.2" y="517" width="0.2" height="15.0" fill="rgb(221,47,44)" rx="2" ry="2" />
|
|
<text x="393.24" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_get_ja3_fingerprint (75 samples, 0.37%)</title><rect x="1014.9" y="757" width="4.4" height="15.0" fill="rgb(213,97,2)" rx="2" ry="2" />
|
|
<text x="1017.92" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="300.6" y="469" width="0.2" height="15.0" fill="rgb(246,42,42)" rx="2" ry="2" />
|
|
<text x="303.63" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (3 samples, 0.01%)</title><rect x="369.1" y="437" width="0.1" height="15.0" fill="rgb(221,65,23)" rx="2" ry="2" />
|
|
<text x="372.06" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (72 samples, 0.36%)</title><rect x="846.5" y="453" width="4.2" height="15.0" fill="rgb(245,193,11)" rx="2" ry="2" />
|
|
<text x="849.45" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="982.8" y="629" width="0.2" height="15.0" fill="rgb(241,56,30)" rx="2" ry="2" />
|
|
<text x="985.77" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (9 samples, 0.04%)</title><rect x="413.2" y="629" width="0.6" height="15.0" fill="rgb(211,17,46)" rx="2" ry="2" />
|
|
<text x="416.24" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="545.0" y="405" width="0.1" height="15.0" fill="rgb(226,129,36)" rx="2" ry="2" />
|
|
<text x="547.96" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (256 samples, 1.28%)</title><rect x="341.7" y="421" width="15.2" height="15.0" fill="rgb(234,59,48)" rx="2" ry="2" />
|
|
<text x="344.75" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>packet_io_hook_forward (18 samples, 0.09%)</title><rect x="866.4" y="677" width="1.1" height="15.0" fill="rgb(216,164,49)" rx="2" ry="2" />
|
|
<text x="869.39" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (6 samples, 0.03%)</title><rect x="819.8" y="405" width="0.4" height="15.0" fill="rgb(219,7,29)" rx="2" ry="2" />
|
|
<text x="822.85" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="334.3" y="485" width="0.1" height="15.0" fill="rgb(232,83,41)" rx="2" ry="2" />
|
|
<text x="337.32" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_rwlock_unlock (2 samples, 0.01%)</title><rect x="965.0" y="565" width="0.1" height="15.0" fill="rgb(216,123,30)" rx="2" ry="2" />
|
|
<text x="968.02" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_free_default (2 samples, 0.01%)</title><rect x="546.4" y="421" width="0.2" height="15.0" fill="rgb(206,99,5)" rx="2" ry="2" />
|
|
<text x="549.44" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (23 samples, 0.11%)</title><rect x="392.8" y="693" width="1.3" height="15.0" fill="rgb(252,150,24)" rx="2" ry="2" />
|
|
<text x="395.77" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (30 samples, 0.15%)</title><rect x="602.1" y="453" width="1.8" height="15.0" fill="rgb(246,147,38)" rx="2" ry="2" />
|
|
<text x="605.12" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (11 samples, 0.05%)</title><rect x="1006.1" y="645" width="0.7" height="15.0" fill="rgb(248,86,17)" rx="2" ry="2" />
|
|
<text x="1009.13" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (2 samples, 0.01%)</title><rect x="589.4" y="309" width="0.2" height="15.0" fill="rgb(243,77,54)" rx="2" ry="2" />
|
|
<text x="592.44" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (4 samples, 0.02%)</title><rect x="1019.3" y="597" width="0.3" height="15.0" fill="rgb(211,126,12)" rx="2" ry="2" />
|
|
<text x="1022.35" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (924 samples, 4.62%)</title><rect x="724.7" y="517" width="54.5" height="15.0" fill="rgb(252,128,5)" rx="2" ry="2" />
|
|
<text x="727.70" y="527.5" >plugi..</text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="673.0" y="469" width="0.1" height="15.0" fill="rgb(235,202,46)" rx="2" ry="2" />
|
|
<text x="675.97" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (44 samples, 0.22%)</title><rect x="546.6" y="421" width="2.6" height="15.0" fill="rgb(213,25,42)" rx="2" ry="2" />
|
|
<text x="549.62" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (2 samples, 0.01%)</title><rect x="30.2" y="677" width="0.1" height="15.0" fill="rgb(225,14,51)" rx="2" ry="2" />
|
|
<text x="33.17" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (13 samples, 0.06%)</title><rect x="586.9" y="325" width="0.8" height="15.0" fill="rgb(240,89,42)" rx="2" ry="2" />
|
|
<text x="589.90" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>string_search (381 samples, 1.90%)</title><rect x="20.8" y="741" width="22.5" height="15.0" fill="rgb(221,39,42)" rx="2" ry="2" />
|
|
<text x="23.79" y="751.5" >s..</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (358 samples, 1.79%)</title><rect x="619.6" y="501" width="21.2" height="15.0" fill="rgb(244,160,52)" rx="2" ry="2" />
|
|
<text x="622.64" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="842.0" y="501" width="0.1" height="15.0" fill="rgb(238,142,8)" rx="2" ry="2" />
|
|
<text x="844.97" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="393.1" y="581" width="0.2" height="15.0" fill="rgb(213,129,36)" rx="2" ry="2" />
|
|
<text x="396.13" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (4 samples, 0.02%)</title><rect x="670.1" y="485" width="0.2" height="15.0" fill="rgb(225,185,13)" rx="2" ry="2" />
|
|
<text x="673.08" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (5 samples, 0.02%)</title><rect x="304.7" y="533" width="0.3" height="15.0" fill="rgb(253,90,15)" rx="2" ry="2" />
|
|
<text x="307.71" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,658 samples, 8.29%)</title><rect x="296.3" y="741" width="97.8" height="15.0" fill="rgb(220,168,39)" rx="2" ry="2" />
|
|
<text x="299.33" y="751.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (4 samples, 0.02%)</title><rect x="393.7" y="549" width="0.3" height="15.0" fill="rgb(225,15,20)" rx="2" ry="2" />
|
|
<text x="396.72" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="782.8" y="533" width="0.1" height="15.0" fill="rgb(251,142,6)" rx="2" ry="2" />
|
|
<text x="785.80" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (51 samples, 0.25%)</title><rect x="240.4" y="709" width="3.0" height="15.0" fill="rgb(252,124,23)" rx="2" ry="2" />
|
|
<text x="243.41" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_DNS_PLUG_ENTRY (42 samples, 0.21%)</title><rect x="1005.0" y="677" width="2.5" height="15.0" fill="rgb(227,116,53)" rx="2" ry="2" />
|
|
<text x="1008.01" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="980.6" y="501" width="0.2" height="15.0" fill="rgb(222,175,18)" rx="2" ry="2" />
|
|
<text x="983.59" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (3 samples, 0.01%)</title><rect x="316.7" y="341" width="0.2" height="15.0" fill="rgb(253,9,53)" rx="2" ry="2" />
|
|
<text x="319.74" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="301.6" y="469" width="0.1" height="15.0" fill="rgb(218,84,39)" rx="2" ry="2" />
|
|
<text x="304.58" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="834.9" y="501" width="0.1" height="15.0" fill="rgb(240,23,52)" rx="2" ry="2" />
|
|
<text x="837.89" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="367.9" y="309" width="0.7" height="15.0" fill="rgb(224,219,7)" rx="2" ry="2" />
|
|
<text x="370.94" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="299.6" y="389" width="0.1" height="15.0" fill="rgb(206,75,2)" rx="2" ry="2" />
|
|
<text x="302.57" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wangw_ingress_rule_scan (8 samples, 0.04%)</title><rect x="1029.0" y="581" width="0.5" height="15.0" fill="rgb(218,70,31)" rx="2" ry="2" />
|
|
<text x="1032.02" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="637.3" y="421" width="0.2" height="15.0" fill="rgb(226,105,0)" rx="2" ry="2" />
|
|
<text x="640.34" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (9 samples, 0.04%)</title><rect x="584.2" y="341" width="0.5" height="15.0" fill="rgb(254,71,53)" rx="2" ry="2" />
|
|
<text x="587.19" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (49 samples, 0.24%)</title><rect x="385.3" y="517" width="2.9" height="15.0" fill="rgb(223,180,6)" rx="2" ry="2" />
|
|
<text x="388.34" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libwangw.so] (8 samples, 0.04%)</title><rect x="964.7" y="597" width="0.5" height="15.0" fill="rgb(218,119,19)" rx="2" ry="2" />
|
|
<text x="967.72" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__audit_syscall_entry (3 samples, 0.01%)</title><rect x="926.4" y="629" width="0.2" height="15.0" fill="rgb(210,51,30)" rx="2" ry="2" />
|
|
<text x="929.38" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libwangw.so] (4 samples, 0.02%)</title><rect x="981.9" y="613" width="0.2" height="15.0" fill="rgb(207,151,2)" rx="2" ry="2" />
|
|
<text x="984.89" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (6 samples, 0.03%)</title><rect x="549.2" y="421" width="0.4" height="15.0" fill="rgb(223,125,14)" rx="2" ry="2" />
|
|
<text x="552.21" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (49 samples, 0.24%)</title><rect x="1026.8" y="741" width="2.9" height="15.0" fill="rgb(219,48,25)" rx="2" ry="2" />
|
|
<text x="1029.78" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (109 samples, 0.54%)</title><rect x="599.5" y="485" width="6.4" height="15.0" fill="rgb(217,97,8)" rx="2" ry="2" />
|
|
<text x="602.47" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (23 samples, 0.11%)</title><rect x="1011.7" y="725" width="1.3" height="15.0" fill="rgb(222,142,35)" rx="2" ry="2" />
|
|
<text x="1014.68" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="316.5" y="357" width="0.2" height="15.0" fill="rgb(209,116,8)" rx="2" ry="2" />
|
|
<text x="319.50" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_5tuple_get (2 samples, 0.01%)</title><rect x="820.3" y="421" width="0.1" height="15.0" fill="rgb(227,93,23)" rx="2" ry="2" />
|
|
<text x="823.26" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_entry (25 samples, 0.12%)</title><rect x="332.4" y="389" width="1.5" height="15.0" fill="rgb(215,0,50)" rx="2" ry="2" />
|
|
<text x="335.43" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (6,138 samples, 30.68%)</title><rect x="500.8" y="613" width="362.1" height="15.0" fill="rgb(207,173,36)" rx="2" ry="2" />
|
|
<text x="503.78" y="623.5" >eth_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new0 (2 samples, 0.01%)</title><rect x="488.0" y="453" width="0.1" height="15.0" fill="rgb(230,199,7)" rx="2" ry="2" />
|
|
<text x="490.98" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_L7_PROTOCOL_UDP_RAW_ENTRY (2 samples, 0.01%)</title><rect x="810.0" y="517" width="0.1" height="15.0" fill="rgb(207,90,33)" rx="2" ry="2" />
|
|
<text x="813.00" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="981.8" y="501" width="0.1" height="15.0" fill="rgb(235,103,6)" rx="2" ry="2" />
|
|
<text x="984.77" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (3 samples, 0.01%)</title><rect x="820.0" y="389" width="0.2" height="15.0" fill="rgb(246,139,18)" rx="2" ry="2" />
|
|
<text x="823.03" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (3 samples, 0.01%)</title><rect x="326.6" y="325" width="0.2" height="15.0" fill="rgb(241,46,49)" rx="2" ry="2" />
|
|
<text x="329.59" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>QUIC_ENTRY (2 samples, 0.01%)</title><rect x="484.7" y="533" width="0.1" height="15.0" fill="rgb(245,182,47)" rx="2" ry="2" />
|
|
<text x="487.68" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_search (25 samples, 0.12%)</title><rect x="674.6" y="533" width="1.4" height="15.0" fill="rgb(212,56,21)" rx="2" ry="2" />
|
|
<text x="677.56" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="1028.5" y="485" width="0.2" height="15.0" fill="rgb(227,206,40)" rx="2" ry="2" />
|
|
<text x="1031.49" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (7 samples, 0.03%)</title><rect x="669.4" y="453" width="0.4" height="15.0" fill="rgb(235,89,4)" rx="2" ry="2" />
|
|
<text x="672.43" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::search_expr (560 samples, 2.80%)</title><rect x="55.5" y="693" width="33.0" height="15.0" fill="rgb(211,102,47)" rx="2" ry="2" />
|
|
<text x="58.48" y="703.5" >CB..</text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (29 samples, 0.14%)</title><rect x="964.7" y="629" width="1.7" height="15.0" fill="rgb(233,157,22)" rx="2" ry="2" />
|
|
<text x="967.72" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>page_fault (18 samples, 0.09%)</title><rect x="678.7" y="453" width="1.1" height="15.0" fill="rgb(205,51,41)" rx="2" ry="2" />
|
|
<text x="681.75" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (3 samples, 0.01%)</title><rect x="753.5" y="469" width="0.2" height="15.0" fill="rgb(234,165,50)" rx="2" ry="2" />
|
|
<text x="756.49" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="304.3" y="421" width="0.1" height="15.0" fill="rgb(236,18,41)" rx="2" ry="2" />
|
|
<text x="307.29" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (6 samples, 0.03%)</title><rect x="620.4" y="453" width="0.3" height="15.0" fill="rgb(213,40,44)" rx="2" ry="2" />
|
|
<text x="623.35" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (12 samples, 0.06%)</title><rect x="964.0" y="629" width="0.7" height="15.0" fill="rgb(228,212,15)" rx="2" ry="2" />
|
|
<text x="967.02" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (147 samples, 0.73%)</title><rect x="384.0" y="597" width="8.7" height="15.0" fill="rgb(231,46,20)" rx="2" ry="2" />
|
|
<text x="387.04" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (73 samples, 0.36%)</title><rect x="296.4" y="565" width="4.4" height="15.0" fill="rgb(239,9,8)" rx="2" ry="2" />
|
|
<text x="299.45" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_munmap (2 samples, 0.01%)</title><rect x="675.9" y="421" width="0.1" height="15.0" fill="rgb(214,182,26)" rx="2" ry="2" />
|
|
<text x="678.92" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="974.1" y="517" width="0.1" height="15.0" fill="rgb(223,130,29)" rx="2" ry="2" />
|
|
<text x="977.10" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (6 samples, 0.03%)</title><rect x="560.2" y="453" width="0.3" height="15.0" fill="rgb(233,147,51)" rx="2" ry="2" />
|
|
<text x="563.18" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (14 samples, 0.07%)</title><rect x="315.7" y="469" width="0.8" height="15.0" fill="rgb(239,17,2)" rx="2" ry="2" />
|
|
<text x="318.68" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="830.7" y="485" width="0.2" height="15.0" fill="rgb(239,64,40)" rx="2" ry="2" />
|
|
<text x="833.70" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (110 samples, 0.55%)</title><rect x="561.1" y="469" width="6.5" height="15.0" fill="rgb(209,4,7)" rx="2" ry="2" />
|
|
<text x="564.13" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (10 samples, 0.05%)</title><rect x="334.8" y="501" width="0.6" height="15.0" fill="rgb(210,204,17)" rx="2" ry="2" />
|
|
<text x="337.79" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (9 samples, 0.04%)</title><rect x="304.5" y="613" width="0.6" height="15.0" fill="rgb(251,209,6)" rx="2" ry="2" />
|
|
<text x="307.53" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (37 samples, 0.18%)</title><rect x="381.2" y="469" width="2.2" height="15.0" fill="rgb(227,94,27)" rx="2" ry="2" />
|
|
<text x="384.21" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (4 samples, 0.02%)</title><rect x="383.8" y="565" width="0.2" height="15.0" fill="rgb(207,80,1)" rx="2" ry="2" />
|
|
<text x="386.81" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="323.6" y="277" width="0.2" height="15.0" fill="rgb(217,115,17)" rx="2" ry="2" />
|
|
<text x="326.58" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (30 samples, 0.15%)</title><rect x="968.3" y="645" width="1.7" height="15.0" fill="rgb(248,131,22)" rx="2" ry="2" />
|
|
<text x="971.26" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (40 samples, 0.20%)</title><rect x="376.7" y="405" width="2.3" height="15.0" fill="rgb(218,78,33)" rx="2" ry="2" />
|
|
<text x="379.67" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (4 samples, 0.02%)</title><rect x="393.3" y="645" width="0.2" height="15.0" fill="rgb(245,106,43)" rx="2" ry="2" />
|
|
<text x="396.31" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (2 samples, 0.01%)</title><rect x="588.2" y="309" width="0.1" height="15.0" fill="rgb(236,183,15)" rx="2" ry="2" />
|
|
<text x="591.20" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (14 samples, 0.07%)</title><rect x="779.7" y="533" width="0.9" height="15.0" fill="rgb(252,121,30)" rx="2" ry="2" />
|
|
<text x="782.74" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1020.8" y="277" width="0.1" height="15.0" fill="rgb(210,148,27)" rx="2" ry="2" />
|
|
<text x="1023.76" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (3 samples, 0.01%)</title><rect x="586.0" y="373" width="0.2" height="15.0" fill="rgb(253,88,41)" rx="2" ry="2" />
|
|
<text x="589.02" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (13 samples, 0.06%)</title><rect x="531.8" y="485" width="0.7" height="15.0" fill="rgb(243,195,19)" rx="2" ry="2" />
|
|
<text x="534.75" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (34 samples, 0.17%)</title><rect x="486.0" y="421" width="2.0" height="15.0" fill="rgb(244,216,32)" rx="2" ry="2" />
|
|
<text x="488.98" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>STRATUM_ENTRY (5 samples, 0.02%)</title><rect x="1020.9" y="501" width="0.3" height="15.0" fill="rgb(251,27,7)" rx="2" ry="2" />
|
|
<text x="1023.88" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libkni.so] (2 samples, 0.01%)</title><rect x="780.0" y="469" width="0.1" height="15.0" fill="rgb(222,57,53)" rx="2" ry="2" />
|
|
<text x="783.03" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_entry (2 samples, 0.01%)</title><rect x="576.5" y="341" width="0.1" height="15.0" fill="rgb(209,105,8)" rx="2" ry="2" />
|
|
<text x="579.46" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="393.2" y="517" width="0.1" height="15.0" fill="rgb(220,39,48)" rx="2" ry="2" />
|
|
<text x="396.19" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_global_stream_id (3 samples, 0.01%)</title><rect x="786.5" y="533" width="0.1" height="15.0" fill="rgb(227,170,11)" rx="2" ry="2" />
|
|
<text x="789.46" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (17 samples, 0.08%)</title><rect x="296.9" y="373" width="1.0" height="15.0" fill="rgb(208,104,36)" rx="2" ry="2" />
|
|
<text x="299.92" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (4 samples, 0.02%)</title><rect x="1020.9" y="453" width="0.2" height="15.0" fill="rgb(254,205,26)" rx="2" ry="2" />
|
|
<text x="1023.88" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (293 samples, 1.46%)</title><rect x="572.7" y="453" width="17.3" height="15.0" fill="rgb(236,45,26)" rx="2" ry="2" />
|
|
<text x="575.69" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>packet_io_under_ddos_should_bypass (2 samples, 0.01%)</title><rect x="535.3" y="517" width="0.2" height="15.0" fill="rgb(221,132,47)" rx="2" ry="2" />
|
|
<text x="538.35" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="484.6" y="533" width="0.1" height="15.0" fill="rgb(207,145,53)" rx="2" ry="2" />
|
|
<text x="487.56" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (2 samples, 0.01%)</title><rect x="918.4" y="661" width="0.1" height="15.0" fill="rgb(239,154,39)" rx="2" ry="2" />
|
|
<text x="921.36" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (11 samples, 0.05%)</title><rect x="360.3" y="389" width="0.6" height="15.0" fill="rgb(232,150,32)" rx="2" ry="2" />
|
|
<text x="363.27" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="328.3" y="197" width="0.1" height="15.0" fill="rgb(240,213,2)" rx="2" ry="2" />
|
|
<text x="331.30" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (3 samples, 0.01%)</title><rect x="1003.2" y="565" width="0.2" height="15.0" fill="rgb(232,11,6)" rx="2" ry="2" />
|
|
<text x="1006.24" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="328.4" y="245" width="0.1" height="15.0" fill="rgb(205,60,12)" rx="2" ry="2" />
|
|
<text x="331.42" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (4 samples, 0.02%)</title><rect x="973.0" y="533" width="0.3" height="15.0" fill="rgb(226,94,32)" rx="2" ry="2" />
|
|
<text x="976.04" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="383.8" y="501" width="0.2" height="15.0" fill="rgb(254,129,20)" rx="2" ry="2" />
|
|
<text x="386.81" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="830.5" y="469" width="0.1" height="15.0" fill="rgb(222,79,3)" rx="2" ry="2" />
|
|
<text x="833.47" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1020.8" y="293" width="0.1" height="15.0" fill="rgb(243,64,9)" rx="2" ry="2" />
|
|
<text x="1023.76" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>NewDocumentAnalyzer (3 samples, 0.01%)</title><rect x="565.4" y="357" width="0.2" height="15.0" fill="rgb(248,42,50)" rx="2" ry="2" />
|
|
<text x="568.37" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_global_stream_id (4 samples, 0.02%)</title><rect x="461.4" y="613" width="0.2" height="15.0" fill="rgb(249,25,19)" rx="2" ry="2" />
|
|
<text x="464.38" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (4 samples, 0.02%)</title><rect x="1019.3" y="501" width="0.3" height="15.0" fill="rgb(210,40,2)" rx="2" ry="2" />
|
|
<text x="1022.35" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_add (316 samples, 1.58%)</title><rect x="692.8" y="501" width="18.7" height="15.0" fill="rgb(250,102,21)" rx="2" ry="2" />
|
|
<text x="695.85" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (19 samples, 0.09%)</title><rect x="326.0" y="453" width="1.1" height="15.0" fill="rgb(250,29,19)" rx="2" ry="2" />
|
|
<text x="329.00" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (7 samples, 0.03%)</title><rect x="832.8" y="469" width="0.4" height="15.0" fill="rgb(241,188,32)" rx="2" ry="2" />
|
|
<text x="835.83" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="565.4" y="325" width="0.2" height="15.0" fill="rgb(233,104,45)" rx="2" ry="2" />
|
|
<text x="568.37" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="488.2" y="421" width="0.2" height="15.0" fill="rgb(215,173,13)" rx="2" ry="2" />
|
|
<text x="491.22" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (4 samples, 0.02%)</title><rect x="365.3" y="469" width="0.3" height="15.0" fill="rgb(233,12,6)" rx="2" ry="2" />
|
|
<text x="368.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (80 samples, 0.40%)</title><rect x="791.2" y="469" width="4.7" height="15.0" fill="rgb(246,41,2)" rx="2" ry="2" />
|
|
<text x="794.18" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (6 samples, 0.03%)</title><rect x="300.8" y="437" width="0.3" height="15.0" fill="rgb(237,216,24)" rx="2" ry="2" />
|
|
<text x="303.75" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>region_compile (112 samples, 0.56%)</title><rect x="47.2" y="741" width="6.6" height="15.0" fill="rgb(237,42,10)" rx="2" ry="2" />
|
|
<text x="50.16" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (139 samples, 0.69%)</title><rect x="296.3" y="725" width="8.2" height="15.0" fill="rgb(229,176,8)" rx="2" ry="2" />
|
|
<text x="299.33" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (3 samples, 0.01%)</title><rect x="1026.4" y="405" width="0.1" height="15.0" fill="rgb(253,130,27)" rx="2" ry="2" />
|
|
<text x="1029.37" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::get_mapped_id (108 samples, 0.54%)</title><rect x="82.1" y="677" width="6.4" height="15.0" fill="rgb(205,130,20)" rx="2" ry="2" />
|
|
<text x="85.14" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_send_burst (4 samples, 0.02%)</title><rect x="733.5" y="453" width="0.3" height="15.0" fill="rgb(239,13,34)" rx="2" ry="2" />
|
|
<text x="736.55" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (45 samples, 0.22%)</title><rect x="301.8" y="501" width="2.6" height="15.0" fill="rgb(224,147,35)" rx="2" ry="2" />
|
|
<text x="304.76" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (3 samples, 0.01%)</title><rect x="972.6" y="469" width="0.1" height="15.0" fill="rgb(211,3,33)" rx="2" ry="2" />
|
|
<text x="975.57" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_fqdn_plugin_get_N_ex_data (8 samples, 0.04%)</title><rect x="331.0" y="293" width="0.4" height="15.0" fill="rgb(205,111,36)" rx="2" ry="2" />
|
|
<text x="333.95" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="336.3" y="437" width="0.2" height="15.0" fill="rgb(248,50,7)" rx="2" ry="2" />
|
|
<text x="339.26" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (5 samples, 0.02%)</title><rect x="558.5" y="453" width="0.3" height="15.0" fill="rgb(246,74,46)" rx="2" ry="2" />
|
|
<text x="561.53" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_jhash_4words (2 samples, 0.01%)</title><rect x="482.8" y="597" width="0.2" height="15.0" fill="rgb(252,52,1)" rx="2" ry="2" />
|
|
<text x="485.85" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (2 samples, 0.01%)</title><rect x="981.8" y="533" width="0.1" height="15.0" fill="rgb(207,104,14)" rx="2" ry="2" />
|
|
<text x="984.77" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_get (4 samples, 0.02%)</title><rect x="199.3" y="725" width="0.2" height="15.0" fill="rgb(227,118,34)" rx="2" ry="2" />
|
|
<text x="202.29" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="977.6" y="485" width="0.2" height="15.0" fill="rgb(221,72,24)" rx="2" ry="2" />
|
|
<text x="980.64" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_child_id (15 samples, 0.07%)</title><rect x="194.2" y="725" width="0.9" height="15.0" fill="rgb(224,157,26)" rx="2" ry="2" />
|
|
<text x="197.22" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (4 samples, 0.02%)</title><rect x="826.4" y="421" width="0.2" height="15.0" fill="rgb(228,88,10)" rx="2" ry="2" />
|
|
<text x="829.40" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (5 samples, 0.02%)</title><rect x="823.3" y="501" width="0.3" height="15.0" fill="rgb(220,75,33)" rx="2" ry="2" />
|
|
<text x="826.33" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (5 samples, 0.02%)</title><rect x="589.1" y="325" width="0.3" height="15.0" fill="rgb(218,165,25)" rx="2" ry="2" />
|
|
<text x="592.09" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_l_avx (3 samples, 0.01%)</title><rect x="827.5" y="485" width="0.2" height="15.0" fill="rgb(233,217,50)" rx="2" ry="2" />
|
|
<text x="830.52" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (12 samples, 0.06%)</title><rect x="911.5" y="645" width="0.7" height="15.0" fill="rgb(205,71,18)" rx="2" ry="2" />
|
|
<text x="914.52" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (3 samples, 0.01%)</title><rect x="484.9" y="485" width="0.1" height="15.0" fill="rgb(254,98,17)" rx="2" ry="2" />
|
|
<text x="487.86" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="566.6" y="373" width="0.1" height="15.0" fill="rgb(254,26,42)" rx="2" ry="2" />
|
|
<text x="569.61" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_rule_get_ex_data (2 samples, 0.01%)</title><rect x="390.2" y="533" width="0.2" height="15.0" fill="rgb(208,20,24)" rx="2" ry="2" />
|
|
<text x="393.24" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (953 samples, 4.76%)</title><rect x="305.1" y="549" width="56.2" height="15.0" fill="rgb(235,193,15)" rx="2" ry="2" />
|
|
<text x="308.06" y="559.5" >plugi..</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (436 samples, 2.18%)</title><rect x="335.6" y="533" width="25.7" height="15.0" fill="rgb(228,147,18)" rx="2" ry="2" />
|
|
<text x="338.56" y="543.5" >t..</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="394.4" y="565" width="0.5" height="15.0" fill="rgb(211,37,7)" rx="2" ry="2" />
|
|
<text x="397.37" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (50 samples, 0.25%)</title><rect x="301.6" y="613" width="2.9" height="15.0" fill="rgb(205,224,13)" rx="2" ry="2" />
|
|
<text x="304.58" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (24 samples, 0.12%)</title><rect x="563.9" y="389" width="1.4" height="15.0" fill="rgb(211,20,6)" rx="2" ry="2" />
|
|
<text x="566.90" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>DNS_UDP_ENTRY (36 samples, 0.18%)</title><rect x="793.4" y="453" width="2.1" height="15.0" fill="rgb(250,120,40)" rx="2" ry="2" />
|
|
<text x="796.42" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (6 samples, 0.03%)</title><rect x="1004.1" y="613" width="0.3" height="15.0" fill="rgb(215,223,54)" rx="2" ry="2" />
|
|
<text x="1007.07" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_location (8 samples, 0.04%)</title><rect x="832.4" y="469" width="0.4" height="15.0" fill="rgb(225,57,2)" rx="2" ry="2" />
|
|
<text x="835.35" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="671.6" y="389" width="0.1" height="15.0" fill="rgb(251,172,12)" rx="2" ry="2" />
|
|
<text x="674.61" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="566.5" y="293" width="0.1" height="15.0" fill="rgb(240,168,22)" rx="2" ry="2" />
|
|
<text x="569.49" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (21 samples, 0.10%)</title><rect x="242.2" y="693" width="1.2" height="15.0" fill="rgb(218,156,44)" rx="2" ry="2" />
|
|
<text x="245.18" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="368.8" y="389" width="0.1" height="15.0" fill="rgb(214,176,37)" rx="2" ry="2" />
|
|
<text x="371.83" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::dec_reference_count (3 samples, 0.01%)</title><rect x="54.5" y="709" width="0.2" height="15.0" fill="rgb(241,1,26)" rx="2" ry="2" />
|
|
<text x="57.48" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (2 samples, 0.01%)</title><rect x="314.9" y="357" width="0.1" height="15.0" fill="rgb(253,82,49)" rx="2" ry="2" />
|
|
<text x="317.85" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pbe_uevent_cleanup_table (2 samples, 0.01%)</title><rect x="314.7" y="357" width="0.1" height="15.0" fill="rgb(208,52,47)" rx="2" ry="2" />
|
|
<text x="317.67" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (14 samples, 0.07%)</title><rect x="1028.7" y="661" width="0.8" height="15.0" fill="rgb(249,119,29)" rx="2" ry="2" />
|
|
<text x="1031.67" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (8 samples, 0.04%)</title><rect x="983.1" y="565" width="0.5" height="15.0" fill="rgb(229,207,28)" rx="2" ry="2" />
|
|
<text x="986.13" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (45 samples, 0.22%)</title><rect x="301.8" y="485" width="2.6" height="15.0" fill="rgb(218,227,6)" rx="2" ry="2" />
|
|
<text x="304.76" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="316.5" y="437" width="0.2" height="15.0" fill="rgb(253,125,32)" rx="2" ry="2" />
|
|
<text x="319.50" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>llist_add_batch (6 samples, 0.03%)</title><rect x="679.0" y="245" width="0.4" height="15.0" fill="rgb(237,89,2)" rx="2" ry="2" />
|
|
<text x="682.04" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (2 samples, 0.01%)</title><rect x="378.9" y="389" width="0.1" height="15.0" fill="rgb(209,121,40)" rx="2" ry="2" />
|
|
<text x="381.91" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_put (2 samples, 0.01%)</title><rect x="607.0" y="469" width="0.1" height="15.0" fill="rgb(214,186,51)" rx="2" ry="2" />
|
|
<text x="610.02" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509_NAME_get_index_by_OBJ (3 samples, 0.01%)</title><rect x="584.0" y="373" width="0.1" height="15.0" fill="rgb(247,158,5)" rx="2" ry="2" />
|
|
<text x="586.96" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (15 samples, 0.07%)</title><rect x="367.8" y="357" width="0.9" height="15.0" fill="rgb(217,89,7)" rx="2" ry="2" />
|
|
<text x="370.82" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (8 samples, 0.04%)</title><rect x="559.5" y="421" width="0.5" height="15.0" fill="rgb(243,181,38)" rx="2" ry="2" />
|
|
<text x="562.53" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (4 samples, 0.02%)</title><rect x="790.3" y="485" width="0.2" height="15.0" fill="rgb(250,44,50)" rx="2" ry="2" />
|
|
<text x="793.30" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="320.4" y="293" width="0.1" height="15.0" fill="rgb(251,220,15)" rx="2" ry="2" />
|
|
<text x="323.40" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (14 samples, 0.07%)</title><rect x="977.8" y="629" width="0.8" height="15.0" fill="rgb(225,0,46)" rx="2" ry="2" />
|
|
<text x="980.76" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="914.3" y="597" width="0.2" height="15.0" fill="rgb(226,3,45)" rx="2" ry="2" />
|
|
<text x="917.29" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_strcpy (2 samples, 0.01%)</title><rect x="333.7" y="325" width="0.1" height="15.0" fill="rgb(250,12,38)" rx="2" ry="2" />
|
|
<text x="336.67" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (21 samples, 0.10%)</title><rect x="794.1" y="309" width="1.3" height="15.0" fill="rgb(226,59,31)" rx="2" ry="2" />
|
|
<text x="797.13" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (3 samples, 0.01%)</title><rect x="583.0" y="277" width="0.2" height="15.0" fill="rgb(228,45,7)" rx="2" ry="2" />
|
|
<text x="586.01" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (33 samples, 0.16%)</title><rect x="793.5" y="405" width="2.0" height="15.0" fill="rgb(252,162,53)" rx="2" ry="2" />
|
|
<text x="796.54" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (21 samples, 0.10%)</title><rect x="965.2" y="501" width="1.2" height="15.0" fill="rgb(214,40,18)" rx="2" ry="2" />
|
|
<text x="968.20" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (8 samples, 0.04%)</title><rect x="464.7" y="581" width="0.5" height="15.0" fill="rgb(251,109,40)" rx="2" ry="2" />
|
|
<text x="467.74" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (39 samples, 0.19%)</title><rect x="986.5" y="645" width="2.4" height="15.0" fill="rgb(242,124,46)" rx="2" ry="2" />
|
|
<text x="989.55" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (4 samples, 0.02%)</title><rect x="985.4" y="613" width="0.2" height="15.0" fill="rgb(213,159,41)" rx="2" ry="2" />
|
|
<text x="988.37" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (4 samples, 0.02%)</title><rect x="671.0" y="453" width="0.3" height="15.0" fill="rgb(236,49,43)" rx="2" ry="2" />
|
|
<text x="674.02" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="1028.0" y="437" width="0.1" height="15.0" fill="rgb(241,51,6)" rx="2" ry="2" />
|
|
<text x="1030.96" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1006.0" y="629" width="0.1" height="15.0" fill="rgb(233,177,38)" rx="2" ry="2" />
|
|
<text x="1009.02" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="301.5" y="453" width="0.1" height="15.0" fill="rgb(217,44,15)" rx="2" ry="2" />
|
|
<text x="304.46" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>STRATUM_ENTRY (2 samples, 0.01%)</title><rect x="299.7" y="517" width="0.1" height="15.0" fill="rgb(219,172,26)" rx="2" ry="2" />
|
|
<text x="302.69" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="385.2" y="469" width="0.1" height="15.0" fill="rgb(233,9,0)" rx="2" ry="2" />
|
|
<text x="388.22" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (56 samples, 0.28%)</title><rect x="815.8" y="437" width="3.3" height="15.0" fill="rgb(233,29,17)" rx="2" ry="2" />
|
|
<text x="818.84" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (15 samples, 0.07%)</title><rect x="367.8" y="421" width="0.9" height="15.0" fill="rgb(209,135,36)" rx="2" ry="2" />
|
|
<text x="370.82" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="975.6" y="757" width="0.2" height="15.0" fill="rgb(218,20,52)" rx="2" ry="2" />
|
|
<text x="978.58" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (7 samples, 0.03%)</title><rect x="1022.9" y="469" width="0.4" height="15.0" fill="rgb(240,206,0)" rx="2" ry="2" />
|
|
<text x="1025.89" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithClientHello (2 samples, 0.01%)</title><rect x="980.5" y="517" width="0.1" height="15.0" fill="rgb(213,15,27)" rx="2" ry="2" />
|
|
<text x="983.47" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="786.1" y="485" width="0.2" height="15.0" fill="rgb(235,97,18)" rx="2" ry="2" />
|
|
<text x="789.11" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="1005.5" y="645" width="0.5" height="15.0" fill="rgb(212,18,29)" rx="2" ry="2" />
|
|
<text x="1008.48" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>region_compile@plt (2 samples, 0.01%)</title><rect x="274.3" y="741" width="0.1" height="15.0" fill="rgb(241,84,1)" rx="2" ry="2" />
|
|
<text x="277.33" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_nanosleep (88 samples, 0.44%)</title><rect x="920.5" y="645" width="5.2" height="15.0" fill="rgb(244,149,37)" rx="2" ry="2" />
|
|
<text x="923.54" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1022.8" y="469" width="0.1" height="15.0" fill="rgb(245,169,3)" rx="2" ry="2" />
|
|
<text x="1025.77" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (3 samples, 0.01%)</title><rect x="671.6" y="421" width="0.1" height="15.0" fill="rgb(244,26,47)" rx="2" ry="2" />
|
|
<text x="674.55" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="301.6" y="549" width="0.1" height="15.0" fill="rgb(241,221,3)" rx="2" ry="2" />
|
|
<text x="304.58" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (105 samples, 0.52%)</title><rect x="869.5" y="693" width="6.2" height="15.0" fill="rgb(207,43,11)" rx="2" ry="2" />
|
|
<text x="872.52" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (10 samples, 0.05%)</title><rect x="964.0" y="581" width="0.6" height="15.0" fill="rgb(221,132,21)" rx="2" ry="2" />
|
|
<text x="967.02" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (50 samples, 0.25%)</title><rect x="316.7" y="485" width="2.9" height="15.0" fill="rgb(248,202,40)" rx="2" ry="2" />
|
|
<text x="319.68" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (123 samples, 0.61%)</title><rect x="307.8" y="405" width="7.2" height="15.0" fill="rgb(211,74,1)" rx="2" ry="2" />
|
|
<text x="310.77" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="330.0" y="197" width="0.2" height="15.0" fill="rgb(229,173,40)" rx="2" ry="2" />
|
|
<text x="333.01" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (123 samples, 0.61%)</title><rect x="307.8" y="437" width="7.2" height="15.0" fill="rgb(253,50,44)" rx="2" ry="2" />
|
|
<text x="310.77" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_polling_all_entry (271 samples, 1.35%)</title><rect x="947.9" y="693" width="15.9" height="15.0" fill="rgb(235,202,20)" rx="2" ry="2" />
|
|
<text x="950.85" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_TCP_PACKET_ENTRY (399 samples, 1.99%)</title><rect x="725.8" y="501" width="23.6" height="15.0" fill="rgb(208,28,23)" rx="2" ry="2" />
|
|
<text x="728.82" y="511.5" >C..</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (16 samples, 0.08%)</title><rect x="412.2" y="709" width="1.0" height="15.0" fill="rgb(243,116,17)" rx="2" ry="2" />
|
|
<text x="415.24" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_toppar_enq_msg (2 samples, 0.01%)</title><rect x="358.1" y="437" width="0.2" height="15.0" fill="rgb(227,225,23)" rx="2" ry="2" />
|
|
<text x="361.15" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (9 samples, 0.04%)</title><rect x="824.6" y="485" width="0.5" height="15.0" fill="rgb(242,147,4)" rx="2" ry="2" />
|
|
<text x="827.57" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (8 samples, 0.04%)</title><rect x="555.5" y="405" width="0.4" height="15.0" fill="rgb(239,149,54)" rx="2" ry="2" />
|
|
<text x="558.46" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpReqResHeader (3 samples, 0.01%)</title><rect x="393.1" y="645" width="0.2" height="15.0" fill="rgb(211,212,7)" rx="2" ry="2" />
|
|
<text x="396.13" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="914.8" y="645" width="0.1" height="15.0" fill="rgb(249,83,26)" rx="2" ry="2" />
|
|
<text x="917.76" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>syscall_slow_exit_work (10 samples, 0.05%)</title><rect x="925.7" y="645" width="0.6" height="15.0" fill="rgb(223,42,34)" rx="2" ry="2" />
|
|
<text x="928.73" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (88 samples, 0.44%)</title><rect x="592.3" y="453" width="5.2" height="15.0" fill="rgb(231,39,23)" rx="2" ry="2" />
|
|
<text x="595.33" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (12 samples, 0.06%)</title><rect x="630.5" y="421" width="0.7" height="15.0" fill="rgb(241,90,39)" rx="2" ry="2" />
|
|
<text x="633.50" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="976.6" y="485" width="0.4" height="15.0" fill="rgb(238,102,27)" rx="2" ry="2" />
|
|
<text x="979.64" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (5 samples, 0.02%)</title><rect x="561.2" y="341" width="0.3" height="15.0" fill="rgb(230,97,38)" rx="2" ry="2" />
|
|
<text x="564.24" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (19 samples, 0.09%)</title><rect x="326.0" y="421" width="1.1" height="15.0" fill="rgb(249,224,9)" rx="2" ry="2" />
|
|
<text x="329.00" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (3 samples, 0.01%)</title><rect x="590.0" y="453" width="0.1" height="15.0" fill="rgb(244,93,13)" rx="2" ry="2" />
|
|
<text x="592.97" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="801.6" y="485" width="0.1" height="15.0" fill="rgb(223,197,20)" rx="2" ry="2" />
|
|
<text x="804.56" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (17 samples, 0.08%)</title><rect x="1023.4" y="549" width="1.0" height="15.0" fill="rgb(248,163,22)" rx="2" ry="2" />
|
|
<text x="1026.42" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (42 samples, 0.21%)</title><rect x="709.0" y="469" width="2.4" height="15.0" fill="rgb(247,82,16)" rx="2" ry="2" />
|
|
<text x="711.95" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (33 samples, 0.16%)</title><rect x="317.0" y="341" width="1.9" height="15.0" fill="rgb(247,196,43)" rx="2" ry="2" />
|
|
<text x="319.97" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (10 samples, 0.05%)</title><rect x="413.8" y="677" width="0.6" height="15.0" fill="rgb(225,53,52)" rx="2" ry="2" />
|
|
<text x="416.77" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="323.5" y="293" width="0.1" height="15.0" fill="rgb(247,85,16)" rx="2" ry="2" />
|
|
<text x="326.46" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="328.9" y="197" width="0.2" height="15.0" fill="rgb(225,76,46)" rx="2" ry="2" />
|
|
<text x="331.89" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CIntervalMatch::search_rule (27 samples, 0.13%)</title><rect x="165.8" y="709" width="1.6" height="15.0" fill="rgb(253,168,12)" rx="2" ry="2" />
|
|
<text x="168.85" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (19 samples, 0.09%)</title><rect x="821.3" y="469" width="1.1" height="15.0" fill="rgb(215,151,12)" rx="2" ry="2" />
|
|
<text x="824.26" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (7 samples, 0.03%)</title><rect x="531.3" y="421" width="0.5" height="15.0" fill="rgb(209,15,4)" rx="2" ry="2" />
|
|
<text x="534.34" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (35 samples, 0.17%)</title><rect x="247.3" y="693" width="2.0" height="15.0" fill="rgb(248,47,1)" rx="2" ry="2" />
|
|
<text x="250.25" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (3 samples, 0.01%)</title><rect x="621.4" y="469" width="0.1" height="15.0" fill="rgb(215,138,50)" rx="2" ry="2" />
|
|
<text x="624.35" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="967.9" y="549" width="0.1" height="15.0" fill="rgb(232,176,7)" rx="2" ry="2" />
|
|
<text x="970.91" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_start_range_ns (10 samples, 0.05%)</title><rect x="921.5" y="597" width="0.6" height="15.0" fill="rgb(232,91,6)" rx="2" ry="2" />
|
|
<text x="924.54" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="535.8" y="501" width="0.3" height="15.0" fill="rgb(241,177,50)" rx="2" ry="2" />
|
|
<text x="538.76" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (9 samples, 0.04%)</title><rect x="413.2" y="677" width="0.6" height="15.0" fill="rgb(222,21,5)" rx="2" ry="2" />
|
|
<text x="416.24" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_dns_plug.so] (5 samples, 0.02%)</title><rect x="1005.2" y="661" width="0.3" height="15.0" fill="rgb(225,199,25)" rx="2" ry="2" />
|
|
<text x="1008.19" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,064 samples, 5.32%)</title><rect x="305.1" y="597" width="62.7" height="15.0" fill="rgb(249,196,22)" rx="2" ry="2" />
|
|
<text x="308.06" y="607.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_udp_entry (9 samples, 0.04%)</title><rect x="304.5" y="581" width="0.6" height="15.0" fill="rgb(227,91,21)" rx="2" ry="2" />
|
|
<text x="307.53" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (14 samples, 0.07%)</title><rect x="977.8" y="549" width="0.8" height="15.0" fill="rgb(250,72,33)" rx="2" ry="2" />
|
|
<text x="980.76" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="1028.0" y="549" width="0.1" height="15.0" fill="rgb(249,114,15)" rx="2" ry="2" />
|
|
<text x="1030.96" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (4 samples, 0.02%)</title><rect x="620.4" y="421" width="0.2" height="15.0" fill="rgb(230,26,37)" rx="2" ry="2" />
|
|
<text x="623.41" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="581.5" y="277" width="0.2" height="15.0" fill="rgb(225,146,0)" rx="2" ry="2" />
|
|
<text x="584.54" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (9 samples, 0.04%)</title><rect x="304.5" y="629" width="0.6" height="15.0" fill="rgb(254,45,7)" rx="2" ry="2" />
|
|
<text x="307.53" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithCertificateDetail (35 samples, 0.17%)</title><rect x="330.4" y="453" width="2.0" height="15.0" fill="rgb(217,93,50)" rx="2" ry="2" />
|
|
<text x="333.36" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (9 samples, 0.04%)</title><rect x="584.2" y="309" width="0.5" height="15.0" fill="rgb(210,36,19)" rx="2" ry="2" />
|
|
<text x="587.19" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="376.9" y="373" width="0.4" height="15.0" fill="rgb(205,66,0)" rx="2" ry="2" />
|
|
<text x="379.91" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__errno_location (2 samples, 0.01%)</title><rect x="856.1" y="453" width="0.1" height="15.0" fill="rgb(224,107,29)" rx="2" ry="2" />
|
|
<text x="859.13" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (10 samples, 0.05%)</title><rect x="412.5" y="533" width="0.6" height="15.0" fill="rgb(219,51,36)" rx="2" ry="2" />
|
|
<text x="415.48" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (14 samples, 0.07%)</title><rect x="1028.7" y="629" width="0.8" height="15.0" fill="rgb(236,46,36)" rx="2" ry="2" />
|
|
<text x="1031.67" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (5 samples, 0.02%)</title><rect x="380.5" y="469" width="0.3" height="15.0" fill="rgb(242,12,31)" rx="2" ry="2" />
|
|
<text x="383.50" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="393.4" y="517" width="0.1" height="15.0" fill="rgb(236,64,39)" rx="2" ry="2" />
|
|
<text x="396.36" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (30 samples, 0.15%)</title><rect x="1024.5" y="437" width="1.7" height="15.0" fill="rgb(252,150,38)" rx="2" ry="2" />
|
|
<text x="1027.48" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="801.6" y="517" width="0.1" height="15.0" fill="rgb(214,138,41)" rx="2" ry="2" />
|
|
<text x="804.56" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_enc_save (5 samples, 0.02%)</title><rect x="582.2" y="293" width="0.3" height="15.0" fill="rgb(250,174,10)" rx="2" ry="2" />
|
|
<text x="585.19" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[wire_graft_plug.so] (19 samples, 0.09%)</title><rect x="842.6" y="517" width="1.1" height="15.0" fill="rgb(205,192,5)" rx="2" ry="2" />
|
|
<text x="845.62" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new0 (9 samples, 0.04%)</title><rect x="375.8" y="421" width="0.5" height="15.0" fill="rgb(242,127,50)" rx="2" ry="2" />
|
|
<text x="378.79" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__lock_text_start (10 samples, 0.05%)</title><rect x="921.5" y="581" width="0.6" height="15.0" fill="rgb(209,26,20)" rx="2" ry="2" />
|
|
<text x="924.54" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (3 samples, 0.01%)</title><rect x="805.2" y="565" width="0.2" height="15.0" fill="rgb(250,207,47)" rx="2" ry="2" />
|
|
<text x="808.22" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_realloc (4 samples, 0.02%)</title><rect x="987.0" y="517" width="0.2" height="15.0" fill="rgb(235,137,41)" rx="2" ry="2" />
|
|
<text x="989.96" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (63 samples, 0.31%)</title><rect x="388.4" y="565" width="3.7" height="15.0" fill="rgb(218,213,39)" rx="2" ry="2" />
|
|
<text x="391.35" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (9 samples, 0.04%)</title><rect x="103.3" y="693" width="0.5" height="15.0" fill="rgb(216,198,22)" rx="2" ry="2" />
|
|
<text x="106.26" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (3 samples, 0.01%)</title><rect x="981.1" y="485" width="0.1" height="15.0" fill="rgb(238,164,8)" rx="2" ry="2" />
|
|
<text x="984.06" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (51 samples, 0.25%)</title><rect x="967.1" y="725" width="3.1" height="15.0" fill="rgb(222,187,17)" rx="2" ry="2" />
|
|
<text x="970.14" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="379.0" y="405" width="0.1" height="15.0" fill="rgb(230,77,41)" rx="2" ry="2" />
|
|
<text x="382.03" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (28 samples, 0.14%)</title><rect x="363.0" y="453" width="1.6" height="15.0" fill="rgb(238,210,3)" rx="2" ry="2" />
|
|
<text x="365.99" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (36 samples, 0.18%)</title><rect x="812.1" y="453" width="2.1" height="15.0" fill="rgb(242,48,27)" rx="2" ry="2" />
|
|
<text x="815.12" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_scan_by_id (3 samples, 0.01%)</title><rect x="362.3" y="469" width="0.2" height="15.0" fill="rgb(212,85,17)" rx="2" ry="2" />
|
|
<text x="365.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="558.4" y="453" width="0.1" height="15.0" fill="rgb(239,96,13)" rx="2" ry="2" />
|
|
<text x="561.41" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (21 samples, 0.10%)</title><rect x="965.2" y="597" width="1.2" height="15.0" fill="rgb(241,37,39)" rx="2" ry="2" />
|
|
<text x="968.20" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (8 samples, 0.04%)</title><rect x="532.8" y="453" width="0.4" height="15.0" fill="rgb(236,108,18)" rx="2" ry="2" />
|
|
<text x="535.75" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.06%)</title><rect x="797.5" y="533" width="0.8" height="15.0" fill="rgb(233,184,23)" rx="2" ry="2" />
|
|
<text x="800.49" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>record_link_info_entry_raw (6 samples, 0.03%)</title><rect x="608.5" y="485" width="0.3" height="15.0" fill="rgb(228,113,5)" rx="2" ry="2" />
|
|
<text x="611.49" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (3 samples, 0.01%)</title><rect x="566.7" y="405" width="0.2" height="15.0" fill="rgb(212,183,33)" rx="2" ry="2" />
|
|
<text x="569.73" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="1006.0" y="613" width="0.1" height="15.0" fill="rgb(229,66,28)" rx="2" ry="2" />
|
|
<text x="1009.02" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (31 samples, 0.15%)</title><rect x="324.2" y="389" width="1.8" height="15.0" fill="rgb(212,43,11)" rx="2" ry="2" />
|
|
<text x="327.17" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="1014.2" y="581" width="0.1" height="15.0" fill="rgb(220,6,44)" rx="2" ry="2" />
|
|
<text x="1017.22" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeHttpMethod (2 samples, 0.01%)</title><rect x="567.4" y="437" width="0.2" height="15.0" fill="rgb(235,225,47)" rx="2" ry="2" />
|
|
<text x="570.44" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new0 (14 samples, 0.07%)</title><rect x="357.2" y="453" width="0.8" height="15.0" fill="rgb(239,109,20)" rx="2" ry="2" />
|
|
<text x="360.20" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (48 samples, 0.24%)</title><rect x="385.3" y="421" width="2.9" height="15.0" fill="rgb(236,118,49)" rx="2" ry="2" />
|
|
<text x="388.34" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_region_compile (20 samples, 0.10%)</title><rect x="273.1" y="725" width="1.2" height="15.0" fill="rgb(238,211,51)" rx="2" ry="2" />
|
|
<text x="276.15" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcpall_entry (7 samples, 0.03%)</title><rect x="780.1" y="485" width="0.5" height="15.0" fill="rgb(234,151,5)" rx="2" ry="2" />
|
|
<text x="783.15" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="304.4" y="469" width="0.1" height="15.0" fill="rgb(210,70,19)" rx="2" ry="2" />
|
|
<text x="307.41" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_add (292 samples, 1.46%)</title><rect x="694.2" y="485" width="17.2" height="15.0" fill="rgb(224,197,26)" rx="2" ry="2" />
|
|
<text x="697.20" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (5 samples, 0.02%)</title><rect x="795.1" y="293" width="0.3" height="15.0" fill="rgb(213,92,37)" rx="2" ry="2" />
|
|
<text x="798.07" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="368.9" y="437" width="0.2" height="15.0" fill="rgb(233,176,12)" rx="2" ry="2" />
|
|
<text x="371.94" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_ssl_plug.so] (3 samples, 0.01%)</title><rect x="334.1" y="437" width="0.2" height="15.0" fill="rgb(232,95,23)" rx="2" ry="2" />
|
|
<text x="337.14" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="384.9" y="469" width="0.3" height="15.0" fill="rgb(249,115,22)" rx="2" ry="2" />
|
|
<text x="387.87" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (10 samples, 0.05%)</title><rect x="276.6" y="725" width="0.6" height="15.0" fill="rgb(239,228,42)" rx="2" ry="2" />
|
|
<text x="279.63" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (43 samples, 0.21%)</title><rect x="485.4" y="453" width="2.6" height="15.0" fill="rgb(251,174,43)" rx="2" ry="2" />
|
|
<text x="488.44" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithClientHello (3 samples, 0.01%)</title><rect x="1028.5" y="549" width="0.2" height="15.0" fill="rgb(243,12,44)" rx="2" ry="2" />
|
|
<text x="1031.49" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (52 samples, 0.26%)</title><rect x="975.8" y="725" width="3.0" height="15.0" fill="rgb(213,77,36)" rx="2" ry="2" />
|
|
<text x="978.75" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (159 samples, 0.79%)</title><rect x="769.1" y="485" width="9.4" height="15.0" fill="rgb(223,129,27)" rx="2" ry="2" />
|
|
<text x="772.12" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_asn (6 samples, 0.03%)</title><rect x="362.3" y="501" width="0.4" height="15.0" fill="rgb(229,33,15)" rx="2" ry="2" />
|
|
<text x="365.34" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (5 samples, 0.02%)</title><rect x="379.3" y="485" width="0.3" height="15.0" fill="rgb(209,165,53)" rx="2" ry="2" />
|
|
<text x="382.27" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="980.5" y="373" width="0.1" height="15.0" fill="rgb(247,45,48)" rx="2" ry="2" />
|
|
<text x="983.47" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="299.6" y="341" width="0.1" height="15.0" fill="rgb(239,145,1)" rx="2" ry="2" />
|
|
<text x="302.57" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_hit_path_list (4 samples, 0.02%)</title><rect x="1019.6" y="453" width="0.2" height="15.0" fill="rgb(207,52,6)" rx="2" ry="2" />
|
|
<text x="1022.58" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="1020.5" y="197" width="0.1" height="15.0" fill="rgb(240,169,14)" rx="2" ry="2" />
|
|
<text x="1023.47" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (17 samples, 0.08%)</title><rect x="1023.4" y="517" width="1.0" height="15.0" fill="rgb(235,158,12)" rx="2" ry="2" />
|
|
<text x="1026.42" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="566.5" y="261" width="0.1" height="15.0" fill="rgb(216,123,2)" rx="2" ry="2" />
|
|
<text x="569.49" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.01%)</title><rect x="692.7" y="501" width="0.1" height="15.0" fill="rgb(215,113,18)" rx="2" ry="2" />
|
|
<text x="695.67" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (9 samples, 0.04%)</title><rect x="584.2" y="293" width="0.5" height="15.0" fill="rgb(227,172,23)" rx="2" ry="2" />
|
|
<text x="587.19" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::get_mapped_id (55 samples, 0.27%)</title><rect x="224.6" y="661" width="3.2" height="15.0" fill="rgb(224,185,21)" rx="2" ry="2" />
|
|
<text x="227.60" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (3 samples, 0.01%)</title><rect x="315.4" y="373" width="0.2" height="15.0" fill="rgb(236,202,4)" rx="2" ry="2" />
|
|
<text x="318.44" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="786.2" y="469" width="0.1" height="15.0" fill="rgb(247,206,13)" rx="2" ry="2" />
|
|
<text x="789.17" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (7,139 samples, 35.69%)</title><rect x="444.2" y="661" width="421.1" height="15.0" fill="rgb(213,86,37)" rx="2" ry="2" />
|
|
<text x="447.21" y="671.5" >ipv4_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (75 samples, 0.37%)</title><rect x="632.9" y="421" width="4.4" height="15.0" fill="rgb(245,15,23)" rx="2" ry="2" />
|
|
<text x="635.92" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="981.1" y="469" width="0.1" height="15.0" fill="rgb(215,152,25)" rx="2" ry="2" />
|
|
<text x="984.06" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="1028.0" y="469" width="0.1" height="15.0" fill="rgb(211,110,29)" rx="2" ry="2" />
|
|
<text x="1030.96" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_ex_c2i (4 samples, 0.02%)</title><rect x="330.0" y="261" width="0.2" height="15.0" fill="rgb(249,126,53)" rx="2" ry="2" />
|
|
<text x="332.95" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (3 samples, 0.01%)</title><rect x="393.5" y="565" width="0.2" height="15.0" fill="rgb(234,163,4)" rx="2" ry="2" />
|
|
<text x="396.54" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (4 samples, 0.02%)</title><rect x="323.9" y="469" width="0.3" height="15.0" fill="rgb(219,138,4)" rx="2" ry="2" />
|
|
<text x="326.94" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (5 samples, 0.02%)</title><rect x="972.0" y="469" width="0.3" height="15.0" fill="rgb(212,107,32)" rx="2" ry="2" />
|
|
<text x="974.98" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="975.8" y="565" width="0.3" height="15.0" fill="rgb(242,19,41)" rx="2" ry="2" />
|
|
<text x="978.75" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_capture_packet_entry (25 samples, 0.12%)</title><rect x="823.6" y="501" width="1.5" height="15.0" fill="rgb(224,135,14)" rx="2" ry="2" />
|
|
<text x="826.62" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (9 samples, 0.04%)</title><rect x="1010.0" y="565" width="0.5" height="15.0" fill="rgb(215,116,46)" rx="2" ry="2" />
|
|
<text x="1012.97" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithGzipData (4 samples, 0.02%)</title><rect x="565.3" y="389" width="0.3" height="15.0" fill="rgb(252,125,37)" rx="2" ry="2" />
|
|
<text x="568.31" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_add (323 samples, 1.61%)</title><rect x="692.4" y="517" width="19.1" height="15.0" fill="rgb(218,15,41)" rx="2" ry="2" />
|
|
<text x="695.43" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (28 samples, 0.14%)</title><rect x="1024.5" y="389" width="1.6" height="15.0" fill="rgb(230,115,15)" rx="2" ry="2" />
|
|
<text x="1027.48" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (15 samples, 0.07%)</title><rect x="561.8" y="389" width="0.9" height="15.0" fill="rgb(219,26,48)" rx="2" ry="2" />
|
|
<text x="564.83" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (6 samples, 0.03%)</title><rect x="298.2" y="437" width="0.3" height="15.0" fill="rgb(213,166,4)" rx="2" ry="2" />
|
|
<text x="301.16" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_fqdn_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="984.6" y="629" width="0.2" height="15.0" fill="rgb(224,15,16)" rx="2" ry="2" />
|
|
<text x="987.60" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (11 samples, 0.05%)</title><rect x="557.2" y="469" width="0.6" height="15.0" fill="rgb(215,87,54)" rx="2" ry="2" />
|
|
<text x="560.17" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>secondary_startup_64 (2,718 samples, 13.59%)</title><rect x="1029.7" y="757" width="160.3" height="15.0" fill="rgb(214,162,51)" rx="2" ry="2" />
|
|
<text x="1032.67" y="767.5" >secondary_startup_64</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="332.5" y="357" width="0.4" height="15.0" fill="rgb(205,179,0)" rx="2" ry="2" />
|
|
<text x="335.55" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (7 samples, 0.03%)</title><rect x="976.6" y="533" width="0.4" height="15.0" fill="rgb(226,5,34)" rx="2" ry="2" />
|
|
<text x="979.58" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_udp_entry (98 samples, 0.49%)</title><rect x="850.9" y="517" width="5.8" height="15.0" fill="rgb(249,133,41)" rx="2" ry="2" />
|
|
<text x="853.88" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (11 samples, 0.05%)</title><rect x="787.4" y="501" width="0.7" height="15.0" fill="rgb(242,78,7)" rx="2" ry="2" />
|
|
<text x="790.41" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcpall_entry (55 samples, 0.27%)</title><rect x="380.5" y="549" width="3.2" height="15.0" fill="rgb(208,20,35)" rx="2" ry="2" />
|
|
<text x="383.50" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (230 samples, 1.15%)</title><rect x="452.3" y="629" width="13.6" height="15.0" fill="rgb(230,112,27)" rx="2" ry="2" />
|
|
<text x="455.29" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_result_attr_getnext (2 samples, 0.01%)</title><rect x="556.0" y="405" width="0.1" height="15.0" fill="rgb(226,74,47)" rx="2" ry="2" />
|
|
<text x="558.99" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (122 samples, 0.61%)</title><rect x="233.2" y="709" width="7.2" height="15.0" fill="rgb(242,120,50)" rx="2" ry="2" />
|
|
<text x="236.21" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="336.2" y="469" width="0.3" height="15.0" fill="rgb(209,21,23)" rx="2" ry="2" />
|
|
<text x="339.20" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (137 samples, 0.68%)</title><rect x="296.4" y="629" width="8.1" height="15.0" fill="rgb(245,57,34)" rx="2" ry="2" />
|
|
<text x="299.45" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_udp_entry (2 samples, 0.01%)</title><rect x="301.6" y="485" width="0.1" height="15.0" fill="rgb(249,40,36)" rx="2" ry="2" />
|
|
<text x="304.58" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (43 samples, 0.21%)</title><rect x="301.8" y="469" width="2.5" height="15.0" fill="rgb(223,117,3)" rx="2" ry="2" />
|
|
<text x="304.76" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (21 samples, 0.10%)</title><rect x="674.8" y="517" width="1.2" height="15.0" fill="rgb(245,45,26)" rx="2" ry="2" />
|
|
<text x="677.80" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (9 samples, 0.04%)</title><rect x="582.7" y="309" width="0.5" height="15.0" fill="rgb(210,129,5)" rx="2" ry="2" />
|
|
<text x="585.66" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="341.3" y="389" width="0.3" height="15.0" fill="rgb(205,5,19)" rx="2" ry="2" />
|
|
<text x="344.34" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="976.8" y="469" width="0.2" height="15.0" fill="rgb(218,117,5)" rx="2" ry="2" />
|
|
<text x="979.82" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (4 samples, 0.02%)</title><rect x="966.1" y="485" width="0.2" height="15.0" fill="rgb(254,6,5)" rx="2" ry="2" />
|
|
<text x="969.08" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (10 samples, 0.05%)</title><rect x="987.3" y="565" width="0.5" height="15.0" fill="rgb(243,93,50)" rx="2" ry="2" />
|
|
<text x="990.26" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (6 samples, 0.03%)</title><rect x="1007.1" y="629" width="0.3" height="15.0" fill="rgb(252,185,17)" rx="2" ry="2" />
|
|
<text x="1010.08" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="975.8" y="533" width="0.3" height="15.0" fill="rgb(251,96,4)" rx="2" ry="2" />
|
|
<text x="978.75" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_SSL_PLUG_ENTRY (4 samples, 0.02%)</title><rect x="977.8" y="501" width="0.2" height="15.0" fill="rgb(211,216,46)" rx="2" ry="2" />
|
|
<text x="980.76" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="967.8" y="549" width="0.1" height="15.0" fill="rgb(222,63,22)" rx="2" ry="2" />
|
|
<text x="970.79" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="313.6" y="261" width="0.1" height="15.0" fill="rgb(215,30,8)" rx="2" ry="2" />
|
|
<text x="316.55" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="992.4" y="581" width="0.5" height="15.0" fill="rgb(219,71,19)" rx="2" ry="2" />
|
|
<text x="995.45" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FIPS_module_mode (4 samples, 0.02%)</title><rect x="1015.0" y="725" width="0.3" height="15.0" fill="rgb(223,197,16)" rx="2" ry="2" />
|
|
<text x="1018.04" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (29 samples, 0.14%)</title><rect x="107.1" y="677" width="1.7" height="15.0" fill="rgb(240,46,10)" rx="2" ry="2" />
|
|
<text x="110.09" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (7 samples, 0.03%)</title><rect x="976.6" y="549" width="0.4" height="15.0" fill="rgb(224,146,30)" rx="2" ry="2" />
|
|
<text x="979.58" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (2 samples, 0.01%)</title><rect x="394.2" y="645" width="0.1" height="15.0" fill="rgb(236,185,31)" rx="2" ry="2" />
|
|
<text x="397.19" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="1011.1" y="581" width="0.2" height="15.0" fill="rgb(250,154,24)" rx="2" ry="2" />
|
|
<text x="1014.09" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultRegion (2 samples, 0.01%)</title><rect x="566.6" y="405" width="0.1" height="15.0" fill="rgb(215,19,24)" rx="2" ry="2" />
|
|
<text x="569.61" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (29 samples, 0.14%)</title><rect x="584.2" y="373" width="1.7" height="15.0" fill="rgb(230,115,3)" rx="2" ry="2" />
|
|
<text x="587.19" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_ssl_entry (2 samples, 0.01%)</title><rect x="299.6" y="357" width="0.1" height="15.0" fill="rgb(217,81,26)" rx="2" ry="2" />
|
|
<text x="302.57" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (21 samples, 0.10%)</title><rect x="564.0" y="373" width="1.2" height="15.0" fill="rgb(252,0,42)" rx="2" ry="2" />
|
|
<text x="566.96" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (18 samples, 0.09%)</title><rect x="298.5" y="437" width="1.1" height="15.0" fill="rgb(214,7,39)" rx="2" ry="2" />
|
|
<text x="301.51" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (12 samples, 0.06%)</title><rect x="394.2" y="677" width="0.7" height="15.0" fill="rgb(231,174,43)" rx="2" ry="2" />
|
|
<text x="397.19" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (5 samples, 0.02%)</title><rect x="1013.0" y="709" width="0.3" height="15.0" fill="rgb(248,153,10)" rx="2" ry="2" />
|
|
<text x="1016.04" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (13 samples, 0.06%)</title><rect x="973.3" y="517" width="0.7" height="15.0" fill="rgb(235,198,22)" rx="2" ry="2" />
|
|
<text x="976.28" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="1028.3" y="485" width="0.2" height="15.0" fill="rgb(244,137,39)" rx="2" ry="2" />
|
|
<text x="1031.25" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_htable_search (2 samples, 0.01%)</title><rect x="964.7" y="565" width="0.1" height="15.0" fill="rgb(244,201,52)" rx="2" ry="2" />
|
|
<text x="967.72" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (29 samples, 0.14%)</title><rect x="305.1" y="469" width="1.7" height="15.0" fill="rgb(221,37,39)" rx="2" ry="2" />
|
|
<text x="308.06" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_calloc (3 samples, 0.01%)</title><rect x="536.1" y="533" width="0.1" height="15.0" fill="rgb(241,17,46)" rx="2" ry="2" />
|
|
<text x="539.06" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (39 samples, 0.19%)</title><rect x="970.7" y="501" width="2.3" height="15.0" fill="rgb(219,222,40)" rx="2" ry="2" />
|
|
<text x="973.74" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="361.7" y="485" width="0.1" height="15.0" fill="rgb(251,60,23)" rx="2" ry="2" />
|
|
<text x="364.69" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="329.7" y="229" width="0.1" height="15.0" fill="rgb(225,226,28)" rx="2" ry="2" />
|
|
<text x="332.66" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RTP_UDP_ENTRY (2 samples, 0.01%)</title><rect x="827.2" y="517" width="0.1" height="15.0" fill="rgb(234,191,45)" rx="2" ry="2" />
|
|
<text x="830.16" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>EC_GROUP_new_by_curve_name (17 samples, 0.08%)</title><rect x="584.8" y="341" width="1.0" height="15.0" fill="rgb(229,200,9)" rx="2" ry="2" />
|
|
<text x="587.78" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_wp_page (16 samples, 0.08%)</title><rect x="678.9" y="357" width="0.9" height="15.0" fill="rgb(215,114,42)" rx="2" ry="2" />
|
|
<text x="681.87" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (7 samples, 0.03%)</title><rect x="563.4" y="293" width="0.4" height="15.0" fill="rgb(230,182,36)" rx="2" ry="2" />
|
|
<text x="566.37" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (8 samples, 0.04%)</title><rect x="412.5" y="517" width="0.4" height="15.0" fill="rgb(215,48,22)" rx="2" ry="2" />
|
|
<text x="415.48" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (12 samples, 0.06%)</title><rect x="531.8" y="469" width="0.7" height="15.0" fill="rgb(222,72,49)" rx="2" ry="2" />
|
|
<text x="534.81" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_create (3 samples, 0.01%)</title><rect x="986.4" y="645" width="0.1" height="15.0" fill="rgb(230,17,0)" rx="2" ry="2" />
|
|
<text x="989.37" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="975.8" y="405" width="0.3" height="15.0" fill="rgb(222,196,23)" rx="2" ry="2" />
|
|
<text x="978.75" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (5 samples, 0.02%)</title><rect x="1026.2" y="453" width="0.3" height="15.0" fill="rgb(218,155,46)" rx="2" ry="2" />
|
|
<text x="1029.25" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (91 samples, 0.45%)</title><rect x="795.9" y="565" width="5.4" height="15.0" fill="rgb(219,83,46)" rx="2" ry="2" />
|
|
<text x="798.90" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (48 samples, 0.24%)</title><rect x="327.1" y="373" width="2.9" height="15.0" fill="rgb(207,139,25)" rx="2" ry="2" />
|
|
<text x="330.12" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_increment (242 samples, 1.21%)</title><rect x="694.7" y="469" width="14.3" height="15.0" fill="rgb(209,19,35)" rx="2" ry="2" />
|
|
<text x="697.68" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (14 samples, 0.07%)</title><rect x="561.9" y="357" width="0.8" height="15.0" fill="rgb(218,110,11)" rx="2" ry="2" />
|
|
<text x="564.89" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_OBJECT_new (2 samples, 0.01%)</title><rect x="328.5" y="245" width="0.2" height="15.0" fill="rgb(206,195,41)" rx="2" ry="2" />
|
|
<text x="331.54" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (14 samples, 0.07%)</title><rect x="1028.7" y="645" width="0.8" height="15.0" fill="rgb(205,167,9)" rx="2" ry="2" />
|
|
<text x="1031.67" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (6 samples, 0.03%)</title><rect x="914.2" y="629" width="0.4" height="15.0" fill="rgb(232,197,43)" rx="2" ry="2" />
|
|
<text x="917.23" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (15 samples, 0.07%)</title><rect x="367.8" y="437" width="0.9" height="15.0" fill="rgb(222,152,10)" rx="2" ry="2" />
|
|
<text x="370.82" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (112 samples, 0.56%)</title><rect x="920.0" y="677" width="6.6" height="15.0" fill="rgb(222,194,52)" rx="2" ry="2" />
|
|
<text x="923.01" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (9 samples, 0.04%)</title><rect x="304.5" y="597" width="0.6" height="15.0" fill="rgb(238,24,48)" rx="2" ry="2" />
|
|
<text x="307.53" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="392.8" y="597" width="0.2" height="15.0" fill="rgb(206,105,18)" rx="2" ry="2" />
|
|
<text x="395.83" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_check (95 samples, 0.47%)</title><rect x="681.7" y="501" width="5.6" height="15.0" fill="rgb(233,118,16)" rx="2" ry="2" />
|
|
<text x="684.70" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_obj2nid (4 samples, 0.02%)</title><rect x="583.5" y="373" width="0.3" height="15.0" fill="rgb(222,167,22)" rx="2" ry="2" />
|
|
<text x="586.54" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (73 samples, 0.36%)</title><rect x="296.4" y="533" width="4.4" height="15.0" fill="rgb(223,169,15)" rx="2" ry="2" />
|
|
<text x="299.45" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_offload (16 samples, 0.08%)</title><rect x="545.6" y="437" width="1.0" height="15.0" fill="rgb(210,19,16)" rx="2" ry="2" />
|
|
<text x="548.61" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (1,354 samples, 6.77%)</title><rect x="539.5" y="517" width="79.8" height="15.0" fill="rgb(235,227,35)" rx="2" ry="2" />
|
|
<text x="542.48" y="527.5" >stream_pr..</text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (32 samples, 0.16%)</title><rect x="672.4" y="501" width="1.9" height="15.0" fill="rgb(249,167,17)" rx="2" ry="2" />
|
|
<text x="675.44" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="977.6" y="517" width="0.2" height="15.0" fill="rgb(206,127,22)" rx="2" ry="2" />
|
|
<text x="980.64" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (17 samples, 0.08%)</title><rect x="386.8" y="341" width="1.0" height="15.0" fill="rgb(222,67,20)" rx="2" ry="2" />
|
|
<text x="389.82" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (161 samples, 0.80%)</title><rect x="316.5" y="533" width="9.5" height="15.0" fill="rgb(251,116,25)" rx="2" ry="2" />
|
|
<text x="319.50" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (26 samples, 0.13%)</title><rect x="359.4" y="405" width="1.5" height="15.0" fill="rgb(249,127,38)" rx="2" ry="2" />
|
|
<text x="362.39" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="963.8" y="501" width="0.2" height="15.0" fill="rgb(247,7,25)" rx="2" ry="2" />
|
|
<text x="966.84" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="1020.3" y="325" width="0.5" height="15.0" fill="rgb(243,94,49)" rx="2" ry="2" />
|
|
<text x="1023.29" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_tripleMatching (18 samples, 0.09%)</title><rect x="561.7" y="421" width="1.1" height="15.0" fill="rgb(228,181,37)" rx="2" ry="2" />
|
|
<text x="564.72" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (121 samples, 0.60%)</title><rect x="1019.6" y="629" width="7.1" height="15.0" fill="rgb(227,27,30)" rx="2" ry="2" />
|
|
<text x="1022.58" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="371.0" y="389" width="0.2" height="15.0" fill="rgb(251,94,7)" rx="2" ry="2" />
|
|
<text x="374.01" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (143 samples, 0.71%)</title><rect x="967.1" y="757" width="8.5" height="15.0" fill="rgb(231,35,21)" rx="2" ry="2" />
|
|
<text x="970.14" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (6 samples, 0.03%)</title><rect x="301.1" y="565" width="0.4" height="15.0" fill="rgb(251,31,15)" rx="2" ry="2" />
|
|
<text x="304.11" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="463.3" y="597" width="0.1" height="15.0" fill="rgb(236,205,15)" rx="2" ry="2" />
|
|
<text x="466.32" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (35 samples, 0.17%)</title><rect x="296.4" y="453" width="2.1" height="15.0" fill="rgb(240,173,7)" rx="2" ry="2" />
|
|
<text x="299.45" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="565.0" y="293" width="0.2" height="15.0" fill="rgb(240,88,49)" rx="2" ry="2" />
|
|
<text x="567.96" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (55 samples, 0.27%)</title><rect x="380.5" y="533" width="3.2" height="15.0" fill="rgb(213,173,23)" rx="2" ry="2" />
|
|
<text x="383.50" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1026.5" y="517" width="0.2" height="15.0" fill="rgb(216,193,2)" rx="2" ry="2" />
|
|
<text x="1029.54" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (27 samples, 0.13%)</title><rect x="1008.9" y="581" width="1.6" height="15.0" fill="rgb(205,186,23)" rx="2" ry="2" />
|
|
<text x="1011.91" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (5 samples, 0.02%)</title><rect x="1013.0" y="725" width="0.3" height="15.0" fill="rgb(225,146,31)" rx="2" ry="2" />
|
|
<text x="1016.04" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="1020.8" y="373" width="0.1" height="15.0" fill="rgb(228,186,51)" rx="2" ry="2" />
|
|
<text x="1023.76" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (16 samples, 0.08%)</title><rect x="306.8" y="437" width="0.9" height="15.0" fill="rgb(212,113,0)" rx="2" ry="2" />
|
|
<text x="309.77" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="565.6" y="341" width="0.1" height="15.0" fill="rgb(217,187,34)" rx="2" ry="2" />
|
|
<text x="568.61" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4,629 samples, 23.14%)</title><rect x="509.9" y="565" width="273.0" height="15.0" fill="rgb(229,74,4)" rx="2" ry="2" />
|
|
<text x="512.87" y="575.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcpall_entry (30 samples, 0.15%)</title><rect x="638.9" y="485" width="1.7" height="15.0" fill="rgb(245,193,9)" rx="2" ry="2" />
|
|
<text x="641.87" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_make_hash (11 samples, 0.05%)</title><rect x="664.5" y="533" width="0.6" height="15.0" fill="rgb(253,43,47)" rx="2" ry="2" />
|
|
<text x="667.47" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (48 samples, 0.24%)</title><rect x="327.1" y="309" width="2.9" height="15.0" fill="rgb(248,81,44)" rx="2" ry="2" />
|
|
<text x="330.12" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (187 samples, 0.93%)</title><rect x="952.6" y="661" width="11.1" height="15.0" fill="rgb(243,10,47)" rx="2" ry="2" />
|
|
<text x="955.63" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (5 samples, 0.02%)</title><rect x="562.3" y="293" width="0.3" height="15.0" fill="rgb(242,209,26)" rx="2" ry="2" />
|
|
<text x="565.31" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="985.4" y="597" width="0.2" height="15.0" fill="rgb(246,1,8)" rx="2" ry="2" />
|
|
<text x="988.37" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="827.3" y="469" width="0.2" height="15.0" fill="rgb(206,45,21)" rx="2" ry="2" />
|
|
<text x="830.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_destroy (3 samples, 0.01%)</title><rect x="671.1" y="421" width="0.2" height="15.0" fill="rgb(215,54,40)" rx="2" ry="2" />
|
|
<text x="674.08" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify_udp_v4 (59 samples, 0.29%)</title><rect x="801.7" y="565" width="3.5" height="15.0" fill="rgb(225,192,33)" rx="2" ry="2" />
|
|
<text x="804.68" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (13 samples, 0.06%)</title><rect x="297.2" y="357" width="0.7" height="15.0" fill="rgb(214,168,41)" rx="2" ry="2" />
|
|
<text x="300.15" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="393.1" y="565" width="0.2" height="15.0" fill="rgb(236,36,37)" rx="2" ry="2" />
|
|
<text x="396.13" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (8 samples, 0.04%)</title><rect x="587.7" y="325" width="0.5" height="15.0" fill="rgb(228,173,49)" rx="2" ry="2" />
|
|
<text x="590.73" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MAIL_TCP_ENTRY (12 samples, 0.06%)</title><rect x="567.9" y="485" width="0.7" height="15.0" fill="rgb(244,176,46)" rx="2" ry="2" />
|
|
<text x="570.91" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (8 samples, 0.04%)</title><rect x="276.2" y="757" width="0.4" height="15.0" fill="rgb(252,175,13)" rx="2" ry="2" />
|
|
<text x="279.15" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_page_fault (32 samples, 0.16%)</title><rect x="707.1" y="437" width="1.9" height="15.0" fill="rgb(224,61,48)" rx="2" ry="2" />
|
|
<text x="710.06" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (11 samples, 0.05%)</title><rect x="315.0" y="421" width="0.7" height="15.0" fill="rgb(219,165,53)" rx="2" ry="2" />
|
|
<text x="318.03" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (87 samples, 0.43%)</title><rect x="296.4" y="597" width="5.2" height="15.0" fill="rgb(244,136,8)" rx="2" ry="2" />
|
|
<text x="299.45" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (3 samples, 0.01%)</title><rect x="818.3" y="373" width="0.1" height="15.0" fill="rgb(251,184,5)" rx="2" ry="2" />
|
|
<text x="821.26" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="1028.5" y="453" width="0.2" height="15.0" fill="rgb(224,2,51)" rx="2" ry="2" />
|
|
<text x="1031.49" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (3 samples, 0.01%)</title><rect x="543.7" y="453" width="0.2" height="15.0" fill="rgb(241,179,40)" rx="2" ry="2" />
|
|
<text x="546.73" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MD5_Update (2 samples, 0.01%)</title><rect x="1015.3" y="741" width="0.1" height="15.0" fill="rgb(248,215,12)" rx="2" ry="2" />
|
|
<text x="1018.28" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (6 samples, 0.03%)</title><rect x="672.1" y="453" width="0.3" height="15.0" fill="rgb(236,57,28)" rx="2" ry="2" />
|
|
<text x="675.08" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_destroy (2 samples, 0.01%)</title><rect x="918.8" y="581" width="0.1" height="15.0" fill="rgb(213,96,21)" rx="2" ry="2" />
|
|
<text x="921.77" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="319.2" y="293" width="0.3" height="15.0" fill="rgb(214,229,53)" rx="2" ry="2" />
|
|
<text x="322.22" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (9 samples, 0.04%)</title><rect x="984.1" y="645" width="0.5" height="15.0" fill="rgb(252,10,47)" rx="2" ry="2" />
|
|
<text x="987.07" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (14 samples, 0.07%)</title><rect x="826.3" y="485" width="0.9" height="15.0" fill="rgb(230,105,16)" rx="2" ry="2" />
|
|
<text x="829.34" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (6 samples, 0.03%)</title><rect x="975.8" y="581" width="0.3" height="15.0" fill="rgb(219,193,17)" rx="2" ry="2" />
|
|
<text x="978.75" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="319.1" y="325" width="0.5" height="15.0" fill="rgb(250,216,50)" rx="2" ry="2" />
|
|
<text x="322.10" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (3 samples, 0.01%)</title><rect x="1028.0" y="421" width="0.1" height="15.0" fill="rgb(214,153,47)" rx="2" ry="2" />
|
|
<text x="1030.96" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="842.0" y="485" width="0.1" height="15.0" fill="rgb(206,101,49)" rx="2" ry="2" />
|
|
<text x="844.97" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_get_platform_opt (12 samples, 0.06%)</title><rect x="778.5" y="485" width="0.7" height="15.0" fill="rgb(238,57,31)" rx="2" ry="2" />
|
|
<text x="781.50" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_rwlock_rdlock@plt (2 samples, 0.01%)</title><rect x="637.5" y="421" width="0.1" height="15.0" fill="rgb(253,25,8)" rx="2" ry="2" />
|
|
<text x="640.46" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="298.5" y="373" width="1.0" height="15.0" fill="rgb(211,9,18)" rx="2" ry="2" />
|
|
<text x="301.51" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (6 samples, 0.03%)</title><rect x="316.1" y="437" width="0.4" height="15.0" fill="rgb(208,168,30)" rx="2" ry="2" />
|
|
<text x="319.15" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_STAT_UDP_ADD (4 samples, 0.02%)</title><rect x="810.2" y="501" width="0.2" height="15.0" fill="rgb(213,129,1)" rx="2" ry="2" />
|
|
<text x="813.17" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (4 samples, 0.02%)</title><rect x="333.6" y="357" width="0.2" height="15.0" fill="rgb(239,165,52)" rx="2" ry="2" />
|
|
<text x="336.55" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>record_link_info_entry_raw (5 samples, 0.02%)</title><rect x="843.8" y="517" width="0.3" height="15.0" fill="rgb(225,14,27)" rx="2" ry="2" />
|
|
<text x="846.80" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (55 samples, 0.27%)</title><rect x="978.9" y="693" width="3.2" height="15.0" fill="rgb(231,223,45)" rx="2" ry="2" />
|
|
<text x="981.88" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (10 samples, 0.05%)</title><rect x="978.0" y="421" width="0.6" height="15.0" fill="rgb(229,169,20)" rx="2" ry="2" />
|
|
<text x="981.00" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (15 samples, 0.07%)</title><rect x="812.5" y="421" width="0.9" height="15.0" fill="rgb(234,108,34)" rx="2" ry="2" />
|
|
<text x="815.53" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.01%)</title><rect x="823.4" y="485" width="0.2" height="15.0" fill="rgb(224,73,28)" rx="2" ry="2" />
|
|
<text x="826.45" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="978.9" y="389" width="0.1" height="15.0" fill="rgb(254,204,3)" rx="2" ry="2" />
|
|
<text x="981.88" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (4 samples, 0.02%)</title><rect x="393.3" y="613" width="0.2" height="15.0" fill="rgb(223,52,0)" rx="2" ry="2" />
|
|
<text x="396.31" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (6 samples, 0.03%)</title><rect x="786.0" y="517" width="0.3" height="15.0" fill="rgb(224,27,16)" rx="2" ry="2" />
|
|
<text x="788.99" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (20 samples, 0.10%)</title><rect x="390.9" y="533" width="1.2" height="15.0" fill="rgb(242,149,51)" rx="2" ry="2" />
|
|
<text x="393.89" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="991.6" y="581" width="0.1" height="15.0" fill="rgb(217,42,46)" rx="2" ry="2" />
|
|
<text x="994.62" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (3 samples, 0.01%)</title><rect x="1026.5" y="437" width="0.2" height="15.0" fill="rgb(251,88,45)" rx="2" ry="2" />
|
|
<text x="1029.54" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="630.1" y="421" width="0.3" height="15.0" fill="rgb(229,217,31)" rx="2" ry="2" />
|
|
<text x="633.14" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (5 samples, 0.02%)</title><rect x="1028.0" y="581" width="0.3" height="15.0" fill="rgb(220,164,44)" rx="2" ry="2" />
|
|
<text x="1030.96" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="586.0" y="357" width="0.2" height="15.0" fill="rgb(243,0,48)" rx="2" ry="2" />
|
|
<text x="589.02" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="563.1" y="341" width="0.1" height="15.0" fill="rgb(227,168,35)" rx="2" ry="2" />
|
|
<text x="566.07" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (3 samples, 0.01%)</title><rect x="968.1" y="517" width="0.2" height="15.0" fill="rgb(248,165,11)" rx="2" ry="2" />
|
|
<text x="971.09" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (4 samples, 0.02%)</title><rect x="973.0" y="549" width="0.3" height="15.0" fill="rgb(236,193,22)" rx="2" ry="2" />
|
|
<text x="976.04" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (6 samples, 0.03%)</title><rect x="272.1" y="709" width="0.3" height="15.0" fill="rgb(245,173,30)" rx="2" ry="2" />
|
|
<text x="275.08" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (8 samples, 0.04%)</title><rect x="304.5" y="549" width="0.5" height="15.0" fill="rgb(225,214,25)" rx="2" ry="2" />
|
|
<text x="307.53" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (3 samples, 0.01%)</title><rect x="975.6" y="725" width="0.2" height="15.0" fill="rgb(236,22,33)" rx="2" ry="2" />
|
|
<text x="978.58" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="333.3" y="357" width="0.1" height="15.0" fill="rgb(246,16,44)" rx="2" ry="2" />
|
|
<text x="336.26" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (4 samples, 0.02%)</title><rect x="671.0" y="437" width="0.3" height="15.0" fill="rgb(208,189,0)" rx="2" ry="2" />
|
|
<text x="674.02" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (10 samples, 0.05%)</title><rect x="978.0" y="485" width="0.6" height="15.0" fill="rgb(222,149,31)" rx="2" ry="2" />
|
|
<text x="981.00" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="587.6" y="309" width="0.1" height="15.0" fill="rgb(223,81,32)" rx="2" ry="2" />
|
|
<text x="590.55" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="671.1" y="341" width="0.1" height="15.0" fill="rgb(233,145,15)" rx="2" ry="2" />
|
|
<text x="674.08" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="393.4" y="565" width="0.1" height="15.0" fill="rgb(244,67,30)" rx="2" ry="2" />
|
|
<text x="396.36" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (30 samples, 0.15%)</title><rect x="968.3" y="565" width="1.7" height="15.0" fill="rgb(242,34,47)" rx="2" ry="2" />
|
|
<text x="971.26" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (3 samples, 0.01%)</title><rect x="829.9" y="485" width="0.2" height="15.0" fill="rgb(222,83,35)" rx="2" ry="2" />
|
|
<text x="832.94" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_mutex_init (3 samples, 0.01%)</title><rect x="623.2" y="469" width="0.2" height="15.0" fill="rgb(206,194,10)" rx="2" ry="2" />
|
|
<text x="626.18" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="544.8" y="421" width="0.3" height="15.0" fill="rgb(220,71,32)" rx="2" ry="2" />
|
|
<text x="547.85" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_add (65 samples, 0.32%)</title><rect x="676.4" y="485" width="3.9" height="15.0" fill="rgb(253,92,18)" rx="2" ry="2" />
|
|
<text x="679.45" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (112 samples, 0.56%)</title><rect x="835.3" y="501" width="6.6" height="15.0" fill="rgb(207,28,10)" rx="2" ry="2" />
|
|
<text x="838.30" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (29 samples, 0.14%)</title><rect x="413.2" y="741" width="1.8" height="15.0" fill="rgb(222,191,50)" rx="2" ry="2" />
|
|
<text x="416.24" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (2 samples, 0.01%)</title><rect x="970.6" y="533" width="0.1" height="15.0" fill="rgb(223,140,15)" rx="2" ry="2" />
|
|
<text x="973.62" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_fqdn_plugin_get_EX_data (8 samples, 0.04%)</title><rect x="331.0" y="309" width="0.4" height="15.0" fill="rgb(208,74,23)" rx="2" ry="2" />
|
|
<text x="333.95" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_stream_create_ctx (13 samples, 0.06%)</title><rect x="544.4" y="453" width="0.8" height="15.0" fill="rgb(242,113,35)" rx="2" ry="2" />
|
|
<text x="547.43" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="814.2" y="453" width="0.2" height="15.0" fill="rgb(237,201,46)" rx="2" ry="2" />
|
|
<text x="817.25" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (21 samples, 0.10%)</title><rect x="794.1" y="325" width="1.3" height="15.0" fill="rgb(252,55,42)" rx="2" ry="2" />
|
|
<text x="797.13" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_malloc_device (29 samples, 0.14%)</title><rect x="731.7" y="453" width="1.7" height="15.0" fill="rgb(232,201,36)" rx="2" ry="2" />
|
|
<text x="734.66" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="1028.1" y="453" width="0.2" height="15.0" fill="rgb(251,176,48)" rx="2" ry="2" />
|
|
<text x="1031.14" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpStream (31 samples, 0.15%)</title><rect x="324.2" y="517" width="1.8" height="15.0" fill="rgb(233,181,3)" rx="2" ry="2" />
|
|
<text x="327.17" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[conn_telemetry.so] (8 samples, 0.04%)</title><rect x="622.4" y="469" width="0.4" height="15.0" fill="rgb(225,174,1)" rx="2" ry="2" />
|
|
<text x="625.36" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_get_tcpopt (3 samples, 0.01%)</title><rect x="754.4" y="469" width="0.1" height="15.0" fill="rgb(242,90,26)" rx="2" ry="2" />
|
|
<text x="757.37" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_sse42 (18 samples, 0.09%)</title><rect x="547.3" y="373" width="1.1" height="15.0" fill="rgb(226,5,17)" rx="2" ry="2" />
|
|
<text x="550.32" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (4 samples, 0.02%)</title><rect x="393.7" y="597" width="0.3" height="15.0" fill="rgb(232,41,12)" rx="2" ry="2" />
|
|
<text x="396.72" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (6 samples, 0.03%)</title><rect x="306.8" y="421" width="0.3" height="15.0" fill="rgb(226,159,34)" rx="2" ry="2" />
|
|
<text x="309.77" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="1028.1" y="517" width="0.2" height="15.0" fill="rgb(220,142,33)" rx="2" ry="2" />
|
|
<text x="1031.14" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (6 samples, 0.03%)</title><rect x="780.2" y="469" width="0.4" height="15.0" fill="rgb(207,198,32)" rx="2" ry="2" />
|
|
<text x="783.21" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="991.2" y="581" width="0.2" height="15.0" fill="rgb(253,104,17)" rx="2" ry="2" />
|
|
<text x="994.21" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="563.0" y="421" width="0.2" height="15.0" fill="rgb(211,229,40)" rx="2" ry="2" />
|
|
<text x="566.01" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpStream (4 samples, 0.02%)</title><rect x="1028.3" y="597" width="0.2" height="15.0" fill="rgb(215,67,11)" rx="2" ry="2" />
|
|
<text x="1031.25" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (10 samples, 0.05%)</title><rect x="312.6" y="277" width="0.6" height="15.0" fill="rgb(215,68,42)" rx="2" ry="2" />
|
|
<text x="315.61" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (226 samples, 1.13%)</title><rect x="139.1" y="613" width="13.4" height="15.0" fill="rgb(233,224,13)" rx="2" ry="2" />
|
|
<text x="142.13" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="788.1" y="517" width="0.2" height="15.0" fill="rgb(232,201,47)" rx="2" ry="2" />
|
|
<text x="791.11" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_set_metadata (2 samples, 0.01%)</title><rect x="733.4" y="453" width="0.1" height="15.0" fill="rgb(209,2,6)" rx="2" ry="2" />
|
|
<text x="736.43" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (3 samples, 0.01%)</title><rect x="415.9" y="741" width="0.2" height="15.0" fill="rgb(243,207,4)" rx="2" ry="2" />
|
|
<text x="418.90" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="485.8" y="421" width="0.2" height="15.0" fill="rgb(218,82,39)" rx="2" ry="2" />
|
|
<text x="488.80" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="988.6" y="565" width="0.1" height="15.0" fill="rgb(247,204,11)" rx="2" ry="2" />
|
|
<text x="991.61" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="590.4" y="437" width="0.2" height="15.0" fill="rgb(252,158,48)" rx="2" ry="2" />
|
|
<text x="593.38" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mpn_extract_double (2 samples, 0.01%)</title><rect x="988.1" y="501" width="0.2" height="15.0" fill="rgb(209,13,34)" rx="2" ry="2" />
|
|
<text x="991.14" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="970.6" y="565" width="0.1" height="15.0" fill="rgb(253,141,35)" rx="2" ry="2" />
|
|
<text x="973.62" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="971.7" y="469" width="0.3" height="15.0" fill="rgb(252,142,40)" rx="2" ry="2" />
|
|
<text x="974.74" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpLinkNode (31 samples, 0.15%)</title><rect x="324.2" y="501" width="1.8" height="15.0" fill="rgb(251,91,36)" rx="2" ry="2" />
|
|
<text x="327.17" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (48 samples, 0.24%)</title><rect x="385.3" y="485" width="2.9" height="15.0" fill="rgb(230,198,52)" rx="2" ry="2" />
|
|
<text x="388.34" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (5 samples, 0.02%)</title><rect x="1014.2" y="741" width="0.3" height="15.0" fill="rgb(212,169,22)" rx="2" ry="2" />
|
|
<text x="1017.16" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="566.5" y="357" width="0.1" height="15.0" fill="rgb(252,86,20)" rx="2" ry="2" />
|
|
<text x="569.49" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (13 samples, 0.06%)</title><rect x="973.3" y="613" width="0.7" height="15.0" fill="rgb(217,110,16)" rx="2" ry="2" />
|
|
<text x="976.28" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[unknown] (9 samples, 0.04%)</title><rect x="415.0" y="757" width="0.5" height="15.0" fill="rgb(245,147,19)" rx="2" ry="2" />
|
|
<text x="417.95" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (108 samples, 0.54%)</title><rect x="975.8" y="757" width="6.3" height="15.0" fill="rgb(244,70,17)" rx="2" ry="2" />
|
|
<text x="978.75" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (2 samples, 0.01%)</title><rect x="978.9" y="533" width="0.1" height="15.0" fill="rgb(207,121,8)" rx="2" ry="2" />
|
|
<text x="981.88" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="581.7" y="277" width="0.4" height="15.0" fill="rgb(240,180,2)" rx="2" ry="2" />
|
|
<text x="584.71" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_mutex_destroy (2 samples, 0.01%)</title><rect x="780.0" y="453" width="0.1" height="15.0" fill="rgb(238,172,41)" rx="2" ry="2" />
|
|
<text x="783.03" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (4 samples, 0.02%)</title><rect x="394.9" y="693" width="0.2" height="15.0" fill="rgb(223,180,37)" rx="2" ry="2" />
|
|
<text x="397.90" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="301.5" y="549" width="0.1" height="15.0" fill="rgb(220,135,0)" rx="2" ry="2" />
|
|
<text x="304.46" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (4 samples, 0.02%)</title><rect x="789.1" y="501" width="0.3" height="15.0" fill="rgb(239,102,45)" rx="2" ry="2" />
|
|
<text x="792.12" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeHttpProtocol (2 samples, 0.01%)</title><rect x="567.4" y="453" width="0.2" height="15.0" fill="rgb(254,137,31)" rx="2" ry="2" />
|
|
<text x="570.44" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (34 samples, 0.17%)</title><rect x="916.3" y="629" width="2.0" height="15.0" fill="rgb(210,203,21)" rx="2" ry="2" />
|
|
<text x="919.29" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="332.7" y="325" width="0.1" height="15.0" fill="rgb(244,25,17)" rx="2" ry="2" />
|
|
<text x="335.67" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="392.4" y="485" width="0.3" height="15.0" fill="rgb(240,180,34)" rx="2" ry="2" />
|
|
<text x="395.42" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (16 samples, 0.08%)</title><rect x="910.6" y="645" width="0.9" height="15.0" fill="rgb(245,34,0)" rx="2" ry="2" />
|
|
<text x="913.57" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="585.3" y="261" width="0.1" height="15.0" fill="rgb(254,152,36)" rx="2" ry="2" />
|
|
<text x="588.31" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_fqdn_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="393.4" y="453" width="0.1" height="15.0" fill="rgb(236,95,36)" rx="2" ry="2" />
|
|
<text x="396.36" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="48.7" y="645" width="0.1" height="15.0" fill="rgb(231,9,49)" rx="2" ry="2" />
|
|
<text x="51.70" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_primitive_new (3 samples, 0.01%)</title><rect x="1020.5" y="229" width="0.1" height="15.0" fill="rgb(207,131,22)" rx="2" ry="2" />
|
|
<text x="1023.47" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_STAT_TCP_ADD (4 samples, 0.02%)</title><rect x="543.7" y="469" width="0.2" height="15.0" fill="rgb(243,13,46)" rx="2" ry="2" />
|
|
<text x="546.67" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_sticky_partition (2 samples, 0.01%)</title><rect x="358.0" y="437" width="0.1" height="15.0" fill="rgb(236,149,49)" rx="2" ry="2" />
|
|
<text x="361.03" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="589.1" y="293" width="0.3" height="15.0" fill="rgb(252,103,49)" rx="2" ry="2" />
|
|
<text x="592.09" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (20 samples, 0.10%)</title><rect x="274.6" y="741" width="1.2" height="15.0" fill="rgb(206,26,36)" rx="2" ry="2" />
|
|
<text x="277.62" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="984.0" y="581" width="0.1" height="15.0" fill="rgb(236,106,42)" rx="2" ry="2" />
|
|
<text x="986.95" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (65 samples, 0.32%)</title><rect x="1019.6" y="533" width="3.8" height="15.0" fill="rgb(248,79,5)" rx="2" ry="2" />
|
|
<text x="1022.58" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (18 samples, 0.09%)</title><rect x="678.7" y="405" width="1.1" height="15.0" fill="rgb(241,180,17)" rx="2" ry="2" />
|
|
<text x="681.75" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (2 samples, 0.01%)</title><rect x="1014.2" y="549" width="0.1" height="15.0" fill="rgb(219,85,5)" rx="2" ry="2" />
|
|
<text x="1017.22" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (136 samples, 0.68%)</title><rect x="666.4" y="517" width="8.0" height="15.0" fill="rgb(210,225,25)" rx="2" ry="2" />
|
|
<text x="669.36" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (77 samples, 0.38%)</title><rect x="379.2" y="565" width="4.5" height="15.0" fill="rgb(249,134,47)" rx="2" ry="2" />
|
|
<text x="382.21" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="980.9" y="565" width="0.3" height="15.0" fill="rgb(209,59,51)" rx="2" ry="2" />
|
|
<text x="983.95" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (25 samples, 0.12%)</title><rect x="979.0" y="581" width="1.5" height="15.0" fill="rgb(227,78,15)" rx="2" ry="2" />
|
|
<text x="982.00" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_initHttpConnection (6 samples, 0.03%)</title><rect x="567.1" y="453" width="0.3" height="15.0" fill="rgb(215,225,15)" rx="2" ry="2" />
|
|
<text x="570.08" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="484.9" y="437" width="0.1" height="15.0" fill="rgb(215,47,29)" rx="2" ry="2" />
|
|
<text x="487.91" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="299.7" y="437" width="0.1" height="15.0" fill="rgb(216,167,41)" rx="2" ry="2" />
|
|
<text x="302.69" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="324.0" y="309" width="0.2" height="15.0" fill="rgb(227,75,24)" rx="2" ry="2" />
|
|
<text x="326.99" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (13 samples, 0.06%)</title><rect x="620.8" y="485" width="0.7" height="15.0" fill="rgb(248,206,3)" rx="2" ry="2" />
|
|
<text x="623.76" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (126 samples, 0.63%)</title><rect x="788.5" y="533" width="7.4" height="15.0" fill="rgb(245,52,3)" rx="2" ry="2" />
|
|
<text x="791.47" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (4 samples, 0.02%)</title><rect x="1020.9" y="469" width="0.2" height="15.0" fill="rgb(217,204,31)" rx="2" ry="2" />
|
|
<text x="1023.88" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>docanalyze_parsestream (2 samples, 0.01%)</title><rect x="563.3" y="357" width="0.1" height="15.0" fill="rgb(252,224,31)" rx="2" ry="2" />
|
|
<text x="566.25" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="412.9" y="517" width="0.2" height="15.0" fill="rgb(246,152,43)" rx="2" ry="2" />
|
|
<text x="415.95" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (2 samples, 0.01%)</title><rect x="970.6" y="517" width="0.1" height="15.0" fill="rgb(248,122,40)" rx="2" ry="2" />
|
|
<text x="973.62" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="330.5" y="325" width="0.3" height="15.0" fill="rgb(230,112,52)" rx="2" ry="2" />
|
|
<text x="333.54" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>QUIC_ENTRY (2 samples, 0.01%)</title><rect x="388.2" y="565" width="0.2" height="15.0" fill="rgb(249,74,33)" rx="2" ry="2" />
|
|
<text x="391.23" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (6 samples, 0.03%)</title><rect x="392.8" y="661" width="0.3" height="15.0" fill="rgb(249,26,45)" rx="2" ry="2" />
|
|
<text x="395.77" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_ssl_plug.so] (14 samples, 0.07%)</title><rect x="326.3" y="373" width="0.8" height="15.0" fill="rgb(237,114,9)" rx="2" ry="2" />
|
|
<text x="329.29" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (5 samples, 0.02%)</title><rect x="793.0" y="405" width="0.2" height="15.0" fill="rgb(240,99,25)" rx="2" ry="2" />
|
|
<text x="795.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_handshake_pkt_process (4 samples, 0.02%)</title><rect x="754.3" y="485" width="0.2" height="15.0" fill="rgb(253,100,12)" rx="2" ry="2" />
|
|
<text x="757.31" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="314.1" y="309" width="0.2" height="15.0" fill="rgb(219,152,12)" rx="2" ry="2" />
|
|
<text x="317.14" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_vxlan_addr (9 samples, 0.04%)</title><rect x="862.9" y="613" width="0.5" height="15.0" fill="rgb(238,6,21)" rx="2" ry="2" />
|
|
<text x="865.85" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="984.4" y="533" width="0.1" height="15.0" fill="rgb(250,140,11)" rx="2" ry="2" />
|
|
<text x="987.43" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.03%)</title><rect x="981.2" y="629" width="0.5" height="15.0" fill="rgb(207,69,1)" rx="2" ry="2" />
|
|
<text x="984.24" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (9 samples, 0.04%)</title><rect x="983.1" y="581" width="0.5" height="15.0" fill="rgb(208,93,16)" rx="2" ry="2" />
|
|
<text x="986.07" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_offload (2 samples, 0.01%)</title><rect x="811.8" y="469" width="0.1" height="15.0" fill="rgb(231,219,51)" rx="2" ry="2" />
|
|
<text x="814.77" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (48 samples, 0.24%)</title><rect x="327.1" y="293" width="2.9" height="15.0" fill="rgb(249,124,27)" rx="2" ry="2" />
|
|
<text x="330.12" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (35 samples, 0.17%)</title><rect x="330.4" y="405" width="2.0" height="15.0" fill="rgb(230,222,42)" rx="2" ry="2" />
|
|
<text x="333.36" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="673.9" y="437" width="0.4" height="15.0" fill="rgb(251,85,5)" rx="2" ry="2" />
|
|
<text x="676.85" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_create_per_stream (7 samples, 0.03%)</title><rect x="538.7" y="533" width="0.4" height="15.0" fill="rgb(251,132,39)" rx="2" ry="2" />
|
|
<text x="541.71" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_itoa_word (2 samples, 0.01%)</title><rect x="306.7" y="421" width="0.1" height="15.0" fill="rgb(226,142,7)" rx="2" ry="2" />
|
|
<text x="309.65" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (4 samples, 0.02%)</title><rect x="814.4" y="453" width="0.3" height="15.0" fill="rgb(247,70,24)" rx="2" ry="2" />
|
|
<text x="817.42" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_realloc (2 samples, 0.01%)</title><rect x="332.1" y="341" width="0.2" height="15.0" fill="rgb(236,63,18)" rx="2" ry="2" />
|
|
<text x="335.13" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_quic_entry (3 samples, 0.01%)</title><rect x="826.0" y="437" width="0.2" height="15.0" fill="rgb(253,220,0)" rx="2" ry="2" />
|
|
<text x="828.98" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (29 samples, 0.14%)</title><rect x="563.8" y="405" width="1.8" height="15.0" fill="rgb(227,109,32)" rx="2" ry="2" />
|
|
<text x="566.84" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="488.2" y="437" width="0.3" height="15.0" fill="rgb(229,11,40)" rx="2" ry="2" />
|
|
<text x="491.22" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (48 samples, 0.24%)</title><rect x="327.1" y="357" width="2.9" height="15.0" fill="rgb(206,87,39)" rx="2" ry="2" />
|
|
<text x="330.12" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (4 samples, 0.02%)</title><rect x="383.8" y="469" width="0.2" height="15.0" fill="rgb(242,100,33)" rx="2" ry="2" />
|
|
<text x="386.81" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (5 samples, 0.02%)</title><rect x="387.5" y="277" width="0.3" height="15.0" fill="rgb(217,175,25)" rx="2" ry="2" />
|
|
<text x="390.47" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CStringMatch::check_match_mode@plt (3 samples, 0.01%)</title><rect x="20.6" y="741" width="0.2" height="15.0" fill="rgb(208,11,42)" rx="2" ry="2" />
|
|
<text x="23.62" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (27 samples, 0.13%)</title><rect x="580.9" y="389" width="1.6" height="15.0" fill="rgb(226,91,22)" rx="2" ry="2" />
|
|
<text x="583.95" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="671.1" y="389" width="0.2" height="15.0" fill="rgb(229,45,49)" rx="2" ry="2" />
|
|
<text x="674.08" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="304.9" y="485" width="0.1" height="15.0" fill="rgb(232,54,44)" rx="2" ry="2" />
|
|
<text x="307.88" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (73 samples, 0.36%)</title><rect x="319.6" y="389" width="4.3" height="15.0" fill="rgb(229,56,28)" rx="2" ry="2" />
|
|
<text x="322.63" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (19 samples, 0.09%)</title><rect x="844.9" y="453" width="1.1" height="15.0" fill="rgb(213,15,51)" rx="2" ry="2" />
|
|
<text x="847.92" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (32 samples, 0.16%)</title><rect x="1015.5" y="741" width="1.9" height="15.0" fill="rgb(250,15,2)" rx="2" ry="2" />
|
|
<text x="1018.51" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (5 samples, 0.02%)</title><rect x="862.3" y="549" width="0.3" height="15.0" fill="rgb(253,126,2)" rx="2" ry="2" />
|
|
<text x="865.26" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="558.4" y="437" width="0.1" height="15.0" fill="rgb(221,44,0)" rx="2" ry="2" />
|
|
<text x="561.41" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_check (22 samples, 0.11%)</title><rect x="802.8" y="517" width="1.3" height="15.0" fill="rgb(231,182,36)" rx="2" ry="2" />
|
|
<text x="805.80" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_wp_page (21 samples, 0.10%)</title><rect x="707.7" y="357" width="1.3" height="15.0" fill="rgb(216,210,40)" rx="2" ry="2" />
|
|
<text x="710.71" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>layer_addr_ntop_r (2 samples, 0.01%)</title><rect x="394.0" y="597" width="0.1" height="15.0" fill="rgb(207,215,49)" rx="2" ry="2" />
|
|
<text x="397.01" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="976.3" y="597" width="0.2" height="15.0" fill="rgb(220,130,4)" rx="2" ry="2" />
|
|
<text x="979.34" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (34 samples, 0.17%)</title><rect x="486.0" y="437" width="2.0" height="15.0" fill="rgb(248,153,34)" rx="2" ry="2" />
|
|
<text x="488.98" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (35 samples, 0.17%)</title><rect x="330.4" y="437" width="2.0" height="15.0" fill="rgb(232,207,40)" rx="2" ry="2" />
|
|
<text x="333.36" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="299.0" y="213" width="0.2" height="15.0" fill="rgb(219,44,28)" rx="2" ry="2" />
|
|
<text x="302.04" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_toppar_enq_msg (2 samples, 0.01%)</title><rect x="984.4" y="597" width="0.1" height="15.0" fill="rgb(232,159,39)" rx="2" ry="2" />
|
|
<text x="987.43" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libwangw.so] (14 samples, 0.07%)</title><rect x="1028.7" y="613" width="0.8" height="15.0" fill="rgb(208,20,0)" rx="2" ry="2" />
|
|
<text x="1031.67" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (76 samples, 0.38%)</title><rect x="371.2" y="389" width="4.5" height="15.0" fill="rgb(206,77,1)" rx="2" ry="2" />
|
|
<text x="374.24" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="557.4" y="437" width="0.1" height="15.0" fill="rgb(228,41,51)" rx="2" ry="2" />
|
|
<text x="560.35" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="587.4" y="309" width="0.2" height="15.0" fill="rgb(217,72,14)" rx="2" ry="2" />
|
|
<text x="590.44" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="1019.4" y="421" width="0.1" height="15.0" fill="rgb(206,173,2)" rx="2" ry="2" />
|
|
<text x="1022.41" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (4 samples, 0.02%)</title><rect x="787.0" y="549" width="0.2" height="15.0" fill="rgb(216,205,43)" rx="2" ry="2" />
|
|
<text x="789.99" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="364.3" y="421" width="0.2" height="15.0" fill="rgb(206,126,3)" rx="2" ry="2" />
|
|
<text x="367.34" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (8 samples, 0.04%)</title><rect x="632.4" y="421" width="0.5" height="15.0" fill="rgb(240,15,41)" rx="2" ry="2" />
|
|
<text x="635.44" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_cpuidle (2,616 samples, 13.08%)</title><rect x="1029.8" y="693" width="154.3" height="15.0" fill="rgb(207,99,24)" rx="2" ry="2" />
|
|
<text x="1032.79" y="703.5" >call_cpuidle</text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (35 samples, 0.17%)</title><rect x="1024.5" y="485" width="2.0" height="15.0" fill="rgb(215,143,16)" rx="2" ry="2" />
|
|
<text x="1027.48" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="556.5" y="357" width="0.1" height="15.0" fill="rgb(245,165,33)" rx="2" ry="2" />
|
|
<text x="559.47" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (35 samples, 0.17%)</title><rect x="820.6" y="517" width="2.0" height="15.0" fill="rgb(254,184,49)" rx="2" ry="2" />
|
|
<text x="823.56" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="46.7" y="709" width="0.3" height="15.0" fill="rgb(239,158,45)" rx="2" ry="2" />
|
|
<text x="49.75" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (137 samples, 0.68%)</title><rect x="296.4" y="661" width="8.1" height="15.0" fill="rgb(209,26,23)" rx="2" ry="2" />
|
|
<text x="299.45" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (16 samples, 0.08%)</title><rect x="734.1" y="485" width="1.0" height="15.0" fill="rgb(247,197,52)" rx="2" ry="2" />
|
|
<text x="737.14" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (63 samples, 0.31%)</title><rect x="970.5" y="645" width="3.7" height="15.0" fill="rgb(219,135,7)" rx="2" ry="2" />
|
|
<text x="973.50" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ptep_clear_flush (14 samples, 0.07%)</title><rect x="679.0" y="325" width="0.8" height="15.0" fill="rgb(233,77,53)" rx="2" ry="2" />
|
|
<text x="681.99" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="361.0" y="405" width="0.1" height="15.0" fill="rgb(214,87,9)" rx="2" ry="2" />
|
|
<text x="363.98" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (279 samples, 1.39%)</title><rect x="340.4" y="453" width="16.5" height="15.0" fill="rgb(252,118,4)" rx="2" ry="2" />
|
|
<text x="343.39" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (3 samples, 0.01%)</title><rect x="412.3" y="677" width="0.2" height="15.0" fill="rgb(221,125,30)" rx="2" ry="2" />
|
|
<text x="415.30" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_buildHttpInforLink (2 samples, 0.01%)</title><rect x="567.3" y="437" width="0.1" height="15.0" fill="rgb(237,166,41)" rx="2" ry="2" />
|
|
<text x="570.26" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (5 samples, 0.02%)</title><rect x="331.7" y="325" width="0.3" height="15.0" fill="rgb(216,220,24)" rx="2" ry="2" />
|
|
<text x="334.72" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAhoCorasick::SearchMem (155 samples, 0.77%)</title><rect x="21.1" y="725" width="9.2" height="15.0" fill="rgb(227,33,43)" rx="2" ry="2" />
|
|
<text x="24.15" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.02%)</title><rect x="918.0" y="565" width="0.3" height="15.0" fill="rgb(226,71,54)" rx="2" ry="2" />
|
|
<text x="921.01" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (3 samples, 0.01%)</title><rect x="1028.5" y="533" width="0.2" height="15.0" fill="rgb(232,206,18)" rx="2" ry="2" />
|
|
<text x="1031.49" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="621.1" y="469" width="0.3" height="15.0" fill="rgb(229,101,23)" rx="2" ry="2" />
|
|
<text x="624.12" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="978.9" y="501" width="0.1" height="15.0" fill="rgb(214,105,45)" rx="2" ry="2" />
|
|
<text x="981.88" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (6 samples, 0.03%)</title><rect x="980.6" y="565" width="0.3" height="15.0" fill="rgb(213,36,1)" rx="2" ry="2" />
|
|
<text x="983.59" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpStream (15 samples, 0.07%)</title><rect x="367.8" y="485" width="0.9" height="15.0" fill="rgb(219,168,11)" rx="2" ry="2" />
|
|
<text x="370.82" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (3 samples, 0.01%)</title><rect x="1019.9" y="325" width="0.2" height="15.0" fill="rgb(252,167,0)" rx="2" ry="2" />
|
|
<text x="1022.94" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (7 samples, 0.03%)</title><rect x="981.2" y="533" width="0.5" height="15.0" fill="rgb(235,129,44)" rx="2" ry="2" />
|
|
<text x="984.24" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (5 samples, 0.02%)</title><rect x="582.2" y="245" width="0.3" height="15.0" fill="rgb(217,20,52)" rx="2" ry="2" />
|
|
<text x="585.19" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (131 samples, 0.65%)</title><rect x="591.7" y="485" width="7.8" height="15.0" fill="rgb(221,101,47)" rx="2" ry="2" />
|
|
<text x="594.74" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithContentLength (2 samples, 0.01%)</title><rect x="566.3" y="405" width="0.1" height="15.0" fill="rgb(227,220,7)" rx="2" ry="2" />
|
|
<text x="569.26" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (21 samples, 0.10%)</title><rect x="588.5" y="373" width="1.2" height="15.0" fill="rgb(244,63,37)" rx="2" ry="2" />
|
|
<text x="591.50" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (14 samples, 0.07%)</title><rect x="48.3" y="693" width="0.9" height="15.0" fill="rgb(250,111,39)" rx="2" ry="2" />
|
|
<text x="51.34" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (14 samples, 0.07%)</title><rect x="977.8" y="645" width="0.8" height="15.0" fill="rgb(219,207,25)" rx="2" ry="2" />
|
|
<text x="980.76" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new00 (6 samples, 0.03%)</title><rect x="376.0" y="405" width="0.3" height="15.0" fill="rgb(214,24,34)" rx="2" ry="2" />
|
|
<text x="378.96" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (10 samples, 0.05%)</title><rect x="276.6" y="709" width="0.6" height="15.0" fill="rgb(245,202,14)" rx="2" ry="2" />
|
|
<text x="279.63" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithClientHello (14 samples, 0.07%)</title><rect x="977.8" y="581" width="0.8" height="15.0" fill="rgb(252,157,6)" rx="2" ry="2" />
|
|
<text x="980.76" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (48 samples, 0.24%)</title><rect x="320.5" y="293" width="2.8" height="15.0" fill="rgb(211,191,32)" rx="2" ry="2" />
|
|
<text x="323.51" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__schedule (93 samples, 0.46%)</title><rect x="1184.2" y="677" width="5.5" height="15.0" fill="rgb(223,34,1)" rx="2" ry="2" />
|
|
<text x="1187.22" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509V3_EXT_d2i (4 samples, 0.02%)</title><rect x="330.0" y="437" width="0.2" height="15.0" fill="rgb(254,129,5)" rx="2" ry="2" />
|
|
<text x="332.95" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="1007.7" y="645" width="0.3" height="15.0" fill="rgb(245,93,3)" rx="2" ry="2" />
|
|
<text x="1010.73" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (12 samples, 0.06%)</title><rect x="789.5" y="469" width="0.7" height="15.0" fill="rgb(225,191,20)" rx="2" ry="2" />
|
|
<text x="792.53" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeRequestEntityPresent (2 samples, 0.01%)</title><rect x="967.8" y="581" width="0.1" height="15.0" fill="rgb(239,52,24)" rx="2" ry="2" />
|
|
<text x="970.79" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="329.8" y="213" width="0.2" height="15.0" fill="rgb(230,4,54)" rx="2" ry="2" />
|
|
<text x="332.78" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (19 samples, 0.09%)</title><rect x="989.0" y="629" width="1.1" height="15.0" fill="rgb(235,182,49)" rx="2" ry="2" />
|
|
<text x="991.97" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (13 samples, 0.06%)</title><rect x="918.7" y="645" width="0.7" height="15.0" fill="rgb(221,36,17)" rx="2" ry="2" />
|
|
<text x="921.65" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="977.1" y="437" width="0.1" height="15.0" fill="rgb(206,36,21)" rx="2" ry="2" />
|
|
<text x="980.05" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (20 samples, 0.10%)</title><rect x="976.6" y="645" width="1.2" height="15.0" fill="rgb(220,171,23)" rx="2" ry="2" />
|
|
<text x="979.58" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="562.1" y="261" width="0.1" height="15.0" fill="rgb(223,49,44)" rx="2" ry="2" />
|
|
<text x="565.13" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_TCP_PACKET_ENTRY (10 samples, 0.05%)</title><rect x="620.2" y="485" width="0.6" height="15.0" fill="rgb(234,157,21)" rx="2" ry="2" />
|
|
<text x="623.17" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MD5_Init (4 samples, 0.02%)</title><rect x="1015.0" y="741" width="0.3" height="15.0" fill="rgb(248,48,51)" rx="2" ry="2" />
|
|
<text x="1018.04" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="785.8" y="469" width="0.2" height="15.0" fill="rgb(215,59,34)" rx="2" ry="2" />
|
|
<text x="788.75" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="568.8" y="453" width="0.1" height="15.0" fill="rgb(208,175,13)" rx="2" ry="2" />
|
|
<text x="571.80" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sip.so] (10 samples, 0.05%)</title><rect x="568.7" y="469" width="0.6" height="15.0" fill="rgb(243,142,20)" rx="2" ry="2" />
|
|
<text x="571.74" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="1029.3" y="549" width="0.1" height="15.0" fill="rgb(226,95,7)" rx="2" ry="2" />
|
|
<text x="1032.32" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncpy_sse2_unaligned (2 samples, 0.01%)</title><rect x="1013.5" y="725" width="0.1" height="15.0" fill="rgb(241,142,51)" rx="2" ry="2" />
|
|
<text x="1016.51" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (35 samples, 0.17%)</title><rect x="1024.5" y="501" width="2.0" height="15.0" fill="rgb(246,121,35)" rx="2" ry="2" />
|
|
<text x="1027.48" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (4 samples, 0.02%)</title><rect x="788.1" y="533" width="0.2" height="15.0" fill="rgb(222,53,48)" rx="2" ry="2" />
|
|
<text x="791.05" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>native_flush_tlb_others (21 samples, 0.10%)</title><rect x="707.7" y="293" width="1.3" height="15.0" fill="rgb(240,15,31)" rx="2" ry="2" />
|
|
<text x="710.71" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (78 samples, 0.39%)</title><rect x="846.1" y="469" width="4.6" height="15.0" fill="rgb(234,101,51)" rx="2" ry="2" />
|
|
<text x="849.10" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_new (206 samples, 1.03%)</title><rect x="231.4" y="725" width="12.1" height="15.0" fill="rgb(247,143,33)" rx="2" ry="2" />
|
|
<text x="234.38" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="323.9" y="325" width="0.3" height="15.0" fill="rgb(209,218,16)" rx="2" ry="2" />
|
|
<text x="326.94" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (3 samples, 0.01%)</title><rect x="918.7" y="613" width="0.2" height="15.0" fill="rgb(210,172,42)" rx="2" ry="2" />
|
|
<text x="921.71" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_l7_protocol_id2name (2 samples, 0.01%)</title><rect x="842.3" y="469" width="0.1" height="15.0" fill="rgb(226,77,42)" rx="2" ry="2" />
|
|
<text x="845.32" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (1,360 samples, 6.80%)</title><rect x="539.1" y="533" width="80.2" height="15.0" fill="rgb(223,80,33)" rx="2" ry="2" />
|
|
<text x="542.12" y="543.5" >stream_pr..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (4 samples, 0.02%)</title><rect x="544.1" y="421" width="0.2" height="15.0" fill="rgb(248,160,54)" rx="2" ry="2" />
|
|
<text x="547.08" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (14 samples, 0.07%)</title><rect x="367.8" y="325" width="0.8" height="15.0" fill="rgb(207,158,20)" rx="2" ry="2" />
|
|
<text x="370.82" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_fqdn_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="605.1" y="437" width="0.1" height="15.0" fill="rgb(207,217,30)" rx="2" ry="2" />
|
|
<text x="608.13" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (17 samples, 0.08%)</title><rect x="985.1" y="661" width="1.0" height="15.0" fill="rgb(248,89,43)" rx="2" ry="2" />
|
|
<text x="988.13" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_scan_intval (2 samples, 0.01%)</title><rect x="975.3" y="565" width="0.1" height="15.0" fill="rgb(235,145,0)" rx="2" ry="2" />
|
|
<text x="978.28" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (16 samples, 0.08%)</title><rect x="1023.4" y="469" width="1.0" height="15.0" fill="rgb(226,8,38)" rx="2" ry="2" />
|
|
<text x="1026.42" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncat_sse2_unaligned (6 samples, 0.03%)</title><rect x="603.2" y="437" width="0.4" height="15.0" fill="rgb(217,227,17)" rx="2" ry="2" />
|
|
<text x="606.24" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sk_pop_free (3 samples, 0.01%)</title><rect x="329.8" y="245" width="0.2" height="15.0" fill="rgb(254,62,27)" rx="2" ry="2" />
|
|
<text x="332.78" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="975.8" y="549" width="0.3" height="15.0" fill="rgb(223,113,23)" rx="2" ry="2" />
|
|
<text x="978.75" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (14 samples, 0.07%)</title><rect x="913.9" y="645" width="0.9" height="15.0" fill="rgb(243,84,16)" rx="2" ry="2" />
|
|
<text x="916.94" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="550.3" y="405" width="0.3" height="15.0" fill="rgb(231,87,49)" rx="2" ry="2" />
|
|
<text x="553.27" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CStringMatch::search_rule (436 samples, 2.18%)</title><rect x="17.6" y="757" width="25.7" height="15.0" fill="rgb(235,121,24)" rx="2" ry="2" />
|
|
<text x="20.61" y="767.5" >C..</text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="987.1" y="485" width="0.1" height="15.0" fill="rgb(252,157,51)" rx="2" ry="2" />
|
|
<text x="990.08" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (95 samples, 0.47%)</title><rect x="828.2" y="501" width="5.6" height="15.0" fill="rgb(227,174,19)" rx="2" ry="2" />
|
|
<text x="831.17" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="832.9" y="453" width="0.3" height="15.0" fill="rgb(227,157,0)" rx="2" ry="2" />
|
|
<text x="835.94" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (721 samples, 3.60%)</title><rect x="109.9" y="677" width="42.6" height="15.0" fill="rgb(220,89,20)" rx="2" ry="2" />
|
|
<text x="112.93" y="687.5" >msor..</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_ssl_entry (6 samples, 0.03%)</title><rect x="332.1" y="373" width="0.3" height="15.0" fill="rgb(245,194,12)" rx="2" ry="2" />
|
|
<text x="335.08" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (2 samples, 0.01%)</title><rect x="1014.3" y="709" width="0.2" height="15.0" fill="rgb(238,180,27)" rx="2" ry="2" />
|
|
<text x="1017.33" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="330.9" y="325" width="0.6" height="15.0" fill="rgb(230,111,14)" rx="2" ry="2" />
|
|
<text x="333.90" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_ssl_entry (12 samples, 0.06%)</title><rect x="587.7" y="341" width="0.7" height="15.0" fill="rgb(240,206,36)" rx="2" ry="2" />
|
|
<text x="590.67" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wg_linkinfo_stack_to_heap (11 samples, 0.05%)</title><rect x="607.1" y="469" width="0.7" height="15.0" fill="rgb(224,163,38)" rx="2" ry="2" />
|
|
<text x="610.14" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="299.7" y="453" width="0.1" height="15.0" fill="rgb(206,23,22)" rx="2" ry="2" />
|
|
<text x="302.69" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_tripleMatching (2 samples, 0.01%)</title><rect x="1014.2" y="677" width="0.1" height="15.0" fill="rgb(238,166,18)" rx="2" ry="2" />
|
|
<text x="1017.22" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (2 samples, 0.01%)</title><rect x="963.8" y="741" width="0.2" height="15.0" fill="rgb(242,81,28)" rx="2" ry="2" />
|
|
<text x="966.84" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__ctype_tolower_loc (2 samples, 0.01%)</title><rect x="412.8" y="469" width="0.1" height="15.0" fill="rgb(212,114,48)" rx="2" ry="2" />
|
|
<text x="415.83" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_parser_execute (2 samples, 0.01%)</title><rect x="604.5" y="453" width="0.2" height="15.0" fill="rgb(220,177,2)" rx="2" ry="2" />
|
|
<text x="607.54" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_http_plug.so] (4 samples, 0.02%)</title><rect x="1013.6" y="725" width="0.3" height="15.0" fill="rgb(222,178,25)" rx="2" ry="2" />
|
|
<text x="1016.63" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>STRATUM_ENTRY (6 samples, 0.03%)</title><rect x="590.9" y="485" width="0.3" height="15.0" fill="rgb(213,184,46)" rx="2" ry="2" />
|
|
<text x="593.86" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="970.6" y="485" width="0.1" height="15.0" fill="rgb(246,43,22)" rx="2" ry="2" />
|
|
<text x="973.62" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (53 samples, 0.26%)</title><rect x="964.0" y="741" width="3.1" height="15.0" fill="rgb(244,108,6)" rx="2" ry="2" />
|
|
<text x="967.02" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="566.6" y="325" width="0.1" height="15.0" fill="rgb(218,117,5)" rx="2" ry="2" />
|
|
<text x="569.61" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (7 samples, 0.03%)</title><rect x="860.7" y="517" width="0.4" height="15.0" fill="rgb(215,125,41)" rx="2" ry="2" />
|
|
<text x="863.73" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (19 samples, 0.09%)</title><rect x="588.6" y="357" width="1.1" height="15.0" fill="rgb(209,129,38)" rx="2" ry="2" />
|
|
<text x="591.62" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_id (8 samples, 0.04%)</title><rect x="300.0" y="501" width="0.5" height="15.0" fill="rgb(242,103,26)" rx="2" ry="2" />
|
|
<text x="302.99" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_search (304 samples, 1.52%)</title><rect x="164.9" y="741" width="17.9" height="15.0" fill="rgb(217,36,38)" rx="2" ry="2" />
|
|
<text x="167.90" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="488.6" y="469" width="0.1" height="15.0" fill="rgb(242,63,17)" rx="2" ry="2" />
|
|
<text x="491.57" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (2 samples, 0.01%)</title><rect x="844.7" y="453" width="0.2" height="15.0" fill="rgb(237,2,31)" rx="2" ry="2" />
|
|
<text x="847.74" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (2 samples, 0.01%)</title><rect x="47.0" y="709" width="0.1" height="15.0" fill="rgb(228,48,4)" rx="2" ry="2" />
|
|
<text x="49.99" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libwangw.so] (2 samples, 0.01%)</title><rect x="842.5" y="517" width="0.1" height="15.0" fill="rgb(220,45,22)" rx="2" ry="2" />
|
|
<text x="845.50" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (22 samples, 0.11%)</title><rect x="533.5" y="501" width="1.3" height="15.0" fill="rgb(236,107,39)" rx="2" ry="2" />
|
|
<text x="536.46" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="977.6" y="549" width="0.2" height="15.0" fill="rgb(237,150,25)" rx="2" ry="2" />
|
|
<text x="980.64" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_to_UTF8 (6 samples, 0.03%)</title><rect x="328.1" y="261" width="0.3" height="15.0" fill="rgb(205,62,24)" rx="2" ry="2" />
|
|
<text x="331.06" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (14 samples, 0.07%)</title><rect x="581.4" y="293" width="0.8" height="15.0" fill="rgb(218,70,28)" rx="2" ry="2" />
|
|
<text x="584.36" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (4 samples, 0.02%)</title><rect x="323.9" y="437" width="0.3" height="15.0" fill="rgb(208,47,15)" rx="2" ry="2" />
|
|
<text x="326.94" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (43 samples, 0.21%)</title><rect x="970.5" y="581" width="2.5" height="15.0" fill="rgb(225,101,45)" rx="2" ry="2" />
|
|
<text x="973.50" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="328.1" y="213" width="0.3" height="15.0" fill="rgb(214,67,42)" rx="2" ry="2" />
|
|
<text x="331.12" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (3 samples, 0.01%)</title><rect x="152.3" y="581" width="0.2" height="15.0" fill="rgb(211,88,50)" rx="2" ry="2" />
|
|
<text x="155.28" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (7 samples, 0.03%)</title><rect x="976.6" y="517" width="0.4" height="15.0" fill="rgb(210,65,7)" rx="2" ry="2" />
|
|
<text x="979.58" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="1028.1" y="533" width="0.2" height="15.0" fill="rgb(251,48,28)" rx="2" ry="2" />
|
|
<text x="1031.14" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="304.4" y="501" width="0.1" height="15.0" fill="rgb(244,143,27)" rx="2" ry="2" />
|
|
<text x="307.41" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (7 samples, 0.03%)</title><rect x="1006.4" y="597" width="0.4" height="15.0" fill="rgb(206,172,14)" rx="2" ry="2" />
|
|
<text x="1009.37" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="991.5" y="565" width="0.1" height="15.0" fill="rgb(235,152,28)" rx="2" ry="2" />
|
|
<text x="994.50" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (11 samples, 0.05%)</title><rect x="89.9" y="741" width="0.7" height="15.0" fill="rgb(224,123,1)" rx="2" ry="2" />
|
|
<text x="92.93" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (7 samples, 0.03%)</title><rect x="981.2" y="565" width="0.5" height="15.0" fill="rgb(224,82,25)" rx="2" ry="2" />
|
|
<text x="984.24" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (26 samples, 0.13%)</title><rect x="359.4" y="421" width="1.5" height="15.0" fill="rgb(205,7,44)" rx="2" ry="2" />
|
|
<text x="362.39" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_q_io_event (2 samples, 0.01%)</title><rect x="984.4" y="565" width="0.1" height="15.0" fill="rgb(240,118,1)" rx="2" ry="2" />
|
|
<text x="987.43" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (6 samples, 0.03%)</title><rect x="555.1" y="389" width="0.4" height="15.0" fill="rgb(234,15,41)" rx="2" ry="2" />
|
|
<text x="558.11" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_scan_proto_addr (1,553 samples, 7.76%)</title><rect x="182.8" y="757" width="91.6" height="15.0" fill="rgb(246,13,19)" rx="2" ry="2" />
|
|
<text x="185.84" y="767.5" >Maat_scan_..</text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___printf_fp_l (12 samples, 0.06%)</title><rect x="987.8" y="517" width="0.8" height="15.0" fill="rgb(220,133,45)" rx="2" ry="2" />
|
|
<text x="990.85" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_bitmap (2 samples, 0.01%)</title><rect x="675.9" y="485" width="0.1" height="15.0" fill="rgb(245,97,18)" rx="2" ry="2" />
|
|
<text x="678.92" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (22 samples, 0.11%)</title><rect x="974.2" y="597" width="1.3" height="15.0" fill="rgb(247,80,23)" rx="2" ry="2" />
|
|
<text x="977.22" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_ssl_plug.so] (4 samples, 0.02%)</title><rect x="333.0" y="373" width="0.3" height="15.0" fill="rgb(244,19,48)" rx="2" ry="2" />
|
|
<text x="336.02" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (51 samples, 0.25%)</title><rect x="1008.0" y="645" width="3.0" height="15.0" fill="rgb(225,127,45)" rx="2" ry="2" />
|
|
<text x="1010.96" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_tcpall_entry (5 samples, 0.02%)</title><rect x="916.6" y="613" width="0.3" height="15.0" fill="rgb(239,39,18)" rx="2" ry="2" />
|
|
<text x="919.65" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (24 samples, 0.12%)</title><rect x="1006.0" y="661" width="1.4" height="15.0" fill="rgb(231,213,5)" rx="2" ry="2" />
|
|
<text x="1009.02" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__do_page_fault (18 samples, 0.09%)</title><rect x="678.7" y="421" width="1.1" height="15.0" fill="rgb(233,59,6)" rx="2" ry="2" />
|
|
<text x="681.75" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (12 samples, 0.06%)</title><rect x="630.5" y="437" width="0.7" height="15.0" fill="rgb(242,70,20)" rx="2" ry="2" />
|
|
<text x="633.50" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpLinkNode (3 samples, 0.01%)</title><rect x="316.5" y="469" width="0.2" height="15.0" fill="rgb(247,152,38)" rx="2" ry="2" />
|
|
<text x="319.50" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (96 samples, 0.48%)</title><rect x="623.4" y="469" width="5.6" height="15.0" fill="rgb(205,211,40)" rx="2" ry="2" />
|
|
<text x="626.36" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="1003.6" y="597" width="0.1" height="15.0" fill="rgb(222,49,14)" rx="2" ry="2" />
|
|
<text x="1006.60" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bsearch@plt (2 samples, 0.01%)</title><rect x="156.9" y="709" width="0.2" height="15.0" fill="rgb(221,51,23)" rx="2" ry="2" />
|
|
<text x="159.94" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="544.5" y="437" width="0.1" height="15.0" fill="rgb(248,167,29)" rx="2" ry="2" />
|
|
<text x="547.49" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (5 samples, 0.02%)</title><rect x="549.3" y="405" width="0.3" height="15.0" fill="rgb(228,108,29)" rx="2" ry="2" />
|
|
<text x="552.27" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcpall_entry (2 samples, 0.01%)</title><rect x="301.5" y="517" width="0.1" height="15.0" fill="rgb(253,181,26)" rx="2" ry="2" />
|
|
<text x="304.46" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="1023.3" y="453" width="0.1" height="15.0" fill="rgb(231,179,45)" rx="2" ry="2" />
|
|
<text x="1026.30" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="298.2" y="421" width="0.3" height="15.0" fill="rgb(245,117,13)" rx="2" ry="2" />
|
|
<text x="301.16" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (1,487 samples, 7.43%)</title><rect x="305.1" y="661" width="87.7" height="15.0" fill="rgb(254,63,14)" rx="2" ry="2" />
|
|
<text x="308.06" y="671.5" >eth_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (12 samples, 0.06%)</title><rect x="531.8" y="453" width="0.7" height="15.0" fill="rgb(235,199,22)" rx="2" ry="2" />
|
|
<text x="534.81" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="566.5" y="277" width="0.1" height="15.0" fill="rgb(244,92,24)" rx="2" ry="2" />
|
|
<text x="569.49" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (4 samples, 0.02%)</title><rect x="333.9" y="453" width="0.2" height="15.0" fill="rgb(245,177,4)" rx="2" ry="2" />
|
|
<text x="336.90" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="48.1" y="677" width="0.2" height="15.0" fill="rgb(251,105,24)" rx="2" ry="2" />
|
|
<text x="51.11" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (12 samples, 0.06%)</title><rect x="918.7" y="629" width="0.7" height="15.0" fill="rgb(239,101,47)" rx="2" ry="2" />
|
|
<text x="921.71" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="380.5" y="501" width="0.3" height="15.0" fill="rgb(214,36,34)" rx="2" ry="2" />
|
|
<text x="383.50" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="601.9" y="437" width="0.2" height="15.0" fill="rgb(245,104,23)" rx="2" ry="2" />
|
|
<text x="604.95" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (149 samples, 0.74%)</title><rect x="738.7" y="453" width="8.8" height="15.0" fill="rgb(239,82,44)" rx="2" ry="2" />
|
|
<text x="741.68" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_destroy_stream (2 samples, 0.01%)</title><rect x="791.5" y="421" width="0.2" height="15.0" fill="rgb(229,175,54)" rx="2" ry="2" />
|
|
<text x="794.53" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (6 samples, 0.03%)</title><rect x="912.6" y="645" width="0.4" height="15.0" fill="rgb(211,134,0)" rx="2" ry="2" />
|
|
<text x="915.64" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (7 samples, 0.03%)</title><rect x="361.5" y="501" width="0.4" height="15.0" fill="rgb(238,141,17)" rx="2" ry="2" />
|
|
<text x="364.51" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (5 samples, 0.02%)</title><rect x="554.1" y="293" width="0.3" height="15.0" fill="rgb(214,28,5)" rx="2" ry="2" />
|
|
<text x="557.11" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (117 samples, 0.58%)</title><rect x="632.0" y="469" width="6.9" height="15.0" fill="rgb(235,168,12)" rx="2" ry="2" />
|
|
<text x="634.97" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (9 samples, 0.04%)</title><rect x="534.2" y="469" width="0.6" height="15.0" fill="rgb(243,164,9)" rx="2" ry="2" />
|
|
<text x="537.23" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (18 samples, 0.09%)</title><rect x="335.6" y="485" width="1.0" height="15.0" fill="rgb(217,94,10)" rx="2" ry="2" />
|
|
<text x="338.56" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (8 samples, 0.04%)</title><rect x="556.2" y="437" width="0.4" height="15.0" fill="rgb(228,200,13)" rx="2" ry="2" />
|
|
<text x="559.17" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (4 samples, 0.02%)</title><rect x="810.5" y="453" width="0.3" height="15.0" fill="rgb(250,0,39)" rx="2" ry="2" />
|
|
<text x="813.53" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[mail.so] (4 samples, 0.02%)</title><rect x="568.3" y="453" width="0.3" height="15.0" fill="rgb(249,46,5)" rx="2" ry="2" />
|
|
<text x="571.32" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (3 samples, 0.01%)</title><rect x="299.8" y="437" width="0.2" height="15.0" fill="rgb(242,149,16)" rx="2" ry="2" />
|
|
<text x="302.81" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (8 samples, 0.04%)</title><rect x="981.7" y="661" width="0.4" height="15.0" fill="rgb(248,168,29)" rx="2" ry="2" />
|
|
<text x="984.65" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wangw_ip_plug_entry (10 samples, 0.05%)</title><rect x="861.2" y="549" width="0.6" height="15.0" fill="rgb(247,72,45)" rx="2" ry="2" />
|
|
<text x="864.20" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (324 samples, 1.62%)</title><rect x="571.0" y="469" width="19.1" height="15.0" fill="rgb(244,185,8)" rx="2" ry="2" />
|
|
<text x="574.04" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tlb_is_not_lazy (2 samples, 0.01%)</title><rect x="708.8" y="277" width="0.2" height="15.0" fill="rgb(207,172,7)" rx="2" ry="2" />
|
|
<text x="711.83" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (13 samples, 0.06%)</title><rect x="564.4" y="325" width="0.8" height="15.0" fill="rgb(251,169,47)" rx="2" ry="2" />
|
|
<text x="567.43" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>event_base_loop (115 samples, 0.57%)</title><rect x="941.1" y="693" width="6.8" height="15.0" fill="rgb(248,151,46)" rx="2" ry="2" />
|
|
<text x="944.07" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (48 samples, 0.24%)</title><rect x="385.3" y="437" width="2.9" height="15.0" fill="rgb(237,195,11)" rx="2" ry="2" />
|
|
<text x="388.34" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (8 samples, 0.04%)</title><rect x="832.4" y="453" width="0.4" height="15.0" fill="rgb(252,201,6)" rx="2" ry="2" />
|
|
<text x="835.35" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_htable_search (6 samples, 0.03%)</title><rect x="1028.7" y="581" width="0.3" height="15.0" fill="rgb(220,20,1)" rx="2" ry="2" />
|
|
<text x="1031.67" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="862.3" y="533" width="0.3" height="15.0" fill="rgb(226,172,39)" rx="2" ry="2" />
|
|
<text x="865.26" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SIP_TCP_ENTRY (12 samples, 0.06%)</title><rect x="568.6" y="485" width="0.7" height="15.0" fill="rgb(219,114,19)" rx="2" ry="2" />
|
|
<text x="571.62" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (4 samples, 0.02%)</title><rect x="1028.3" y="549" width="0.2" height="15.0" fill="rgb(220,156,4)" rx="2" ry="2" />
|
|
<text x="1031.25" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (15 samples, 0.07%)</title><rect x="559.1" y="437" width="0.9" height="15.0" fill="rgb(208,191,19)" rx="2" ry="2" />
|
|
<text x="562.12" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_rr_str2json (5 samples, 0.02%)</title><rect x="1011.1" y="645" width="0.3" height="15.0" fill="rgb(246,69,26)" rx="2" ry="2" />
|
|
<text x="1014.09" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (2 samples, 0.01%)</title><rect x="603.9" y="453" width="0.1" height="15.0" fill="rgb(208,54,31)" rx="2" ry="2" />
|
|
<text x="606.89" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (27 samples, 0.13%)</title><rect x="317.3" y="293" width="1.6" height="15.0" fill="rgb(206,186,30)" rx="2" ry="2" />
|
|
<text x="320.27" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="675.9" y="437" width="0.1" height="15.0" fill="rgb(225,55,54)" rx="2" ry="2" />
|
|
<text x="678.92" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="330.0" y="389" width="0.2" height="15.0" fill="rgb(209,190,10)" rx="2" ry="2" />
|
|
<text x="332.95" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="786.7" y="517" width="0.1" height="15.0" fill="rgb(206,104,34)" rx="2" ry="2" />
|
|
<text x="789.70" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcpall_entry (10 samples, 0.05%)</title><rect x="673.7" y="453" width="0.6" height="15.0" fill="rgb(243,212,0)" rx="2" ry="2" />
|
|
<text x="676.68" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_check (200 samples, 1.00%)</title><rect x="680.3" y="533" width="11.8" height="15.0" fill="rgb(226,67,13)" rx="2" ry="2" />
|
|
<text x="683.28" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_app_id2name (3 samples, 0.01%)</title><rect x="981.1" y="453" width="0.1" height="15.0" fill="rgb(253,163,37)" rx="2" ry="2" />
|
|
<text x="984.06" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (16 samples, 0.08%)</title><rect x="327.1" y="213" width="1.0" height="15.0" fill="rgb(229,21,15)" rx="2" ry="2" />
|
|
<text x="330.12" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_no_init (2 samples, 0.01%)</title><rect x="980.5" y="357" width="0.1" height="15.0" fill="rgb(238,163,20)" rx="2" ry="2" />
|
|
<text x="983.47" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (10 samples, 0.05%)</title><rect x="966.4" y="613" width="0.6" height="15.0" fill="rgb(235,119,26)" rx="2" ry="2" />
|
|
<text x="969.43" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (49 samples, 0.24%)</title><rect x="380.9" y="517" width="2.8" height="15.0" fill="rgb(218,16,40)" rx="2" ry="2" />
|
|
<text x="383.86" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (10 samples, 0.05%)</title><rect x="1020.3" y="469" width="0.6" height="15.0" fill="rgb(246,42,24)" rx="2" ry="2" />
|
|
<text x="1023.29" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (5 samples, 0.02%)</title><rect x="640.0" y="453" width="0.3" height="15.0" fill="rgb(242,224,17)" rx="2" ry="2" />
|
|
<text x="642.99" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (146 samples, 0.73%)</title><rect x="833.9" y="517" width="8.6" height="15.0" fill="rgb(226,144,14)" rx="2" ry="2" />
|
|
<text x="836.89" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_has_NOT_clause (2 samples, 0.01%)</title><rect x="44.5" y="741" width="0.1" height="15.0" fill="rgb(251,145,19)" rx="2" ry="2" />
|
|
<text x="47.51" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count (6 samples, 0.03%)</title><rect x="88.5" y="693" width="0.4" height="15.0" fill="rgb(229,111,37)" rx="2" ry="2" />
|
|
<text x="91.51" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (21 samples, 0.10%)</title><rect x="334.3" y="533" width="1.3" height="15.0" fill="rgb(224,14,25)" rx="2" ry="2" />
|
|
<text x="337.32" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (6 samples, 0.03%)</title><rect x="671.5" y="453" width="0.3" height="15.0" fill="rgb(233,102,0)" rx="2" ry="2" />
|
|
<text x="674.49" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (2 samples, 0.01%)</title><rect x="978.9" y="581" width="0.1" height="15.0" fill="rgb(226,95,0)" rx="2" ry="2" />
|
|
<text x="981.88" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_fqdn_plugin_get_N_ex_data (2 samples, 0.01%)</title><rect x="393.4" y="437" width="0.1" height="15.0" fill="rgb(244,59,8)" rx="2" ry="2" />
|
|
<text x="396.36" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>parse_dns_protocol (532 samples, 2.66%)</title><rect x="982.2" y="757" width="31.4" height="15.0" fill="rgb(233,3,10)" rx="2" ry="2" />
|
|
<text x="985.24" y="767.5" >pa..</text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="328.5" y="229" width="0.2" height="15.0" fill="rgb(247,98,18)" rx="2" ry="2" />
|
|
<text x="331.54" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="393.1" y="533" width="0.2" height="15.0" fill="rgb(239,80,49)" rx="2" ry="2" />
|
|
<text x="396.13" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithContentRange (2 samples, 0.01%)</title><rect x="566.4" y="405" width="0.1" height="15.0" fill="rgb(226,72,21)" rx="2" ry="2" />
|
|
<text x="569.38" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="791.4" y="421" width="0.1" height="15.0" fill="rgb(221,47,37)" rx="2" ry="2" />
|
|
<text x="794.42" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (8 samples, 0.04%)</title><rect x="338.3" y="469" width="0.5" height="15.0" fill="rgb(236,191,11)" rx="2" ry="2" />
|
|
<text x="341.33" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="328.7" y="229" width="0.1" height="15.0" fill="rgb(229,59,27)" rx="2" ry="2" />
|
|
<text x="331.65" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_sse2 (14 samples, 0.07%)</title><rect x="103.8" y="693" width="0.8" height="15.0" fill="rgb(238,47,24)" rx="2" ry="2" />
|
|
<text x="106.79" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (61 samples, 0.30%)</title><rect x="526.4" y="533" width="3.6" height="15.0" fill="rgb(214,223,16)" rx="2" ry="2" />
|
|
<text x="529.44" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (16 samples, 0.08%)</title><rect x="379.6" y="549" width="0.9" height="15.0" fill="rgb(247,80,37)" rx="2" ry="2" />
|
|
<text x="382.56" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="621.1" y="453" width="0.3" height="15.0" fill="rgb(253,218,34)" rx="2" ry="2" />
|
|
<text x="624.12" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="530.6" y="485" width="0.1" height="15.0" fill="rgb(252,90,11)" rx="2" ry="2" />
|
|
<text x="533.57" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (20 samples, 0.10%)</title><rect x="298.5" y="517" width="1.2" height="15.0" fill="rgb(240,33,1)" rx="2" ry="2" />
|
|
<text x="301.51" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="1029.5" y="661" width="0.1" height="15.0" fill="rgb(220,182,13)" rx="2" ry="2" />
|
|
<text x="1032.49" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (4 samples, 0.02%)</title><rect x="729.2" y="469" width="0.3" height="15.0" fill="rgb(219,26,28)" rx="2" ry="2" />
|
|
<text x="732.24" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_POLLING_ENTRY (65 samples, 0.32%)</title><rect x="930.6" y="693" width="3.8" height="15.0" fill="rgb(244,136,34)" rx="2" ry="2" />
|
|
<text x="933.57" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (7 samples, 0.03%)</title><rect x="365.8" y="453" width="0.4" height="15.0" fill="rgb(240,75,10)" rx="2" ry="2" />
|
|
<text x="368.76" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (52 samples, 0.26%)</title><rect x="552.0" y="373" width="3.1" height="15.0" fill="rgb(208,112,50)" rx="2" ry="2" />
|
|
<text x="554.98" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_http_plug.so] (3 samples, 0.01%)</title><rect x="975.6" y="677" width="0.2" height="15.0" fill="rgb(239,228,30)" rx="2" ry="2" />
|
|
<text x="978.58" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (6 samples, 0.03%)</title><rect x="366.2" y="485" width="0.3" height="15.0" fill="rgb(222,76,25)" rx="2" ry="2" />
|
|
<text x="369.17" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CompareRule (21 samples, 0.10%)</title><rect x="294.7" y="725" width="1.3" height="15.0" fill="rgb(222,162,16)" rx="2" ry="2" />
|
|
<text x="297.74" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (23 samples, 0.11%)</title><rect x="392.8" y="709" width="1.3" height="15.0" fill="rgb(217,1,11)" rx="2" ry="2" />
|
|
<text x="395.77" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_sse2 (30 samples, 0.15%)</title><rect x="121.4" y="645" width="1.7" height="15.0" fill="rgb(233,207,11)" rx="2" ry="2" />
|
|
<text x="124.37" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (22 samples, 0.11%)</title><rect x="779.3" y="549" width="1.3" height="15.0" fill="rgb(210,87,11)" rx="2" ry="2" />
|
|
<text x="782.27" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="850.5" y="437" width="0.1" height="15.0" fill="rgb(225,168,20)" rx="2" ry="2" />
|
|
<text x="853.52" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="323.9" y="341" width="0.3" height="15.0" fill="rgb(243,45,12)" rx="2" ry="2" />
|
|
<text x="326.94" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (71 samples, 0.35%)</title><rect x="384.0" y="549" width="4.2" height="15.0" fill="rgb(209,196,16)" rx="2" ry="2" />
|
|
<text x="387.04" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="785.3" y="533" width="0.1" height="15.0" fill="rgb(225,106,2)" rx="2" ry="2" />
|
|
<text x="788.28" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="390.8" y="485" width="0.1" height="15.0" fill="rgb(207,142,46)" rx="2" ry="2" />
|
|
<text x="393.77" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="585.3" y="277" width="0.1" height="15.0" fill="rgb(226,20,14)" rx="2" ry="2" />
|
|
<text x="588.31" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (3 samples, 0.01%)</title><rect x="335.4" y="501" width="0.2" height="15.0" fill="rgb(217,184,49)" rx="2" ry="2" />
|
|
<text x="338.38" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ftp.so] (6 samples, 0.03%)</title><rect x="591.2" y="469" width="0.4" height="15.0" fill="rgb(217,207,38)" rx="2" ry="2" />
|
|
<text x="594.21" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (45 samples, 0.22%)</title><rect x="738.8" y="437" width="2.7" height="15.0" fill="rgb(229,200,21)" rx="2" ry="2" />
|
|
<text x="741.80" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (43 samples, 0.21%)</title><rect x="301.8" y="453" width="2.5" height="15.0" fill="rgb(242,144,54)" rx="2" ry="2" />
|
|
<text x="304.76" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_SSL_PLUG_ENTRY (10 samples, 0.05%)</title><rect x="412.5" y="549" width="0.6" height="15.0" fill="rgb(244,155,18)" rx="2" ry="2" />
|
|
<text x="415.48" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="1020.5" y="181" width="0.1" height="15.0" fill="rgb(253,75,23)" rx="2" ry="2" />
|
|
<text x="1023.47" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (30 samples, 0.15%)</title><rect x="968.3" y="613" width="1.7" height="15.0" fill="rgb(254,72,21)" rx="2" ry="2" />
|
|
<text x="971.26" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (11 samples, 0.05%)</title><rect x="667.7" y="501" width="0.7" height="15.0" fill="rgb(223,66,26)" rx="2" ry="2" />
|
|
<text x="670.72" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (4 samples, 0.02%)</title><rect x="376.0" y="389" width="0.2" height="15.0" fill="rgb(227,204,38)" rx="2" ry="2" />
|
|
<text x="378.96" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_entry (19 samples, 0.09%)</title><rect x="326.0" y="389" width="1.1" height="15.0" fill="rgb(215,181,45)" rx="2" ry="2" />
|
|
<text x="329.00" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_page_fault (18 samples, 0.09%)</title><rect x="678.7" y="437" width="1.1" height="15.0" fill="rgb(224,170,21)" rx="2" ry="2" />
|
|
<text x="681.75" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (19 samples, 0.09%)</title><rect x="839.8" y="453" width="1.1" height="15.0" fill="rgb(221,67,36)" rx="2" ry="2" />
|
|
<text x="842.79" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_send_burst (290 samples, 1.45%)</title><rect x="395.1" y="741" width="17.1" height="15.0" fill="rgb(215,27,2)" rx="2" ry="2" />
|
|
<text x="398.13" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (10 samples, 0.05%)</title><rect x="978.0" y="453" width="0.6" height="15.0" fill="rgb(232,152,26)" rx="2" ry="2" />
|
|
<text x="981.00" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_OBJECT_new (3 samples, 0.01%)</title><rect x="329.4" y="197" width="0.1" height="15.0" fill="rgb(232,198,52)" rx="2" ry="2" />
|
|
<text x="332.36" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="392.3" y="517" width="0.4" height="15.0" fill="rgb(222,61,29)" rx="2" ry="2" />
|
|
<text x="395.30" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (19 samples, 0.09%)</title><rect x="326.0" y="437" width="1.1" height="15.0" fill="rgb(227,118,11)" rx="2" ry="2" />
|
|
<text x="329.00" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wangw_ingress_stream_is_wannat_session (14 samples, 0.07%)</title><rect x="1028.7" y="597" width="0.8" height="15.0" fill="rgb(253,214,0)" rx="2" ry="2" />
|
|
<text x="1031.67" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_info_get (3 samples, 0.01%)</title><rect x="811.6" y="469" width="0.2" height="15.0" fill="rgb(230,200,4)" rx="2" ry="2" />
|
|
<text x="814.59" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_type_new (2 samples, 0.01%)</title><rect x="298.8" y="229" width="0.1" height="15.0" fill="rgb(241,8,22)" rx="2" ry="2" />
|
|
<text x="301.81" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="366.3" y="453" width="0.2" height="15.0" fill="rgb(219,81,4)" rx="2" ry="2" />
|
|
<text x="369.29" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCP_ENTRY (3 samples, 0.01%)</title><rect x="591.6" y="485" width="0.1" height="15.0" fill="rgb(232,151,12)" rx="2" ry="2" />
|
|
<text x="594.56" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (15 samples, 0.07%)</title><rect x="639.4" y="469" width="0.9" height="15.0" fill="rgb(235,225,24)" rx="2" ry="2" />
|
|
<text x="642.40" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>page_fault (32 samples, 0.16%)</title><rect x="707.1" y="453" width="1.9" height="15.0" fill="rgb(233,16,19)" rx="2" ry="2" />
|
|
<text x="710.06" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="550.7" y="405" width="0.1" height="15.0" fill="rgb(228,68,5)" rx="2" ry="2" />
|
|
<text x="553.69" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libwangw.so] (11 samples, 0.05%)</title><rect x="621.5" y="485" width="0.7" height="15.0" fill="rgb(238,203,34)" rx="2" ry="2" />
|
|
<text x="624.53" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="984.0" y="613" width="0.1" height="15.0" fill="rgb(210,24,15)" rx="2" ry="2" />
|
|
<text x="986.95" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (7 samples, 0.03%)</title><rect x="598.4" y="421" width="0.4" height="15.0" fill="rgb(248,172,30)" rx="2" ry="2" />
|
|
<text x="601.41" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (43 samples, 0.21%)</title><rect x="546.7" y="405" width="2.5" height="15.0" fill="rgb(214,173,16)" rx="2" ry="2" />
|
|
<text x="549.67" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (50 samples, 0.25%)</title><rect x="316.7" y="421" width="2.9" height="15.0" fill="rgb(254,206,15)" rx="2" ry="2" />
|
|
<text x="319.68" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (2 samples, 0.01%)</title><rect x="834.9" y="485" width="0.1" height="15.0" fill="rgb(231,152,38)" rx="2" ry="2" />
|
|
<text x="837.89" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="1029.5" y="613" width="0.1" height="15.0" fill="rgb(243,185,20)" rx="2" ry="2" />
|
|
<text x="1032.49" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (3 samples, 0.01%)</title><rect x="973.6" y="437" width="0.2" height="15.0" fill="rgb(246,2,6)" rx="2" ry="2" />
|
|
<text x="976.63" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSH_ENTRY (16 samples, 0.08%)</title><rect x="569.3" y="485" width="1.0" height="15.0" fill="rgb(247,95,38)" rx="2" ry="2" />
|
|
<text x="572.33" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (29 samples, 0.14%)</title><rect x="296.4" y="437" width="1.8" height="15.0" fill="rgb(216,14,9)" rx="2" ry="2" />
|
|
<text x="299.45" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithServerHello (4 samples, 0.02%)</title><rect x="333.9" y="469" width="0.2" height="15.0" fill="rgb(219,48,20)" rx="2" ry="2" />
|
|
<text x="336.90" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dictator_malloc (2 samples, 0.01%)</title><rect x="580.8" y="421" width="0.1" height="15.0" fill="rgb(236,163,46)" rx="2" ry="2" />
|
|
<text x="583.77" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (72 samples, 0.36%)</title><rect x="484.5" y="549" width="4.2" height="15.0" fill="rgb(214,203,38)" rx="2" ry="2" />
|
|
<text x="487.50" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="916.8" y="581" width="0.1" height="15.0" fill="rgb(239,193,33)" rx="2" ry="2" />
|
|
<text x="919.77" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (10 samples, 0.05%)</title><rect x="394.3" y="645" width="0.6" height="15.0" fill="rgb(251,179,28)" rx="2" ry="2" />
|
|
<text x="397.31" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="300.5" y="501" width="0.3" height="15.0" fill="rgb(237,63,45)" rx="2" ry="2" />
|
|
<text x="303.46" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (177 samples, 0.88%)</title><rect x="368.7" y="485" width="10.4" height="15.0" fill="rgb(223,133,27)" rx="2" ry="2" />
|
|
<text x="371.71" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="488.4" y="405" width="0.1" height="15.0" fill="rgb(211,143,12)" rx="2" ry="2" />
|
|
<text x="491.39" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="561.3" y="309" width="0.2" height="15.0" fill="rgb(221,74,6)" rx="2" ry="2" />
|
|
<text x="564.30" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (56 samples, 0.28%)</title><rect x="594.0" y="437" width="3.3" height="15.0" fill="rgb(215,130,11)" rx="2" ry="2" />
|
|
<text x="596.98" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (48 samples, 0.24%)</title><rect x="327.1" y="341" width="2.9" height="15.0" fill="rgb(246,11,38)" rx="2" ry="2" />
|
|
<text x="330.12" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (3 samples, 0.01%)</title><rect x="395.0" y="645" width="0.1" height="15.0" fill="rgb(237,56,48)" rx="2" ry="2" />
|
|
<text x="397.96" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (9 samples, 0.04%)</title><rect x="413.2" y="645" width="0.6" height="15.0" fill="rgb(242,86,54)" rx="2" ry="2" />
|
|
<text x="416.24" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pbe_ul3l4_cache_find (3 samples, 0.01%)</title><rect x="1026.4" y="421" width="0.1" height="15.0" fill="rgb(223,19,15)" rx="2" ry="2" />
|
|
<text x="1029.37" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="801.6" y="501" width="0.1" height="15.0" fill="rgb(220,118,15)" rx="2" ry="2" />
|
|
<text x="804.56" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (4 samples, 0.02%)</title><rect x="785.8" y="485" width="0.2" height="15.0" fill="rgb(224,125,44)" rx="2" ry="2" />
|
|
<text x="788.75" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="338.9" y="453" width="0.1" height="15.0" fill="rgb(218,8,29)" rx="2" ry="2" />
|
|
<text x="341.92" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (6 samples, 0.03%)</title><rect x="332.1" y="357" width="0.3" height="15.0" fill="rgb(229,111,52)" rx="2" ry="2" />
|
|
<text x="335.08" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="785.3" y="517" width="0.1" height="15.0" fill="rgb(220,1,25)" rx="2" ry="2" />
|
|
<text x="788.28" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (25 samples, 0.12%)</title><rect x="979.0" y="565" width="1.5" height="15.0" fill="rgb(240,153,2)" rx="2" ry="2" />
|
|
<text x="982.00" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (12 samples, 0.06%)</title><rect x="461.8" y="565" width="0.8" height="15.0" fill="rgb(235,214,23)" rx="2" ry="2" />
|
|
<text x="464.85" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (38 samples, 0.19%)</title><rect x="1024.5" y="549" width="2.2" height="15.0" fill="rgb(212,102,24)" rx="2" ry="2" />
|
|
<text x="1027.48" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_udp_entry (2 samples, 0.01%)</title><rect x="963.8" y="645" width="0.2" height="15.0" fill="rgb(242,42,12)" rx="2" ry="2" />
|
|
<text x="966.84" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libpthread-2.17.so] (2 samples, 0.01%)</title><rect x="984.4" y="549" width="0.1" height="15.0" fill="rgb(241,160,17)" rx="2" ry="2" />
|
|
<text x="987.43" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (14 samples, 0.07%)</title><rect x="147.3" y="597" width="0.9" height="15.0" fill="rgb(213,221,27)" rx="2" ry="2" />
|
|
<text x="150.32" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (13 samples, 0.06%)</title><rect x="562.0" y="341" width="0.7" height="15.0" fill="rgb(230,61,15)" rx="2" ry="2" />
|
|
<text x="564.95" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (5 samples, 0.02%)</title><rect x="1004.5" y="565" width="0.3" height="15.0" fill="rgb(215,74,31)" rx="2" ry="2" />
|
|
<text x="1007.48" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_set (2 samples, 0.01%)</title><rect x="327.7" y="69" width="0.1" height="15.0" fill="rgb(247,171,48)" rx="2" ry="2" />
|
|
<text x="330.71" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (4 samples, 0.02%)</title><rect x="556.4" y="389" width="0.2" height="15.0" fill="rgb(236,97,35)" rx="2" ry="2" />
|
|
<text x="559.41" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (157 samples, 0.78%)</title><rect x="665.1" y="549" width="9.3" height="15.0" fill="rgb(235,62,42)" rx="2" ry="2" />
|
|
<text x="668.12" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>imap4_entry_fun (4 samples, 0.02%)</title><rect x="567.9" y="469" width="0.2" height="15.0" fill="rgb(213,133,2)" rx="2" ry="2" />
|
|
<text x="570.91" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (14 samples, 0.07%)</title><rect x="315.7" y="485" width="0.8" height="15.0" fill="rgb(250,76,22)" rx="2" ry="2" />
|
|
<text x="318.68" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (10 samples, 0.05%)</title><rect x="1020.3" y="501" width="0.6" height="15.0" fill="rgb(240,180,17)" rx="2" ry="2" />
|
|
<text x="1023.29" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (8 samples, 0.04%)</title><rect x="977.1" y="469" width="0.4" height="15.0" fill="rgb(245,117,14)" rx="2" ry="2" />
|
|
<text x="980.05" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpLinkNode (2 samples, 0.01%)</title><rect x="967.9" y="597" width="0.1" height="15.0" fill="rgb(226,90,23)" rx="2" ry="2" />
|
|
<text x="970.91" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (5 samples, 0.02%)</title><rect x="570.0" y="437" width="0.3" height="15.0" fill="rgb(234,159,34)" rx="2" ry="2" />
|
|
<text x="572.98" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (9 samples, 0.04%)</title><rect x="967.3" y="565" width="0.5" height="15.0" fill="rgb(205,176,52)" rx="2" ry="2" />
|
|
<text x="970.26" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="323.3" y="325" width="0.6" height="15.0" fill="rgb(248,149,26)" rx="2" ry="2" />
|
|
<text x="326.35" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_tcpall_entry (2 samples, 0.01%)</title><rect x="673.6" y="453" width="0.1" height="15.0" fill="rgb(220,96,42)" rx="2" ry="2" />
|
|
<text x="676.56" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (4 samples, 0.02%)</title><rect x="667.5" y="485" width="0.2" height="15.0" fill="rgb(246,89,48)" rx="2" ry="2" />
|
|
<text x="670.48" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (1,487 samples, 7.43%)</title><rect x="305.1" y="677" width="87.7" height="15.0" fill="rgb(244,21,33)" rx="2" ry="2" />
|
|
<text x="308.06" y="687.5" >vxlan_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>on_each_cpu_mask (13 samples, 0.06%)</title><rect x="679.0" y="261" width="0.8" height="15.0" fill="rgb(209,141,48)" rx="2" ry="2" />
|
|
<text x="682.04" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (69 samples, 0.34%)</title><rect x="310.3" y="341" width="4.1" height="15.0" fill="rgb(246,203,28)" rx="2" ry="2" />
|
|
<text x="313.31" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (5 samples, 0.02%)</title><rect x="369.2" y="437" width="0.3" height="15.0" fill="rgb(251,101,44)" rx="2" ry="2" />
|
|
<text x="372.24" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sk_new (2 samples, 0.01%)</title><rect x="329.7" y="261" width="0.1" height="15.0" fill="rgb(245,181,49)" rx="2" ry="2" />
|
|
<text x="332.66" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="825.9" y="453" width="0.3" height="15.0" fill="rgb(213,217,51)" rx="2" ry="2" />
|
|
<text x="828.92" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (2 samples, 0.01%)</title><rect x="980.5" y="389" width="0.1" height="15.0" fill="rgb(208,1,6)" rx="2" ry="2" />
|
|
<text x="983.47" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="974.0" y="549" width="0.2" height="15.0" fill="rgb(208,226,38)" rx="2" ry="2" />
|
|
<text x="977.04" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new[] (2 samples, 0.01%)</title><rect x="30.2" y="693" width="0.1" height="15.0" fill="rgb(232,93,35)" rx="2" ry="2" />
|
|
<text x="33.17" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (41 samples, 0.20%)</title><rect x="964.0" y="677" width="2.4" height="15.0" fill="rgb(226,12,46)" rx="2" ry="2" />
|
|
<text x="967.02" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (29 samples, 0.14%)</title><rect x="413.2" y="757" width="1.8" height="15.0" fill="rgb(218,225,12)" rx="2" ry="2" />
|
|
<text x="416.24" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="392.3" y="485" width="0.1" height="15.0" fill="rgb(240,32,32)" rx="2" ry="2" />
|
|
<text x="395.30" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (257 samples, 1.28%)</title><rect x="649.3" y="533" width="15.2" height="15.0" fill="rgb(212,35,21)" rx="2" ry="2" />
|
|
<text x="652.31" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (41 samples, 0.20%)</title><rect x="650.0" y="517" width="2.4" height="15.0" fill="rgb(222,41,1)" rx="2" ry="2" />
|
|
<text x="652.96" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="341.5" y="341" width="0.1" height="15.0" fill="rgb(238,212,48)" rx="2" ry="2" />
|
|
<text x="344.45" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___clock_gettime (2 samples, 0.01%)</title><rect x="976.5" y="597" width="0.1" height="15.0" fill="rgb(212,225,35)" rx="2" ry="2" />
|
|
<text x="979.46" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="326.5" y="325" width="0.1" height="15.0" fill="rgb(254,127,46)" rx="2" ry="2" />
|
|
<text x="329.47" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>process_pkt_return (3 samples, 0.01%)</title><rect x="869.3" y="677" width="0.2" height="15.0" fill="rgb(223,32,8)" rx="2" ry="2" />
|
|
<text x="872.34" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="383.8" y="549" width="0.2" height="15.0" fill="rgb(224,16,21)" rx="2" ry="2" />
|
|
<text x="386.81" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (6 samples, 0.03%)</title><rect x="392.8" y="645" width="0.3" height="15.0" fill="rgb(229,62,45)" rx="2" ry="2" />
|
|
<text x="395.77" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (4 samples, 0.02%)</title><rect x="323.9" y="453" width="0.3" height="15.0" fill="rgb(229,128,51)" rx="2" ry="2" />
|
|
<text x="326.94" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (11 samples, 0.05%)</title><rect x="562.1" y="325" width="0.6" height="15.0" fill="rgb(219,218,16)" rx="2" ry="2" />
|
|
<text x="565.07" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="790.1" y="437" width="0.1" height="15.0" fill="rgb(226,72,29)" rx="2" ry="2" />
|
|
<text x="793.12" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (8 samples, 0.04%)</title><rect x="276.2" y="709" width="0.4" height="15.0" fill="rgb(243,192,6)" rx="2" ry="2" />
|
|
<text x="279.15" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="313.2" y="309" width="0.2" height="15.0" fill="rgb(225,151,15)" rx="2" ry="2" />
|
|
<text x="316.20" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="545.8" y="357" width="0.3" height="15.0" fill="rgb(232,41,33)" rx="2" ry="2" />
|
|
<text x="548.79" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="1003.3" y="549" width="0.1" height="15.0" fill="rgb(239,133,3)" rx="2" ry="2" />
|
|
<text x="1006.30" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>polling_stream_timeout (299 samples, 1.49%)</title><rect x="901.8" y="709" width="17.6" height="15.0" fill="rgb(232,42,40)" rx="2" ry="2" />
|
|
<text x="904.78" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="666.6" y="501" width="0.1" height="15.0" fill="rgb(207,134,5)" rx="2" ry="2" />
|
|
<text x="669.60" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>strncmp_one_word_mesa (4 samples, 0.02%)</title><rect x="568.3" y="437" width="0.3" height="15.0" fill="rgb(250,169,27)" rx="2" ry="2" />
|
|
<text x="571.32" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (111 samples, 0.55%)</title><rect x="361.3" y="533" width="6.5" height="15.0" fill="rgb(252,216,25)" rx="2" ry="2" />
|
|
<text x="364.27" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1019.2" y="725" width="0.1" height="15.0" fill="rgb(227,206,36)" rx="2" ry="2" />
|
|
<text x="1022.23" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>printaddr_r (30 samples, 0.15%)</title><rect x="629.8" y="469" width="1.8" height="15.0" fill="rgb(245,85,40)" rx="2" ry="2" />
|
|
<text x="632.79" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (11 samples, 0.05%)</title><rect x="337.6" y="469" width="0.6" height="15.0" fill="rgb(244,85,35)" rx="2" ry="2" />
|
|
<text x="340.56" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_MONT_CTX_set (7 samples, 0.03%)</title><rect x="585.3" y="309" width="0.4" height="15.0" fill="rgb(236,141,41)" rx="2" ry="2" />
|
|
<text x="588.31" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (145 samples, 0.72%)</title><rect x="992.9" y="565" width="8.6" height="15.0" fill="rgb(243,104,49)" rx="2" ry="2" />
|
|
<text x="995.92" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (73 samples, 0.36%)</title><rect x="319.6" y="373" width="4.3" height="15.0" fill="rgb(240,180,34)" rx="2" ry="2" />
|
|
<text x="322.63" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (4 samples, 0.02%)</title><rect x="606.8" y="469" width="0.2" height="15.0" fill="rgb(225,66,37)" rx="2" ry="2" />
|
|
<text x="609.78" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (3 samples, 0.01%)</title><rect x="49.0" y="629" width="0.2" height="15.0" fill="rgb(221,159,43)" rx="2" ry="2" />
|
|
<text x="51.99" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="315.3" y="373" width="0.1" height="15.0" fill="rgb(247,187,19)" rx="2" ry="2" />
|
|
<text x="318.26" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="986.1" y="645" width="0.2" height="15.0" fill="rgb(230,209,22)" rx="2" ry="2" />
|
|
<text x="989.14" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="413.1" y="533" width="0.1" height="15.0" fill="rgb(241,32,36)" rx="2" ry="2" />
|
|
<text x="416.07" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_udpate (3 samples, 0.01%)</title><rect x="1014.7" y="741" width="0.2" height="15.0" fill="rgb(226,112,36)" rx="2" ry="2" />
|
|
<text x="1017.75" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_scan_by_id (9 samples, 0.04%)</title><rect x="44.6" y="741" width="0.6" height="15.0" fill="rgb(218,47,31)" rx="2" ry="2" />
|
|
<text x="47.63" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (48 samples, 0.24%)</title><rect x="327.1" y="389" width="2.9" height="15.0" fill="rgb(207,107,26)" rx="2" ry="2" />
|
|
<text x="330.12" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (10 samples, 0.05%)</title><rect x="387.2" y="325" width="0.6" height="15.0" fill="rgb(221,161,17)" rx="2" ry="2" />
|
|
<text x="390.17" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (32 samples, 0.16%)</title><rect x="1026.8" y="661" width="1.9" height="15.0" fill="rgb(240,29,26)" rx="2" ry="2" />
|
|
<text x="1029.78" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="963.8" y="661" width="0.2" height="15.0" fill="rgb(229,202,31)" rx="2" ry="2" />
|
|
<text x="966.84" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (131 samples, 0.65%)</title><rect x="474.6" y="613" width="7.7" height="15.0" fill="rgb(243,206,28)" rx="2" ry="2" />
|
|
<text x="477.59" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (38 samples, 0.19%)</title><rect x="1021.2" y="501" width="2.2" height="15.0" fill="rgb(238,173,1)" rx="2" ry="2" />
|
|
<text x="1024.18" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="388.2" y="501" width="0.2" height="15.0" fill="rgb(238,160,10)" rx="2" ry="2" />
|
|
<text x="391.23" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (11 samples, 0.05%)</title><rect x="315.0" y="405" width="0.7" height="15.0" fill="rgb(241,48,51)" rx="2" ry="2" />
|
|
<text x="318.03" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="334.3" y="517" width="0.5" height="15.0" fill="rgb(215,165,12)" rx="2" ry="2" />
|
|
<text x="337.32" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="336.5" y="469" width="0.1" height="15.0" fill="rgb(217,113,32)" rx="2" ry="2" />
|
|
<text x="339.50" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="1028.1" y="437" width="0.2" height="15.0" fill="rgb(211,133,6)" rx="2" ry="2" />
|
|
<text x="1031.14" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="361.4" y="501" width="0.1" height="15.0" fill="rgb(213,183,49)" rx="2" ry="2" />
|
|
<text x="364.39" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_ex_c2i (8 samples, 0.04%)</title><rect x="329.2" y="229" width="0.5" height="15.0" fill="rgb(220,179,6)" rx="2" ry="2" />
|
|
<text x="332.19" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cpu_startup_entry (2,716 samples, 13.58%)</title><rect x="1029.7" y="725" width="160.2" height="15.0" fill="rgb(236,26,24)" rx="2" ry="2" />
|
|
<text x="1032.67" y="735.5" >cpu_startup_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>set_session_attributes (5 samples, 0.02%)</title><rect x="972.5" y="485" width="0.2" height="15.0" fill="rgb(211,162,10)" rx="2" ry="2" />
|
|
<text x="975.45" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_host_parser (6 samples, 0.03%)</title><rect x="604.5" y="469" width="0.3" height="15.0" fill="rgb(205,139,23)" rx="2" ry="2" />
|
|
<text x="607.48" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (87 samples, 0.43%)</title><rect x="483.6" y="613" width="5.1" height="15.0" fill="rgb(222,30,5)" rx="2" ry="2" />
|
|
<text x="486.62" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (42 samples, 0.21%)</title><rect x="530.7" y="517" width="2.5" height="15.0" fill="rgb(233,143,10)" rx="2" ry="2" />
|
|
<text x="533.75" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_signature_get_byid (6 samples, 0.03%)</title><rect x="815.1" y="453" width="0.3" height="15.0" fill="rgb(222,144,26)" rx="2" ry="2" />
|
|
<text x="818.07" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="301.6" y="453" width="0.1" height="15.0" fill="rgb(211,156,30)" rx="2" ry="2" />
|
|
<text x="304.58" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (18 samples, 0.09%)</title><rect x="579.5" y="421" width="1.1" height="15.0" fill="rgb(218,228,21)" rx="2" ry="2" />
|
|
<text x="582.53" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (13 samples, 0.06%)</title><rect x="973.3" y="629" width="0.7" height="15.0" fill="rgb(213,118,31)" rx="2" ry="2" />
|
|
<text x="976.28" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (3 samples, 0.01%)</title><rect x="332.3" y="341" width="0.1" height="15.0" fill="rgb(209,176,18)" rx="2" ry="2" />
|
|
<text x="335.25" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="977.5" y="485" width="0.1" height="15.0" fill="rgb(219,218,6)" rx="2" ry="2" />
|
|
<text x="980.52" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (490 samples, 2.45%)</title><rect x="982.5" y="725" width="28.9" height="15.0" fill="rgb(216,162,8)" rx="2" ry="2" />
|
|
<text x="985.54" y="735.5" >PR..</text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (8 samples, 0.04%)</title><rect x="976.1" y="613" width="0.5" height="15.0" fill="rgb(213,156,23)" rx="2" ry="2" />
|
|
<text x="979.11" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_add_proto_tag (5 samples, 0.02%)</title><rect x="560.8" y="469" width="0.3" height="15.0" fill="rgb(233,32,15)" rx="2" ry="2" />
|
|
<text x="563.83" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (21 samples, 0.10%)</title><rect x="553.6" y="341" width="1.2" height="15.0" fill="rgb(211,2,14)" rx="2" ry="2" />
|
|
<text x="556.58" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (49 samples, 0.24%)</title><rect x="1026.8" y="725" width="2.9" height="15.0" fill="rgb(226,193,48)" rx="2" ry="2" />
|
|
<text x="1029.78" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (497 samples, 2.48%)</title><rect x="123.1" y="645" width="29.4" height="15.0" fill="rgb(230,159,47)" rx="2" ry="2" />
|
|
<text x="126.14" y="655.5" >ms..</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (46 samples, 0.23%)</title><rect x="576.2" y="357" width="2.7" height="15.0" fill="rgb(223,95,27)" rx="2" ry="2" />
|
|
<text x="579.23" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="1029.5" y="645" width="0.1" height="15.0" fill="rgb(240,104,9)" rx="2" ry="2" />
|
|
<text x="1032.49" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (7 samples, 0.03%)</title><rect x="824.7" y="469" width="0.4" height="15.0" fill="rgb(218,35,4)" rx="2" ry="2" />
|
|
<text x="827.69" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="597.8" y="453" width="0.1" height="15.0" fill="rgb(224,204,4)" rx="2" ry="2" />
|
|
<text x="600.76" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BKDR_hash_algo (4 samples, 0.02%)</title><rect x="607.3" y="437" width="0.2" height="15.0" fill="rgb(206,211,46)" rx="2" ry="2" />
|
|
<text x="610.26" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="412.4" y="597" width="0.1" height="15.0" fill="rgb(212,173,8)" rx="2" ry="2" />
|
|
<text x="415.36" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="538.9" y="485" width="0.2" height="15.0" fill="rgb(244,47,34)" rx="2" ry="2" />
|
|
<text x="541.95" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (3 samples, 0.01%)</title><rect x="1028.5" y="389" width="0.2" height="15.0" fill="rgb(247,66,13)" rx="2" ry="2" />
|
|
<text x="1031.49" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (13 samples, 0.06%)</title><rect x="394.1" y="741" width="0.8" height="15.0" fill="rgb(232,86,8)" rx="2" ry="2" />
|
|
<text x="397.13" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (15 samples, 0.07%)</title><rect x="367.8" y="341" width="0.9" height="15.0" fill="rgb(227,85,26)" rx="2" ry="2" />
|
|
<text x="370.82" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SIP_UDP_ENTRY (8 samples, 0.04%)</title><rect x="827.3" y="517" width="0.5" height="15.0" fill="rgb(216,216,44)" rx="2" ry="2" />
|
|
<text x="830.28" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (145 samples, 0.72%)</title><rect x="992.9" y="581" width="8.6" height="15.0" fill="rgb(232,104,6)" rx="2" ry="2" />
|
|
<text x="995.92" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="975.6" y="709" width="0.2" height="15.0" fill="rgb(235,143,26)" rx="2" ry="2" />
|
|
<text x="978.58" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_recvfrom (3 samples, 0.01%)</title><rect x="937.5" y="597" width="0.1" height="15.0" fill="rgb(250,217,30)" rx="2" ry="2" />
|
|
<text x="940.47" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (172 samples, 0.86%)</title><rect x="810.4" y="501" width="10.2" height="15.0" fill="rgb(252,23,28)" rx="2" ry="2" />
|
|
<text x="813.41" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="584.4" y="261" width="0.1" height="15.0" fill="rgb(208,2,0)" rx="2" ry="2" />
|
|
<text x="587.37" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="485.1" y="469" width="0.2" height="15.0" fill="rgb(245,135,51)" rx="2" ry="2" />
|
|
<text x="488.15" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="967.9" y="517" width="0.1" height="15.0" fill="rgb(233,178,23)" rx="2" ry="2" />
|
|
<text x="970.91" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="566.8" y="341" width="0.1" height="15.0" fill="rgb(247,213,6)" rx="2" ry="2" />
|
|
<text x="569.79" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_make_outer_status (99 samples, 0.49%)</title><rect x="243.5" y="725" width="5.9" height="15.0" fill="rgb(246,224,20)" rx="2" ry="2" />
|
|
<text x="246.53" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_tcpall_entry (2 samples, 0.01%)</title><rect x="780.0" y="485" width="0.1" height="15.0" fill="rgb(216,11,24)" rx="2" ry="2" />
|
|
<text x="783.03" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_create (3 samples, 0.01%)</title><rect x="917.5" y="581" width="0.2" height="15.0" fill="rgb(206,155,42)" rx="2" ry="2" />
|
|
<text x="920.47" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (25 samples, 0.12%)</title><rect x="365.0" y="501" width="1.5" height="15.0" fill="rgb(214,42,3)" rx="2" ry="2" />
|
|
<text x="368.05" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (4 samples, 0.02%)</title><rect x="368.7" y="453" width="0.2" height="15.0" fill="rgb(221,47,34)" rx="2" ry="2" />
|
|
<text x="371.71" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>EC_GROUP_set_generator (5 samples, 0.02%)</title><rect x="585.0" y="325" width="0.3" height="15.0" fill="rgb(217,135,51)" rx="2" ry="2" />
|
|
<text x="588.02" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (3 samples, 0.01%)</title><rect x="1026.5" y="469" width="0.2" height="15.0" fill="rgb(253,85,28)" rx="2" ry="2" />
|
|
<text x="1029.54" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="276.5" y="613" width="0.1" height="15.0" fill="rgb(238,148,11)" rx="2" ry="2" />
|
|
<text x="279.51" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (9 samples, 0.04%)</title><rect x="365.6" y="469" width="0.6" height="15.0" fill="rgb(230,32,15)" rx="2" ry="2" />
|
|
<text x="368.64" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (3 samples, 0.01%)</title><rect x="1028.5" y="373" width="0.2" height="15.0" fill="rgb(217,217,50)" rx="2" ry="2" />
|
|
<text x="1031.49" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="584.5" y="277" width="0.2" height="15.0" fill="rgb(237,175,14)" rx="2" ry="2" />
|
|
<text x="587.49" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (12 samples, 0.06%)</title><rect x="412.5" y="693" width="0.7" height="15.0" fill="rgb(252,223,44)" rx="2" ry="2" />
|
|
<text x="415.48" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (26 samples, 0.13%)</title><rect x="187.4" y="741" width="1.5" height="15.0" fill="rgb(218,98,12)" rx="2" ry="2" />
|
|
<text x="190.38" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="1018.6" y="693" width="0.2" height="15.0" fill="rgb(220,194,33)" rx="2" ry="2" />
|
|
<text x="1021.64" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_get_platform_opt (7 samples, 0.03%)</title><rect x="856.2" y="501" width="0.5" height="15.0" fill="rgb(235,74,13)" rx="2" ry="2" />
|
|
<text x="859.24" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="565.6" y="325" width="0.1" height="15.0" fill="rgb(209,147,34)" rx="2" ry="2" />
|
|
<text x="568.61" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (65 samples, 0.32%)</title><rect x="1019.6" y="549" width="3.8" height="15.0" fill="rgb(206,192,33)" rx="2" ry="2" />
|
|
<text x="1022.58" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="316.5" y="309" width="0.2" height="15.0" fill="rgb(233,49,20)" rx="2" ry="2" />
|
|
<text x="319.50" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (2 samples, 0.01%)</title><rect x="980.5" y="549" width="0.1" height="15.0" fill="rgb(216,55,31)" rx="2" ry="2" />
|
|
<text x="983.47" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (3 samples, 0.01%)</title><rect x="313.5" y="277" width="0.2" height="15.0" fill="rgb(210,183,25)" rx="2" ry="2" />
|
|
<text x="316.49" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (137 samples, 0.68%)</title><rect x="296.4" y="677" width="8.1" height="15.0" fill="rgb(205,169,51)" rx="2" ry="2" />
|
|
<text x="299.45" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (5 samples, 0.02%)</title><rect x="670.5" y="501" width="0.3" height="15.0" fill="rgb(216,148,0)" rx="2" ry="2" />
|
|
<text x="673.55" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="980.3" y="549" width="0.2" height="15.0" fill="rgb(243,169,54)" rx="2" ry="2" />
|
|
<text x="983.30" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="588.7" y="325" width="0.3" height="15.0" fill="rgb(209,101,35)" rx="2" ry="2" />
|
|
<text x="591.67" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CDirectIndex::Find (8 samples, 0.04%)</title><rect x="166.6" y="693" width="0.5" height="15.0" fill="rgb(218,3,7)" rx="2" ry="2" />
|
|
<text x="169.61" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (6 samples, 0.03%)</title><rect x="579.2" y="421" width="0.3" height="15.0" fill="rgb(220,22,49)" rx="2" ry="2" />
|
|
<text x="582.18" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_bsearch (2 samples, 0.01%)</title><rect x="49.2" y="709" width="0.1" height="15.0" fill="rgb(208,42,11)" rx="2" ry="2" />
|
|
<text x="52.17" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (5 samples, 0.02%)</title><rect x="596.8" y="405" width="0.3" height="15.0" fill="rgb(215,215,50)" rx="2" ry="2" />
|
|
<text x="599.81" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="1028.1" y="469" width="0.2" height="15.0" fill="rgb(220,14,31)" rx="2" ry="2" />
|
|
<text x="1031.14" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="414.7" y="629" width="0.1" height="15.0" fill="rgb(206,212,54)" rx="2" ry="2" />
|
|
<text x="417.72" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="320.3" y="309" width="0.2" height="15.0" fill="rgb(251,229,30)" rx="2" ry="2" />
|
|
<text x="323.34" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (81 samples, 0.40%)</title><rect x="687.3" y="501" width="4.8" height="15.0" fill="rgb(237,12,3)" rx="2" ry="2" />
|
|
<text x="690.30" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="299.8" y="453" width="0.2" height="15.0" fill="rgb(232,49,37)" rx="2" ry="2" />
|
|
<text x="302.81" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="357.7" y="405" width="0.3" height="15.0" fill="rgb(248,206,39)" rx="2" ry="2" />
|
|
<text x="360.74" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (5 samples, 0.02%)</title><rect x="380.5" y="517" width="0.3" height="15.0" fill="rgb(232,127,49)" rx="2" ry="2" />
|
|
<text x="383.50" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (8 samples, 0.04%)</title><rect x="983.1" y="549" width="0.5" height="15.0" fill="rgb(225,148,46)" rx="2" ry="2" />
|
|
<text x="986.13" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_send_burst_flush (53 samples, 0.26%)</title><rect x="898.7" y="709" width="3.1" height="15.0" fill="rgb(242,134,7)" rx="2" ry="2" />
|
|
<text x="901.66" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="1011.1" y="565" width="0.2" height="15.0" fill="rgb(226,201,42)" rx="2" ry="2" />
|
|
<text x="1014.09" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (3 samples, 0.01%)</title><rect x="329.8" y="229" width="0.2" height="15.0" fill="rgb(250,207,23)" rx="2" ry="2" />
|
|
<text x="332.78" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="753.5" y="485" width="0.2" height="15.0" fill="rgb(234,214,9)" rx="2" ry="2" />
|
|
<text x="756.49" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssh.so] (14 samples, 0.07%)</title><rect x="569.4" y="469" width="0.9" height="15.0" fill="rgb(253,117,19)" rx="2" ry="2" />
|
|
<text x="572.44" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (9 samples, 0.04%)</title><rect x="304.5" y="677" width="0.6" height="15.0" fill="rgb(237,19,41)" rx="2" ry="2" />
|
|
<text x="307.53" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (5 samples, 0.02%)</title><rect x="1003.8" y="613" width="0.3" height="15.0" fill="rgb(227,76,28)" rx="2" ry="2" />
|
|
<text x="1006.77" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="368.9" y="421" width="0.2" height="15.0" fill="rgb(219,38,19)" rx="2" ry="2" />
|
|
<text x="371.94" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (22 samples, 0.11%)</title><rect x="974.2" y="581" width="1.3" height="15.0" fill="rgb(240,163,42)" rx="2" ry="2" />
|
|
<text x="977.22" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (3 samples, 0.01%)</title><rect x="673.4" y="453" width="0.2" height="15.0" fill="rgb(233,86,0)" rx="2" ry="2" />
|
|
<text x="676.38" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (6 samples, 0.03%)</title><rect x="364.6" y="469" width="0.4" height="15.0" fill="rgb(229,85,6)" rx="2" ry="2" />
|
|
<text x="367.64" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (192 samples, 0.96%)</title><rect x="367.8" y="533" width="11.3" height="15.0" fill="rgb(252,161,25)" rx="2" ry="2" />
|
|
<text x="370.82" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="601.9" y="421" width="0.2" height="15.0" fill="rgb(232,6,46)" rx="2" ry="2" />
|
|
<text x="604.95" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>first_data_process (2 samples, 0.01%)</title><rect x="301.1" y="517" width="0.1" height="15.0" fill="rgb(254,213,47)" rx="2" ry="2" />
|
|
<text x="304.11" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_hit_path_list (72 samples, 0.36%)</title><rect x="546.6" y="437" width="4.2" height="15.0" fill="rgb(235,107,43)" rx="2" ry="2" />
|
|
<text x="549.56" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_CTX_get (2 samples, 0.01%)</title><rect x="585.3" y="293" width="0.1" height="15.0" fill="rgb(251,219,48)" rx="2" ry="2" />
|
|
<text x="588.31" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_tcpall_entry (152 samples, 0.76%)</title><rect x="622.8" y="485" width="9.0" height="15.0" fill="rgb(221,62,21)" rx="2" ry="2" />
|
|
<text x="625.83" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="984.6" y="597" width="0.1" height="15.0" fill="rgb(212,38,6)" rx="2" ry="2" />
|
|
<text x="987.60" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_id (3 samples, 0.01%)</title><rect x="984.6" y="661" width="0.2" height="15.0" fill="rgb(221,91,6)" rx="2" ry="2" />
|
|
<text x="987.60" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (9 samples, 0.04%)</title><rect x="825.7" y="485" width="0.5" height="15.0" fill="rgb(226,181,9)" rx="2" ry="2" />
|
|
<text x="828.69" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (76 samples, 0.38%)</title><rect x="371.2" y="405" width="4.5" height="15.0" fill="rgb(232,131,54)" rx="2" ry="2" />
|
|
<text x="374.24" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (177 samples, 0.88%)</title><rect x="810.1" y="517" width="10.5" height="15.0" fill="rgb(219,130,35)" rx="2" ry="2" />
|
|
<text x="813.12" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_fqdn_plugin_get_N_ex_data (2 samples, 0.01%)</title><rect x="1022.8" y="437" width="0.1" height="15.0" fill="rgb(211,3,49)" rx="2" ry="2" />
|
|
<text x="1025.77" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (14 samples, 0.07%)</title><rect x="537.9" y="501" width="0.8" height="15.0" fill="rgb(209,169,4)" rx="2" ry="2" />
|
|
<text x="540.89" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="671.1" y="373" width="0.2" height="15.0" fill="rgb(218,202,33)" rx="2" ry="2" />
|
|
<text x="674.08" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ec_GFp_simple_oct2point (2 samples, 0.01%)</title><rect x="585.8" y="341" width="0.1" height="15.0" fill="rgb(241,92,4)" rx="2" ry="2" />
|
|
<text x="588.78" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="919.1" y="533" width="0.3" height="15.0" fill="rgb(240,222,22)" rx="2" ry="2" />
|
|
<text x="922.07" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (16 samples, 0.08%)</title><rect x="785.4" y="533" width="0.9" height="15.0" fill="rgb(208,116,16)" rx="2" ry="2" />
|
|
<text x="788.40" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (87 samples, 0.43%)</title><rect x="296.4" y="613" width="5.2" height="15.0" fill="rgb(215,15,20)" rx="2" ry="2" />
|
|
<text x="299.45" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="782.8" y="501" width="0.1" height="15.0" fill="rgb(218,52,25)" rx="2" ry="2" />
|
|
<text x="785.80" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_ssl_entry (12 samples, 0.06%)</title><rect x="589.0" y="341" width="0.7" height="15.0" fill="rgb(241,51,51)" rx="2" ry="2" />
|
|
<text x="592.03" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CNaiveIntervalIndex::Find (14 samples, 0.07%)</title><rect x="363.5" y="421" width="0.8" height="15.0" fill="rgb(219,9,36)" rx="2" ry="2" />
|
|
<text x="366.52" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpReqResHeader (7 samples, 0.03%)</title><rect x="976.6" y="613" width="0.4" height="15.0" fill="rgb(233,85,52)" rx="2" ry="2" />
|
|
<text x="979.58" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (6 samples, 0.03%)</title><rect x="970.2" y="709" width="0.3" height="15.0" fill="rgb(209,100,1)" rx="2" ry="2" />
|
|
<text x="973.15" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithStartLine (26 samples, 0.13%)</title><rect x="561.2" y="437" width="1.6" height="15.0" fill="rgb(221,158,6)" rx="2" ry="2" />
|
|
<text x="564.24" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (3 samples, 0.01%)</title><rect x="298.0" y="373" width="0.2" height="15.0" fill="rgb(248,200,22)" rx="2" ry="2" />
|
|
<text x="300.98" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (180 samples, 0.90%)</title><rect x="305.1" y="501" width="10.6" height="15.0" fill="rgb(226,141,7)" rx="2" ry="2" />
|
|
<text x="308.06" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (27 samples, 0.13%)</title><rect x="324.2" y="357" width="1.6" height="15.0" fill="rgb(243,95,18)" rx="2" ry="2" />
|
|
<text x="327.23" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="669.7" y="437" width="0.1" height="15.0" fill="rgb(228,97,10)" rx="2" ry="2" />
|
|
<text x="672.72" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (111 samples, 0.55%)</title><rect x="1004.9" y="709" width="6.5" height="15.0" fill="rgb(220,51,3)" rx="2" ry="2" />
|
|
<text x="1007.90" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_thread (125 samples, 0.62%)</title><rect x="1019.3" y="757" width="7.4" height="15.0" fill="rgb(220,215,54)" rx="2" ry="2" />
|
|
<text x="1022.35" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (4 samples, 0.02%)</title><rect x="333.9" y="421" width="0.2" height="15.0" fill="rgb(239,208,0)" rx="2" ry="2" />
|
|
<text x="336.90" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>default_send_IPI_mask_sequence_phys (4 samples, 0.02%)</title><rect x="679.6" y="213" width="0.2" height="15.0" fill="rgb(209,44,51)" rx="2" ry="2" />
|
|
<text x="682.58" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (6 samples, 0.03%)</title><rect x="975.8" y="645" width="0.3" height="15.0" fill="rgb(232,189,40)" rx="2" ry="2" />
|
|
<text x="978.75" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (22 samples, 0.11%)</title><rect x="1011.7" y="693" width="1.3" height="15.0" fill="rgb(223,152,0)" rx="2" ry="2" />
|
|
<text x="1014.74" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="277.2" y="757" width="0.2" height="15.0" fill="rgb(235,29,10)" rx="2" ry="2" />
|
|
<text x="280.22" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_copy (6 samples, 0.03%)</title><rect x="328.1" y="245" width="0.3" height="15.0" fill="rgb(222,40,6)" rx="2" ry="2" />
|
|
<text x="331.06" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (31 samples, 0.15%)</title><rect x="707.1" y="373" width="1.9" height="15.0" fill="rgb(223,197,40)" rx="2" ry="2" />
|
|
<text x="710.12" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new (12 samples, 0.06%)</title><rect x="375.8" y="437" width="0.7" height="15.0" fill="rgb(242,100,44)" rx="2" ry="2" />
|
|
<text x="378.79" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="987.0" y="501" width="0.2" height="15.0" fill="rgb(217,194,42)" rx="2" ry="2" />
|
|
<text x="990.02" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (17 samples, 0.08%)</title><rect x="298.5" y="405" width="1.0" height="15.0" fill="rgb(228,115,0)" rx="2" ry="2" />
|
|
<text x="301.51" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (21 samples, 0.10%)</title><rect x="1002.2" y="597" width="1.2" height="15.0" fill="rgb(248,25,26)" rx="2" ry="2" />
|
|
<text x="1005.18" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_rule_get_ex_data (7 samples, 0.03%)</title><rect x="361.5" y="517" width="0.4" height="15.0" fill="rgb(239,189,32)" rx="2" ry="2" />
|
|
<text x="364.51" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (3 samples, 0.01%)</title><rect x="982.8" y="661" width="0.2" height="15.0" fill="rgb(215,190,23)" rx="2" ry="2" />
|
|
<text x="985.77" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (31 samples, 0.15%)</title><rect x="324.2" y="469" width="1.8" height="15.0" fill="rgb(234,53,33)" rx="2" ry="2" />
|
|
<text x="327.17" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="978.6" y="693" width="0.2" height="15.0" fill="rgb(243,195,7)" rx="2" ry="2" />
|
|
<text x="981.65" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BIO_snprintf (2 samples, 0.01%)</title><rect x="583.4" y="373" width="0.1" height="15.0" fill="rgb(237,157,11)" rx="2" ry="2" />
|
|
<text x="586.37" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="967.8" y="501" width="0.1" height="15.0" fill="rgb(221,30,8)" rx="2" ry="2" />
|
|
<text x="970.79" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (8 samples, 0.04%)</title><rect x="971.3" y="469" width="0.4" height="15.0" fill="rgb(236,29,2)" rx="2" ry="2" />
|
|
<text x="974.27" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="1027.7" y="565" width="0.3" height="15.0" fill="rgb(234,105,41)" rx="2" ry="2" />
|
|
<text x="1030.66" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_scan_by_id (68 samples, 0.34%)</title><rect x="195.2" y="725" width="4.0" height="15.0" fill="rgb(217,12,31)" rx="2" ry="2" />
|
|
<text x="198.22" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (19 samples, 0.09%)</title><rect x="413.2" y="693" width="1.2" height="15.0" fill="rgb(230,99,5)" rx="2" ry="2" />
|
|
<text x="416.24" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (21 samples, 0.10%)</title><rect x="533.5" y="485" width="1.3" height="15.0" fill="rgb(207,209,8)" rx="2" ry="2" />
|
|
<text x="536.52" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (38 samples, 0.19%)</title><rect x="362.7" y="485" width="2.3" height="15.0" fill="rgb(235,62,8)" rx="2" ry="2" />
|
|
<text x="365.75" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (9 samples, 0.04%)</title><rect x="394.4" y="533" width="0.5" height="15.0" fill="rgb(241,14,41)" rx="2" ry="2" />
|
|
<text x="397.37" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_udp_entry (4 samples, 0.02%)</title><rect x="1019.3" y="549" width="0.3" height="15.0" fill="rgb(220,182,24)" rx="2" ry="2" />
|
|
<text x="1022.35" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (2 samples, 0.01%)</title><rect x="271.7" y="661" width="0.1" height="15.0" fill="rgb(243,213,23)" rx="2" ry="2" />
|
|
<text x="274.73" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="963.8" y="677" width="0.2" height="15.0" fill="rgb(233,60,23)" rx="2" ry="2" />
|
|
<text x="966.84" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (6 samples, 0.03%)</title><rect x="917.7" y="581" width="0.3" height="15.0" fill="rgb(254,154,3)" rx="2" ry="2" />
|
|
<text x="920.65" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (39 samples, 0.19%)</title><rect x="302.0" y="389" width="2.3" height="15.0" fill="rgb(226,170,19)" rx="2" ry="2" />
|
|
<text x="304.99" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="917.5" y="549" width="0.2" height="15.0" fill="rgb(239,130,47)" rx="2" ry="2" />
|
|
<text x="920.53" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_create (5 samples, 0.02%)</title><rect x="535.8" y="533" width="0.3" height="15.0" fill="rgb(241,96,11)" rx="2" ry="2" />
|
|
<text x="538.76" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (14 samples, 0.07%)</title><rect x="530.9" y="485" width="0.9" height="15.0" fill="rgb(249,191,16)" rx="2" ry="2" />
|
|
<text x="533.92" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (5 samples, 0.02%)</title><rect x="818.8" y="421" width="0.3" height="15.0" fill="rgb(210,128,45)" rx="2" ry="2" />
|
|
<text x="821.85" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (44 samples, 0.22%)</title><rect x="915.7" y="645" width="2.6" height="15.0" fill="rgb(246,129,37)" rx="2" ry="2" />
|
|
<text x="918.70" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (79 samples, 0.39%)</title><rect x="484.1" y="597" width="4.6" height="15.0" fill="rgb(232,47,20)" rx="2" ry="2" />
|
|
<text x="487.09" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (10 samples, 0.05%)</title><rect x="978.0" y="469" width="0.6" height="15.0" fill="rgb(240,148,8)" rx="2" ry="2" />
|
|
<text x="981.00" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (137 samples, 0.68%)</title><rect x="296.4" y="645" width="8.1" height="15.0" fill="rgb(227,165,53)" rx="2" ry="2" />
|
|
<text x="299.45" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="1007.8" y="581" width="0.2" height="15.0" fill="rgb(250,41,50)" rx="2" ry="2" />
|
|
<text x="1010.79" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (35 samples, 0.17%)</title><rect x="296.4" y="485" width="2.1" height="15.0" fill="rgb(227,24,36)" rx="2" ry="2" />
|
|
<text x="299.45" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (35 samples, 0.17%)</title><rect x="330.4" y="389" width="2.0" height="15.0" fill="rgb(247,165,53)" rx="2" ry="2" />
|
|
<text x="333.36" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (4 samples, 0.02%)</title><rect x="334.6" y="469" width="0.2" height="15.0" fill="rgb(224,206,21)" rx="2" ry="2" />
|
|
<text x="337.55" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_UDP_PACKET_ENTRY (42 samples, 0.21%)</title><rect x="822.6" y="517" width="2.5" height="15.0" fill="rgb(246,186,11)" rx="2" ry="2" />
|
|
<text x="825.62" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (121 samples, 0.60%)</title><rect x="1019.6" y="645" width="7.1" height="15.0" fill="rgb(238,176,52)" rx="2" ry="2" />
|
|
<text x="1022.58" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_searchstream (588 samples, 2.94%)</title><rect x="54.2" y="725" width="34.7" height="15.0" fill="rgb(254,214,37)" rx="2" ry="2" />
|
|
<text x="57.18" y="735.5" >ru..</text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="991.6" y="565" width="0.1" height="15.0" fill="rgb(235,146,30)" rx="2" ry="2" />
|
|
<text x="994.62" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="977.8" y="485" width="0.2" height="15.0" fill="rgb(205,80,30)" rx="2" ry="2" />
|
|
<text x="980.76" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.01%)</title><rect x="974.0" y="613" width="0.2" height="15.0" fill="rgb(246,168,13)" rx="2" ry="2" />
|
|
<text x="977.04" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_cancel (5 samples, 0.02%)</title><rect x="369.5" y="437" width="0.3" height="15.0" fill="rgb(219,32,16)" rx="2" ry="2" />
|
|
<text x="372.53" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="327.7" y="53" width="0.1" height="15.0" fill="rgb(250,197,38)" rx="2" ry="2" />
|
|
<text x="330.71" y="63.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="975.8" y="485" width="0.3" height="15.0" fill="rgb(229,222,17)" rx="2" ry="2" />
|
|
<text x="978.75" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (6 samples, 0.03%)</title><rect x="300.8" y="565" width="0.3" height="15.0" fill="rgb(218,200,16)" rx="2" ry="2" />
|
|
<text x="303.75" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stratum_json_checker (2 samples, 0.01%)</title><rect x="605.0" y="453" width="0.1" height="15.0" fill="rgb(228,83,3)" rx="2" ry="2" />
|
|
<text x="608.01" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (15 samples, 0.07%)</title><rect x="367.8" y="405" width="0.9" height="15.0" fill="rgb(229,110,47)" rx="2" ry="2" />
|
|
<text x="370.82" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="984.2" y="629" width="0.2" height="15.0" fill="rgb(229,94,39)" rx="2" ry="2" />
|
|
<text x="987.19" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_releaseSslStream (2 samples, 0.01%)</title><rect x="671.7" y="437" width="0.1" height="15.0" fill="rgb(226,22,41)" rx="2" ry="2" />
|
|
<text x="674.73" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithServerHello (2 samples, 0.01%)</title><rect x="413.1" y="629" width="0.1" height="15.0" fill="rgb(221,49,50)" rx="2" ry="2" />
|
|
<text x="416.07" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (10 samples, 0.05%)</title><rect x="414.4" y="645" width="0.6" height="15.0" fill="rgb(210,113,37)" rx="2" ry="2" />
|
|
<text x="417.36" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (8 samples, 0.04%)</title><rect x="629.3" y="437" width="0.5" height="15.0" fill="rgb(236,59,1)" rx="2" ry="2" />
|
|
<text x="632.32" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="1003.5" y="629" width="0.1" height="15.0" fill="rgb(208,41,27)" rx="2" ry="2" />
|
|
<text x="1006.48" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (3 samples, 0.01%)</title><rect x="415.9" y="757" width="0.2" height="15.0" fill="rgb(213,128,28)" rx="2" ry="2" />
|
|
<text x="418.90" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (29 samples, 0.14%)</title><rect x="586.7" y="405" width="1.7" height="15.0" fill="rgb(231,10,26)" rx="2" ry="2" />
|
|
<text x="589.67" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (21 samples, 0.10%)</title><rect x="791.2" y="453" width="1.2" height="15.0" fill="rgb(211,224,35)" rx="2" ry="2" />
|
|
<text x="794.18" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_itoa_word (3 samples, 0.01%)</title><rect x="413.6" y="613" width="0.2" height="15.0" fill="rgb(205,58,20)" rx="2" ry="2" />
|
|
<text x="416.60" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (2 samples, 0.01%)</title><rect x="334.3" y="501" width="0.1" height="15.0" fill="rgb(205,60,51)" rx="2" ry="2" />
|
|
<text x="337.32" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_realloc (3 samples, 0.01%)</title><rect x="341.4" y="373" width="0.2" height="15.0" fill="rgb(230,21,14)" rx="2" ry="2" />
|
|
<text x="344.40" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (121 samples, 0.60%)</title><rect x="1019.6" y="613" width="7.1" height="15.0" fill="rgb(241,63,32)" rx="2" ry="2" />
|
|
<text x="1022.58" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (4 samples, 0.02%)</title><rect x="916.4" y="613" width="0.2" height="15.0" fill="rgb(227,207,43)" rx="2" ry="2" />
|
|
<text x="919.35" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (5 samples, 0.02%)</title><rect x="328.8" y="213" width="0.3" height="15.0" fill="rgb(210,174,8)" rx="2" ry="2" />
|
|
<text x="331.83" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (2 samples, 0.01%)</title><rect x="412.4" y="645" width="0.1" height="15.0" fill="rgb(212,24,10)" rx="2" ry="2" />
|
|
<text x="415.36" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (13 samples, 0.06%)</title><rect x="669.1" y="485" width="0.8" height="15.0" fill="rgb(239,174,12)" rx="2" ry="2" />
|
|
<text x="672.13" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (30 samples, 0.15%)</title><rect x="1024.5" y="453" width="1.7" height="15.0" fill="rgb(239,70,44)" rx="2" ry="2" />
|
|
<text x="1027.48" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (14 samples, 0.07%)</title><rect x="977.8" y="533" width="0.8" height="15.0" fill="rgb(205,218,19)" rx="2" ry="2" />
|
|
<text x="980.76" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (49 samples, 0.24%)</title><rect x="316.7" y="357" width="2.9" height="15.0" fill="rgb(230,80,12)" rx="2" ry="2" />
|
|
<text x="319.74" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="306.4" y="421" width="0.2" height="15.0" fill="rgb(206,69,48)" rx="2" ry="2" />
|
|
<text x="309.42" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="918.8" y="501" width="0.1" height="15.0" fill="rgb(223,26,6)" rx="2" ry="2" />
|
|
<text x="921.77" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (8 samples, 0.04%)</title><rect x="981.7" y="629" width="0.4" height="15.0" fill="rgb(251,46,35)" rx="2" ry="2" />
|
|
<text x="984.65" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dns.so] (5 samples, 0.02%)</title><rect x="1003.8" y="629" width="0.3" height="15.0" fill="rgb(241,66,5)" rx="2" ry="2" />
|
|
<text x="1006.77" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (5 samples, 0.02%)</title><rect x="980.9" y="613" width="0.3" height="15.0" fill="rgb(224,68,7)" rx="2" ry="2" />
|
|
<text x="983.95" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="991.5" y="597" width="0.1" height="15.0" fill="rgb(247,29,47)" rx="2" ry="2" />
|
|
<text x="994.50" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_send_burst (6 samples, 0.03%)</title><rect x="379.2" y="501" width="0.4" height="15.0" fill="rgb(244,112,3)" rx="2" ry="2" />
|
|
<text x="382.21" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (3 samples, 0.01%)</title><rect x="586.2" y="389" width="0.2" height="15.0" fill="rgb(243,111,9)" rx="2" ry="2" />
|
|
<text x="589.20" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="830.9" y="485" width="0.1" height="15.0" fill="rgb(233,170,20)" rx="2" ry="2" />
|
|
<text x="833.88" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithStartLine (7 samples, 0.03%)</title><rect x="976.6" y="597" width="0.4" height="15.0" fill="rgb(253,7,15)" rx="2" ry="2" />
|
|
<text x="979.58" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pbe_uevent_set_end_layer@plt (2 samples, 0.01%)</title><rect x="546.2" y="357" width="0.1" height="15.0" fill="rgb(205,152,20)" rx="2" ry="2" />
|
|
<text x="549.20" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (20 samples, 0.10%)</title><rect x="565.9" y="453" width="1.2" height="15.0" fill="rgb(245,199,37)" rx="2" ry="2" />
|
|
<text x="568.90" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (12 samples, 0.06%)</title><rect x="394.2" y="693" width="0.7" height="15.0" fill="rgb(238,217,54)" rx="2" ry="2" />
|
|
<text x="397.19" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_stream_id (2 samples, 0.01%)</title><rect x="972.9" y="485" width="0.1" height="15.0" fill="rgb(217,136,31)" rx="2" ry="2" />
|
|
<text x="975.86" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_udp_entry (115 samples, 0.57%)</title><rect x="844.1" y="517" width="6.8" height="15.0" fill="rgb(239,79,37)" rx="2" ry="2" />
|
|
<text x="847.09" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="586.3" y="357" width="0.1" height="15.0" fill="rgb(216,150,33)" rx="2" ry="2" />
|
|
<text x="589.26" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_udpate (390 samples, 1.95%)</title><rect x="250.1" y="725" width="23.0" height="15.0" fill="rgb(217,220,26)" rx="2" ry="2" />
|
|
<text x="253.14" y="735.5" >M..</text>
|
|
</g>
|
|
<g >
|
|
<title>set_nat_linkinfo (51 samples, 0.25%)</title><rect x="358.3" y="469" width="3.0" height="15.0" fill="rgb(210,120,1)" rx="2" ry="2" />
|
|
<text x="361.27" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="383.9" y="437" width="0.1" height="15.0" fill="rgb(214,63,0)" rx="2" ry="2" />
|
|
<text x="386.93" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (4 samples, 0.02%)</title><rect x="463.6" y="597" width="0.2" height="15.0" fill="rgb(224,68,18)" rx="2" ry="2" />
|
|
<text x="466.56" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeRequestEntityPresent (2 samples, 0.01%)</title><rect x="1028.1" y="565" width="0.2" height="15.0" fill="rgb(220,101,44)" rx="2" ry="2" />
|
|
<text x="1031.14" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (27 samples, 0.13%)</title><rect x="536.2" y="517" width="1.6" height="15.0" fill="rgb(240,212,22)" rx="2" ry="2" />
|
|
<text x="539.23" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="304.3" y="405" width="0.1" height="15.0" fill="rgb(216,3,44)" rx="2" ry="2" />
|
|
<text x="307.29" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::find_matched_result (270 samples, 1.35%)</title><rect x="66.2" y="677" width="15.9" height="15.0" fill="rgb(233,91,46)" rx="2" ry="2" />
|
|
<text x="69.22" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="337.2" y="453" width="0.1" height="15.0" fill="rgb(231,33,31)" rx="2" ry="2" />
|
|
<text x="340.21" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (6 samples, 0.03%)</title><rect x="301.1" y="581" width="0.4" height="15.0" fill="rgb(214,142,2)" rx="2" ry="2" />
|
|
<text x="304.11" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="298.5" y="325" width="1.0" height="15.0" fill="rgb(216,104,36)" rx="2" ry="2" />
|
|
<text x="301.51" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (12 samples, 0.06%)</title><rect x="582.7" y="373" width="0.7" height="15.0" fill="rgb(208,73,52)" rx="2" ry="2" />
|
|
<text x="585.66" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (8 samples, 0.04%)</title><rect x="669.4" y="469" width="0.4" height="15.0" fill="rgb(212,84,37)" rx="2" ry="2" />
|
|
<text x="672.37" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (14 samples, 0.07%)</title><rect x="443.4" y="661" width="0.8" height="15.0" fill="rgb(244,60,4)" rx="2" ry="2" />
|
|
<text x="446.39" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count (2 samples, 0.01%)</title><rect x="182.7" y="693" width="0.1" height="15.0" fill="rgb(251,13,2)" rx="2" ry="2" />
|
|
<text x="185.72" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (45 samples, 0.22%)</title><rect x="301.8" y="549" width="2.6" height="15.0" fill="rgb(253,106,52)" rx="2" ry="2" />
|
|
<text x="304.76" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (9 samples, 0.04%)</title><rect x="304.5" y="661" width="0.6" height="15.0" fill="rgb(242,78,42)" rx="2" ry="2" />
|
|
<text x="307.53" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (9 samples, 0.04%)</title><rect x="394.4" y="501" width="0.5" height="15.0" fill="rgb(250,173,2)" rx="2" ry="2" />
|
|
<text x="397.37" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="981.1" y="533" width="0.1" height="15.0" fill="rgb(245,177,48)" rx="2" ry="2" />
|
|
<text x="984.06" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (49 samples, 0.24%)</title><rect x="975.8" y="709" width="2.8" height="15.0" fill="rgb(231,123,36)" rx="2" ry="2" />
|
|
<text x="978.75" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CPortIndex::Find (37 samples, 0.18%)</title><rect x="292.6" y="725" width="2.1" height="15.0" fill="rgb(253,199,5)" rx="2" ry="2" />
|
|
<text x="295.55" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="1028.5" y="517" width="0.2" height="15.0" fill="rgb(212,151,26)" rx="2" ry="2" />
|
|
<text x="1031.49" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (3 samples, 0.01%)</title><rect x="814.5" y="421" width="0.2" height="15.0" fill="rgb(206,81,11)" rx="2" ry="2" />
|
|
<text x="817.48" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pbe_ul3l4_cache_find (2 samples, 0.01%)</title><rect x="298.4" y="405" width="0.1" height="15.0" fill="rgb(212,90,22)" rx="2" ry="2" />
|
|
<text x="301.39" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="378.9" y="357" width="0.1" height="15.0" fill="rgb(241,38,35)" rx="2" ry="2" />
|
|
<text x="381.91" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_dns_entry (67 samples, 0.33%)</title><rect x="1007.5" y="677" width="3.9" height="15.0" fill="rgb(213,116,19)" rx="2" ry="2" />
|
|
<text x="1010.49" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wangw_ingress_build_session_key (7 samples, 0.03%)</title><rect x="621.7" y="469" width="0.4" height="15.0" fill="rgb(222,65,27)" rx="2" ry="2" />
|
|
<text x="624.71" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_shared_policy (3 samples, 0.01%)</title><rect x="605.7" y="469" width="0.2" height="15.0" fill="rgb(254,189,5)" rx="2" ry="2" />
|
|
<text x="608.72" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (43 samples, 0.21%)</title><rect x="301.8" y="437" width="2.5" height="15.0" fill="rgb(241,36,1)" rx="2" ry="2" />
|
|
<text x="304.76" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (3 samples, 0.01%)</title><rect x="832.2" y="437" width="0.2" height="15.0" fill="rgb(212,214,15)" rx="2" ry="2" />
|
|
<text x="835.18" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="963.8" y="565" width="0.2" height="15.0" fill="rgb(244,211,43)" rx="2" ry="2" />
|
|
<text x="966.84" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (5 samples, 0.02%)</title><rect x="304.7" y="517" width="0.3" height="15.0" fill="rgb(205,33,28)" rx="2" ry="2" />
|
|
<text x="307.71" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (47 samples, 0.23%)</title><rect x="816.1" y="421" width="2.7" height="15.0" fill="rgb(223,107,49)" rx="2" ry="2" />
|
|
<text x="819.07" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (3 samples, 0.01%)</title><rect x="307.4" y="405" width="0.2" height="15.0" fill="rgb(248,191,25)" rx="2" ry="2" />
|
|
<text x="310.42" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_dup (3 samples, 0.01%)</title><rect x="299.0" y="245" width="0.2" height="15.0" fill="rgb(234,63,48)" rx="2" ry="2" />
|
|
<text x="301.98" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1020.8" y="261" width="0.1" height="15.0" fill="rgb(216,86,27)" rx="2" ry="2" />
|
|
<text x="1023.76" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (3 samples, 0.01%)</title><rect x="356.9" y="453" width="0.1" height="15.0" fill="rgb(236,164,15)" rx="2" ry="2" />
|
|
<text x="359.85" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (6 samples, 0.03%)</title><rect x="840.9" y="453" width="0.4" height="15.0" fill="rgb(218,220,41)" rx="2" ry="2" />
|
|
<text x="843.91" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grab_mid (336 samples, 1.68%)</title><rect x="229.6" y="741" width="19.8" height="15.0" fill="rgb(218,10,53)" rx="2" ry="2" />
|
|
<text x="232.55" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="1028.1" y="421" width="0.2" height="15.0" fill="rgb(228,118,9)" rx="2" ry="2" />
|
|
<text x="1031.14" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="1001.8" y="549" width="0.2" height="15.0" fill="rgb(224,166,42)" rx="2" ry="2" />
|
|
<text x="1004.77" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="30.2" y="645" width="0.1" height="15.0" fill="rgb(250,152,27)" rx="2" ry="2" />
|
|
<text x="33.17" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="565.6" y="405" width="0.2" height="15.0" fill="rgb(226,191,33)" rx="2" ry="2" />
|
|
<text x="568.61" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509_PUBKEY_get (31 samples, 0.15%)</title><rect x="584.1" y="389" width="1.9" height="15.0" fill="rgb(214,34,48)" rx="2" ry="2" />
|
|
<text x="587.13" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="306.9" y="389" width="0.2" height="15.0" fill="rgb(231,63,6)" rx="2" ry="2" />
|
|
<text x="309.89" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithContentType (2 samples, 0.01%)</title><rect x="566.5" y="405" width="0.1" height="15.0" fill="rgb(249,54,13)" rx="2" ry="2" />
|
|
<text x="569.49" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smp_call_function_many (18 samples, 0.09%)</title><rect x="707.8" y="245" width="1.0" height="15.0" fill="rgb(214,152,7)" rx="2" ry="2" />
|
|
<text x="710.77" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_rr_str2json (5 samples, 0.02%)</title><rect x="983.8" y="645" width="0.3" height="15.0" fill="rgb(237,130,32)" rx="2" ry="2" />
|
|
<text x="986.78" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___clock_gettime (8 samples, 0.04%)</title><rect x="46.0" y="741" width="0.5" height="15.0" fill="rgb(244,216,22)" rx="2" ry="2" />
|
|
<text x="49.04" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (4 samples, 0.02%)</title><rect x="306.9" y="405" width="0.2" height="15.0" fill="rgb(245,177,54)" rx="2" ry="2" />
|
|
<text x="309.89" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="567.7" y="437" width="0.1" height="15.0" fill="rgb(240,205,40)" rx="2" ry="2" />
|
|
<text x="570.67" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="328.8" y="229" width="0.4" height="15.0" fill="rgb(223,94,16)" rx="2" ry="2" />
|
|
<text x="331.77" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (3 samples, 0.01%)</title><rect x="336.3" y="421" width="0.2" height="15.0" fill="rgb(231,92,20)" rx="2" ry="2" />
|
|
<text x="339.32" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="314.5" y="325" width="0.1" height="15.0" fill="rgb(245,99,0)" rx="2" ry="2" />
|
|
<text x="317.50" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (4 samples, 0.02%)</title><rect x="977.5" y="613" width="0.3" height="15.0" fill="rgb(212,183,25)" rx="2" ry="2" />
|
|
<text x="980.52" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="334.3" y="469" width="0.1" height="15.0" fill="rgb(230,19,0)" rx="2" ry="2" />
|
|
<text x="337.32" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (12 samples, 0.06%)</title><rect x="412.5" y="677" width="0.7" height="15.0" fill="rgb(208,120,3)" rx="2" ry="2" />
|
|
<text x="415.48" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="465.7" y="597" width="0.1" height="15.0" fill="rgb(232,210,37)" rx="2" ry="2" />
|
|
<text x="468.68" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (3 samples, 0.01%)</title><rect x="789.2" y="485" width="0.2" height="15.0" fill="rgb(250,84,50)" rx="2" ry="2" />
|
|
<text x="792.18" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseAppData (93 samples, 0.46%)</title><rect x="573.5" y="437" width="5.5" height="15.0" fill="rgb(206,58,40)" rx="2" ry="2" />
|
|
<text x="576.51" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="1014.2" y="629" width="0.1" height="15.0" fill="rgb(251,169,14)" rx="2" ry="2" />
|
|
<text x="1017.22" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (7 samples, 0.03%)</title><rect x="632.5" y="405" width="0.4" height="15.0" fill="rgb(212,228,43)" rx="2" ry="2" />
|
|
<text x="635.50" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="566.5" y="325" width="0.1" height="15.0" fill="rgb(221,212,21)" rx="2" ry="2" />
|
|
<text x="569.49" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (9 samples, 0.04%)</title><rect x="983.1" y="629" width="0.5" height="15.0" fill="rgb(231,222,13)" rx="2" ry="2" />
|
|
<text x="986.07" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__tls_get_addr@plt (2 samples, 0.01%)</title><rect x="315.5" y="341" width="0.1" height="15.0" fill="rgb(217,166,31)" rx="2" ry="2" />
|
|
<text x="318.50" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="334.1" y="469" width="0.2" height="15.0" fill="rgb(215,208,51)" rx="2" ry="2" />
|
|
<text x="337.14" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count (2 samples, 0.01%)</title><rect x="276.0" y="725" width="0.1" height="15.0" fill="rgb(246,4,12)" rx="2" ry="2" />
|
|
<text x="278.98" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="383.6" y="453" width="0.1" height="15.0" fill="rgb(251,143,31)" rx="2" ry="2" />
|
|
<text x="386.57" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (50 samples, 0.25%)</title><rect x="316.7" y="437" width="2.9" height="15.0" fill="rgb(206,206,38)" rx="2" ry="2" />
|
|
<text x="319.68" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="978.9" y="485" width="0.1" height="15.0" fill="rgb(221,143,50)" rx="2" ry="2" />
|
|
<text x="981.88" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="978.9" y="517" width="0.1" height="15.0" fill="rgb(211,158,4)" rx="2" ry="2" />
|
|
<text x="981.88" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="1007.7" y="629" width="0.3" height="15.0" fill="rgb(248,173,31)" rx="2" ry="2" />
|
|
<text x="1010.73" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="484.7" y="517" width="0.1" height="15.0" fill="rgb(237,45,13)" rx="2" ry="2" />
|
|
<text x="487.68" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (2 samples, 0.01%)</title><rect x="554.8" y="341" width="0.1" height="15.0" fill="rgb(223,112,50)" rx="2" ry="2" />
|
|
<text x="557.82" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_primitive_new (2 samples, 0.01%)</title><rect x="298.8" y="245" width="0.1" height="15.0" fill="rgb(245,66,29)" rx="2" ry="2" />
|
|
<text x="301.81" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="529.7" y="517" width="0.2" height="15.0" fill="rgb(225,181,46)" rx="2" ry="2" />
|
|
<text x="532.69" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_send_burst (10 samples, 0.05%)</title><rect x="276.6" y="741" width="0.6" height="15.0" fill="rgb(210,130,36)" rx="2" ry="2" />
|
|
<text x="279.63" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[capture_packet_plug.so] (6 samples, 0.03%)</title><rect x="379.2" y="533" width="0.4" height="15.0" fill="rgb(208,183,28)" rx="2" ry="2" />
|
|
<text x="382.21" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (2 samples, 0.01%)</title><rect x="970.5" y="533" width="0.1" height="15.0" fill="rgb(216,6,50)" rx="2" ry="2" />
|
|
<text x="973.50" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (2 samples, 0.01%)</title><rect x="361.0" y="421" width="0.1" height="15.0" fill="rgb(216,193,25)" rx="2" ry="2" />
|
|
<text x="363.98" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (148 samples, 0.74%)</title><rect x="909.6" y="677" width="8.8" height="15.0" fill="rgb(236,125,1)" rx="2" ry="2" />
|
|
<text x="912.63" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (4 samples, 0.02%)</title><rect x="973.0" y="613" width="0.3" height="15.0" fill="rgb(208,130,30)" rx="2" ry="2" />
|
|
<text x="976.04" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_nanosleep (74 samples, 0.37%)</title><rect x="921.2" y="613" width="4.4" height="15.0" fill="rgb(212,41,8)" rx="2" ry="2" />
|
|
<text x="924.19" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="981.7" y="613" width="0.1" height="15.0" fill="rgb(243,83,53)" rx="2" ry="2" />
|
|
<text x="984.65" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_SSL_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="588.6" y="341" width="0.4" height="15.0" fill="rgb(252,60,54)" rx="2" ry="2" />
|
|
<text x="591.62" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="562.3" y="309" width="0.4" height="15.0" fill="rgb(247,18,39)" rx="2" ry="2" />
|
|
<text x="565.31" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (127 samples, 0.63%)</title><rect x="788.4" y="549" width="7.5" height="15.0" fill="rgb(216,18,45)" rx="2" ry="2" />
|
|
<text x="791.41" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="608.3" y="453" width="0.1" height="15.0" fill="rgb(252,133,49)" rx="2" ry="2" />
|
|
<text x="611.32" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (125 samples, 0.62%)</title><rect x="1019.3" y="661" width="7.4" height="15.0" fill="rgb(217,165,46)" rx="2" ry="2" />
|
|
<text x="1022.35" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="383.8" y="485" width="0.2" height="15.0" fill="rgb(209,44,6)" rx="2" ry="2" />
|
|
<text x="386.81" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (2 samples, 0.01%)</title><rect x="550.7" y="421" width="0.1" height="15.0" fill="rgb(243,83,14)" rx="2" ry="2" />
|
|
<text x="553.69" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="301.6" y="517" width="0.1" height="15.0" fill="rgb(208,208,33)" rx="2" ry="2" />
|
|
<text x="304.58" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (98 samples, 0.49%)</title><rect x="483.0" y="629" width="5.7" height="15.0" fill="rgb(206,35,36)" rx="2" ry="2" />
|
|
<text x="485.97" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="333.0" y="341" width="0.2" height="15.0" fill="rgb(227,75,7)" rx="2" ry="2" />
|
|
<text x="336.02" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wire_graft_build_link_info (3 samples, 0.01%)</title><rect x="843.5" y="501" width="0.2" height="15.0" fill="rgb(210,130,32)" rx="2" ry="2" />
|
|
<text x="846.50" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (5 samples, 0.02%)</title><rect x="637.6" y="421" width="0.3" height="15.0" fill="rgb(247,64,12)" rx="2" ry="2" />
|
|
<text x="640.58" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (13 samples, 0.06%)</title><rect x="334.8" y="517" width="0.8" height="15.0" fill="rgb(251,186,6)" rx="2" ry="2" />
|
|
<text x="337.79" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="842.1" y="485" width="0.4" height="15.0" fill="rgb(251,144,21)" rx="2" ry="2" />
|
|
<text x="845.09" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (7 samples, 0.03%)</title><rect x="1002.8" y="549" width="0.4" height="15.0" fill="rgb(221,79,8)" rx="2" ry="2" />
|
|
<text x="1005.83" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (11 samples, 0.05%)</title><rect x="582.7" y="357" width="0.6" height="15.0" fill="rgb(240,116,26)" rx="2" ry="2" />
|
|
<text x="585.66" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (16 samples, 0.08%)</title><rect x="336.6" y="485" width="1.0" height="15.0" fill="rgb(240,73,10)" rx="2" ry="2" />
|
|
<text x="339.62" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="976.8" y="437" width="0.1" height="15.0" fill="rgb(235,108,25)" rx="2" ry="2" />
|
|
<text x="979.82" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (73 samples, 0.36%)</title><rect x="296.4" y="581" width="4.4" height="15.0" fill="rgb(248,81,18)" rx="2" ry="2" />
|
|
<text x="299.45" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (4 samples, 0.02%)</title><rect x="199.5" y="725" width="0.3" height="15.0" fill="rgb(234,69,0)" rx="2" ry="2" />
|
|
<text x="202.53" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (3 samples, 0.01%)</title><rect x="964.2" y="549" width="0.2" height="15.0" fill="rgb(217,226,39)" rx="2" ry="2" />
|
|
<text x="967.19" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (7 samples, 0.03%)</title><rect x="563.4" y="325" width="0.4" height="15.0" fill="rgb(233,108,13)" rx="2" ry="2" />
|
|
<text x="566.37" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (874 samples, 4.37%)</title><rect x="805.6" y="549" width="51.6" height="15.0" fill="rgb(247,68,22)" rx="2" ry="2" />
|
|
<text x="808.63" y="559.5" >strea..</text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_sse2 (19 samples, 0.09%)</title><rect x="108.8" y="677" width="1.1" height="15.0" fill="rgb(220,93,24)" rx="2" ry="2" />
|
|
<text x="111.81" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_tripleMatching (3 samples, 0.01%)</title><rect x="393.1" y="613" width="0.2" height="15.0" fill="rgb(245,229,24)" rx="2" ry="2" />
|
|
<text x="396.13" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="1017.7" y="709" width="0.1" height="15.0" fill="rgb(218,170,4)" rx="2" ry="2" />
|
|
<text x="1020.70" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpReqResHeader (27 samples, 0.13%)</title><rect x="561.2" y="453" width="1.6" height="15.0" fill="rgb(231,194,33)" rx="2" ry="2" />
|
|
<text x="564.24" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="822.4" y="485" width="0.2" height="15.0" fill="rgb(210,117,22)" rx="2" ry="2" />
|
|
<text x="825.39" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (5 samples, 0.02%)</title><rect x="831.1" y="453" width="0.3" height="15.0" fill="rgb(250,212,41)" rx="2" ry="2" />
|
|
<text x="834.06" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (4 samples, 0.02%)</title><rect x="383.8" y="581" width="0.2" height="15.0" fill="rgb(247,145,2)" rx="2" ry="2" />
|
|
<text x="386.81" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clear_page_erms (10 samples, 0.05%)</title><rect x="707.1" y="325" width="0.6" height="15.0" fill="rgb(249,105,35)" rx="2" ry="2" />
|
|
<text x="710.12" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="316.5" y="453" width="0.2" height="15.0" fill="rgb(248,74,8)" rx="2" ry="2" />
|
|
<text x="319.50" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (73 samples, 0.36%)</title><rect x="484.4" y="581" width="4.3" height="15.0" fill="rgb(225,121,42)" rx="2" ry="2" />
|
|
<text x="487.44" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new (20 samples, 0.10%)</title><rect x="357.1" y="469" width="1.2" height="15.0" fill="rgb(247,168,35)" rx="2" ry="2" />
|
|
<text x="360.09" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="1020.3" y="261" width="0.5" height="15.0" fill="rgb(233,150,6)" rx="2" ry="2" />
|
|
<text x="1023.29" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="981.7" y="597" width="0.1" height="15.0" fill="rgb(208,36,39)" rx="2" ry="2" />
|
|
<text x="984.65" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_id (3 samples, 0.01%)</title><rect x="333.0" y="357" width="0.2" height="15.0" fill="rgb(221,180,19)" rx="2" ry="2" />
|
|
<text x="336.02" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="1002.4" y="565" width="0.4" height="15.0" fill="rgb(210,154,54)" rx="2" ry="2" />
|
|
<text x="1005.36" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_mark_tcp (329 samples, 1.64%)</title><rect x="692.1" y="549" width="19.4" height="15.0" fill="rgb(245,110,9)" rx="2" ry="2" />
|
|
<text x="695.08" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (50 samples, 0.25%)</title><rect x="316.7" y="469" width="2.9" height="15.0" fill="rgb(227,66,52)" rx="2" ry="2" />
|
|
<text x="319.68" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (5 samples, 0.02%)</title><rect x="357.7" y="389" width="0.3" height="15.0" fill="rgb(235,14,6)" rx="2" ry="2" />
|
|
<text x="360.74" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>printaddr (5 samples, 0.02%)</title><rect x="1020.9" y="485" width="0.3" height="15.0" fill="rgb(215,213,2)" rx="2" ry="2" />
|
|
<text x="1023.88" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_recv_burst (212 samples, 1.06%)</title><rect x="951.2" y="677" width="12.5" height="15.0" fill="rgb(214,127,54)" rx="2" ry="2" />
|
|
<text x="954.16" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="334.0" y="373" width="0.1" height="15.0" fill="rgb(235,150,23)" rx="2" ry="2" />
|
|
<text x="336.96" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (3 samples, 0.01%)</title><rect x="392.8" y="629" width="0.2" height="15.0" fill="rgb(225,103,28)" rx="2" ry="2" />
|
|
<text x="395.77" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_child_id@plt (2 samples, 0.01%)</title><rect x="195.1" y="725" width="0.1" height="15.0" fill="rgb(252,144,28)" rx="2" ry="2" />
|
|
<text x="198.10" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (8 samples, 0.04%)</title><rect x="1019.8" y="405" width="0.5" height="15.0" fill="rgb(229,28,19)" rx="2" ry="2" />
|
|
<text x="1022.82" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (50 samples, 0.25%)</title><rect x="316.7" y="453" width="2.9" height="15.0" fill="rgb(215,203,42)" rx="2" ry="2" />
|
|
<text x="319.68" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1029.5" y="597" width="0.1" height="15.0" fill="rgb(216,105,42)" rx="2" ry="2" />
|
|
<text x="1032.49" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="978.9" y="469" width="0.1" height="15.0" fill="rgb(205,150,6)" rx="2" ry="2" />
|
|
<text x="981.88" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (27 samples, 0.13%)</title><rect x="1021.2" y="453" width="1.6" height="15.0" fill="rgb(231,45,25)" rx="2" ry="2" />
|
|
<text x="1024.18" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (3 samples, 0.01%)</title><rect x="393.4" y="533" width="0.1" height="15.0" fill="rgb(236,210,19)" rx="2" ry="2" />
|
|
<text x="396.36" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="984.4" y="517" width="0.1" height="15.0" fill="rgb(213,117,25)" rx="2" ry="2" />
|
|
<text x="987.43" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (3 samples, 0.01%)</title><rect x="831.2" y="437" width="0.2" height="15.0" fill="rgb(254,52,34)" rx="2" ry="2" />
|
|
<text x="834.17" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (9 samples, 0.04%)</title><rect x="532.0" y="437" width="0.5" height="15.0" fill="rgb(234,200,26)" rx="2" ry="2" />
|
|
<text x="534.99" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (27 samples, 0.13%)</title><rect x="580.9" y="373" width="1.6" height="15.0" fill="rgb(231,62,28)" rx="2" ry="2" />
|
|
<text x="583.95" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (15 samples, 0.07%)</title><rect x="461.7" y="581" width="0.9" height="15.0" fill="rgb(238,62,42)" rx="2" ry="2" />
|
|
<text x="464.67" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (3 samples, 0.01%)</title><rect x="1028.0" y="565" width="0.1" height="15.0" fill="rgb(232,137,2)" rx="2" ry="2" />
|
|
<text x="1030.96" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="301.6" y="533" width="0.1" height="15.0" fill="rgb(209,90,43)" rx="2" ry="2" />
|
|
<text x="304.58" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (17 samples, 0.08%)</title><rect x="792.4" y="453" width="1.0" height="15.0" fill="rgb(239,220,4)" rx="2" ry="2" />
|
|
<text x="795.42" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (6,217 samples, 31.08%)</title><rect x="496.7" y="629" width="366.7" height="15.0" fill="rgb(230,135,24)" rx="2" ry="2" />
|
|
<text x="499.65" y="639.5" >vxlan_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (12 samples, 0.06%)</title><rect x="966.4" y="645" width="0.7" height="15.0" fill="rgb(251,205,21)" rx="2" ry="2" />
|
|
<text x="969.43" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_CreateNumber (2 samples, 0.01%)</title><rect x="983.8" y="613" width="0.2" height="15.0" fill="rgb(227,139,8)" rx="2" ry="2" />
|
|
<text x="986.84" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (16 samples, 0.08%)</title><rect x="1023.4" y="437" width="1.0" height="15.0" fill="rgb(205,13,53)" rx="2" ry="2" />
|
|
<text x="1026.42" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="967.8" y="437" width="0.1" height="15.0" fill="rgb(237,103,11)" rx="2" ry="2" />
|
|
<text x="970.79" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="332.3" y="309" width="0.1" height="15.0" fill="rgb(227,111,43)" rx="2" ry="2" />
|
|
<text x="335.31" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (73 samples, 0.36%)</title><rect x="296.4" y="549" width="4.4" height="15.0" fill="rgb(238,203,17)" rx="2" ry="2" />
|
|
<text x="299.45" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (4 samples, 0.02%)</title><rect x="792.7" y="405" width="0.3" height="15.0" fill="rgb(210,204,27)" rx="2" ry="2" />
|
|
<text x="795.71" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="1011.0" y="613" width="0.1" height="15.0" fill="rgb(214,75,38)" rx="2" ry="2" />
|
|
<text x="1013.97" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (50 samples, 0.25%)</title><rect x="316.7" y="389" width="2.9" height="15.0" fill="rgb(239,136,43)" rx="2" ry="2" />
|
|
<text x="319.68" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (6 samples, 0.03%)</title><rect x="975.8" y="613" width="0.3" height="15.0" fill="rgb(208,121,48)" rx="2" ry="2" />
|
|
<text x="978.75" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (2 samples, 0.01%)</title><rect x="788.3" y="549" width="0.1" height="15.0" fill="rgb(206,192,4)" rx="2" ry="2" />
|
|
<text x="791.29" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MurmurHash3_x64_128 (5 samples, 0.02%)</title><rect x="711.1" y="453" width="0.3" height="15.0" fill="rgb(251,182,0)" rx="2" ry="2" />
|
|
<text x="714.13" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (259 samples, 1.29%)</title><rect x="904.1" y="693" width="15.3" height="15.0" fill="rgb(251,79,37)" rx="2" ry="2" />
|
|
<text x="907.14" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (39 samples, 0.19%)</title><rect x="970.7" y="517" width="2.3" height="15.0" fill="rgb(215,104,6)" rx="2" ry="2" />
|
|
<text x="973.74" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (3 samples, 0.01%)</title><rect x="671.3" y="437" width="0.1" height="15.0" fill="rgb(239,216,8)" rx="2" ry="2" />
|
|
<text x="674.26" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pop3_entry_fun (3 samples, 0.01%)</title><rect x="568.1" y="469" width="0.2" height="15.0" fill="rgb(247,173,39)" rx="2" ry="2" />
|
|
<text x="571.15" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="546.0" y="325" width="0.1" height="15.0" fill="rgb(242,36,6)" rx="2" ry="2" />
|
|
<text x="548.97" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (2 samples, 0.01%)</title><rect x="980.5" y="565" width="0.1" height="15.0" fill="rgb(208,157,8)" rx="2" ry="2" />
|
|
<text x="983.47" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_and_copy_streamindex (5 samples, 0.02%)</title><rect x="535.5" y="533" width="0.3" height="15.0" fill="rgb(227,89,1)" rx="2" ry="2" />
|
|
<text x="538.47" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="383.8" y="405" width="0.1" height="15.0" fill="rgb(225,72,28)" rx="2" ry="2" />
|
|
<text x="386.81" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithChunkedData (10 samples, 0.05%)</title><rect x="563.2" y="421" width="0.6" height="15.0" fill="rgb(236,88,23)" rx="2" ry="2" />
|
|
<text x="566.19" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_computeresult (253 samples, 1.26%)</title><rect x="167.9" y="709" width="14.9" height="15.0" fill="rgb(240,56,13)" rx="2" ry="2" />
|
|
<text x="170.91" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_bsearch (5 samples, 0.02%)</title><rect x="549.6" y="421" width="0.3" height="15.0" fill="rgb(213,40,42)" rx="2" ry="2" />
|
|
<text x="552.57" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="562.0" y="325" width="0.1" height="15.0" fill="rgb(229,158,24)" rx="2" ry="2" />
|
|
<text x="564.95" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ftp.so] (6 samples, 0.03%)</title><rect x="591.2" y="453" width="0.4" height="15.0" fill="rgb(210,38,13)" rx="2" ry="2" />
|
|
<text x="594.21" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (15 samples, 0.07%)</title><rect x="298.6" y="261" width="0.9" height="15.0" fill="rgb(227,37,30)" rx="2" ry="2" />
|
|
<text x="301.57" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="301.3" y="501" width="0.2" height="15.0" fill="rgb(240,191,35)" rx="2" ry="2" />
|
|
<text x="304.34" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (17 samples, 0.08%)</title><rect x="306.8" y="453" width="1.0" height="15.0" fill="rgb(229,40,49)" rx="2" ry="2" />
|
|
<text x="309.77" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (35 samples, 0.17%)</title><rect x="978.9" y="629" width="2.0" height="15.0" fill="rgb(242,55,18)" rx="2" ry="2" />
|
|
<text x="981.88" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (14 samples, 0.07%)</title><rect x="789.4" y="485" width="0.8" height="15.0" fill="rgb(207,120,25)" rx="2" ry="2" />
|
|
<text x="792.41" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="313.5" y="293" width="0.2" height="15.0" fill="rgb(212,65,29)" rx="2" ry="2" />
|
|
<text x="316.49" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (15 samples, 0.07%)</title><rect x="328.8" y="261" width="0.9" height="15.0" fill="rgb(225,75,53)" rx="2" ry="2" />
|
|
<text x="331.77" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_nat_linkinfo (2 samples, 0.01%)</title><rect x="383.9" y="453" width="0.1" height="15.0" fill="rgb(210,11,20)" rx="2" ry="2" />
|
|
<text x="386.93" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncpy_sse2_unaligned (5 samples, 0.02%)</title><rect x="631.3" y="453" width="0.3" height="15.0" fill="rgb(246,216,12)" rx="2" ry="2" />
|
|
<text x="634.26" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (258 samples, 1.29%)</title><rect x="341.6" y="437" width="15.3" height="15.0" fill="rgb(252,103,31)" rx="2" ry="2" />
|
|
<text x="344.63" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (40 samples, 0.20%)</title><rect x="381.1" y="501" width="2.4" height="15.0" fill="rgb(208,40,51)" rx="2" ry="2" />
|
|
<text x="384.09" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_net_jump_to_layer (2 samples, 0.01%)</title><rect x="753.4" y="485" width="0.1" height="15.0" fill="rgb(231,185,31)" rx="2" ry="2" />
|
|
<text x="756.37" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (171 samples, 0.85%)</title><rect x="369.1" y="453" width="10.0" height="15.0" fill="rgb(238,223,5)" rx="2" ry="2" />
|
|
<text x="372.06" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="544.5" y="421" width="0.1" height="15.0" fill="rgb(229,99,8)" rx="2" ry="2" />
|
|
<text x="547.49" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="562.1" y="293" width="0.1" height="15.0" fill="rgb(238,91,14)" rx="2" ry="2" />
|
|
<text x="565.13" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (23 samples, 0.11%)</title><rect x="588.4" y="405" width="1.3" height="15.0" fill="rgb(252,118,22)" rx="2" ry="2" />
|
|
<text x="591.38" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (388 samples, 1.94%)</title><rect x="642.2" y="549" width="22.9" height="15.0" fill="rgb(234,158,4)" rx="2" ry="2" />
|
|
<text x="645.24" y="559.5" >f..</text>
|
|
</g>
|
|
<g >
|
|
<title>flush_tlb_mm_range (14 samples, 0.07%)</title><rect x="679.0" y="309" width="0.8" height="15.0" fill="rgb(241,179,36)" rx="2" ry="2" />
|
|
<text x="681.99" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (41 samples, 0.20%)</title><rect x="964.0" y="693" width="2.4" height="15.0" fill="rgb(246,114,18)" rx="2" ry="2" />
|
|
<text x="967.02" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (3 samples, 0.01%)</title><rect x="1026.5" y="453" width="0.2" height="15.0" fill="rgb(225,144,54)" rx="2" ry="2" />
|
|
<text x="1029.54" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (6 samples, 0.03%)</title><rect x="1005.5" y="597" width="0.4" height="15.0" fill="rgb(234,160,44)" rx="2" ry="2" />
|
|
<text x="1008.54" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (14 samples, 0.07%)</title><rect x="537.9" y="517" width="0.8" height="15.0" fill="rgb(217,84,50)" rx="2" ry="2" />
|
|
<text x="540.89" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_shared_policy (2 samples, 0.01%)</title><rect x="833.7" y="485" width="0.1" height="15.0" fill="rgb(237,197,15)" rx="2" ry="2" />
|
|
<text x="836.65" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (4 samples, 0.02%)</title><rect x="393.3" y="629" width="0.2" height="15.0" fill="rgb(239,180,17)" rx="2" ry="2" />
|
|
<text x="396.31" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithCertificateDetail (2 samples, 0.01%)</title><rect x="586.6" y="405" width="0.1" height="15.0" fill="rgb(231,124,34)" rx="2" ry="2" />
|
|
<text x="589.55" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="301.5" y="533" width="0.1" height="15.0" fill="rgb(216,100,15)" rx="2" ry="2" />
|
|
<text x="304.46" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_result_flow_get (2 samples, 0.01%)</title><rect x="814.9" y="453" width="0.1" height="15.0" fill="rgb(246,192,17)" rx="2" ry="2" />
|
|
<text x="817.89" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (80 samples, 0.40%)</title><rect x="836.6" y="469" width="4.7" height="15.0" fill="rgb(242,39,24)" rx="2" ry="2" />
|
|
<text x="839.60" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (9 samples, 0.04%)</title><rect x="304.5" y="565" width="0.6" height="15.0" fill="rgb(218,119,3)" rx="2" ry="2" />
|
|
<text x="307.53" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="967.8" y="565" width="0.1" height="15.0" fill="rgb(238,176,36)" rx="2" ry="2" />
|
|
<text x="970.79" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (27 samples, 0.13%)</title><rect x="489.0" y="629" width="1.6" height="15.0" fill="rgb(237,135,10)" rx="2" ry="2" />
|
|
<text x="491.98" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="562.1" y="309" width="0.1" height="15.0" fill="rgb(229,145,19)" rx="2" ry="2" />
|
|
<text x="565.13" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_udpate (1,115 samples, 5.57%)</title><rect x="91.3" y="725" width="65.8" height="15.0" fill="rgb(228,175,5)" rx="2" ry="2" />
|
|
<text x="94.34" y="735.5" >Maat_hi..</text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="390.6" y="501" width="0.1" height="15.0" fill="rgb(240,65,33)" rx="2" ry="2" />
|
|
<text x="393.59" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CStringMatch::search_rule (5 samples, 0.02%)</title><rect x="54.9" y="709" width="0.3" height="15.0" fill="rgb(223,18,19)" rx="2" ry="2" />
|
|
<text x="57.95" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>on_each_cpu_cond_mask (19 samples, 0.09%)</title><rect x="707.7" y="277" width="1.1" height="15.0" fill="rgb(226,10,3)" rx="2" ry="2" />
|
|
<text x="710.71" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (11 samples, 0.05%)</title><rect x="460.7" y="613" width="0.7" height="15.0" fill="rgb(239,225,40)" rx="2" ry="2" />
|
|
<text x="463.73" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (79 samples, 0.39%)</title><rect x="632.9" y="437" width="4.7" height="15.0" fill="rgb(239,179,38)" rx="2" ry="2" />
|
|
<text x="635.92" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_location (40 samples, 0.20%)</title><rect x="362.7" y="501" width="2.3" height="15.0" fill="rgb(212,60,51)" rx="2" ry="2" />
|
|
<text x="365.69" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="561.4" y="293" width="0.1" height="15.0" fill="rgb(214,104,8)" rx="2" ry="2" />
|
|
<text x="564.36" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="1013.6" y="757" width="0.3" height="15.0" fill="rgb(247,148,0)" rx="2" ry="2" />
|
|
<text x="1016.63" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (3 samples, 0.01%)</title><rect x="393.5" y="533" width="0.2" height="15.0" fill="rgb(217,23,47)" rx="2" ry="2" />
|
|
<text x="396.54" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (49 samples, 0.24%)</title><rect x="975.8" y="677" width="2.8" height="15.0" fill="rgb(245,50,25)" rx="2" ry="2" />
|
|
<text x="978.75" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (15 samples, 0.07%)</title><rect x="367.8" y="373" width="0.9" height="15.0" fill="rgb(216,92,10)" rx="2" ry="2" />
|
|
<text x="370.82" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count (23 samples, 0.11%)</title><rect x="227.9" y="677" width="1.4" height="15.0" fill="rgb(239,142,11)" rx="2" ry="2" />
|
|
<text x="230.90" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (4 samples, 0.02%)</title><rect x="1013.6" y="741" width="0.3" height="15.0" fill="rgb(234,163,8)" rx="2" ry="2" />
|
|
<text x="1016.63" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>region_compile (422 samples, 2.11%)</title><rect x="249.4" y="741" width="24.9" height="15.0" fill="rgb(216,75,54)" rx="2" ry="2" />
|
|
<text x="252.43" y="751.5" >r..</text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (3 samples, 0.01%)</title><rect x="1026.5" y="485" width="0.2" height="15.0" fill="rgb(252,20,22)" rx="2" ry="2" />
|
|
<text x="1029.54" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strnlen_sse2 (5 samples, 0.02%)</title><rect x="603.6" y="437" width="0.3" height="15.0" fill="rgb(222,153,16)" rx="2" ry="2" />
|
|
<text x="606.60" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_computeresult (570 samples, 2.85%)</title><rect x="55.2" y="709" width="33.7" height="15.0" fill="rgb(221,69,52)" rx="2" ry="2" />
|
|
<text x="58.24" y="719.5" >ru..</text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (16 samples, 0.08%)</title><rect x="365.2" y="485" width="1.0" height="15.0" fill="rgb(211,93,48)" rx="2" ry="2" />
|
|
<text x="368.23" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (134 samples, 0.67%)</title><rect x="307.8" y="485" width="7.9" height="15.0" fill="rgb(227,137,26)" rx="2" ry="2" />
|
|
<text x="310.77" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="918.5" y="661" width="0.1" height="15.0" fill="rgb(245,146,15)" rx="2" ry="2" />
|
|
<text x="921.48" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="488.2" y="453" width="0.3" height="15.0" fill="rgb(241,60,54)" rx="2" ry="2" />
|
|
<text x="491.16" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (4 samples, 0.02%)</title><rect x="832.9" y="421" width="0.3" height="15.0" fill="rgb(236,189,18)" rx="2" ry="2" />
|
|
<text x="835.94" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (7 samples, 0.03%)</title><rect x="981.2" y="549" width="0.5" height="15.0" fill="rgb(230,71,8)" rx="2" ry="2" />
|
|
<text x="984.24" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="484.9" y="421" width="0.1" height="15.0" fill="rgb(250,205,19)" rx="2" ry="2" />
|
|
<text x="487.91" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_app_properties_policy (6 samples, 0.03%)</title><rect x="334.4" y="501" width="0.4" height="15.0" fill="rgb(221,73,47)" rx="2" ry="2" />
|
|
<text x="337.44" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="484.1" y="549" width="0.2" height="15.0" fill="rgb(206,187,18)" rx="2" ry="2" />
|
|
<text x="487.15" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="393.0" y="597" width="0.1" height="15.0" fill="rgb(249,44,2)" rx="2" ry="2" />
|
|
<text x="395.95" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="484.9" y="469" width="0.1" height="15.0" fill="rgb(231,140,48)" rx="2" ry="2" />
|
|
<text x="487.86" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (290 samples, 1.45%)</title><rect x="395.1" y="725" width="17.1" height="15.0" fill="rgb(254,72,33)" rx="2" ry="2" />
|
|
<text x="398.13" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (57 samples, 0.28%)</title><rect x="551.7" y="389" width="3.4" height="15.0" fill="rgb(212,179,15)" rx="2" ry="2" />
|
|
<text x="554.75" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="330.7" y="293" width="0.1" height="15.0" fill="rgb(208,49,3)" rx="2" ry="2" />
|
|
<text x="333.66" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Rb_tree_increment (4 samples, 0.02%)</title><rect x="597.3" y="437" width="0.2" height="15.0" fill="rgb(222,25,2)" rx="2" ry="2" />
|
|
<text x="600.29" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (13 samples, 0.06%)</title><rect x="629.0" y="453" width="0.8" height="15.0" fill="rgb(239,31,42)" rx="2" ry="2" />
|
|
<text x="632.02" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="583.6" y="341" width="0.1" height="15.0" fill="rgb(223,77,48)" rx="2" ry="2" />
|
|
<text x="586.60" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="1029.2" y="549" width="0.1" height="15.0" fill="rgb(220,30,45)" rx="2" ry="2" />
|
|
<text x="1032.20" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_nat_linkinfo (4 samples, 0.02%)</title><rect x="383.5" y="501" width="0.2" height="15.0" fill="rgb(233,139,11)" rx="2" ry="2" />
|
|
<text x="386.51" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_capture_packet_entry (8 samples, 0.04%)</title><rect x="620.3" y="469" width="0.5" height="15.0" fill="rgb(214,189,23)" rx="2" ry="2" />
|
|
<text x="623.29" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="307.6" y="405" width="0.1" height="15.0" fill="rgb(219,228,50)" rx="2" ry="2" />
|
|
<text x="310.60" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pbe_ul3l4_cache_find (4 samples, 0.02%)</title><rect x="818.4" y="389" width="0.3" height="15.0" fill="rgb(251,226,15)" rx="2" ry="2" />
|
|
<text x="821.43" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (17 samples, 0.08%)</title><rect x="306.8" y="469" width="1.0" height="15.0" fill="rgb(246,167,29)" rx="2" ry="2" />
|
|
<text x="309.77" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (9 samples, 0.04%)</title><rect x="584.2" y="325" width="0.5" height="15.0" fill="rgb(219,188,32)" rx="2" ry="2" />
|
|
<text x="587.19" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (73 samples, 0.36%)</title><rect x="319.6" y="405" width="4.3" height="15.0" fill="rgb(237,38,24)" rx="2" ry="2" />
|
|
<text x="322.63" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="383.5" y="485" width="0.2" height="15.0" fill="rgb(232,7,10)" rx="2" ry="2" />
|
|
<text x="386.51" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="319.7" y="341" width="0.1" height="15.0" fill="rgb(230,213,6)" rx="2" ry="2" />
|
|
<text x="322.69" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wangw_ingress_stream_is_wannat_session (4 samples, 0.02%)</title><rect x="981.9" y="597" width="0.2" height="15.0" fill="rgb(252,181,8)" rx="2" ry="2" />
|
|
<text x="984.89" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_fqdn_category_id (2 samples, 0.01%)</title><rect x="986.1" y="661" width="0.2" height="15.0" fill="rgb(208,228,43)" rx="2" ry="2" />
|
|
<text x="989.14" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__schedule (57 samples, 0.28%)</title><rect x="922.2" y="581" width="3.4" height="15.0" fill="rgb(221,176,42)" rx="2" ry="2" />
|
|
<text x="925.19" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="937.4" y="629" width="0.2" height="15.0" fill="rgb(241,175,43)" rx="2" ry="2" />
|
|
<text x="940.41" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="330.0" y="229" width="0.2" height="15.0" fill="rgb(236,88,29)" rx="2" ry="2" />
|
|
<text x="333.01" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_create (17 samples, 0.08%)</title><rect x="461.6" y="613" width="1.0" height="15.0" fill="rgb(215,168,50)" rx="2" ry="2" />
|
|
<text x="464.61" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="1007.7" y="597" width="0.3" height="15.0" fill="rgb(253,225,22)" rx="2" ry="2" />
|
|
<text x="1010.73" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (5 samples, 0.02%)</title><rect x="985.8" y="597" width="0.3" height="15.0" fill="rgb(239,48,21)" rx="2" ry="2" />
|
|
<text x="988.84" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="414.4" y="693" width="0.6" height="15.0" fill="rgb(221,5,3)" rx="2" ry="2" />
|
|
<text x="417.36" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (22 samples, 0.11%)</title><rect x="588.4" y="389" width="1.3" height="15.0" fill="rgb(254,85,41)" rx="2" ry="2" />
|
|
<text x="591.44" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="1019.3" y="533" width="0.3" height="15.0" fill="rgb(240,112,3)" rx="2" ry="2" />
|
|
<text x="1022.35" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (2 samples, 0.01%)</title><rect x="978.6" y="709" width="0.2" height="15.0" fill="rgb(230,94,14)" rx="2" ry="2" />
|
|
<text x="981.65" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="393.4" y="581" width="0.1" height="15.0" fill="rgb(215,218,45)" rx="2" ry="2" />
|
|
<text x="396.36" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (7 samples, 0.03%)</title><rect x="587.8" y="293" width="0.4" height="15.0" fill="rgb(220,183,10)" rx="2" ry="2" />
|
|
<text x="590.79" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1013.7" y="693" width="0.2" height="15.0" fill="rgb(244,99,14)" rx="2" ry="2" />
|
|
<text x="1016.74" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sk_pop_free (3 samples, 0.01%)</title><rect x="329.8" y="261" width="0.2" height="15.0" fill="rgb(247,55,21)" rx="2" ry="2" />
|
|
<text x="332.78" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="1029.5" y="629" width="0.1" height="15.0" fill="rgb(244,64,45)" rx="2" ry="2" />
|
|
<text x="1032.49" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_propluginfo_plugid (3 samples, 0.01%)</title><rect x="574.9" y="373" width="0.1" height="15.0" fill="rgb(226,206,28)" rx="2" ry="2" />
|
|
<text x="577.87" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="394.7" y="469" width="0.1" height="15.0" fill="rgb(216,157,21)" rx="2" ry="2" />
|
|
<text x="397.66" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (6 samples, 0.03%)</title><rect x="970.2" y="629" width="0.3" height="15.0" fill="rgb(241,138,16)" rx="2" ry="2" />
|
|
<text x="973.15" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (18 samples, 0.09%)</title><rect x="918.4" y="677" width="1.0" height="15.0" fill="rgb(225,57,34)" rx="2" ry="2" />
|
|
<text x="921.36" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_udp_entry (11 samples, 0.05%)</title><rect x="392.1" y="565" width="0.6" height="15.0" fill="rgb(214,15,37)" rx="2" ry="2" />
|
|
<text x="395.07" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grab_mid (11 samples, 0.05%)</title><rect x="46.5" y="741" width="0.7" height="15.0" fill="rgb(249,55,20)" rx="2" ry="2" />
|
|
<text x="49.51" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (376 samples, 1.88%)</title><rect x="982.7" y="693" width="22.2" height="15.0" fill="rgb(211,201,52)" rx="2" ry="2" />
|
|
<text x="985.72" y="703.5" >p..</text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_update_dpkt (2 samples, 0.01%)</title><rect x="597.5" y="469" width="0.1" height="15.0" fill="rgb(221,163,14)" rx="2" ry="2" />
|
|
<text x="600.52" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_hit_path_list (60 samples, 0.30%)</title><rect x="811.9" y="469" width="3.5" height="15.0" fill="rgb(216,68,16)" rx="2" ry="2" />
|
|
<text x="814.89" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="978.4" y="405" width="0.1" height="15.0" fill="rgb(241,105,6)" rx="2" ry="2" />
|
|
<text x="981.41" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cpuidle_enter (2,616 samples, 13.08%)</title><rect x="1029.8" y="677" width="154.3" height="15.0" fill="rgb(244,4,54)" rx="2" ry="2" />
|
|
<text x="1032.79" y="687.5" >cpuidle_enter</text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___clock_gettime (2 samples, 0.01%)</title><rect x="357.1" y="437" width="0.1" height="15.0" fill="rgb(227,106,50)" rx="2" ry="2" />
|
|
<text x="360.09" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (5 samples, 0.02%)</title><rect x="637.6" y="437" width="0.3" height="15.0" fill="rgb(248,39,19)" rx="2" ry="2" />
|
|
<text x="640.58" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (6 samples, 0.03%)</title><rect x="300.8" y="517" width="0.3" height="15.0" fill="rgb(245,184,54)" rx="2" ry="2" />
|
|
<text x="303.75" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="975.6" y="693" width="0.2" height="15.0" fill="rgb(208,223,15)" rx="2" ry="2" />
|
|
<text x="978.58" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (3 samples, 0.01%)</title><rect x="393.5" y="549" width="0.2" height="15.0" fill="rgb(238,148,37)" rx="2" ry="2" />
|
|
<text x="396.54" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_udp_entry (5 samples, 0.02%)</title><rect x="795.6" y="453" width="0.3" height="15.0" fill="rgb(217,2,21)" rx="2" ry="2" />
|
|
<text x="798.60" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="967.8" y="533" width="0.1" height="15.0" fill="rgb(227,200,33)" rx="2" ry="2" />
|
|
<text x="970.79" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_searchstream (3 samples, 0.01%)</title><rect x="275.9" y="741" width="0.2" height="15.0" fill="rgb(210,89,42)" rx="2" ry="2" />
|
|
<text x="278.92" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (5 samples, 0.02%)</title><rect x="1003.8" y="597" width="0.3" height="15.0" fill="rgb(242,211,2)" rx="2" ry="2" />
|
|
<text x="1006.77" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_http_plug.so] (5 samples, 0.02%)</title><rect x="977.1" y="453" width="0.2" height="15.0" fill="rgb(249,159,49)" rx="2" ry="2" />
|
|
<text x="980.05" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (3 samples, 0.01%)</title><rect x="316.5" y="389" width="0.2" height="15.0" fill="rgb(253,186,19)" rx="2" ry="2" />
|
|
<text x="319.50" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (953 samples, 4.76%)</title><rect x="305.1" y="565" width="56.2" height="15.0" fill="rgb(239,169,30)" rx="2" ry="2" />
|
|
<text x="308.06" y="575.5" >strea..</text>
|
|
</g>
|
|
<g >
|
|
<title>file_getbuffer (2 samples, 0.01%)</title><rect x="977.3" y="453" width="0.2" height="15.0" fill="rgb(228,152,38)" rx="2" ry="2" />
|
|
<text x="980.35" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="913.8" y="629" width="0.1" height="15.0" fill="rgb(229,217,30)" rx="2" ry="2" />
|
|
<text x="916.82" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="589.3" y="261" width="0.1" height="15.0" fill="rgb(215,1,41)" rx="2" ry="2" />
|
|
<text x="592.26" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_realloc (27 samples, 0.13%)</title><rect x="268.5" y="709" width="1.6" height="15.0" fill="rgb(209,186,49)" rx="2" ry="2" />
|
|
<text x="271.55" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="605.5" y="453" width="0.2" height="15.0" fill="rgb(233,158,54)" rx="2" ry="2" />
|
|
<text x="608.54" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (15 samples, 0.07%)</title><rect x="327.2" y="181" width="0.9" height="15.0" fill="rgb(220,118,41)" rx="2" ry="2" />
|
|
<text x="330.18" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (27 samples, 0.13%)</title><rect x="317.3" y="309" width="1.6" height="15.0" fill="rgb(218,227,13)" rx="2" ry="2" />
|
|
<text x="320.27" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (2 samples, 0.01%)</title><rect x="274.6" y="725" width="0.1" height="15.0" fill="rgb(234,63,29)" rx="2" ry="2" />
|
|
<text x="277.62" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="1004.1" y="581" width="0.3" height="15.0" fill="rgb(238,92,38)" rx="2" ry="2" />
|
|
<text x="1007.13" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc@plt (2 samples, 0.01%)</title><rect x="243.4" y="709" width="0.1" height="15.0" fill="rgb(224,202,28)" rx="2" ry="2" />
|
|
<text x="246.42" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="393.2" y="501" width="0.1" height="15.0" fill="rgb(247,25,7)" rx="2" ry="2" />
|
|
<text x="396.19" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="712.0" y="533" width="0.5" height="15.0" fill="rgb(227,196,49)" rx="2" ry="2" />
|
|
<text x="714.96" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="304.8" y="485" width="0.1" height="15.0" fill="rgb(215,206,53)" rx="2" ry="2" />
|
|
<text x="307.76" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (3 samples, 0.01%)</title><rect x="306.2" y="421" width="0.2" height="15.0" fill="rgb(251,181,33)" rx="2" ry="2" />
|
|
<text x="309.24" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (13 samples, 0.06%)</title><rect x="989.3" y="581" width="0.7" height="15.0" fill="rgb(234,139,17)" rx="2" ry="2" />
|
|
<text x="992.26" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (2 samples, 0.01%)</title><rect x="304.4" y="549" width="0.1" height="15.0" fill="rgb(214,59,5)" rx="2" ry="2" />
|
|
<text x="307.41" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (8 samples, 0.04%)</title><rect x="561.2" y="421" width="0.5" height="15.0" fill="rgb(221,205,40)" rx="2" ry="2" />
|
|
<text x="564.24" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (15 samples, 0.07%)</title><rect x="981.2" y="677" width="0.9" height="15.0" fill="rgb(209,209,17)" rx="2" ry="2" />
|
|
<text x="984.24" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (8 samples, 0.04%)</title><rect x="976.1" y="645" width="0.5" height="15.0" fill="rgb(215,16,23)" rx="2" ry="2" />
|
|
<text x="979.11" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CKRF::rank (4 samples, 0.02%)</title><rect x="42.7" y="709" width="0.3" height="15.0" fill="rgb(252,160,3)" rx="2" ry="2" />
|
|
<text x="45.74" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_nat_linkinfo (4 samples, 0.02%)</title><rect x="1019.3" y="485" width="0.3" height="15.0" fill="rgb(248,146,53)" rx="2" ry="2" />
|
|
<text x="1022.35" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="989.1" y="613" width="0.1" height="15.0" fill="rgb(207,154,35)" rx="2" ry="2" />
|
|
<text x="992.09" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="390.2" y="501" width="0.2" height="15.0" fill="rgb(244,88,32)" rx="2" ry="2" />
|
|
<text x="393.24" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="301.6" y="565" width="0.1" height="15.0" fill="rgb(230,148,53)" rx="2" ry="2" />
|
|
<text x="304.58" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (11 samples, 0.05%)</title><rect x="384.0" y="501" width="0.7" height="15.0" fill="rgb(222,37,45)" rx="2" ry="2" />
|
|
<text x="387.04" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="982.3" y="741" width="0.1" height="15.0" fill="rgb(246,91,27)" rx="2" ry="2" />
|
|
<text x="985.30" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (47 samples, 0.23%)</title><rect x="970.5" y="629" width="2.8" height="15.0" fill="rgb(229,134,21)" rx="2" ry="2" />
|
|
<text x="973.50" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (35 samples, 0.17%)</title><rect x="978.9" y="597" width="2.0" height="15.0" fill="rgb(206,99,9)" rx="2" ry="2" />
|
|
<text x="981.88" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (22 samples, 0.11%)</title><rect x="974.2" y="613" width="1.3" height="15.0" fill="rgb(250,129,17)" rx="2" ry="2" />
|
|
<text x="977.22" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="562.3" y="277" width="0.3" height="15.0" fill="rgb(230,36,49)" rx="2" ry="2" />
|
|
<text x="565.31" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[conn_telemetry.so] (6 samples, 0.03%)</title><rect x="622.5" y="453" width="0.3" height="15.0" fill="rgb(246,168,22)" rx="2" ry="2" />
|
|
<text x="625.47" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>docanalyze_startstream (3 samples, 0.01%)</title><rect x="565.4" y="373" width="0.2" height="15.0" fill="rgb(207,59,35)" rx="2" ry="2" />
|
|
<text x="568.37" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (6 samples, 0.03%)</title><rect x="970.2" y="581" width="0.3" height="15.0" fill="rgb(237,144,44)" rx="2" ry="2" />
|
|
<text x="973.15" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="488.6" y="485" width="0.1" height="15.0" fill="rgb(227,133,30)" rx="2" ry="2" />
|
|
<text x="491.57" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="968.0" y="597" width="0.3" height="15.0" fill="rgb(247,52,51)" rx="2" ry="2" />
|
|
<text x="971.03" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9,286 samples, 46.42%)</title><rect x="416.1" y="725" width="547.7" height="15.0" fill="rgb(207,167,4)" rx="2" ry="2" />
|
|
<text x="419.07" y="735.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (49 samples, 0.24%)</title><rect x="1026.8" y="757" width="2.9" height="15.0" fill="rgb(215,183,36)" rx="2" ry="2" />
|
|
<text x="1029.78" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_realloc (2 samples, 0.01%)</title><rect x="371.1" y="341" width="0.1" height="15.0" fill="rgb(205,64,34)" rx="2" ry="2" />
|
|
<text x="374.07" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (12 samples, 0.06%)</title><rect x="538.0" y="485" width="0.7" height="15.0" fill="rgb(226,25,7)" rx="2" ry="2" />
|
|
<text x="541.00" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (10 samples, 0.05%)</title><rect x="788.5" y="501" width="0.6" height="15.0" fill="rgb(223,172,8)" rx="2" ry="2" />
|
|
<text x="791.53" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="785.5" y="437" width="0.3" height="15.0" fill="rgb(247,45,47)" rx="2" ry="2" />
|
|
<text x="788.52" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (11 samples, 0.05%)</title><rect x="384.0" y="469" width="0.7" height="15.0" fill="rgb(247,88,7)" rx="2" ry="2" />
|
|
<text x="387.04" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="546.0" y="341" width="0.1" height="15.0" fill="rgb(217,131,47)" rx="2" ry="2" />
|
|
<text x="548.97" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (6 samples, 0.03%)</title><rect x="578.6" y="325" width="0.3" height="15.0" fill="rgb(250,136,2)" rx="2" ry="2" />
|
|
<text x="581.59" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_polling_inject_context (8 samples, 0.04%)</title><rect x="857.3" y="565" width="0.5" height="15.0" fill="rgb(231,63,23)" rx="2" ry="2" />
|
|
<text x="860.31" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (48 samples, 0.24%)</title><rect x="798.3" y="533" width="2.8" height="15.0" fill="rgb(240,105,27)" rx="2" ry="2" />
|
|
<text x="801.26" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (43 samples, 0.21%)</title><rect x="301.8" y="405" width="2.5" height="15.0" fill="rgb(215,115,12)" rx="2" ry="2" />
|
|
<text x="304.76" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_sse42 (11 samples, 0.05%)</title><rect x="812.8" y="405" width="0.6" height="15.0" fill="rgb(208,221,11)" rx="2" ry="2" />
|
|
<text x="815.77" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (29 samples, 0.14%)</title><rect x="296.4" y="405" width="1.8" height="15.0" fill="rgb(242,41,30)" rx="2" ry="2" />
|
|
<text x="299.45" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="968.0" y="613" width="0.3" height="15.0" fill="rgb(205,199,54)" rx="2" ry="2" />
|
|
<text x="971.03" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (4 samples, 0.02%)</title><rect x="505.2" y="597" width="0.2" height="15.0" fill="rgb(222,69,36)" rx="2" ry="2" />
|
|
<text x="508.21" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (7 samples, 0.03%)</title><rect x="801.3" y="565" width="0.4" height="15.0" fill="rgb(249,196,22)" rx="2" ry="2" />
|
|
<text x="804.27" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="1029.1" y="549" width="0.1" height="15.0" fill="rgb(227,179,13)" rx="2" ry="2" />
|
|
<text x="1032.08" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="603.1" y="437" width="0.1" height="15.0" fill="rgb(242,204,4)" rx="2" ry="2" />
|
|
<text x="606.07" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new (2 samples, 0.01%)</title><rect x="984.4" y="629" width="0.1" height="15.0" fill="rgb(237,167,8)" rx="2" ry="2" />
|
|
<text x="987.43" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_fqdn_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1022.8" y="453" width="0.1" height="15.0" fill="rgb(250,47,33)" rx="2" ry="2" />
|
|
<text x="1025.77" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (89 samples, 0.44%)</title><rect x="592.3" y="469" width="5.2" height="15.0" fill="rgb(214,229,6)" rx="2" ry="2" />
|
|
<text x="595.27" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (15 samples, 0.07%)</title><rect x="312.3" y="309" width="0.9" height="15.0" fill="rgb(216,36,27)" rx="2" ry="2" />
|
|
<text x="315.31" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_type_by_id (6 samples, 0.03%)</title><rect x="185.4" y="741" width="0.4" height="15.0" fill="rgb(247,69,17)" rx="2" ry="2" />
|
|
<text x="188.43" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (1,131 samples, 5.65%)</title><rect x="712.5" y="549" width="66.8" height="15.0" fill="rgb(218,21,50)" rx="2" ry="2" />
|
|
<text x="715.55" y="559.5" >stream_..</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7,393 samples, 36.96%)</title><rect x="433.4" y="693" width="436.1" height="15.0" fill="rgb(210,188,30)" rx="2" ry="2" />
|
|
<text x="436.42" y="703.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="830.1" y="485" width="0.6" height="15.0" fill="rgb(233,101,46)" rx="2" ry="2" />
|
|
<text x="833.11" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (62 samples, 0.31%)</title><rect x="484.9" y="501" width="3.6" height="15.0" fill="rgb(233,137,30)" rx="2" ry="2" />
|
|
<text x="487.86" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_scaling_bloom (2 samples, 0.01%)</title><rect x="675.9" y="501" width="0.1" height="15.0" fill="rgb(219,3,44)" rx="2" ry="2" />
|
|
<text x="678.92" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="565.4" y="309" width="0.2" height="15.0" fill="rgb(220,55,47)" rx="2" ry="2" />
|
|
<text x="568.37" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (25 samples, 0.12%)</title><rect x="332.4" y="453" width="1.5" height="15.0" fill="rgb(238,16,19)" rx="2" ry="2" />
|
|
<text x="335.43" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_app_properties_policy (7 samples, 0.03%)</title><rect x="390.5" y="517" width="0.4" height="15.0" fill="rgb(210,49,22)" rx="2" ry="2" />
|
|
<text x="393.47" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (2 samples, 0.01%)</title><rect x="545.1" y="421" width="0.1" height="15.0" fill="rgb(251,78,43)" rx="2" ry="2" />
|
|
<text x="548.08" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_free (2 samples, 0.01%)</title><rect x="582.7" y="261" width="0.1" height="15.0" fill="rgb(252,1,44)" rx="2" ry="2" />
|
|
<text x="585.66" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>memcmp@plt (2 samples, 0.01%)</title><rect x="597.1" y="405" width="0.1" height="15.0" fill="rgb(244,213,17)" rx="2" ry="2" />
|
|
<text x="600.11" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (13 samples, 0.06%)</title><rect x="987.8" y="549" width="0.8" height="15.0" fill="rgb(221,98,41)" rx="2" ry="2" />
|
|
<text x="990.85" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (15 samples, 0.07%)</title><rect x="367.8" y="389" width="0.9" height="15.0" fill="rgb(248,73,5)" rx="2" ry="2" />
|
|
<text x="370.82" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sys_recvfrom (3 samples, 0.01%)</title><rect x="937.5" y="581" width="0.1" height="15.0" fill="rgb(225,227,11)" rx="2" ry="2" />
|
|
<text x="940.47" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="327.7" y="37" width="0.1" height="15.0" fill="rgb(248,215,18)" rx="2" ry="2" />
|
|
<text x="330.71" y="47.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (10 samples, 0.05%)</title><rect x="412.5" y="613" width="0.6" height="15.0" fill="rgb(208,11,43)" rx="2" ry="2" />
|
|
<text x="415.48" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_entry (2 samples, 0.01%)</title><rect x="980.5" y="437" width="0.1" height="15.0" fill="rgb(225,173,33)" rx="2" ry="2" />
|
|
<text x="983.47" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_malloc (5 samples, 0.02%)</title><rect x="357.7" y="421" width="0.3" height="15.0" fill="rgb(244,5,37)" rx="2" ry="2" />
|
|
<text x="360.74" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (7 samples, 0.03%)</title><rect x="271.4" y="693" width="0.4" height="15.0" fill="rgb(235,87,21)" rx="2" ry="2" />
|
|
<text x="274.44" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="412.9" y="501" width="0.2" height="15.0" fill="rgb(241,179,37)" rx="2" ry="2" />
|
|
<text x="415.95" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (21 samples, 0.10%)</title><rect x="844.9" y="469" width="1.2" height="15.0" fill="rgb(242,117,5)" rx="2" ry="2" />
|
|
<text x="847.86" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (4 samples, 0.02%)</title><rect x="394.9" y="725" width="0.2" height="15.0" fill="rgb(219,73,5)" rx="2" ry="2" />
|
|
<text x="397.90" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (148 samples, 0.74%)</title><rect x="665.7" y="533" width="8.7" height="15.0" fill="rgb(230,206,5)" rx="2" ry="2" />
|
|
<text x="668.65" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="980.5" y="421" width="0.1" height="15.0" fill="rgb(242,213,16)" rx="2" ry="2" />
|
|
<text x="983.47" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="810.9" y="469" width="0.2" height="15.0" fill="rgb(251,137,14)" rx="2" ry="2" />
|
|
<text x="813.94" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (3 samples, 0.01%)</title><rect x="1026.5" y="533" width="0.2" height="15.0" fill="rgb(227,20,48)" rx="2" ry="2" />
|
|
<text x="1029.54" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (53 samples, 0.26%)</title><rect x="320.2" y="325" width="3.1" height="15.0" fill="rgb(206,124,50)" rx="2" ry="2" />
|
|
<text x="323.22" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="977.6" y="533" width="0.2" height="15.0" fill="rgb(233,160,49)" rx="2" ry="2" />
|
|
<text x="980.64" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="1003.6" y="613" width="0.1" height="15.0" fill="rgb(232,11,22)" rx="2" ry="2" />
|
|
<text x="1006.60" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (30 samples, 0.15%)</title><rect x="968.3" y="549" width="1.7" height="15.0" fill="rgb(227,158,7)" rx="2" ry="2" />
|
|
<text x="971.26" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddNumberToObject (4 samples, 0.02%)</title><rect x="1011.1" y="629" width="0.2" height="15.0" fill="rgb(235,74,11)" rx="2" ry="2" />
|
|
<text x="1014.09" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (180 samples, 0.90%)</title><rect x="305.1" y="517" width="10.6" height="15.0" fill="rgb(237,211,50)" rx="2" ry="2" />
|
|
<text x="308.06" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (49 samples, 0.24%)</title><rect x="975.8" y="693" width="2.8" height="15.0" fill="rgb(241,132,24)" rx="2" ry="2" />
|
|
<text x="978.75" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="330.0" y="325" width="0.2" height="15.0" fill="rgb(233,192,52)" rx="2" ry="2" />
|
|
<text x="332.95" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="1013.7" y="709" width="0.2" height="15.0" fill="rgb(216,161,27)" rx="2" ry="2" />
|
|
<text x="1016.74" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="973.0" y="597" width="0.3" height="15.0" fill="rgb(220,205,43)" rx="2" ry="2" />
|
|
<text x="976.04" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (14 samples, 0.07%)</title><rect x="315.7" y="453" width="0.8" height="15.0" fill="rgb(217,118,8)" rx="2" ry="2" />
|
|
<text x="318.68" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="981.1" y="437" width="0.1" height="15.0" fill="rgb(211,74,9)" rx="2" ry="2" />
|
|
<text x="984.06" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="590.0" y="437" width="0.1" height="15.0" fill="rgb(228,226,16)" rx="2" ry="2" />
|
|
<text x="593.03" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (27 samples, 0.13%)</title><rect x="597.9" y="469" width="1.6" height="15.0" fill="rgb(238,115,4)" rx="2" ry="2" />
|
|
<text x="600.88" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_get (2 samples, 0.01%)</title><rect x="45.2" y="741" width="0.1" height="15.0" fill="rgb(253,74,20)" rx="2" ry="2" />
|
|
<text x="48.16" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_obj2txt (2 samples, 0.01%)</title><rect x="583.4" y="389" width="0.1" height="15.0" fill="rgb(246,156,54)" rx="2" ry="2" />
|
|
<text x="586.37" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_asn (5 samples, 0.02%)</title><rect x="832.1" y="469" width="0.3" height="15.0" fill="rgb(237,169,6)" rx="2" ry="2" />
|
|
<text x="835.06" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="590.4" y="453" width="0.2" height="15.0" fill="rgb(212,204,6)" rx="2" ry="2" />
|
|
<text x="593.38" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_cancel (5 samples, 0.02%)</title><rect x="326.8" y="357" width="0.3" height="15.0" fill="rgb(242,165,18)" rx="2" ry="2" />
|
|
<text x="329.83" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (26 samples, 0.13%)</title><rect x="586.8" y="357" width="1.6" height="15.0" fill="rgb(209,3,33)" rx="2" ry="2" />
|
|
<text x="589.85" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (2 samples, 0.01%)</title><rect x="43.3" y="709" width="0.1" height="15.0" fill="rgb(247,50,43)" rx="2" ry="2" />
|
|
<text x="46.33" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (32 samples, 0.16%)</title><rect x="776.6" y="469" width="1.9" height="15.0" fill="rgb(211,220,46)" rx="2" ry="2" />
|
|
<text x="779.61" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="968.1" y="501" width="0.1" height="15.0" fill="rgb(245,49,28)" rx="2" ry="2" />
|
|
<text x="971.09" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_initHttpStream (3 samples, 0.01%)</title><rect x="567.6" y="469" width="0.2" height="15.0" fill="rgb(253,49,44)" rx="2" ry="2" />
|
|
<text x="570.62" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (40 samples, 0.20%)</title><rect x="978.9" y="661" width="2.3" height="15.0" fill="rgb(220,113,0)" rx="2" ry="2" />
|
|
<text x="981.88" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (4 samples, 0.02%)</title><rect x="620.4" y="437" width="0.2" height="15.0" fill="rgb(227,19,45)" rx="2" ry="2" />
|
|
<text x="623.41" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="967.9" y="565" width="0.1" height="15.0" fill="rgb(222,149,29)" rx="2" ry="2" />
|
|
<text x="970.91" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (14 samples, 0.07%)</title><rect x="1026.8" y="565" width="0.8" height="15.0" fill="rgb(229,123,1)" rx="2" ry="2" />
|
|
<text x="1029.78" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (38 samples, 0.19%)</title><rect x="1024.5" y="597" width="2.2" height="15.0" fill="rgb(213,91,5)" rx="2" ry="2" />
|
|
<text x="1027.48" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="561.2" y="325" width="0.3" height="15.0" fill="rgb(226,109,44)" rx="2" ry="2" />
|
|
<text x="564.24" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_l7_protocol_name2id (3 samples, 0.01%)</title><rect x="599.3" y="437" width="0.2" height="15.0" fill="rgb(210,44,48)" rx="2" ry="2" />
|
|
<text x="602.29" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="1020.9" y="437" width="0.2" height="15.0" fill="rgb(214,188,37)" rx="2" ry="2" />
|
|
<text x="1023.88" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (4 samples, 0.02%)</title><rect x="862.6" y="597" width="0.3" height="15.0" fill="rgb(206,84,5)" rx="2" ry="2" />
|
|
<text x="865.62" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (30 samples, 0.15%)</title><rect x="968.3" y="581" width="1.7" height="15.0" fill="rgb(210,44,47)" rx="2" ry="2" />
|
|
<text x="971.26" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="340.9" y="421" width="0.7" height="15.0" fill="rgb(253,47,53)" rx="2" ry="2" />
|
|
<text x="343.92" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_user_generic_unrolled (3 samples, 0.01%)</title><rect x="921.0" y="613" width="0.1" height="15.0" fill="rgb(219,134,27)" rx="2" ry="2" />
|
|
<text x="923.95" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_nat_linkinfo (10 samples, 0.05%)</title><rect x="323.3" y="341" width="0.6" height="15.0" fill="rgb(222,206,18)" rx="2" ry="2" />
|
|
<text x="326.35" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new (2 samples, 0.01%)</title><rect x="488.0" y="469" width="0.1" height="15.0" fill="rgb(232,110,53)" rx="2" ry="2" />
|
|
<text x="490.98" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="980.5" y="469" width="0.1" height="15.0" fill="rgb(215,56,0)" rx="2" ry="2" />
|
|
<text x="983.47" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="975.8" y="389" width="0.3" height="15.0" fill="rgb(253,117,16)" rx="2" ry="2" />
|
|
<text x="978.75" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>conn_telemetry_tcpall_entry (10 samples, 0.05%)</title><rect x="622.2" y="485" width="0.6" height="15.0" fill="rgb(235,111,21)" rx="2" ry="2" />
|
|
<text x="625.24" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="484.9" y="453" width="0.1" height="15.0" fill="rgb(243,121,18)" rx="2" ry="2" />
|
|
<text x="487.91" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (4 samples, 0.02%)</title><rect x="801.4" y="533" width="0.3" height="15.0" fill="rgb(232,154,17)" rx="2" ry="2" />
|
|
<text x="804.44" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (2 samples, 0.01%)</title><rect x="412.4" y="629" width="0.1" height="15.0" fill="rgb(218,114,1)" rx="2" ry="2" />
|
|
<text x="415.36" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (4 samples, 0.02%)</title><rect x="671.5" y="437" width="0.2" height="15.0" fill="rgb(239,224,2)" rx="2" ry="2" />
|
|
<text x="674.49" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (9 samples, 0.04%)</title><rect x="983.1" y="645" width="0.5" height="15.0" fill="rgb(221,41,20)" rx="2" ry="2" />
|
|
<text x="986.07" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>on_each_cpu_cond_mask (13 samples, 0.06%)</title><rect x="679.0" y="277" width="0.8" height="15.0" fill="rgb(205,123,18)" rx="2" ry="2" />
|
|
<text x="682.04" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (2 samples, 0.01%)</title><rect x="980.5" y="533" width="0.1" height="15.0" fill="rgb(217,31,37)" rx="2" ry="2" />
|
|
<text x="983.47" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (147 samples, 0.73%)</title><rect x="384.0" y="613" width="8.7" height="15.0" fill="rgb(232,199,32)" rx="2" ry="2" />
|
|
<text x="387.04" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (3 samples, 0.01%)</title><rect x="582.7" y="293" width="0.1" height="15.0" fill="rgb(206,212,35)" rx="2" ry="2" />
|
|
<text x="585.66" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (96 samples, 0.48%)</title><rect x="309.0" y="357" width="5.7" height="15.0" fill="rgb(220,155,37)" rx="2" ry="2" />
|
|
<text x="312.01" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_primitive_free (2 samples, 0.01%)</title><rect x="329.8" y="181" width="0.1" height="15.0" fill="rgb(246,15,28)" rx="2" ry="2" />
|
|
<text x="332.78" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bool_matcher_match (125 samples, 0.62%)</title><rect x="157.5" y="709" width="7.4" height="15.0" fill="rgb(230,21,1)" rx="2" ry="2" />
|
|
<text x="160.53" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_sse2 (2 samples, 0.01%)</title><rect x="152.2" y="581" width="0.1" height="15.0" fill="rgb(209,186,24)" rx="2" ry="2" />
|
|
<text x="155.16" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_app_id_policy (2 samples, 0.01%)</title><rect x="1023.3" y="469" width="0.1" height="15.0" fill="rgb(246,155,42)" rx="2" ry="2" />
|
|
<text x="1026.30" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509_NAME_oneline (3 samples, 0.01%)</title><rect x="581.0" y="325" width="0.2" height="15.0" fill="rgb(235,85,28)" rx="2" ry="2" />
|
|
<text x="584.01" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_bsearch (3 samples, 0.01%)</title><rect x="271.8" y="709" width="0.2" height="15.0" fill="rgb(213,124,4)" rx="2" ry="2" />
|
|
<text x="274.85" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (7 samples, 0.03%)</title><rect x="981.2" y="613" width="0.5" height="15.0" fill="rgb(234,11,35)" rx="2" ry="2" />
|
|
<text x="984.24" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="328.9" y="165" width="0.2" height="15.0" fill="rgb(247,31,16)" rx="2" ry="2" />
|
|
<text x="331.89" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="970.2" y="645" width="0.3" height="15.0" fill="rgb(225,112,6)" rx="2" ry="2" />
|
|
<text x="973.15" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchrnul (2 samples, 0.01%)</title><rect x="1012.7" y="661" width="0.2" height="15.0" fill="rgb(227,111,3)" rx="2" ry="2" />
|
|
<text x="1015.74" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_realloc (4 samples, 0.02%)</title><rect x="269.9" y="693" width="0.2" height="15.0" fill="rgb(236,167,47)" rx="2" ry="2" />
|
|
<text x="272.90" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="1001.8" y="533" width="0.2" height="15.0" fill="rgb(230,162,24)" rx="2" ry="2" />
|
|
<text x="1004.77" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="975.8" y="437" width="0.3" height="15.0" fill="rgb(226,101,4)" rx="2" ry="2" />
|
|
<text x="978.75" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (137 samples, 0.68%)</title><rect x="296.4" y="693" width="8.1" height="15.0" fill="rgb(220,192,6)" rx="2" ry="2" />
|
|
<text x="299.45" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smp_call_function_many (7 samples, 0.03%)</title><rect x="679.4" y="245" width="0.4" height="15.0" fill="rgb(219,44,48)" rx="2" ry="2" />
|
|
<text x="682.40" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseAppData (19 samples, 0.09%)</title><rect x="326.0" y="485" width="1.1" height="15.0" fill="rgb(225,12,52)" rx="2" ry="2" />
|
|
<text x="329.00" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (20 samples, 0.10%)</title><rect x="298.5" y="469" width="1.2" height="15.0" fill="rgb(253,21,36)" rx="2" ry="2" />
|
|
<text x="301.51" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (23 samples, 0.11%)</title><rect x="581.2" y="325" width="1.3" height="15.0" fill="rgb(240,71,0)" rx="2" ry="2" />
|
|
<text x="584.18" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="319.5" y="293" width="0.1" height="15.0" fill="rgb(229,171,36)" rx="2" ry="2" />
|
|
<text x="322.45" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (37 samples, 0.18%)</title><rect x="381.2" y="453" width="2.2" height="15.0" fill="rgb(243,146,7)" rx="2" ry="2" />
|
|
<text x="384.21" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cpuidle_enter_state (2,616 samples, 13.08%)</title><rect x="1029.8" y="661" width="154.3" height="15.0" fill="rgb(218,54,54)" rx="2" ry="2" />
|
|
<text x="1032.79" y="671.5" >cpuidle_enter_state</text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (141 samples, 0.70%)</title><rect x="326.0" y="533" width="8.3" height="15.0" fill="rgb(243,205,19)" rx="2" ry="2" />
|
|
<text x="329.00" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (10 samples, 0.05%)</title><rect x="966.4" y="629" width="0.6" height="15.0" fill="rgb(206,94,36)" rx="2" ry="2" />
|
|
<text x="969.43" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (68 samples, 0.34%)</title><rect x="556.6" y="485" width="4.1" height="15.0" fill="rgb(242,134,53)" rx="2" ry="2" />
|
|
<text x="559.64" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (6 samples, 0.03%)</title><rect x="985.8" y="613" width="0.3" height="15.0" fill="rgb(210,156,40)" rx="2" ry="2" />
|
|
<text x="988.78" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (14 samples, 0.07%)</title><rect x="315.7" y="533" width="0.8" height="15.0" fill="rgb(224,215,51)" rx="2" ry="2" />
|
|
<text x="318.68" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (39 samples, 0.19%)</title><rect x="909.9" y="661" width="2.3" height="15.0" fill="rgb(235,158,22)" rx="2" ry="2" />
|
|
<text x="912.92" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="669.0" y="485" width="0.1" height="15.0" fill="rgb(227,10,54)" rx="2" ry="2" />
|
|
<text x="671.96" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_id (2 samples, 0.01%)</title><rect x="605.1" y="469" width="0.1" height="15.0" fill="rgb(228,118,27)" rx="2" ry="2" />
|
|
<text x="608.13" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="1020.3" y="373" width="0.5" height="15.0" fill="rgb(209,179,40)" rx="2" ry="2" />
|
|
<text x="1023.29" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (12 samples, 0.06%)</title><rect x="1019.6" y="501" width="0.7" height="15.0" fill="rgb(254,64,25)" rx="2" ry="2" />
|
|
<text x="1022.58" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (6 samples, 0.03%)</title><rect x="569.9" y="453" width="0.4" height="15.0" fill="rgb(212,186,24)" rx="2" ry="2" />
|
|
<text x="572.92" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (102 samples, 0.51%)</title><rect x="844.7" y="485" width="6.0" height="15.0" fill="rgb(236,43,9)" rx="2" ry="2" />
|
|
<text x="847.68" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_overlay_ipv4 (20 samples, 0.10%)</title><rect x="864.1" y="645" width="1.2" height="15.0" fill="rgb(242,181,10)" rx="2" ry="2" />
|
|
<text x="867.15" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (4 samples, 0.02%)</title><rect x="788.7" y="485" width="0.2" height="15.0" fill="rgb(215,122,35)" rx="2" ry="2" />
|
|
<text x="791.70" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (16 samples, 0.08%)</title><rect x="327.1" y="261" width="1.0" height="15.0" fill="rgb(251,52,11)" rx="2" ry="2" />
|
|
<text x="330.12" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (85 samples, 0.42%)</title><rect x="815.5" y="469" width="5.0" height="15.0" fill="rgb(220,213,23)" rx="2" ry="2" />
|
|
<text x="818.48" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_searchstream (407 samples, 2.03%)</title><rect x="205.3" y="709" width="24.0" height="15.0" fill="rgb(247,137,50)" rx="2" ry="2" />
|
|
<text x="208.25" y="719.5" >r..</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (7 samples, 0.03%)</title><rect x="605.3" y="469" width="0.4" height="15.0" fill="rgb(208,40,2)" rx="2" ry="2" />
|
|
<text x="608.31" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_bsearch (47 samples, 0.23%)</title><rect x="152.5" y="709" width="2.7" height="15.0" fill="rgb(207,195,12)" rx="2" ry="2" />
|
|
<text x="155.46" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>md5_block_asm_data_order (2 samples, 0.01%)</title><rect x="982.1" y="757" width="0.1" height="15.0" fill="rgb(217,32,2)" rx="2" ry="2" />
|
|
<text x="985.13" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (402 samples, 2.01%)</title><rect x="337.6" y="485" width="23.7" height="15.0" fill="rgb(247,134,30)" rx="2" ry="2" />
|
|
<text x="340.56" y="495.5" >t..</text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (6 samples, 0.03%)</title><rect x="822.0" y="453" width="0.4" height="15.0" fill="rgb(213,175,0)" rx="2" ry="2" />
|
|
<text x="825.03" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_cancel (2 samples, 0.01%)</title><rect x="301.2" y="501" width="0.1" height="15.0" fill="rgb(209,170,35)" rx="2" ry="2" />
|
|
<text x="304.22" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pbe_uevent_malloc (3 samples, 0.01%)</title><rect x="313.5" y="309" width="0.2" height="15.0" fill="rgb(253,37,51)" rx="2" ry="2" />
|
|
<text x="316.49" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="1011.0" y="629" width="0.1" height="15.0" fill="rgb(217,155,12)" rx="2" ry="2" />
|
|
<text x="1013.97" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="972.9" y="469" width="0.1" height="15.0" fill="rgb(230,71,23)" rx="2" ry="2" />
|
|
<text x="975.86" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_app_id2name (2 samples, 0.01%)</title><rect x="963.8" y="549" width="0.2" height="15.0" fill="rgb(213,175,31)" rx="2" ry="2" />
|
|
<text x="966.84" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="329.7" y="245" width="0.1" height="15.0" fill="rgb(215,164,44)" rx="2" ry="2" />
|
|
<text x="332.66" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_ssl_entry (2 samples, 0.01%)</title><rect x="671.6" y="373" width="0.1" height="15.0" fill="rgb(224,169,49)" rx="2" ry="2" />
|
|
<text x="674.61" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hack_digit.13666 (2 samples, 0.01%)</title><rect x="983.4" y="501" width="0.1" height="15.0" fill="rgb(247,26,48)" rx="2" ry="2" />
|
|
<text x="986.42" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (14 samples, 0.07%)</title><rect x="826.3" y="469" width="0.9" height="15.0" fill="rgb(216,212,37)" rx="2" ry="2" />
|
|
<text x="829.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wangw_tcpall_plug_entry (2 samples, 0.01%)</title><rect x="640.6" y="485" width="0.2" height="15.0" fill="rgb(239,226,8)" rx="2" ry="2" />
|
|
<text x="643.64" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="383.8" y="437" width="0.1" height="15.0" fill="rgb(237,205,3)" rx="2" ry="2" />
|
|
<text x="386.81" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (10 samples, 0.05%)</title><rect x="987.3" y="549" width="0.5" height="15.0" fill="rgb(212,94,35)" rx="2" ry="2" />
|
|
<text x="990.26" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="978.9" y="405" width="0.1" height="15.0" fill="rgb(246,89,5)" rx="2" ry="2" />
|
|
<text x="981.88" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_increment (57 samples, 0.28%)</title><rect x="676.4" y="469" width="3.4" height="15.0" fill="rgb(253,52,30)" rx="2" ry="2" />
|
|
<text x="679.45" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (11 samples, 0.05%)</title><rect x="582.7" y="341" width="0.6" height="15.0" fill="rgb(208,94,7)" rx="2" ry="2" />
|
|
<text x="585.66" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.05%)</title><rect x="855.6" y="469" width="0.6" height="15.0" fill="rgb(243,217,37)" rx="2" ry="2" />
|
|
<text x="858.60" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_fqdn_plugin_get_N_ex_data (8 samples, 0.04%)</title><rect x="300.0" y="453" width="0.5" height="15.0" fill="rgb(234,208,54)" rx="2" ry="2" />
|
|
<text x="302.99" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (6 samples, 0.03%)</title><rect x="980.6" y="581" width="0.3" height="15.0" fill="rgb(206,190,35)" rx="2" ry="2" />
|
|
<text x="983.59" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (48 samples, 0.24%)</title><rect x="385.3" y="469" width="2.9" height="15.0" fill="rgb(209,43,54)" rx="2" ry="2" />
|
|
<text x="388.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_full_scan_string (2 samples, 0.01%)</title><rect x="391.8" y="501" width="0.1" height="15.0" fill="rgb(246,23,6)" rx="2" ry="2" />
|
|
<text x="394.77" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="323.9" y="389" width="0.3" height="15.0" fill="rgb(228,225,33)" rx="2" ry="2" />
|
|
<text x="326.94" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (10 samples, 0.05%)</title><rect x="897.6" y="677" width="0.6" height="15.0" fill="rgb(216,209,44)" rx="2" ry="2" />
|
|
<text x="900.60" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (4 samples, 0.02%)</title><rect x="334.6" y="485" width="0.2" height="15.0" fill="rgb(220,184,23)" rx="2" ry="2" />
|
|
<text x="337.55" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (8 samples, 0.04%)</title><rect x="331.0" y="277" width="0.4" height="15.0" fill="rgb(247,212,51)" rx="2" ry="2" />
|
|
<text x="333.95" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (12 samples, 0.06%)</title><rect x="964.0" y="645" width="0.7" height="15.0" fill="rgb(241,15,51)" rx="2" ry="2" />
|
|
<text x="967.02" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithStartLine (3 samples, 0.01%)</title><rect x="393.1" y="629" width="0.2" height="15.0" fill="rgb(248,161,12)" rx="2" ry="2" />
|
|
<text x="396.13" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (5 samples, 0.02%)</title><rect x="918.0" y="581" width="0.3" height="15.0" fill="rgb(229,121,48)" rx="2" ry="2" />
|
|
<text x="921.01" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libpthread-2.17.so] (121 samples, 0.60%)</title><rect x="919.5" y="693" width="7.1" height="15.0" fill="rgb(205,160,25)" rx="2" ry="2" />
|
|
<text x="922.48" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (9 samples, 0.04%)</title><rect x="856.7" y="533" width="0.5" height="15.0" fill="rgb(247,176,28)" rx="2" ry="2" />
|
|
<text x="859.66" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="919.1" y="565" width="0.3" height="15.0" fill="rgb(253,19,37)" rx="2" ry="2" />
|
|
<text x="922.07" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="361.0" y="389" width="0.1" height="15.0" fill="rgb(213,24,33)" rx="2" ry="2" />
|
|
<text x="363.98" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CNaiveIntervalIndex::Find (6 samples, 0.03%)</title><rect x="167.1" y="693" width="0.3" height="15.0" fill="rgb(251,226,34)" rx="2" ry="2" />
|
|
<text x="170.09" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_entry (29 samples, 0.14%)</title><rect x="330.4" y="373" width="1.7" height="15.0" fill="rgb(250,154,40)" rx="2" ry="2" />
|
|
<text x="333.36" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="316.5" y="293" width="0.2" height="15.0" fill="rgb(243,75,8)" rx="2" ry="2" />
|
|
<text x="319.50" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (83 samples, 0.41%)</title><rect x="613.7" y="469" width="4.9" height="15.0" fill="rgb(212,143,8)" rx="2" ry="2" />
|
|
<text x="616.69" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (5 samples, 0.02%)</title><rect x="535.8" y="517" width="0.3" height="15.0" fill="rgb(208,54,42)" rx="2" ry="2" />
|
|
<text x="538.76" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchrnul (2 samples, 0.01%)</title><rect x="414.2" y="629" width="0.2" height="15.0" fill="rgb(222,219,18)" rx="2" ry="2" />
|
|
<text x="417.25" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (4 samples, 0.02%)</title><rect x="977.5" y="597" width="0.3" height="15.0" fill="rgb(213,82,42)" rx="2" ry="2" />
|
|
<text x="980.52" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (9 samples, 0.04%)</title><rect x="967.3" y="501" width="0.5" height="15.0" fill="rgb(229,211,30)" rx="2" ry="2" />
|
|
<text x="970.26" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="304.3" y="469" width="0.1" height="15.0" fill="rgb(237,118,2)" rx="2" ry="2" />
|
|
<text x="307.29" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="1026.1" y="389" width="0.1" height="15.0" fill="rgb(215,64,17)" rx="2" ry="2" />
|
|
<text x="1029.13" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (5 samples, 0.02%)</title><rect x="919.1" y="517" width="0.3" height="15.0" fill="rgb(253,9,4)" rx="2" ry="2" />
|
|
<text x="922.07" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (10 samples, 0.05%)</title><rect x="413.8" y="661" width="0.6" height="15.0" fill="rgb(234,51,9)" rx="2" ry="2" />
|
|
<text x="416.77" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (4 samples, 0.02%)</title><rect x="785.8" y="501" width="0.2" height="15.0" fill="rgb(214,22,19)" rx="2" ry="2" />
|
|
<text x="788.75" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (35 samples, 0.17%)</title><rect x="1024.5" y="533" width="2.0" height="15.0" fill="rgb(215,160,21)" rx="2" ry="2" />
|
|
<text x="1027.48" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="986.0" y="581" width="0.1" height="15.0" fill="rgb(210,62,31)" rx="2" ry="2" />
|
|
<text x="988.96" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (2 samples, 0.01%)</title><rect x="917.5" y="565" width="0.2" height="15.0" fill="rgb(214,205,24)" rx="2" ry="2" />
|
|
<text x="920.53" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (6,046 samples, 30.22%)</title><rect x="505.4" y="597" width="356.7" height="15.0" fill="rgb(232,40,30)" rx="2" ry="2" />
|
|
<text x="508.44" y="607.5" >ipv4_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (5 samples, 0.02%)</title><rect x="786.0" y="501" width="0.3" height="15.0" fill="rgb(244,49,38)" rx="2" ry="2" />
|
|
<text x="789.05" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (29 samples, 0.14%)</title><rect x="964.7" y="645" width="1.7" height="15.0" fill="rgb(234,129,18)" rx="2" ry="2" />
|
|
<text x="967.72" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>printaddr (34 samples, 0.17%)</title><rect x="1011.6" y="741" width="2.0" height="15.0" fill="rgb(230,1,33)" rx="2" ry="2" />
|
|
<text x="1014.62" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="963.8" y="709" width="0.2" height="15.0" fill="rgb(208,160,29)" rx="2" ry="2" />
|
|
<text x="966.84" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="978.6" y="677" width="0.2" height="15.0" fill="rgb(239,147,7)" rx="2" ry="2" />
|
|
<text x="981.65" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="917.9" y="549" width="0.1" height="15.0" fill="rgb(217,131,25)" rx="2" ry="2" />
|
|
<text x="920.89" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="484.7" y="485" width="0.1" height="15.0" fill="rgb(221,222,53)" rx="2" ry="2" />
|
|
<text x="487.68" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (4 samples, 0.02%)</title><rect x="391.2" y="437" width="0.3" height="15.0" fill="rgb(206,178,19)" rx="2" ry="2" />
|
|
<text x="394.24" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="827.3" y="485" width="0.2" height="15.0" fill="rgb(206,201,29)" rx="2" ry="2" />
|
|
<text x="830.34" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_destroy (9 samples, 0.04%)</title><rect x="556.1" y="453" width="0.5" height="15.0" fill="rgb(246,194,52)" rx="2" ry="2" />
|
|
<text x="559.11" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (3 samples, 0.01%)</title><rect x="732.9" y="437" width="0.2" height="15.0" fill="rgb(227,174,52)" rx="2" ry="2" />
|
|
<text x="735.90" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (21 samples, 0.10%)</title><rect x="1002.2" y="581" width="1.2" height="15.0" fill="rgb(206,27,17)" rx="2" ry="2" />
|
|
<text x="1005.18" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (6 samples, 0.03%)</title><rect x="151.8" y="581" width="0.4" height="15.0" fill="rgb(239,59,4)" rx="2" ry="2" />
|
|
<text x="154.81" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_create (6 samples, 0.03%)</title><rect x="811.1" y="469" width="0.3" height="15.0" fill="rgb(246,171,9)" rx="2" ry="2" />
|
|
<text x="814.06" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_fetch_deny_rule@plt (2 samples, 0.01%)</title><rect x="385.0" y="453" width="0.1" height="15.0" fill="rgb(209,157,31)" rx="2" ry="2" />
|
|
<text x="387.99" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,982 samples, 9.91%)</title><rect x="296.3" y="757" width="116.9" height="15.0" fill="rgb(244,159,18)" rx="2" ry="2" />
|
|
<text x="299.33" y="767.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="413.1" y="565" width="0.1" height="15.0" fill="rgb(245,206,14)" rx="2" ry="2" />
|
|
<text x="416.07" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_ipport_union_addr (4 samples, 0.02%)</title><rect x="785.2" y="549" width="0.2" height="15.0" fill="rgb(219,35,6)" rx="2" ry="2" />
|
|
<text x="788.16" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (45 samples, 0.22%)</title><rect x="485.3" y="469" width="2.7" height="15.0" fill="rgb(232,208,1)" rx="2" ry="2" />
|
|
<text x="488.33" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="963.8" y="597" width="0.2" height="15.0" fill="rgb(234,160,2)" rx="2" ry="2" />
|
|
<text x="966.84" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>flush_tlb_mm_range (21 samples, 0.10%)</title><rect x="707.7" y="309" width="1.3" height="15.0" fill="rgb(224,19,39)" rx="2" ry="2" />
|
|
<text x="710.71" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_ex_c2i (6 samples, 0.03%)</title><rect x="327.7" y="85" width="0.3" height="15.0" fill="rgb(223,114,5)" rx="2" ry="2" />
|
|
<text x="330.65" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (7 samples, 0.03%)</title><rect x="826.3" y="453" width="0.5" height="15.0" fill="rgb(217,204,7)" rx="2" ry="2" />
|
|
<text x="829.34" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (10 samples, 0.05%)</title><rect x="334.8" y="485" width="0.6" height="15.0" fill="rgb(206,136,43)" rx="2" ry="2" />
|
|
<text x="337.79" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (158 samples, 0.79%)</title><rect x="992.2" y="597" width="9.3" height="15.0" fill="rgb(215,142,31)" rx="2" ry="2" />
|
|
<text x="995.15" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_htable.so] (6 samples, 0.03%)</title><rect x="1028.7" y="565" width="0.3" height="15.0" fill="rgb(247,10,42)" rx="2" ry="2" />
|
|
<text x="1031.67" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_recogniseGeneralEntityRegion (3 samples, 0.01%)</title><rect x="566.0" y="389" width="0.1" height="15.0" fill="rgb(248,104,25)" rx="2" ry="2" />
|
|
<text x="568.96" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (1,122 samples, 5.61%)</title><rect x="713.1" y="533" width="66.2" height="15.0" fill="rgb(209,195,10)" rx="2" ry="2" />
|
|
<text x="716.08" y="543.5" >stream_..</text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (7 samples, 0.03%)</title><rect x="1006.4" y="629" width="0.4" height="15.0" fill="rgb(221,38,16)" rx="2" ry="2" />
|
|
<text x="1009.37" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (7 samples, 0.03%)</title><rect x="391.2" y="501" width="0.4" height="15.0" fill="rgb(253,165,27)" rx="2" ry="2" />
|
|
<text x="394.18" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (1,277 samples, 6.38%)</title><rect x="543.3" y="501" width="75.3" height="15.0" fill="rgb(218,92,42)" rx="2" ry="2" />
|
|
<text x="546.25" y="511.5" >plugin_c..</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="970.6" y="549" width="0.1" height="15.0" fill="rgb(217,19,10)" rx="2" ry="2" />
|
|
<text x="973.62" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[capture_packet_plug.so] (10 samples, 0.05%)</title><rect x="276.6" y="757" width="0.6" height="15.0" fill="rgb(223,229,14)" rx="2" ry="2" />
|
|
<text x="279.63" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (11 samples, 0.05%)</title><rect x="618.6" y="485" width="0.7" height="15.0" fill="rgb(233,103,23)" rx="2" ry="2" />
|
|
<text x="621.64" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_tcpall_entry (17 samples, 0.08%)</title><rect x="1023.4" y="501" width="1.0" height="15.0" fill="rgb(228,179,1)" rx="2" ry="2" />
|
|
<text x="1026.42" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (6 samples, 0.03%)</title><rect x="985.8" y="629" width="0.3" height="15.0" fill="rgb(243,115,26)" rx="2" ry="2" />
|
|
<text x="988.78" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_nid2obj (2 samples, 0.01%)</title><rect x="583.8" y="373" width="0.1" height="15.0" fill="rgb(221,146,32)" rx="2" ry="2" />
|
|
<text x="586.78" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_init_sleeper (3 samples, 0.01%)</title><rect x="925.6" y="613" width="0.1" height="15.0" fill="rgb(252,33,40)" rx="2" ry="2" />
|
|
<text x="928.56" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="384.8" y="469" width="0.1" height="15.0" fill="rgb(236,52,34)" rx="2" ry="2" />
|
|
<text x="387.75" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (10 samples, 0.05%)</title><rect x="413.8" y="645" width="0.6" height="15.0" fill="rgb(248,20,16)" rx="2" ry="2" />
|
|
<text x="416.77" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (6 samples, 0.03%)</title><rect x="1006.4" y="581" width="0.4" height="15.0" fill="rgb(221,79,45)" rx="2" ry="2" />
|
|
<text x="1009.43" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (13 samples, 0.06%)</title><rect x="618.6" y="501" width="0.7" height="15.0" fill="rgb(231,184,1)" rx="2" ry="2" />
|
|
<text x="621.58" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="981.7" y="581" width="0.1" height="15.0" fill="rgb(228,223,21)" rx="2" ry="2" />
|
|
<text x="984.65" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (123 samples, 0.61%)</title><rect x="307.8" y="453" width="7.2" height="15.0" fill="rgb(233,173,2)" rx="2" ry="2" />
|
|
<text x="310.77" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (65 samples, 0.32%)</title><rect x="1019.6" y="517" width="3.8" height="15.0" fill="rgb(218,62,6)" rx="2" ry="2" />
|
|
<text x="1022.58" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (192 samples, 0.96%)</title><rect x="367.8" y="517" width="11.3" height="15.0" fill="rgb(247,17,29)" rx="2" ry="2" />
|
|
<text x="370.82" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="329.4" y="181" width="0.1" height="15.0" fill="rgb(246,110,54)" rx="2" ry="2" />
|
|
<text x="332.36" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="319.5" y="277" width="0.1" height="15.0" fill="rgb(240,149,40)" rx="2" ry="2" />
|
|
<text x="322.45" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (21 samples, 0.10%)</title><rect x="965.2" y="517" width="1.2" height="15.0" fill="rgb(232,158,20)" rx="2" ry="2" />
|
|
<text x="968.20" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="529.7" y="501" width="0.2" height="15.0" fill="rgb(225,79,5)" rx="2" ry="2" />
|
|
<text x="532.75" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1020.8" y="341" width="0.1" height="15.0" fill="rgb(207,9,1)" rx="2" ry="2" />
|
|
<text x="1023.76" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>callback_dns_business_plug (492 samples, 2.46%)</title><rect x="982.4" y="741" width="29.0" height="15.0" fill="rgb(250,79,22)" rx="2" ry="2" />
|
|
<text x="985.42" y="751.5" >ca..</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="485.6" y="437" width="0.4" height="15.0" fill="rgb(208,14,45)" rx="2" ry="2" />
|
|
<text x="488.62" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>region_compile (1,259 samples, 6.29%)</title><rect x="90.6" y="741" width="74.3" height="15.0" fill="rgb(228,137,48)" rx="2" ry="2" />
|
|
<text x="93.64" y="751.5" >region_c..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (11 samples, 0.05%)</title><rect x="553.8" y="325" width="0.6" height="15.0" fill="rgb(213,37,29)" rx="2" ry="2" />
|
|
<text x="556.75" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="327.7" y="101" width="0.3" height="15.0" fill="rgb(240,203,18)" rx="2" ry="2" />
|
|
<text x="330.65" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (27 samples, 0.13%)</title><rect x="1021.2" y="437" width="1.6" height="15.0" fill="rgb(216,72,3)" rx="2" ry="2" />
|
|
<text x="1024.18" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (6 samples, 0.03%)</title><rect x="980.6" y="517" width="0.3" height="15.0" fill="rgb(251,170,46)" rx="2" ry="2" />
|
|
<text x="983.59" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (8 samples, 0.04%)</title><rect x="564.7" y="309" width="0.5" height="15.0" fill="rgb(244,158,31)" rx="2" ry="2" />
|
|
<text x="567.73" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_send_burst (35 samples, 0.17%)</title><rect x="896.5" y="693" width="2.1" height="15.0" fill="rgb(250,181,27)" rx="2" ry="2" />
|
|
<text x="899.53" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_timespec64 (3 samples, 0.01%)</title><rect x="921.0" y="629" width="0.1" height="15.0" fill="rgb(242,145,10)" rx="2" ry="2" />
|
|
<text x="923.95" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_realloc (44 samples, 0.22%)</title><rect x="99.7" y="709" width="2.6" height="15.0" fill="rgb(234,103,17)" rx="2" ry="2" />
|
|
<text x="102.72" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="315.5" y="357" width="0.1" height="15.0" fill="rgb(230,200,38)" rx="2" ry="2" />
|
|
<text x="318.50" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_usleep (124 samples, 0.62%)</title><rect x="919.4" y="709" width="7.3" height="15.0" fill="rgb(236,167,13)" rx="2" ry="2" />
|
|
<text x="922.42" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (37 samples, 0.18%)</title><rect x="986.5" y="613" width="2.2" height="15.0" fill="rgb(208,72,42)" rx="2" ry="2" />
|
|
<text x="989.55" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="319.2" y="277" width="0.2" height="15.0" fill="rgb(220,185,5)" rx="2" ry="2" />
|
|
<text x="322.22" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (192 samples, 0.96%)</title><rect x="367.8" y="549" width="11.3" height="15.0" fill="rgb(229,33,34)" rx="2" ry="2" />
|
|
<text x="370.82" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>QUIC_ENTRY (32 samples, 0.16%)</title><rect x="825.3" y="517" width="1.9" height="15.0" fill="rgb(229,181,53)" rx="2" ry="2" />
|
|
<text x="828.28" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (3 samples, 0.01%)</title><rect x="831.2" y="421" width="0.2" height="15.0" fill="rgb(226,229,0)" rx="2" ry="2" />
|
|
<text x="834.17" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (3 samples, 0.01%)</title><rect x="587.3" y="309" width="0.1" height="15.0" fill="rgb(229,34,8)" rx="2" ry="2" />
|
|
<text x="590.26" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (21 samples, 0.10%)</title><rect x="965.2" y="565" width="1.2" height="15.0" fill="rgb(210,139,7)" rx="2" ry="2" />
|
|
<text x="968.20" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (18 samples, 0.09%)</title><rect x="804.1" y="517" width="1.1" height="15.0" fill="rgb(252,229,35)" rx="2" ry="2" />
|
|
<text x="807.10" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (3 samples, 0.01%)</title><rect x="671.1" y="405" width="0.2" height="15.0" fill="rgb(253,88,31)" rx="2" ry="2" />
|
|
<text x="674.08" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (38 samples, 0.19%)</title><rect x="1024.5" y="565" width="2.2" height="15.0" fill="rgb(242,169,26)" rx="2" ry="2" />
|
|
<text x="1027.48" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="566.5" y="373" width="0.1" height="15.0" fill="rgb(232,38,23)" rx="2" ry="2" />
|
|
<text x="569.49" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpStream (2 samples, 0.01%)</title><rect x="567.8" y="469" width="0.1" height="15.0" fill="rgb(253,208,47)" rx="2" ry="2" />
|
|
<text x="570.79" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="598.2" y="437" width="0.1" height="15.0" fill="rgb(239,189,43)" rx="2" ry="2" />
|
|
<text x="601.17" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="992.6" y="565" width="0.3" height="15.0" fill="rgb(221,24,0)" rx="2" ry="2" />
|
|
<text x="995.57" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (10 samples, 0.05%)</title><rect x="666.9" y="485" width="0.6" height="15.0" fill="rgb(218,11,25)" rx="2" ry="2" />
|
|
<text x="669.89" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (12 samples, 0.06%)</title><rect x="327.3" y="133" width="0.7" height="15.0" fill="rgb(217,45,37)" rx="2" ry="2" />
|
|
<text x="330.30" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="561.2" y="357" width="0.3" height="15.0" fill="rgb(225,0,32)" rx="2" ry="2" />
|
|
<text x="564.24" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (9 samples, 0.04%)</title><rect x="789.7" y="453" width="0.5" height="15.0" fill="rgb(234,19,18)" rx="2" ry="2" />
|
|
<text x="792.71" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="566.5" y="389" width="0.1" height="15.0" fill="rgb(230,73,12)" rx="2" ry="2" />
|
|
<text x="569.49" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (9 samples, 0.04%)</title><rect x="394.4" y="613" width="0.5" height="15.0" fill="rgb(211,23,12)" rx="2" ry="2" />
|
|
<text x="397.37" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (6 samples, 0.03%)</title><rect x="1022.9" y="453" width="0.3" height="15.0" fill="rgb(225,132,6)" rx="2" ry="2" />
|
|
<text x="1025.89" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="300.0" y="485" width="0.5" height="15.0" fill="rgb(244,80,0)" rx="2" ry="2" />
|
|
<text x="302.99" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="43.3" y="677" width="0.1" height="15.0" fill="rgb(252,195,51)" rx="2" ry="2" />
|
|
<text x="46.33" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (42 samples, 0.21%)</title><rect x="51.2" y="693" width="2.5" height="15.0" fill="rgb(250,74,40)" rx="2" ry="2" />
|
|
<text x="54.23" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__audit_syscall_exit (5 samples, 0.02%)</title><rect x="925.9" y="629" width="0.3" height="15.0" fill="rgb(231,59,30)" rx="2" ry="2" />
|
|
<text x="928.91" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="484.3" y="565" width="0.1" height="15.0" fill="rgb(238,216,29)" rx="2" ry="2" />
|
|
<text x="487.27" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (43 samples, 0.21%)</title><rect x="419.1" y="709" width="2.5" height="15.0" fill="rgb(238,81,40)" rx="2" ry="2" />
|
|
<text x="422.08" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="967.9" y="581" width="0.1" height="15.0" fill="rgb(251,6,35)" rx="2" ry="2" />
|
|
<text x="970.91" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (5 samples, 0.02%)</title><rect x="862.3" y="565" width="0.3" height="15.0" fill="rgb(234,82,8)" rx="2" ry="2" />
|
|
<text x="865.26" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="330.0" y="213" width="0.2" height="15.0" fill="rgb(216,38,50)" rx="2" ry="2" />
|
|
<text x="333.01" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (17 samples, 0.08%)</title><rect x="155.9" y="709" width="1.0" height="15.0" fill="rgb(242,201,10)" rx="2" ry="2" />
|
|
<text x="158.94" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithApplicationData (87 samples, 0.43%)</title><rect x="573.9" y="421" width="5.1" height="15.0" fill="rgb(253,162,2)" rx="2" ry="2" />
|
|
<text x="576.87" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_send_burst (4 samples, 0.02%)</title><rect x="1013.9" y="693" width="0.3" height="15.0" fill="rgb(221,50,52)" rx="2" ry="2" />
|
|
<text x="1016.92" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_clock (2 samples, 0.01%)</title><rect x="357.1" y="453" width="0.1" height="15.0" fill="rgb(206,3,36)" rx="2" ry="2" />
|
|
<text x="360.09" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (22 samples, 0.11%)</title><rect x="974.2" y="645" width="1.3" height="15.0" fill="rgb(243,181,27)" rx="2" ry="2" />
|
|
<text x="977.22" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (4 samples, 0.02%)</title><rect x="488.5" y="501" width="0.2" height="15.0" fill="rgb(206,121,28)" rx="2" ry="2" />
|
|
<text x="491.51" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_nat_linkinfo (10 samples, 0.05%)</title><rect x="319.0" y="341" width="0.6" height="15.0" fill="rgb(220,41,6)" rx="2" ry="2" />
|
|
<text x="322.04" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (63 samples, 0.31%)</title><rect x="388.4" y="549" width="3.7" height="15.0" fill="rgb(206,23,28)" rx="2" ry="2" />
|
|
<text x="391.35" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="368.9" y="453" width="0.2" height="15.0" fill="rgb(234,196,49)" rx="2" ry="2" />
|
|
<text x="371.94" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___clock_gettime (4 samples, 0.02%)</title><rect x="229.3" y="741" width="0.3" height="15.0" fill="rgb(235,182,33)" rx="2" ry="2" />
|
|
<text x="232.32" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (10 samples, 0.05%)</title><rect x="334.8" y="453" width="0.6" height="15.0" fill="rgb(250,109,35)" rx="2" ry="2" />
|
|
<text x="337.79" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (8 samples, 0.04%)</title><rect x="977.1" y="549" width="0.4" height="15.0" fill="rgb(253,216,1)" rx="2" ry="2" />
|
|
<text x="980.05" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="567.7" y="453" width="0.1" height="15.0" fill="rgb(213,139,48)" rx="2" ry="2" />
|
|
<text x="570.67" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (123 samples, 0.61%)</title><rect x="307.8" y="389" width="7.2" height="15.0" fill="rgb(224,22,14)" rx="2" ry="2" />
|
|
<text x="310.77" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>all (20,004 samples, 100%)</title><rect x="10.0" y="789" width="1180.0" height="15.0" fill="rgb(227,83,4)" rx="2" ry="2" />
|
|
<text x="13.00" y="799.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_rr_str2json (20 samples, 0.10%)</title><rect x="1003.7" y="645" width="1.2" height="15.0" fill="rgb(215,223,2)" rx="2" ry="2" />
|
|
<text x="1006.72" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="974.0" y="565" width="0.2" height="15.0" fill="rgb(208,64,30)" rx="2" ry="2" />
|
|
<text x="977.04" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcpall_entry (4 samples, 0.02%)</title><rect x="301.2" y="533" width="0.3" height="15.0" fill="rgb(216,88,30)" rx="2" ry="2" />
|
|
<text x="304.22" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchrnul (4 samples, 0.02%)</title><rect x="969.8" y="533" width="0.2" height="15.0" fill="rgb(211,201,17)" rx="2" ry="2" />
|
|
<text x="972.80" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (73 samples, 0.36%)</title><rect x="484.4" y="565" width="4.3" height="15.0" fill="rgb(235,196,7)" rx="2" ry="2" />
|
|
<text x="487.44" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="981.8" y="549" width="0.1" height="15.0" fill="rgb(239,136,52)" rx="2" ry="2" />
|
|
<text x="984.77" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_sse2_pminub (3 samples, 0.01%)</title><rect x="729.3" y="453" width="0.2" height="15.0" fill="rgb(250,108,28)" rx="2" ry="2" />
|
|
<text x="732.30" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="978.9" y="437" width="0.1" height="15.0" fill="rgb(246,145,7)" rx="2" ry="2" />
|
|
<text x="981.88" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>printaddr_r (17 samples, 0.08%)</title><rect x="1023.4" y="485" width="1.0" height="15.0" fill="rgb(235,50,1)" rx="2" ry="2" />
|
|
<text x="1026.42" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="587.6" y="293" width="0.1" height="15.0" fill="rgb(246,48,25)" rx="2" ry="2" />
|
|
<text x="590.55" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (8 samples, 0.04%)</title><rect x="276.2" y="725" width="0.4" height="15.0" fill="rgb(213,155,36)" rx="2" ry="2" />
|
|
<text x="279.15" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Rb_tree_increment (10 samples, 0.05%)</title><rect x="841.3" y="469" width="0.6" height="15.0" fill="rgb(252,201,6)" rx="2" ry="2" />
|
|
<text x="844.32" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="330.0" y="277" width="0.2" height="15.0" fill="rgb(247,64,54)" rx="2" ry="2" />
|
|
<text x="332.95" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (30 samples, 0.15%)</title><rect x="968.3" y="661" width="1.7" height="15.0" fill="rgb(243,151,7)" rx="2" ry="2" />
|
|
<text x="971.26" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>schedule (58 samples, 0.29%)</title><rect x="922.1" y="597" width="3.5" height="15.0" fill="rgb(207,178,25)" rx="2" ry="2" />
|
|
<text x="925.13" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>printaddr (2 samples, 0.01%)</title><rect x="299.7" y="501" width="0.1" height="15.0" fill="rgb(242,204,0)" rx="2" ry="2" />
|
|
<text x="302.69" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="43.3" y="757" width="0.1" height="15.0" fill="rgb(216,100,30)" rx="2" ry="2" />
|
|
<text x="46.33" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (5 samples, 0.02%)</title><rect x="484.1" y="581" width="0.3" height="15.0" fill="rgb(205,36,39)" rx="2" ry="2" />
|
|
<text x="487.15" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (8 samples, 0.04%)</title><rect x="300.0" y="437" width="0.5" height="15.0" fill="rgb(214,25,36)" rx="2" ry="2" />
|
|
<text x="302.99" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bool_matcher_match (68 samples, 0.34%)</title><rect x="49.7" y="709" width="4.0" height="15.0" fill="rgb(217,218,52)" rx="2" ry="2" />
|
|
<text x="52.70" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1015.1" y="709" width="0.2" height="15.0" fill="rgb(216,136,19)" rx="2" ry="2" />
|
|
<text x="1018.10" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="369.4" y="421" width="0.1" height="15.0" fill="rgb(243,89,25)" rx="2" ry="2" />
|
|
<text x="372.36" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (13 samples, 0.06%)</title><rect x="973.3" y="485" width="0.7" height="15.0" fill="rgb(227,3,5)" rx="2" ry="2" />
|
|
<text x="976.28" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_pull_policy_result (2 samples, 0.01%)</title><rect x="301.1" y="501" width="0.1" height="15.0" fill="rgb(233,68,36)" rx="2" ry="2" />
|
|
<text x="304.11" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (47 samples, 0.23%)</title><rect x="301.8" y="597" width="2.7" height="15.0" fill="rgb(252,0,45)" rx="2" ry="2" />
|
|
<text x="304.76" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (12 samples, 0.06%)</title><rect x="412.5" y="645" width="0.7" height="15.0" fill="rgb(252,67,29)" rx="2" ry="2" />
|
|
<text x="415.48" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="833.8" y="485" width="0.1" height="15.0" fill="rgb(211,141,44)" rx="2" ry="2" />
|
|
<text x="836.77" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="412.4" y="565" width="0.1" height="15.0" fill="rgb(246,157,5)" rx="2" ry="2" />
|
|
<text x="415.36" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_identify_tunnel_inner_pkt (4 samples, 0.02%)</title><rect x="865.5" y="645" width="0.2" height="15.0" fill="rgb(245,174,8)" rx="2" ry="2" />
|
|
<text x="868.51" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="1014.2" y="661" width="0.1" height="15.0" fill="rgb(216,28,6)" rx="2" ry="2" />
|
|
<text x="1017.22" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_id (9 samples, 0.04%)</title><rect x="1005.5" y="661" width="0.5" height="15.0" fill="rgb(243,206,5)" rx="2" ry="2" />
|
|
<text x="1008.48" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_location (2 samples, 0.01%)</title><rect x="605.4" y="453" width="0.1" height="15.0" fill="rgb(214,112,40)" rx="2" ry="2" />
|
|
<text x="608.43" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (4 samples, 0.02%)</title><rect x="973.0" y="517" width="0.3" height="15.0" fill="rgb(233,193,54)" rx="2" ry="2" />
|
|
<text x="976.04" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="393.4" y="469" width="0.1" height="15.0" fill="rgb(210,208,28)" rx="2" ry="2" />
|
|
<text x="396.36" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (10 samples, 0.05%)</title><rect x="557.2" y="453" width="0.6" height="15.0" fill="rgb(252,133,24)" rx="2" ry="2" />
|
|
<text x="560.17" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (5 samples, 0.02%)</title><rect x="1026.2" y="437" width="0.3" height="15.0" fill="rgb(225,194,47)" rx="2" ry="2" />
|
|
<text x="1029.25" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="304.4" y="421" width="0.1" height="15.0" fill="rgb(229,150,35)" rx="2" ry="2" />
|
|
<text x="307.41" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sk_pop_free (4 samples, 0.02%)</title><rect x="583.0" y="293" width="0.2" height="15.0" fill="rgb(217,181,32)" rx="2" ry="2" />
|
|
<text x="585.95" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (40 samples, 0.20%)</title><rect x="376.7" y="421" width="2.3" height="15.0" fill="rgb(252,69,7)" rx="2" ry="2" />
|
|
<text x="379.67" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (2 samples, 0.01%)</title><rect x="301.6" y="581" width="0.1" height="15.0" fill="rgb(219,198,11)" rx="2" ry="2" />
|
|
<text x="304.58" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (39 samples, 0.19%)</title><rect x="970.7" y="549" width="2.3" height="15.0" fill="rgb(235,176,24)" rx="2" ry="2" />
|
|
<text x="973.74" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_releaseHttpLinkNode (15 samples, 0.07%)</title><rect x="367.8" y="469" width="0.9" height="15.0" fill="rgb(238,43,34)" rx="2" ry="2" />
|
|
<text x="370.82" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_5tuple_get (2 samples, 0.01%)</title><rect x="555.8" y="389" width="0.1" height="15.0" fill="rgb(234,80,12)" rx="2" ry="2" />
|
|
<text x="558.82" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wire_graft_build_link_info (5 samples, 0.02%)</title><rect x="607.8" y="469" width="0.3" height="15.0" fill="rgb(214,119,54)" rx="2" ry="2" />
|
|
<text x="610.79" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (73 samples, 0.36%)</title><rect x="319.6" y="469" width="4.3" height="15.0" fill="rgb(253,40,43)" rx="2" ry="2" />
|
|
<text x="322.63" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_itoa_word (2 samples, 0.01%)</title><rect x="966.3" y="485" width="0.1" height="15.0" fill="rgb(233,35,13)" rx="2" ry="2" />
|
|
<text x="969.32" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="972.6" y="453" width="0.1" height="15.0" fill="rgb(216,174,11)" rx="2" ry="2" />
|
|
<text x="975.63" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (315 samples, 1.57%)</title><rect x="986.3" y="661" width="18.6" height="15.0" fill="rgb(220,226,48)" rx="2" ry="2" />
|
|
<text x="989.31" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (12 samples, 0.06%)</title><rect x="1019.6" y="485" width="0.7" height="15.0" fill="rgb(251,87,16)" rx="2" ry="2" />
|
|
<text x="1022.58" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (8 samples, 0.04%)</title><rect x="856.7" y="517" width="0.5" height="15.0" fill="rgb(226,113,27)" rx="2" ry="2" />
|
|
<text x="859.72" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (141 samples, 0.70%)</title><rect x="326.0" y="517" width="8.3" height="15.0" fill="rgb(205,163,14)" rx="2" ry="2" />
|
|
<text x="329.00" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="330.2" y="389" width="0.2" height="15.0" fill="rgb(207,211,37)" rx="2" ry="2" />
|
|
<text x="333.25" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (29 samples, 0.14%)</title><rect x="317.2" y="325" width="1.7" height="15.0" fill="rgb(205,96,23)" rx="2" ry="2" />
|
|
<text x="320.15" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="792.2" y="357" width="0.1" height="15.0" fill="rgb(244,25,13)" rx="2" ry="2" />
|
|
<text x="795.18" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_stream_id (2 samples, 0.01%)</title><rect x="631.7" y="469" width="0.1" height="15.0" fill="rgb(238,150,54)" rx="2" ry="2" />
|
|
<text x="634.68" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (4 samples, 0.02%)</title><rect x="668.1" y="485" width="0.2" height="15.0" fill="rgb(240,192,10)" rx="2" ry="2" />
|
|
<text x="671.07" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (5 samples, 0.02%)</title><rect x="1027.3" y="549" width="0.2" height="15.0" fill="rgb(214,91,9)" rx="2" ry="2" />
|
|
<text x="1030.25" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (22 samples, 0.11%)</title><rect x="819.1" y="437" width="1.3" height="15.0" fill="rgb(240,85,48)" rx="2" ry="2" />
|
|
<text x="822.14" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (3 samples, 0.01%)</title><rect x="673.1" y="469" width="0.2" height="15.0" fill="rgb(253,60,11)" rx="2" ry="2" />
|
|
<text x="676.09" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_cancel (4 samples, 0.02%)</title><rect x="338.8" y="469" width="0.2" height="15.0" fill="rgb(212,194,41)" rx="2" ry="2" />
|
|
<text x="341.80" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (4 samples, 0.02%)</title><rect x="1008.7" y="613" width="0.2" height="15.0" fill="rgb(223,112,6)" rx="2" ry="2" />
|
|
<text x="1011.67" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="561.6" y="357" width="0.1" height="15.0" fill="rgb(223,74,40)" rx="2" ry="2" />
|
|
<text x="564.60" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="844.7" y="469" width="0.2" height="15.0" fill="rgb(220,188,27)" rx="2" ry="2" />
|
|
<text x="847.74" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="981.8" y="581" width="0.1" height="15.0" fill="rgb(219,111,23)" rx="2" ry="2" />
|
|
<text x="984.77" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="565.6" y="421" width="0.2" height="15.0" fill="rgb(242,66,14)" rx="2" ry="2" />
|
|
<text x="568.61" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="488.6" y="437" width="0.1" height="15.0" fill="rgb(211,12,18)" rx="2" ry="2" />
|
|
<text x="491.57" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (26 samples, 0.13%)</title><rect x="377.3" y="373" width="1.6" height="15.0" fill="rgb(222,36,11)" rx="2" ry="2" />
|
|
<text x="380.32" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (101 samples, 0.50%)</title><rect x="369.8" y="437" width="6.0" height="15.0" fill="rgb(244,204,54)" rx="2" ry="2" />
|
|
<text x="372.83" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (349 samples, 1.74%)</title><rect x="570.3" y="485" width="20.6" height="15.0" fill="rgb(252,13,39)" rx="2" ry="2" />
|
|
<text x="573.27" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="981.1" y="517" width="0.1" height="15.0" fill="rgb(216,158,44)" rx="2" ry="2" />
|
|
<text x="984.06" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (7 samples, 0.03%)</title><rect x="587.8" y="277" width="0.4" height="15.0" fill="rgb(247,115,20)" rx="2" ry="2" />
|
|
<text x="590.79" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="276.2" y="645" width="0.1" height="15.0" fill="rgb(245,229,15)" rx="2" ry="2" />
|
|
<text x="279.21" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (183 samples, 0.91%)</title><rect x="738.4" y="469" width="10.8" height="15.0" fill="rgb(240,72,38)" rx="2" ry="2" />
|
|
<text x="741.39" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (59 samples, 0.29%)</title><rect x="319.9" y="341" width="3.4" height="15.0" fill="rgb(234,72,35)" rx="2" ry="2" />
|
|
<text x="322.87" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_partitioner (2 samples, 0.01%)</title><rect x="984.4" y="613" width="0.1" height="15.0" fill="rgb(253,25,12)" rx="2" ry="2" />
|
|
<text x="987.43" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_SSL_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="413.1" y="549" width="0.1" height="15.0" fill="rgb(247,185,44)" rx="2" ry="2" />
|
|
<text x="416.07" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[capture_packet_plug.so] (2 samples, 0.01%)</title><rect x="984.9" y="597" width="0.1" height="15.0" fill="rgb(222,121,34)" rx="2" ry="2" />
|
|
<text x="987.90" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (436 samples, 2.18%)</title><rect x="335.6" y="517" width="25.7" height="15.0" fill="rgb(224,214,42)" rx="2" ry="2" />
|
|
<text x="338.56" y="527.5" >[..</text>
|
|
</g>
|
|
<g >
|
|
<title>CIPv4Match::SearchIP@plt (5 samples, 0.02%)</title><rect x="296.0" y="741" width="0.3" height="15.0" fill="rgb(206,108,50)" rx="2" ry="2" />
|
|
<text x="298.97" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="376.6" y="421" width="0.1" height="15.0" fill="rgb(241,34,0)" rx="2" ry="2" />
|
|
<text x="379.55" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="393.0" y="629" width="0.1" height="15.0" fill="rgb(213,134,21)" rx="2" ry="2" />
|
|
<text x="395.95" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (8 samples, 0.04%)</title><rect x="641.6" y="469" width="0.5" height="15.0" fill="rgb(245,73,0)" rx="2" ry="2" />
|
|
<text x="644.59" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="980.5" y="485" width="0.1" height="15.0" fill="rgb(209,223,22)" rx="2" ry="2" />
|
|
<text x="983.47" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (30 samples, 0.15%)</title><rect x="324.2" y="373" width="1.8" height="15.0" fill="rgb(231,6,20)" rx="2" ry="2" />
|
|
<text x="327.23" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (5 samples, 0.02%)</title><rect x="1007.1" y="597" width="0.3" height="15.0" fill="rgb(236,117,5)" rx="2" ry="2" />
|
|
<text x="1010.14" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (6 samples, 0.03%)</title><rect x="785.4" y="469" width="0.4" height="15.0" fill="rgb(249,7,45)" rx="2" ry="2" />
|
|
<text x="788.40" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (10 samples, 0.05%)</title><rect x="964.0" y="597" width="0.6" height="15.0" fill="rgb(233,109,29)" rx="2" ry="2" />
|
|
<text x="967.02" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>quic_protocol_identify (2 samples, 0.01%)</title><rect x="304.4" y="517" width="0.1" height="15.0" fill="rgb(248,71,54)" rx="2" ry="2" />
|
|
<text x="307.41" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_primitive_new (2 samples, 0.01%)</title><rect x="581.4" y="277" width="0.1" height="15.0" fill="rgb(242,112,15)" rx="2" ry="2" />
|
|
<text x="584.36" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (10 samples, 0.05%)</title><rect x="393.5" y="629" width="0.6" height="15.0" fill="rgb(245,83,40)" rx="2" ry="2" />
|
|
<text x="396.54" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (22 samples, 0.11%)</title><rect x="1011.7" y="677" width="1.3" height="15.0" fill="rgb(240,156,5)" rx="2" ry="2" />
|
|
<text x="1014.74" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (4 samples, 0.02%)</title><rect x="826.4" y="405" width="0.2" height="15.0" fill="rgb(217,90,43)" rx="2" ry="2" />
|
|
<text x="829.40" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (12 samples, 0.06%)</title><rect x="327.3" y="149" width="0.7" height="15.0" fill="rgb(247,171,4)" rx="2" ry="2" />
|
|
<text x="330.30" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="316.5" y="341" width="0.2" height="15.0" fill="rgb(248,39,29)" rx="2" ry="2" />
|
|
<text x="319.50" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (14 samples, 0.07%)</title><rect x="1026.8" y="581" width="0.8" height="15.0" fill="rgb(219,188,19)" rx="2" ry="2" />
|
|
<text x="1029.78" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="49.3" y="709" width="0.1" height="15.0" fill="rgb(254,50,51)" rx="2" ry="2" />
|
|
<text x="52.29" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (23 samples, 0.11%)</title><rect x="101.0" y="677" width="1.3" height="15.0" fill="rgb(247,130,30)" rx="2" ry="2" />
|
|
<text x="103.96" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_plugin_get_ex_data (2 samples, 0.01%)</title><rect x="1006.2" y="613" width="0.1" height="15.0" fill="rgb(237,91,17)" rx="2" ry="2" />
|
|
<text x="1009.19" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (8 samples, 0.04%)</title><rect x="276.2" y="741" width="0.4" height="15.0" fill="rgb(249,154,16)" rx="2" ry="2" />
|
|
<text x="279.15" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (6 samples, 0.03%)</title><rect x="985.3" y="629" width="0.3" height="15.0" fill="rgb(205,98,9)" rx="2" ry="2" />
|
|
<text x="988.25" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (19 samples, 0.09%)</title><rect x="967.1" y="677" width="1.2" height="15.0" fill="rgb(214,150,15)" rx="2" ry="2" />
|
|
<text x="970.14" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (12 samples, 0.06%)</title><rect x="367.9" y="277" width="0.7" height="15.0" fill="rgb(245,107,2)" rx="2" ry="2" />
|
|
<text x="370.94" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (14 samples, 0.07%)</title><rect x="977.8" y="597" width="0.8" height="15.0" fill="rgb(254,53,17)" rx="2" ry="2" />
|
|
<text x="980.76" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="380.9" y="501" width="0.1" height="15.0" fill="rgb(244,20,38)" rx="2" ry="2" />
|
|
<text x="383.86" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (32 samples, 0.16%)</title><rect x="302.3" y="373" width="1.9" height="15.0" fill="rgb(208,81,29)" rx="2" ry="2" />
|
|
<text x="305.35" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__do_page_fault (32 samples, 0.16%)</title><rect x="707.1" y="421" width="1.9" height="15.0" fill="rgb(213,146,32)" rx="2" ry="2" />
|
|
<text x="710.06" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="970.2" y="677" width="0.3" height="15.0" fill="rgb(226,41,29)" rx="2" ry="2" />
|
|
<text x="973.15" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="43.3" y="693" width="0.1" height="15.0" fill="rgb(218,79,17)" rx="2" ry="2" />
|
|
<text x="46.33" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (20 samples, 0.10%)</title><rect x="565.9" y="437" width="1.2" height="15.0" fill="rgb(209,150,16)" rx="2" ry="2" />
|
|
<text x="568.90" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (9 samples, 0.04%)</title><rect x="1028.0" y="613" width="0.5" height="15.0" fill="rgb(218,223,30)" rx="2" ry="2" />
|
|
<text x="1030.96" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (6 samples, 0.03%)</title><rect x="1027.6" y="581" width="0.4" height="15.0" fill="rgb(221,179,13)" rx="2" ry="2" />
|
|
<text x="1030.61" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (5 samples, 0.02%)</title><rect x="975.8" y="373" width="0.3" height="15.0" fill="rgb(223,66,2)" rx="2" ry="2" />
|
|
<text x="978.81" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (2 samples, 0.01%)</title><rect x="970.5" y="549" width="0.1" height="15.0" fill="rgb(225,152,18)" rx="2" ry="2" />
|
|
<text x="973.50" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (4 samples, 0.02%)</title><rect x="792.1" y="373" width="0.2" height="15.0" fill="rgb(223,172,42)" rx="2" ry="2" />
|
|
<text x="795.07" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_readChunkedData (10 samples, 0.05%)</title><rect x="563.2" y="405" width="0.6" height="15.0" fill="rgb(224,62,38)" rx="2" ry="2" />
|
|
<text x="566.19" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_recv_burst (210 samples, 1.05%)</title><rect x="884.1" y="693" width="12.4" height="15.0" fill="rgb(254,160,30)" rx="2" ry="2" />
|
|
<text x="887.15" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[capture_packet_plug.so] (4 samples, 0.02%)</title><rect x="1013.9" y="709" width="0.3" height="15.0" fill="rgb(214,223,50)" rx="2" ry="2" />
|
|
<text x="1016.92" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (16 samples, 0.08%)</title><rect x="298.5" y="277" width="1.0" height="15.0" fill="rgb(246,33,52)" rx="2" ry="2" />
|
|
<text x="301.51" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="983.1" y="533" width="0.1" height="15.0" fill="rgb(231,199,22)" rx="2" ry="2" />
|
|
<text x="986.13" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (11 samples, 0.05%)</title><rect x="48.5" y="677" width="0.7" height="15.0" fill="rgb(215,92,16)" rx="2" ry="2" />
|
|
<text x="51.52" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultRegion (2 samples, 0.01%)</title><rect x="977.5" y="565" width="0.1" height="15.0" fill="rgb(254,175,54)" rx="2" ry="2" />
|
|
<text x="980.52" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_ctrlzone (141 samples, 0.70%)</title><rect x="875.7" y="693" width="8.3" height="15.0" fill="rgb(250,186,3)" rx="2" ry="2" />
|
|
<text x="878.71" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (13 samples, 0.06%)</title><rect x="918.7" y="661" width="0.7" height="15.0" fill="rgb(213,132,5)" rx="2" ry="2" />
|
|
<text x="921.65" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (4 samples, 0.02%)</title><rect x="1028.3" y="453" width="0.2" height="15.0" fill="rgb(232,81,32)" rx="2" ry="2" />
|
|
<text x="1031.25" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_type_new (3 samples, 0.01%)</title><rect x="1020.5" y="213" width="0.1" height="15.0" fill="rgb(247,198,51)" rx="2" ry="2" />
|
|
<text x="1023.47" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (31 samples, 0.15%)</title><rect x="707.1" y="389" width="1.9" height="15.0" fill="rgb(214,98,18)" rx="2" ry="2" />
|
|
<text x="710.12" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (45 samples, 0.22%)</title><rect x="915.6" y="661" width="2.7" height="15.0" fill="rgb(217,194,28)" rx="2" ry="2" />
|
|
<text x="918.65" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="978.9" y="421" width="0.1" height="15.0" fill="rgb(230,209,39)" rx="2" ry="2" />
|
|
<text x="981.88" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (3 samples, 0.01%)</title><rect x="334.1" y="485" width="0.2" height="15.0" fill="rgb(248,75,10)" rx="2" ry="2" />
|
|
<text x="337.14" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (26 samples, 0.13%)</title><rect x="581.0" y="341" width="1.5" height="15.0" fill="rgb(252,81,2)" rx="2" ry="2" />
|
|
<text x="584.01" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (5 samples, 0.02%)</title><rect x="1019.8" y="357" width="0.3" height="15.0" fill="rgb(220,8,37)" rx="2" ry="2" />
|
|
<text x="1022.82" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="983.8" y="581" width="0.2" height="15.0" fill="rgb(240,192,18)" rx="2" ry="2" />
|
|
<text x="986.84" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (5 samples, 0.02%)</title><rect x="557.5" y="437" width="0.3" height="15.0" fill="rgb(214,73,50)" rx="2" ry="2" />
|
|
<text x="560.47" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ddos_sketch_logging_print (11 samples, 0.05%)</title><rect x="638.0" y="453" width="0.6" height="15.0" fill="rgb(239,106,42)" rx="2" ry="2" />
|
|
<text x="640.99" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_idle (2,714 samples, 13.57%)</title><rect x="1029.7" y="709" width="160.1" height="15.0" fill="rgb(252,5,32)" rx="2" ry="2" />
|
|
<text x="1032.73" y="719.5" >do_idle</text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (12 samples, 0.06%)</title><rect x="1019.6" y="469" width="0.7" height="15.0" fill="rgb(245,223,52)" rx="2" ry="2" />
|
|
<text x="1022.58" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_marsio_27 (17,286 samples, 86.41%)</title><rect x="10.0" y="773" width="1019.7" height="15.0" fill="rgb(245,72,53)" rx="2" ry="2" />
|
|
<text x="13.00" y="783.5" >sapp_marsio_27</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="341.2" y="405" width="0.4" height="15.0" fill="rgb(215,2,25)" rx="2" ry="2" />
|
|
<text x="344.16" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="330.5" y="309" width="0.3" height="15.0" fill="rgb(253,57,45)" rx="2" ry="2" />
|
|
<text x="333.54" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (11 samples, 0.05%)</title><rect x="532.6" y="485" width="0.6" height="15.0" fill="rgb(217,83,21)" rx="2" ry="2" />
|
|
<text x="535.58" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="358.7" y="405" width="0.6" height="15.0" fill="rgb(235,226,46)" rx="2" ry="2" />
|
|
<text x="361.74" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (22 samples, 0.11%)</title><rect x="974.2" y="629" width="1.3" height="15.0" fill="rgb(209,17,12)" rx="2" ry="2" />
|
|
<text x="977.22" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (9 samples, 0.04%)</title><rect x="967.3" y="485" width="0.5" height="15.0" fill="rgb(208,75,40)" rx="2" ry="2" />
|
|
<text x="970.26" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="383.9" y="421" width="0.1" height="15.0" fill="rgb(231,213,41)" rx="2" ry="2" />
|
|
<text x="386.93" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_create_per_stream (4 samples, 0.02%)</title><rect x="788.1" y="549" width="0.2" height="15.0" fill="rgb(242,224,15)" rx="2" ry="2" />
|
|
<text x="791.05" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (3 samples, 0.01%)</title><rect x="1028.5" y="501" width="0.2" height="15.0" fill="rgb(221,85,14)" rx="2" ry="2" />
|
|
<text x="1031.49" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="530.0" y="533" width="0.2" height="15.0" fill="rgb(218,220,18)" rx="2" ry="2" />
|
|
<text x="533.04" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_l_avx (2 samples, 0.01%)</title><rect x="566.0" y="373" width="0.1" height="15.0" fill="rgb(251,54,6)" rx="2" ry="2" />
|
|
<text x="569.02" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (205 samples, 1.02%)</title><rect x="652.4" y="517" width="12.1" height="15.0" fill="rgb(236,119,43)" rx="2" ry="2" />
|
|
<text x="655.38" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_q_yield (2 samples, 0.01%)</title><rect x="984.4" y="581" width="0.1" height="15.0" fill="rgb(218,71,50)" rx="2" ry="2" />
|
|
<text x="987.43" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_app_properties_policy (7 samples, 0.03%)</title><rect x="276.2" y="661" width="0.4" height="15.0" fill="rgb(229,225,8)" rx="2" ry="2" />
|
|
<text x="279.21" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_region_compile (132 samples, 0.66%)</title><rect x="157.1" y="725" width="7.8" height="15.0" fill="rgb(225,23,43)" rx="2" ry="2" />
|
|
<text x="160.12" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="368.7" y="437" width="0.1" height="15.0" fill="rgb(226,167,14)" rx="2" ry="2" />
|
|
<text x="371.71" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="1003.6" y="629" width="0.1" height="15.0" fill="rgb(247,30,2)" rx="2" ry="2" />
|
|
<text x="1006.60" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (48 samples, 0.24%)</title><rect x="327.1" y="421" width="2.9" height="15.0" fill="rgb(215,152,10)" rx="2" ry="2" />
|
|
<text x="330.12" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_udpate (40 samples, 0.20%)</title><rect x="47.2" y="725" width="2.3" height="15.0" fill="rgb(253,7,44)" rx="2" ry="2" />
|
|
<text x="50.16" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (77 samples, 0.38%)</title><rect x="379.2" y="597" width="4.5" height="15.0" fill="rgb(253,169,27)" rx="2" ry="2" />
|
|
<text x="382.21" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithServerHello (23 samples, 0.11%)</title><rect x="588.4" y="421" width="1.3" height="15.0" fill="rgb(248,114,8)" rx="2" ry="2" />
|
|
<text x="591.38" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1020.8" y="245" width="0.1" height="15.0" fill="rgb(225,228,43)" rx="2" ry="2" />
|
|
<text x="1023.76" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[http.so] (3 samples, 0.01%)</title><rect x="316.5" y="485" width="0.2" height="15.0" fill="rgb(242,47,12)" rx="2" ry="2" />
|
|
<text x="319.50" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (11 samples, 0.05%)</title><rect x="532.6" y="469" width="0.6" height="15.0" fill="rgb(250,57,35)" rx="2" ry="2" />
|
|
<text x="535.58" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BIO_vsnprintf (2 samples, 0.01%)</title><rect x="583.4" y="357" width="0.1" height="15.0" fill="rgb(233,197,5)" rx="2" ry="2" />
|
|
<text x="586.37" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="1028.0" y="453" width="0.1" height="15.0" fill="rgb(207,64,18)" rx="2" ry="2" />
|
|
<text x="1030.96" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (34 samples, 0.17%)</title><rect x="986.7" y="581" width="2.0" height="15.0" fill="rgb(242,229,9)" rx="2" ry="2" />
|
|
<text x="989.73" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MurmurHash3_x64_128 (12 samples, 0.06%)</title><rect x="691.4" y="485" width="0.7" height="15.0" fill="rgb(211,208,0)" rx="2" ry="2" />
|
|
<text x="694.37" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (627 samples, 3.13%)</title><rect x="115.5" y="661" width="37.0" height="15.0" fill="rgb(239,165,43)" rx="2" ry="2" />
|
|
<text x="118.47" y="671.5" >mso..</text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (10 samples, 0.05%)</title><rect x="334.8" y="469" width="0.6" height="15.0" fill="rgb(242,88,42)" rx="2" ry="2" />
|
|
<text x="337.79" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (27 samples, 0.13%)</title><rect x="536.2" y="533" width="1.6" height="15.0" fill="rgb(214,94,30)" rx="2" ry="2" />
|
|
<text x="539.23" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="300.8" y="501" width="0.3" height="15.0" fill="rgb(231,20,44)" rx="2" ry="2" />
|
|
<text x="303.75" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_scan_proto_addr (2 samples, 0.01%)</title><rect x="749.2" y="469" width="0.1" height="15.0" fill="rgb(221,90,4)" rx="2" ry="2" />
|
|
<text x="752.18" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (48 samples, 0.24%)</title><rect x="320.5" y="309" width="2.8" height="15.0" fill="rgb(222,200,21)" rx="2" ry="2" />
|
|
<text x="323.51" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (12 samples, 0.06%)</title><rect x="394.2" y="661" width="0.7" height="15.0" fill="rgb(232,176,47)" rx="2" ry="2" />
|
|
<text x="397.19" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_full_scan_string_detail (770 samples, 3.85%)</title><rect x="43.4" y="757" width="45.5" height="15.0" fill="rgb(218,226,52)" rx="2" ry="2" />
|
|
<text x="46.45" y="767.5" >Maat..</text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField@plt (2 samples, 0.01%)</title><rect x="565.2" y="373" width="0.1" height="15.0" fill="rgb(209,222,35)" rx="2" ry="2" />
|
|
<text x="568.20" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (10 samples, 0.05%)</title><rect x="1020.3" y="421" width="0.6" height="15.0" fill="rgb(215,70,24)" rx="2" ry="2" />
|
|
<text x="1023.29" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (8 samples, 0.04%)</title><rect x="977.1" y="517" width="0.4" height="15.0" fill="rgb(211,127,1)" rx="2" ry="2" />
|
|
<text x="980.05" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (45 samples, 0.22%)</title><rect x="301.8" y="533" width="2.6" height="15.0" fill="rgb(229,11,45)" rx="2" ry="2" />
|
|
<text x="304.76" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_hit_path_list (22 samples, 0.11%)</title><rect x="384.0" y="517" width="1.3" height="15.0" fill="rgb(233,76,15)" rx="2" ry="2" />
|
|
<text x="387.04" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unmap_region (2 samples, 0.01%)</title><rect x="675.9" y="373" width="0.1" height="15.0" fill="rgb(210,138,4)" rx="2" ry="2" />
|
|
<text x="678.92" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (167 samples, 0.83%)</title><rect x="258.7" y="693" width="9.8" height="15.0" fill="rgb(222,226,9)" rx="2" ry="2" />
|
|
<text x="261.69" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (18 samples, 0.09%)</title><rect x="274.7" y="725" width="1.1" height="15.0" fill="rgb(225,30,31)" rx="2" ry="2" />
|
|
<text x="277.74" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (5 samples, 0.02%)</title><rect x="619.0" y="469" width="0.3" height="15.0" fill="rgb(206,173,17)" rx="2" ry="2" />
|
|
<text x="621.99" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (4 samples, 0.02%)</title><rect x="323.9" y="357" width="0.3" height="15.0" fill="rgb(230,88,4)" rx="2" ry="2" />
|
|
<text x="326.94" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_reset (5 samples, 0.02%)</title><rect x="733.1" y="437" width="0.3" height="15.0" fill="rgb(243,66,25)" rx="2" ry="2" />
|
|
<text x="736.08" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="581.8" y="261" width="0.3" height="15.0" fill="rgb(214,30,18)" rx="2" ry="2" />
|
|
<text x="584.77" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_recv_burst@plt (3 samples, 0.01%)</title><rect x="963.7" y="677" width="0.1" height="15.0" fill="rgb(238,209,24)" rx="2" ry="2" />
|
|
<text x="966.66" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_app_id2name (3 samples, 0.01%)</title><rect x="393.5" y="581" width="0.2" height="15.0" fill="rgb(239,21,35)" rx="2" ry="2" />
|
|
<text x="396.54" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (10 samples, 0.05%)</title><rect x="393.5" y="677" width="0.6" height="15.0" fill="rgb(210,179,40)" rx="2" ry="2" />
|
|
<text x="396.54" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (152 samples, 0.76%)</title><rect x="383.7" y="629" width="9.0" height="15.0" fill="rgb(217,156,10)" rx="2" ry="2" />
|
|
<text x="386.75" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="393.4" y="501" width="0.1" height="15.0" fill="rgb(208,32,1)" rx="2" ry="2" />
|
|
<text x="396.36" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="795.7" y="437" width="0.2" height="15.0" fill="rgb(243,174,25)" rx="2" ry="2" />
|
|
<text x="798.72" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (9 samples, 0.04%)</title><rect x="553.9" y="309" width="0.5" height="15.0" fill="rgb(249,30,50)" rx="2" ry="2" />
|
|
<text x="556.87" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MurmurHash3_x64_128 (3 samples, 0.01%)</title><rect x="805.0" y="501" width="0.2" height="15.0" fill="rgb(221,27,17)" rx="2" ry="2" />
|
|
<text x="807.98" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (3 samples, 0.01%)</title><rect x="1014.6" y="757" width="0.1" height="15.0" fill="rgb(238,42,53)" rx="2" ry="2" />
|
|
<text x="1017.57" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (20 samples, 0.10%)</title><rect x="298.5" y="501" width="1.2" height="15.0" fill="rgb(238,58,53)" rx="2" ry="2" />
|
|
<text x="301.51" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="298.8" y="213" width="0.1" height="15.0" fill="rgb(243,91,6)" rx="2" ry="2" />
|
|
<text x="301.81" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (5 samples, 0.02%)</title><rect x="1004.1" y="597" width="0.3" height="15.0" fill="rgb(235,167,51)" rx="2" ry="2" />
|
|
<text x="1007.13" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (8 samples, 0.04%)</title><rect x="333.4" y="373" width="0.5" height="15.0" fill="rgb(246,182,16)" rx="2" ry="2" />
|
|
<text x="336.43" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="488.6" y="453" width="0.1" height="15.0" fill="rgb(249,78,15)" rx="2" ry="2" />
|
|
<text x="491.57" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (2 samples, 0.01%)</title><rect x="963.8" y="533" width="0.2" height="15.0" fill="rgb(209,115,49)" rx="2" ry="2" />
|
|
<text x="966.84" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (27 samples, 0.13%)</title><rect x="1017.5" y="725" width="1.6" height="15.0" fill="rgb(238,202,38)" rx="2" ry="2" />
|
|
<text x="1020.52" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>save_polling_inject_context (15 samples, 0.07%)</title><rect x="537.8" y="533" width="0.9" height="15.0" fill="rgb(241,125,48)" rx="2" ry="2" />
|
|
<text x="540.83" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_dns_entry (5 samples, 0.02%)</title><rect x="919.1" y="549" width="0.3" height="15.0" fill="rgb(252,169,28)" rx="2" ry="2" />
|
|
<text x="922.07" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_scan_type (18 samples, 0.09%)</title><rect x="198.2" y="709" width="1.0" height="15.0" fill="rgb(210,23,19)" rx="2" ry="2" />
|
|
<text x="201.17" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_hit_path_list (46 samples, 0.23%)</title><rect x="305.1" y="485" width="2.7" height="15.0" fill="rgb(222,182,32)" rx="2" ry="2" />
|
|
<text x="308.06" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="918.9" y="613" width="0.2" height="15.0" fill="rgb(230,1,3)" rx="2" ry="2" />
|
|
<text x="921.89" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="582.2" y="261" width="0.3" height="15.0" fill="rgb(239,4,8)" rx="2" ry="2" />
|
|
<text x="585.19" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (29 samples, 0.14%)</title><rect x="964.7" y="613" width="1.7" height="15.0" fill="rgb(240,123,21)" rx="2" ry="2" />
|
|
<text x="967.72" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (6 samples, 0.03%)</title><rect x="980.6" y="533" width="0.3" height="15.0" fill="rgb(226,41,11)" rx="2" ry="2" />
|
|
<text x="983.59" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (50 samples, 0.25%)</title><rect x="316.7" y="405" width="2.9" height="15.0" fill="rgb(216,69,13)" rx="2" ry="2" />
|
|
<text x="319.68" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (3 samples, 0.01%)</title><rect x="1028.5" y="565" width="0.2" height="15.0" fill="rgb(226,20,52)" rx="2" ry="2" />
|
|
<text x="1031.49" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (14 samples, 0.07%)</title><rect x="545.6" y="421" width="0.8" height="15.0" fill="rgb(253,164,38)" rx="2" ry="2" />
|
|
<text x="548.61" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>region_compile (3 samples, 0.01%)</title><rect x="1014.7" y="757" width="0.2" height="15.0" fill="rgb(252,74,18)" rx="2" ry="2" />
|
|
<text x="1017.75" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_new (2 samples, 0.01%)</title><rect x="328.4" y="261" width="0.1" height="15.0" fill="rgb(233,122,11)" rx="2" ry="2" />
|
|
<text x="331.42" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="325.9" y="325" width="0.1" height="15.0" fill="rgb(241,88,15)" rx="2" ry="2" />
|
|
<text x="328.88" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="334.1" y="405" width="0.2" height="15.0" fill="rgb(230,65,28)" rx="2" ry="2" />
|
|
<text x="337.14" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (35 samples, 0.17%)</title><rect x="978.9" y="645" width="2.0" height="15.0" fill="rgb(250,69,15)" rx="2" ry="2" />
|
|
<text x="981.88" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_STAT_LATEENCY (5 samples, 0.02%)</title><rect x="810.5" y="485" width="0.3" height="15.0" fill="rgb(240,93,47)" rx="2" ry="2" />
|
|
<text x="813.47" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="977.5" y="533" width="0.1" height="15.0" fill="rgb(214,110,5)" rx="2" ry="2" />
|
|
<text x="980.52" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_STAT_LATEENCY (6 samples, 0.03%)</title><rect x="544.0" y="453" width="0.4" height="15.0" fill="rgb(244,121,31)" rx="2" ry="2" />
|
|
<text x="547.02" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_fqdn_plugin_get_EX_data (8 samples, 0.04%)</title><rect x="300.0" y="469" width="0.5" height="15.0" fill="rgb(241,176,8)" rx="2" ry="2" />
|
|
<text x="302.99" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="330.0" y="405" width="0.2" height="15.0" fill="rgb(240,130,12)" rx="2" ry="2" />
|
|
<text x="332.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_dup (4 samples, 0.02%)</title><rect x="328.5" y="261" width="0.3" height="15.0" fill="rgb(214,188,33)" rx="2" ry="2" />
|
|
<text x="331.54" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (3 samples, 0.01%)</title><rect x="973.1" y="485" width="0.2" height="15.0" fill="rgb(232,89,42)" rx="2" ry="2" />
|
|
<text x="976.10" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="1011.0" y="645" width="0.1" height="15.0" fill="rgb(205,187,15)" rx="2" ry="2" />
|
|
<text x="1013.97" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (130 samples, 0.65%)</title><rect x="316.5" y="501" width="7.7" height="15.0" fill="rgb(251,83,34)" rx="2" ry="2" />
|
|
<text x="319.50" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (7 samples, 0.03%)</title><rect x="1006.4" y="613" width="0.4" height="15.0" fill="rgb(247,205,17)" rx="2" ry="2" />
|
|
<text x="1009.37" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (26 samples, 0.13%)</title><rect x="1024.5" y="357" width="1.6" height="15.0" fill="rgb(224,60,49)" rx="2" ry="2" />
|
|
<text x="1027.54" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (56 samples, 0.28%)</title><rect x="852.9" y="501" width="3.3" height="15.0" fill="rgb(246,109,49)" rx="2" ry="2" />
|
|
<text x="855.94" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (104 samples, 0.52%)</title><rect x="827.8" y="517" width="6.1" height="15.0" fill="rgb(244,66,4)" rx="2" ry="2" />
|
|
<text x="830.75" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="368.8" y="421" width="0.1" height="15.0" fill="rgb(252,103,1)" rx="2" ry="2" />
|
|
<text x="371.83" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ftp_data_identify (2 samples, 0.01%)</title><rect x="604.4" y="469" width="0.1" height="15.0" fill="rgb(219,181,3)" rx="2" ry="2" />
|
|
<text x="607.37" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="830.3" y="453" width="0.1" height="15.0" fill="rgb(246,194,36)" rx="2" ry="2" />
|
|
<text x="833.29" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_asn (4 samples, 0.02%)</title><rect x="390.9" y="517" width="0.2" height="15.0" fill="rgb(209,158,25)" rx="2" ry="2" />
|
|
<text x="393.89" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_TCP_PACKET_ENTRY (6 samples, 0.03%)</title><rect x="379.2" y="549" width="0.4" height="15.0" fill="rgb(213,88,39)" rx="2" ry="2" />
|
|
<text x="382.21" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509V3_EXT_d2i (2 samples, 0.01%)</title><rect x="1020.8" y="405" width="0.1" height="15.0" fill="rgb(225,211,54)" rx="2" ry="2" />
|
|
<text x="1023.76" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="393.2" y="469" width="0.1" height="15.0" fill="rgb(216,28,41)" rx="2" ry="2" />
|
|
<text x="396.19" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_new (6 samples, 0.03%)</title><rect x="46.7" y="725" width="0.4" height="15.0" fill="rgb(237,6,18)" rx="2" ry="2" />
|
|
<text x="49.75" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (165 samples, 0.82%)</title><rect x="991.8" y="613" width="9.7" height="15.0" fill="rgb(232,188,50)" rx="2" ry="2" />
|
|
<text x="994.80" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (67 samples, 0.33%)</title><rect x="484.8" y="517" width="3.9" height="15.0" fill="rgb(207,36,47)" rx="2" ry="2" />
|
|
<text x="487.80" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="393.4" y="549" width="0.1" height="15.0" fill="rgb(253,157,0)" rx="2" ry="2" />
|
|
<text x="396.36" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (32 samples, 0.16%)</title><rect x="553.0" y="357" width="1.9" height="15.0" fill="rgb(216,159,4)" rx="2" ry="2" />
|
|
<text x="556.05" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (16 samples, 0.08%)</title><rect x="678.9" y="373" width="0.9" height="15.0" fill="rgb(234,215,28)" rx="2" ry="2" />
|
|
<text x="681.87" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (25 samples, 0.12%)</title><rect x="332.4" y="437" width="1.5" height="15.0" fill="rgb(247,198,51)" rx="2" ry="2" />
|
|
<text x="335.43" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (24 samples, 0.12%)</title><rect x="363.0" y="437" width="1.5" height="15.0" fill="rgb(240,118,7)" rx="2" ry="2" />
|
|
<text x="366.04" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (19 samples, 0.09%)</title><rect x="326.0" y="405" width="1.1" height="15.0" fill="rgb(237,121,15)" rx="2" ry="2" />
|
|
<text x="329.00" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="384.9" y="453" width="0.1" height="15.0" fill="rgb(205,136,19)" rx="2" ry="2" />
|
|
<text x="387.87" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (175 samples, 0.87%)</title><rect x="886.2" y="677" width="10.3" height="15.0" fill="rgb(236,206,46)" rx="2" ry="2" />
|
|
<text x="889.15" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CStringMatch::check_match_mode (11 samples, 0.05%)</title><rect x="20.0" y="741" width="0.6" height="15.0" fill="rgb(228,224,36)" rx="2" ry="2" />
|
|
<text x="22.97" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_udp_entry (4 samples, 0.02%)</title><rect x="383.8" y="517" width="0.2" height="15.0" fill="rgb(226,170,25)" rx="2" ry="2" />
|
|
<text x="386.81" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (22 samples, 0.11%)</title><rect x="1017.8" y="709" width="1.3" height="15.0" fill="rgb(240,26,26)" rx="2" ry="2" />
|
|
<text x="1020.81" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (1,496 samples, 7.48%)</title><rect x="304.5" y="693" width="88.3" height="15.0" fill="rgb(224,86,19)" rx="2" ry="2" />
|
|
<text x="307.53" y="703.5" >dealipv4ud..</text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (13 samples, 0.06%)</title><rect x="630.4" y="453" width="0.8" height="15.0" fill="rgb(252,37,3)" rx="2" ry="2" />
|
|
<text x="633.44" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="395.0" y="629" width="0.1" height="15.0" fill="rgb(252,92,19)" rx="2" ry="2" />
|
|
<text x="397.96" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WANGW_POLLING_ENTRY (55 samples, 0.27%)</title><rect x="934.4" y="693" width="3.2" height="15.0" fill="rgb(210,217,9)" rx="2" ry="2" />
|
|
<text x="937.40" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (3 samples, 0.01%)</title><rect x="974.0" y="629" width="0.2" height="15.0" fill="rgb(253,109,30)" rx="2" ry="2" />
|
|
<text x="977.04" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="584.4" y="245" width="0.1" height="15.0" fill="rgb(211,163,24)" rx="2" ry="2" />
|
|
<text x="587.37" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (4 samples, 0.02%)</title><rect x="1013.9" y="677" width="0.3" height="15.0" fill="rgb(224,145,26)" rx="2" ry="2" />
|
|
<text x="1016.92" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (125 samples, 0.62%)</title><rect x="1019.3" y="693" width="7.4" height="15.0" fill="rgb(228,117,29)" rx="2" ry="2" />
|
|
<text x="1022.35" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="980.5" y="501" width="0.1" height="15.0" fill="rgb(236,48,27)" rx="2" ry="2" />
|
|
<text x="983.47" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (25 samples, 0.12%)</title><rect x="332.4" y="405" width="1.5" height="15.0" fill="rgb(232,213,48)" rx="2" ry="2" />
|
|
<text x="335.43" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="802.0" y="533" width="0.3" height="15.0" fill="rgb(252,148,18)" rx="2" ry="2" />
|
|
<text x="805.03" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (5 samples, 0.02%)</title><rect x="544.0" y="437" width="0.3" height="15.0" fill="rgb(212,172,18)" rx="2" ry="2" />
|
|
<text x="547.02" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (68 samples, 0.34%)</title><rect x="846.5" y="437" width="4.0" height="15.0" fill="rgb(233,133,42)" rx="2" ry="2" />
|
|
<text x="849.51" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (30 samples, 0.15%)</title><rect x="623.5" y="453" width="1.7" height="15.0" fill="rgb(239,10,12)" rx="2" ry="2" />
|
|
<text x="626.48" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (11 samples, 0.05%)</title><rect x="855.6" y="485" width="0.6" height="15.0" fill="rgb(231,135,9)" rx="2" ry="2" />
|
|
<text x="858.60" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="1028.1" y="485" width="0.2" height="15.0" fill="rgb(233,173,36)" rx="2" ry="2" />
|
|
<text x="1031.14" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (3 samples, 0.01%)</title><rect x="393.1" y="549" width="0.2" height="15.0" fill="rgb(209,15,10)" rx="2" ry="2" />
|
|
<text x="396.13" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___clock_gettime (3 samples, 0.01%)</title><rect x="675.7" y="501" width="0.2" height="15.0" fill="rgb(253,212,37)" rx="2" ry="2" />
|
|
<text x="678.74" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (14 samples, 0.07%)</title><rect x="779.7" y="517" width="0.9" height="15.0" fill="rgb(212,189,32)" rx="2" ry="2" />
|
|
<text x="782.74" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (3 samples, 0.01%)</title><rect x="330.2" y="405" width="0.2" height="15.0" fill="rgb(219,194,6)" rx="2" ry="2" />
|
|
<text x="333.19" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (7 samples, 0.03%)</title><rect x="393.1" y="677" width="0.4" height="15.0" fill="rgb(218,54,5)" rx="2" ry="2" />
|
|
<text x="396.13" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (20 samples, 0.10%)</title><rect x="547.2" y="389" width="1.2" height="15.0" fill="rgb(244,79,1)" rx="2" ry="2" />
|
|
<text x="550.21" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clone (9,286 samples, 46.42%)</title><rect x="416.1" y="757" width="547.7" height="15.0" fill="rgb(244,173,54)" rx="2" ry="2" />
|
|
<text x="419.07" y="767.5" >__clone</text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (4 samples, 0.02%)</title><rect x="366.3" y="469" width="0.2" height="15.0" fill="rgb(210,90,47)" rx="2" ry="2" />
|
|
<text x="369.29" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (10 samples, 0.05%)</title><rect x="1020.3" y="485" width="0.6" height="15.0" fill="rgb(250,0,50)" rx="2" ry="2" />
|
|
<text x="1023.29" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (13 samples, 0.06%)</title><rect x="973.3" y="533" width="0.7" height="15.0" fill="rgb(239,6,28)" rx="2" ry="2" />
|
|
<text x="976.28" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_ipv4 (48 samples, 0.24%)</title><rect x="859.0" y="565" width="2.8" height="15.0" fill="rgb(210,98,20)" rx="2" ry="2" />
|
|
<text x="861.96" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (27 samples, 0.13%)</title><rect x="1008.9" y="597" width="1.6" height="15.0" fill="rgb(245,37,54)" rx="2" ry="2" />
|
|
<text x="1011.91" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="99.6" y="709" width="0.1" height="15.0" fill="rgb(251,99,22)" rx="2" ry="2" />
|
|
<text x="102.60" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (6 samples, 0.03%)</title><rect x="985.3" y="645" width="0.3" height="15.0" fill="rgb(249,50,41)" rx="2" ry="2" />
|
|
<text x="988.25" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (98 samples, 0.49%)</title><rect x="580.9" y="421" width="5.8" height="15.0" fill="rgb(209,58,14)" rx="2" ry="2" />
|
|
<text x="583.89" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_secondary (2,718 samples, 13.59%)</title><rect x="1029.7" y="741" width="160.3" height="15.0" fill="rgb(218,180,7)" rx="2" ry="2" />
|
|
<text x="1032.67" y="751.5" >start_secondary</text>
|
|
</g>
|
|
<g >
|
|
<title>set_nat_linkinfo (6 samples, 0.03%)</title><rect x="488.2" y="469" width="0.3" height="15.0" fill="rgb(233,212,36)" rx="2" ry="2" />
|
|
<text x="491.16" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>native_send_call_func_ipi (4 samples, 0.02%)</title><rect x="679.6" y="229" width="0.2" height="15.0" fill="rgb(234,211,54)" rx="2" ry="2" />
|
|
<text x="682.58" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="818.4" y="373" width="0.3" height="15.0" fill="rgb(225,7,29)" rx="2" ry="2" />
|
|
<text x="821.43" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (2 samples, 0.01%)</title><rect x="980.5" y="405" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="983.47" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smtp_entry_fun (5 samples, 0.02%)</title><rect x="568.3" y="469" width="0.3" height="15.0" fill="rgb(234,44,40)" rx="2" ry="2" />
|
|
<text x="571.32" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_ncopy (6 samples, 0.03%)</title><rect x="328.1" y="229" width="0.3" height="15.0" fill="rgb(231,8,29)" rx="2" ry="2" />
|
|
<text x="331.06" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (35 samples, 0.17%)</title><rect x="296.4" y="517" width="2.1" height="15.0" fill="rgb(245,112,0)" rx="2" ry="2" />
|
|
<text x="299.45" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="413.1" y="501" width="0.1" height="15.0" fill="rgb(210,134,16)" rx="2" ry="2" />
|
|
<text x="416.07" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (2 samples, 0.01%)</title><rect x="566.4" y="357" width="0.1" height="15.0" fill="rgb(206,218,0)" rx="2" ry="2" />
|
|
<text x="569.38" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (2 samples, 0.01%)</title><rect x="978.9" y="549" width="0.1" height="15.0" fill="rgb(211,21,9)" rx="2" ry="2" />
|
|
<text x="981.88" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>memset@plt (2 samples, 0.01%)</title><rect x="819.6" y="405" width="0.1" height="15.0" fill="rgb(228,166,45)" rx="2" ry="2" />
|
|
<text x="822.55" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (121 samples, 0.60%)</title><rect x="307.8" y="373" width="7.2" height="15.0" fill="rgb(227,45,41)" rx="2" ry="2" />
|
|
<text x="310.83" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (49 samples, 0.24%)</title><rect x="385.3" y="501" width="2.9" height="15.0" fill="rgb(240,6,11)" rx="2" ry="2" />
|
|
<text x="388.34" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="966.8" y="565" width="0.2" height="15.0" fill="rgb(252,41,1)" rx="2" ry="2" />
|
|
<text x="969.85" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (9 samples, 0.04%)</title><rect x="977.0" y="613" width="0.5" height="15.0" fill="rgb(234,138,24)" rx="2" ry="2" />
|
|
<text x="979.99" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (9 samples, 0.04%)</title><rect x="534.8" y="517" width="0.5" height="15.0" fill="rgb(231,41,49)" rx="2" ry="2" />
|
|
<text x="537.76" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (9 samples, 0.04%)</title><rect x="103.3" y="677" width="0.5" height="15.0" fill="rgb(206,82,16)" rx="2" ry="2" />
|
|
<text x="106.26" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (26 samples, 0.13%)</title><rect x="597.9" y="453" width="1.6" height="15.0" fill="rgb(252,47,53)" rx="2" ry="2" />
|
|
<text x="600.94" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RSA_new_method (5 samples, 0.02%)</title><rect x="584.2" y="277" width="0.3" height="15.0" fill="rgb(236,169,2)" rx="2" ry="2" />
|
|
<text x="587.19" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_realloc (8 samples, 0.04%)</title><rect x="331.5" y="357" width="0.5" height="15.0" fill="rgb(206,26,45)" rx="2" ry="2" />
|
|
<text x="334.54" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="914.9" y="645" width="0.1" height="15.0" fill="rgb(223,198,11)" rx="2" ry="2" />
|
|
<text x="917.88" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libkni.so] (8 samples, 0.04%)</title><rect x="753.8" y="485" width="0.5" height="15.0" fill="rgb(223,121,52)" rx="2" ry="2" />
|
|
<text x="756.78" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="988.7" y="629" width="0.2" height="15.0" fill="rgb(208,211,43)" rx="2" ry="2" />
|
|
<text x="991.73" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (16 samples, 0.08%)</title><rect x="678.9" y="389" width="0.9" height="15.0" fill="rgb(221,185,3)" rx="2" ry="2" />
|
|
<text x="681.87" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="301.5" y="581" width="0.1" height="15.0" fill="rgb(206,32,22)" rx="2" ry="2" />
|
|
<text x="304.46" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (2 samples, 0.01%)</title><rect x="43.3" y="725" width="0.1" height="15.0" fill="rgb(252,40,19)" rx="2" ry="2" />
|
|
<text x="46.33" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (27 samples, 0.13%)</title><rect x="670.8" y="485" width="1.6" height="15.0" fill="rgb(245,56,47)" rx="2" ry="2" />
|
|
<text x="673.84" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_malloc (2 samples, 0.01%)</title><rect x="376.2" y="389" width="0.1" height="15.0" fill="rgb(242,60,13)" rx="2" ry="2" />
|
|
<text x="379.20" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="304.3" y="437" width="0.1" height="15.0" fill="rgb(238,41,16)" rx="2" ry="2" />
|
|
<text x="307.29" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="338.4" y="453" width="0.4" height="15.0" fill="rgb(221,203,40)" rx="2" ry="2" />
|
|
<text x="341.45" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (5 samples, 0.02%)</title><rect x="810.5" y="469" width="0.3" height="15.0" fill="rgb(220,136,12)" rx="2" ry="2" />
|
|
<text x="813.47" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (4 samples, 0.02%)</title><rect x="630.1" y="437" width="0.3" height="15.0" fill="rgb(231,176,37)" rx="2" ry="2" />
|
|
<text x="633.14" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (11 samples, 0.05%)</title><rect x="384.0" y="485" width="0.7" height="15.0" fill="rgb(238,165,46)" rx="2" ry="2" />
|
|
<text x="387.04" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_tcpall_entry (2 samples, 0.01%)</title><rect x="301.1" y="533" width="0.1" height="15.0" fill="rgb(253,186,10)" rx="2" ry="2" />
|
|
<text x="304.11" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (9 samples, 0.04%)</title><rect x="967.3" y="533" width="0.5" height="15.0" fill="rgb(241,196,36)" rx="2" ry="2" />
|
|
<text x="970.26" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (6 samples, 0.03%)</title><rect x="554.4" y="325" width="0.4" height="15.0" fill="rgb(215,214,46)" rx="2" ry="2" />
|
|
<text x="557.40" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (7,058 samples, 35.28%)</title><rect x="447.0" y="645" width="416.4" height="15.0" fill="rgb(246,221,54)" rx="2" ry="2" />
|
|
<text x="450.04" y="655.5" >dealipv4udppkt</text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (3 samples, 0.01%)</title><rect x="275.6" y="709" width="0.2" height="15.0" fill="rgb(227,144,38)" rx="2" ry="2" />
|
|
<text x="278.62" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (9 samples, 0.04%)</title><rect x="1006.9" y="645" width="0.5" height="15.0" fill="rgb(205,179,31)" rx="2" ry="2" />
|
|
<text x="1009.90" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (111 samples, 0.55%)</title><rect x="361.3" y="565" width="6.5" height="15.0" fill="rgb(242,129,54)" rx="2" ry="2" />
|
|
<text x="364.27" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_cancel (2 samples, 0.01%)</title><rect x="917.9" y="565" width="0.1" height="15.0" fill="rgb(250,117,41)" rx="2" ry="2" />
|
|
<text x="920.89" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__tls_get_addr (6 samples, 0.03%)</title><rect x="898.2" y="677" width="0.3" height="15.0" fill="rgb(215,39,51)" rx="2" ry="2" />
|
|
<text x="901.19" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="791.1" y="469" width="0.1" height="15.0" fill="rgb(218,133,33)" rx="2" ry="2" />
|
|
<text x="794.06" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (7 samples, 0.03%)</title><rect x="842.1" y="501" width="0.4" height="15.0" fill="rgb(231,7,4)" rx="2" ry="2" />
|
|
<text x="845.09" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___isoc99_vsscanf (2 samples, 0.01%)</title><rect x="566.4" y="373" width="0.1" height="15.0" fill="rgb(213,87,4)" rx="2" ry="2" />
|
|
<text x="569.38" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (7 samples, 0.03%)</title><rect x="826.8" y="453" width="0.4" height="15.0" fill="rgb(209,145,5)" rx="2" ry="2" />
|
|
<text x="829.75" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="1023.0" y="437" width="0.1" height="15.0" fill="rgb(232,34,54)" rx="2" ry="2" />
|
|
<text x="1026.00" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.01%)</title><rect x="558.6" y="437" width="0.2" height="15.0" fill="rgb(248,55,11)" rx="2" ry="2" />
|
|
<text x="561.65" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_searchstream (297 samples, 1.48%)</title><rect x="165.3" y="725" width="17.5" height="15.0" fill="rgb(241,45,17)" rx="2" ry="2" />
|
|
<text x="168.32" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (10 samples, 0.05%)</title><rect x="966.4" y="597" width="0.6" height="15.0" fill="rgb(206,157,13)" rx="2" ry="2" />
|
|
<text x="969.43" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_session_attributes (10 samples, 0.05%)</title><rect x="414.4" y="709" width="0.6" height="15.0" fill="rgb(227,204,17)" rx="2" ry="2" />
|
|
<text x="417.36" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (35 samples, 0.17%)</title><rect x="1024.5" y="469" width="2.0" height="15.0" fill="rgb(214,96,49)" rx="2" ry="2" />
|
|
<text x="1027.48" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="298.5" y="389" width="1.0" height="15.0" fill="rgb(229,159,34)" rx="2" ry="2" />
|
|
<text x="301.51" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="316.5" y="325" width="0.2" height="15.0" fill="rgb(207,110,54)" rx="2" ry="2" />
|
|
<text x="319.50" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_session_attributes (4 samples, 0.02%)</title><rect x="968.0" y="549" width="0.3" height="15.0" fill="rgb(224,5,9)" rx="2" ry="2" />
|
|
<text x="971.03" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (4 samples, 0.02%)</title><rect x="89.7" y="741" width="0.2" height="15.0" fill="rgb(252,175,30)" rx="2" ry="2" />
|
|
<text x="92.69" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (7 samples, 0.03%)</title><rect x="976.6" y="565" width="0.4" height="15.0" fill="rgb(253,60,4)" rx="2" ry="2" />
|
|
<text x="979.58" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_type_new (3 samples, 0.01%)</title><rect x="330.0" y="245" width="0.2" height="15.0" fill="rgb(225,228,35)" rx="2" ry="2" />
|
|
<text x="333.01" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (8 samples, 0.04%)</title><rect x="465.2" y="613" width="0.5" height="15.0" fill="rgb(244,178,34)" rx="2" ry="2" />
|
|
<text x="468.21" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__st_pkt_proc_context_check_timeout (58 samples, 0.29%)</title><rect x="937.6" y="693" width="3.5" height="15.0" fill="rgb(232,54,46)" rx="2" ry="2" />
|
|
<text x="940.65" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="323.9" y="373" width="0.3" height="15.0" fill="rgb(222,195,38)" rx="2" ry="2" />
|
|
<text x="326.94" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="1001.7" y="565" width="0.1" height="15.0" fill="rgb(216,26,24)" rx="2" ry="2" />
|
|
<text x="1004.65" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (94 samples, 0.47%)</title><rect x="243.8" y="709" width="5.5" height="15.0" fill="rgb(229,224,43)" rx="2" ry="2" />
|
|
<text x="246.77" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (2 samples, 0.01%)</title><rect x="582.5" y="373" width="0.2" height="15.0" fill="rgb(214,107,13)" rx="2" ry="2" />
|
|
<text x="585.54" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="383.8" y="421" width="0.1" height="15.0" fill="rgb(234,84,12)" rx="2" ry="2" />
|
|
<text x="386.81" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>raw_ip_frag_list_stream_attach (4 samples, 0.02%)</title><rect x="712.8" y="533" width="0.2" height="15.0" fill="rgb(241,136,54)" rx="2" ry="2" />
|
|
<text x="715.79" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="814.4" y="437" width="0.3" height="15.0" fill="rgb(252,197,36)" rx="2" ry="2" />
|
|
<text x="817.42" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (8 samples, 0.04%)</title><rect x="973.4" y="453" width="0.5" height="15.0" fill="rgb(238,5,16)" rx="2" ry="2" />
|
|
<text x="976.40" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_polling_inject_context (91 samples, 0.45%)</title><rect x="491.3" y="629" width="5.4" height="15.0" fill="rgb(212,120,18)" rx="2" ry="2" />
|
|
<text x="494.28" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::find_matched_result (59 samples, 0.29%)</title><rect x="221.1" y="661" width="3.5" height="15.0" fill="rgb(235,144,39)" rx="2" ry="2" />
|
|
<text x="224.12" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="974.0" y="597" width="0.2" height="15.0" fill="rgb(233,85,3)" rx="2" ry="2" />
|
|
<text x="977.04" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="566.8" y="357" width="0.1" height="15.0" fill="rgb(205,50,25)" rx="2" ry="2" />
|
|
<text x="569.79" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="640.3" y="469" width="0.2" height="15.0" fill="rgb(228,121,11)" rx="2" ry="2" />
|
|
<text x="643.29" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (12 samples, 0.06%)</title><rect x="545.7" y="405" width="0.7" height="15.0" fill="rgb(233,200,25)" rx="2" ry="2" />
|
|
<text x="548.67" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="319.1" y="309" width="0.5" height="15.0" fill="rgb(249,13,45)" rx="2" ry="2" />
|
|
<text x="322.10" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (4 samples, 0.02%)</title><rect x="1019.3" y="645" width="0.3" height="15.0" fill="rgb(226,143,20)" rx="2" ry="2" />
|
|
<text x="1022.35" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hack_digit.13666 (5 samples, 0.02%)</title><rect x="988.3" y="501" width="0.3" height="15.0" fill="rgb(222,5,18)" rx="2" ry="2" />
|
|
<text x="991.26" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (31 samples, 0.15%)</title><rect x="672.5" y="485" width="1.8" height="15.0" fill="rgb(246,75,21)" rx="2" ry="2" />
|
|
<text x="675.50" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="672.2" y="437" width="0.2" height="15.0" fill="rgb(228,29,48)" rx="2" ry="2" />
|
|
<text x="675.20" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="301.6" y="501" width="0.1" height="15.0" fill="rgb(244,10,54)" rx="2" ry="2" />
|
|
<text x="304.58" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (8 samples, 0.04%)</title><rect x="315.1" y="389" width="0.5" height="15.0" fill="rgb(245,132,19)" rx="2" ry="2" />
|
|
<text x="318.15" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (3 samples, 0.01%)</title><rect x="974.0" y="533" width="0.2" height="15.0" fill="rgb(241,145,39)" rx="2" ry="2" />
|
|
<text x="977.04" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (305 samples, 1.52%)</title><rect x="339.0" y="469" width="18.0" height="15.0" fill="rgb(206,128,41)" rx="2" ry="2" />
|
|
<text x="342.04" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (88 samples, 0.44%)</title><rect x="550.9" y="437" width="5.2" height="15.0" fill="rgb(250,137,3)" rx="2" ry="2" />
|
|
<text x="553.92" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (4,643 samples, 23.21%)</title><rect x="509.0" y="581" width="273.9" height="15.0" fill="rgb(219,90,37)" rx="2" ry="2" />
|
|
<text x="512.04" y="591.5" >dealipv4tcppkt</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="914.6" y="629" width="0.2" height="15.0" fill="rgb(254,65,18)" rx="2" ry="2" />
|
|
<text x="917.58" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (22 samples, 0.11%)</title><rect x="990.5" y="613" width="1.3" height="15.0" fill="rgb(205,186,31)" rx="2" ry="2" />
|
|
<text x="993.50" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (4 samples, 0.02%)</title><rect x="968.0" y="629" width="0.3" height="15.0" fill="rgb(242,116,38)" rx="2" ry="2" />
|
|
<text x="971.03" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_create (10 samples, 0.05%)</title><rect x="544.6" y="437" width="0.6" height="15.0" fill="rgb(240,157,7)" rx="2" ry="2" />
|
|
<text x="547.61" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_check (41 samples, 0.20%)</title><rect x="802.7" y="533" width="2.5" height="15.0" fill="rgb(230,17,29)" rx="2" ry="2" />
|
|
<text x="805.74" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="301.5" y="501" width="0.1" height="15.0" fill="rgb(225,145,44)" rx="2" ry="2" />
|
|
<text x="304.46" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (27 samples, 0.13%)</title><rect x="1024.5" y="373" width="1.6" height="15.0" fill="rgb(233,226,5)" rx="2" ry="2" />
|
|
<text x="1027.54" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (50 samples, 0.25%)</title><rect x="316.7" y="373" width="2.9" height="15.0" fill="rgb(207,116,22)" rx="2" ry="2" />
|
|
<text x="319.68" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_make_hash (11 samples, 0.05%)</title><rect x="482.3" y="613" width="0.7" height="15.0" fill="rgb(221,94,9)" rx="2" ry="2" />
|
|
<text x="485.32" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="967.9" y="533" width="0.1" height="15.0" fill="rgb(206,26,54)" rx="2" ry="2" />
|
|
<text x="970.91" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>native_flush_tlb_others (13 samples, 0.06%)</title><rect x="679.0" y="293" width="0.8" height="15.0" fill="rgb(228,40,11)" rx="2" ry="2" />
|
|
<text x="682.04" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (5 samples, 0.02%)</title><rect x="1014.2" y="725" width="0.3" height="15.0" fill="rgb(225,191,38)" rx="2" ry="2" />
|
|
<text x="1017.16" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pbe_uevent_parent_create (2 samples, 0.01%)</title><rect x="314.1" y="325" width="0.2" height="15.0" fill="rgb(224,72,26)" rx="2" ry="2" />
|
|
<text x="317.14" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="981.1" y="501" width="0.1" height="15.0" fill="rgb(254,30,45)" rx="2" ry="2" />
|
|
<text x="984.06" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (370 samples, 1.85%)</title><rect x="130.6" y="629" width="21.9" height="15.0" fill="rgb(208,0,38)" rx="2" ry="2" />
|
|
<text x="133.63" y="639.5" >m..</text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (155 samples, 0.77%)</title><rect x="811.4" y="485" width="9.2" height="15.0" fill="rgb(219,101,1)" rx="2" ry="2" />
|
|
<text x="814.41" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (27 samples, 0.13%)</title><rect x="820.8" y="501" width="1.6" height="15.0" fill="rgb(208,141,48)" rx="2" ry="2" />
|
|
<text x="823.79" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (2 samples, 0.01%)</title><rect x="1003.5" y="645" width="0.1" height="15.0" fill="rgb(235,202,39)" rx="2" ry="2" />
|
|
<text x="1006.48" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libwangw.so] (4 samples, 0.02%)</title><rect x="937.4" y="677" width="0.2" height="15.0" fill="rgb(219,229,5)" rx="2" ry="2" />
|
|
<text x="940.41" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (9 samples, 0.04%)</title><rect x="983.1" y="613" width="0.5" height="15.0" fill="rgb(244,4,21)" rx="2" ry="2" />
|
|
<text x="986.07" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify_v4 (2 samples, 0.01%)</title><rect x="802.3" y="549" width="0.1" height="15.0" fill="rgb(236,149,27)" rx="2" ry="2" />
|
|
<text x="805.27" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CNaiveIntervalIndex::Find (56 samples, 0.28%)</title><rect x="289.3" y="725" width="3.3" height="15.0" fill="rgb(220,132,24)" rx="2" ry="2" />
|
|
<text x="292.25" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (47 samples, 0.23%)</title><rect x="301.8" y="581" width="2.7" height="15.0" fill="rgb(251,56,4)" rx="2" ry="2" />
|
|
<text x="304.76" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="336.3" y="453" width="0.2" height="15.0" fill="rgb(229,153,23)" rx="2" ry="2" />
|
|
<text x="339.26" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (10 samples, 0.05%)</title><rect x="785.4" y="517" width="0.6" height="15.0" fill="rgb(231,200,12)" rx="2" ry="2" />
|
|
<text x="788.40" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (15 samples, 0.07%)</title><rect x="366.9" y="501" width="0.9" height="15.0" fill="rgb(243,180,29)" rx="2" ry="2" />
|
|
<text x="369.88" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (6 samples, 0.03%)</title><rect x="330.4" y="357" width="0.4" height="15.0" fill="rgb(246,83,2)" rx="2" ry="2" />
|
|
<text x="333.42" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (8 samples, 0.04%)</title><rect x="1020.3" y="405" width="0.5" height="15.0" fill="rgb(211,229,18)" rx="2" ry="2" />
|
|
<text x="1023.29" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (7 samples, 0.03%)</title><rect x="393.1" y="661" width="0.4" height="15.0" fill="rgb(250,99,14)" rx="2" ry="2" />
|
|
<text x="396.13" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (71 samples, 0.35%)</title><rect x="384.0" y="533" width="4.2" height="15.0" fill="rgb(208,34,24)" rx="2" ry="2" />
|
|
<text x="387.04" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_old_init (3 samples, 0.01%)</title><rect x="1017.5" y="693" width="0.2" height="15.0" fill="rgb(246,132,54)" rx="2" ry="2" />
|
|
<text x="1020.52" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_nohz_idle_enter (2 samples, 0.01%)</title><rect x="1189.7" y="693" width="0.1" height="15.0" fill="rgb(217,148,15)" rx="2" ry="2" />
|
|
<text x="1192.71" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="1019.6" y="421" width="0.2" height="15.0" fill="rgb(237,4,36)" rx="2" ry="2" />
|
|
<text x="1022.58" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="325.8" y="341" width="0.2" height="15.0" fill="rgb(218,59,44)" rx="2" ry="2" />
|
|
<text x="328.82" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (8 samples, 0.04%)</title><rect x="977.1" y="501" width="0.4" height="15.0" fill="rgb(216,21,25)" rx="2" ry="2" />
|
|
<text x="980.05" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (10 samples, 0.05%)</title><rect x="414.4" y="677" width="0.6" height="15.0" fill="rgb(248,160,11)" rx="2" ry="2" />
|
|
<text x="417.36" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (4 samples, 0.02%)</title><rect x="276.4" y="645" width="0.2" height="15.0" fill="rgb(228,227,18)" rx="2" ry="2" />
|
|
<text x="279.39" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[wire_graft_plug.so] (43 samples, 0.21%)</title><rect x="605.9" y="485" width="2.5" height="15.0" fill="rgb(205,55,6)" rx="2" ry="2" />
|
|
<text x="608.90" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__do_munmap (2 samples, 0.01%)</title><rect x="675.9" y="389" width="0.1" height="15.0" fill="rgb(240,9,43)" rx="2" ry="2" />
|
|
<text x="678.92" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_polling (629 samples, 3.14%)</title><rect x="926.7" y="709" width="37.1" height="15.0" fill="rgb(207,110,17)" rx="2" ry="2" />
|
|
<text x="929.74" y="719.5" >str..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="975.8" y="453" width="0.3" height="15.0" fill="rgb(253,168,0)" rx="2" ry="2" />
|
|
<text x="978.75" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (18 samples, 0.09%)</title><rect x="628.0" y="437" width="1.0" height="15.0" fill="rgb(225,89,26)" rx="2" ry="2" />
|
|
<text x="630.96" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (4 samples, 0.02%)</title><rect x="383.8" y="597" width="0.2" height="15.0" fill="rgb(222,111,29)" rx="2" ry="2" />
|
|
<text x="386.81" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (4 samples, 0.02%)</title><rect x="460.5" y="613" width="0.2" height="15.0" fill="rgb(216,79,21)" rx="2" ry="2" />
|
|
<text x="463.49" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (6 samples, 0.03%)</title><rect x="271.5" y="677" width="0.3" height="15.0" fill="rgb(207,13,19)" rx="2" ry="2" />
|
|
<text x="274.49" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (89 samples, 0.44%)</title><rect x="370.5" y="421" width="5.3" height="15.0" fill="rgb(214,166,14)" rx="2" ry="2" />
|
|
<text x="373.54" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (6 samples, 0.03%)</title><rect x="300.8" y="581" width="0.3" height="15.0" fill="rgb(235,99,51)" rx="2" ry="2" />
|
|
<text x="303.75" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_add_struct (2 samples, 0.01%)</title><rect x="1019.1" y="741" width="0.1" height="15.0" fill="rgb(250,2,52)" rx="2" ry="2" />
|
|
<text x="1022.11" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_dump_sig (14 samples, 0.07%)</title><rect x="315.7" y="501" width="0.8" height="15.0" fill="rgb(209,144,37)" rx="2" ry="2" />
|
|
<text x="318.68" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (810 samples, 4.05%)</title><rect x="104.7" y="693" width="47.8" height="15.0" fill="rgb(208,225,38)" rx="2" ry="2" />
|
|
<text x="107.68" y="703.5" >msor..</text>
|
|
</g>
|
|
<g >
|
|
<title>schedule_idle (95 samples, 0.47%)</title><rect x="1184.1" y="693" width="5.6" height="15.0" fill="rgb(234,204,12)" rx="2" ry="2" />
|
|
<text x="1187.10" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_entry (3 samples, 0.01%)</title><rect x="334.1" y="453" width="0.2" height="15.0" fill="rgb(248,56,49)" rx="2" ry="2" />
|
|
<text x="337.14" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (90 samples, 0.45%)</title><rect x="790.6" y="485" width="5.3" height="15.0" fill="rgb(205,54,9)" rx="2" ry="2" />
|
|
<text x="793.59" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (10 samples, 0.05%)</title><rect x="414.4" y="661" width="0.6" height="15.0" fill="rgb(237,166,50)" rx="2" ry="2" />
|
|
<text x="417.36" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (93 samples, 0.46%)</title><rect x="632.4" y="453" width="5.5" height="15.0" fill="rgb(242,77,6)" rx="2" ry="2" />
|
|
<text x="635.38" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="812.0" y="453" width="0.1" height="15.0" fill="rgb(215,73,53)" rx="2" ry="2" />
|
|
<text x="815.00" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_stream_create_ctx (10 samples, 0.05%)</title><rect x="810.8" y="485" width="0.6" height="15.0" fill="rgb(227,116,49)" rx="2" ry="2" />
|
|
<text x="813.82" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>swapper (2,718 samples, 13.59%)</title><rect x="1029.7" y="773" width="160.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
|
|
<text x="1032.67" y="783.5" >swapper</text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_initSslStream (5 samples, 0.02%)</title><rect x="590.3" y="469" width="0.3" height="15.0" fill="rgb(216,46,24)" rx="2" ry="2" />
|
|
<text x="593.27" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (11 samples, 0.05%)</title><rect x="315.0" y="453" width="0.7" height="15.0" fill="rgb(252,186,21)" rx="2" ry="2" />
|
|
<text x="318.03" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (1,496 samples, 7.48%)</title><rect x="304.5" y="725" width="88.3" height="15.0" fill="rgb(230,102,27)" rx="2" ry="2" />
|
|
<text x="307.53" y="735.5" >eth_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (9 samples, 0.04%)</title><rect x="413.2" y="661" width="0.6" height="15.0" fill="rgb(229,75,7)" rx="2" ry="2" />
|
|
<text x="416.24" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="562.3" y="245" width="0.2" height="15.0" fill="rgb(248,189,15)" rx="2" ry="2" />
|
|
<text x="565.31" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_vMemCpy (5 samples, 0.02%)</title><rect x="572.4" y="453" width="0.3" height="15.0" fill="rgb(212,56,18)" rx="2" ry="2" />
|
|
<text x="575.39" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_identify_broad_multicast_pkt (7 samples, 0.03%)</title><rect x="865.3" y="661" width="0.4" height="15.0" fill="rgb(212,130,22)" rx="2" ry="2" />
|
|
<text x="868.33" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="555.6" y="389" width="0.2" height="15.0" fill="rgb(211,54,26)" rx="2" ry="2" />
|
|
<text x="558.58" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (1,269 samples, 6.34%)</title><rect x="782.9" y="581" width="74.9" height="15.0" fill="rgb(226,198,18)" rx="2" ry="2" />
|
|
<text x="785.92" y="591.5" >dealipv4..</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (10 samples, 0.05%)</title><rect x="1013.9" y="757" width="0.6" height="15.0" fill="rgb(230,224,32)" rx="2" ry="2" />
|
|
<text x="1016.92" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="412.4" y="581" width="0.1" height="15.0" fill="rgb(213,200,37)" rx="2" ry="2" />
|
|
<text x="415.36" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (29 samples, 0.14%)</title><rect x="305.1" y="453" width="1.7" height="15.0" fill="rgb(216,78,47)" rx="2" ry="2" />
|
|
<text x="308.06" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="328.5" y="213" width="0.2" height="15.0" fill="rgb(247,202,41)" rx="2" ry="2" />
|
|
<text x="331.54" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (48 samples, 0.24%)</title><rect x="327.1" y="437" width="2.9" height="15.0" fill="rgb(252,166,31)" rx="2" ry="2" />
|
|
<text x="330.12" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (7 samples, 0.03%)</title><rect x="840.4" y="437" width="0.4" height="15.0" fill="rgb(223,35,11)" rx="2" ry="2" />
|
|
<text x="843.44" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (12 samples, 0.06%)</title><rect x="964.0" y="613" width="0.7" height="15.0" fill="rgb(210,152,40)" rx="2" ry="2" />
|
|
<text x="967.02" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (10 samples, 0.05%)</title><rect x="412.5" y="565" width="0.6" height="15.0" fill="rgb(249,197,30)" rx="2" ry="2" />
|
|
<text x="415.48" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (8 samples, 0.04%)</title><rect x="977.1" y="581" width="0.4" height="15.0" fill="rgb(205,121,35)" rx="2" ry="2" />
|
|
<text x="980.05" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_add (71 samples, 0.35%)</title><rect x="676.1" y="517" width="4.2" height="15.0" fill="rgb(252,164,28)" rx="2" ry="2" />
|
|
<text x="679.09" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>layer_addr_ntop_r (19 samples, 0.09%)</title><rect x="413.2" y="709" width="1.2" height="15.0" fill="rgb(248,86,14)" rx="2" ry="2" />
|
|
<text x="416.24" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (6 samples, 0.03%)</title><rect x="970.2" y="565" width="0.3" height="15.0" fill="rgb(229,11,10)" rx="2" ry="2" />
|
|
<text x="973.15" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="1019.6" y="405" width="0.2" height="15.0" fill="rgb(216,219,42)" rx="2" ry="2" />
|
|
<text x="1022.64" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_sse42 (13 samples, 0.06%)</title><rect x="548.4" y="389" width="0.8" height="15.0" fill="rgb(252,150,48)" rx="2" ry="2" />
|
|
<text x="551.39" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="630.2" y="405" width="0.1" height="15.0" fill="rgb(244,172,52)" rx="2" ry="2" />
|
|
<text x="633.20" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (185 samples, 0.92%)</title><rect x="545.2" y="453" width="10.9" height="15.0" fill="rgb(226,74,53)" rx="2" ry="2" />
|
|
<text x="548.20" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (85 samples, 0.42%)</title><rect x="815.5" y="453" width="5.0" height="15.0" fill="rgb(236,16,24)" rx="2" ry="2" />
|
|
<text x="818.48" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (15 samples, 0.07%)</title><rect x="154.3" y="693" width="0.9" height="15.0" fill="rgb(252,16,50)" rx="2" ry="2" />
|
|
<text x="157.34" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (5 samples, 0.02%)</title><rect x="1028.0" y="597" width="0.3" height="15.0" fill="rgb(239,17,35)" rx="2" ry="2" />
|
|
<text x="1030.96" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="1019.3" y="517" width="0.3" height="15.0" fill="rgb(222,162,13)" rx="2" ry="2" />
|
|
<text x="1022.35" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (6 samples, 0.03%)</title><rect x="538.8" y="517" width="0.3" height="15.0" fill="rgb(238,101,2)" rx="2" ry="2" />
|
|
<text x="541.77" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (9 samples, 0.04%)</title><rect x="582.7" y="325" width="0.5" height="15.0" fill="rgb(241,77,7)" rx="2" ry="2" />
|
|
<text x="585.66" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (14 samples, 0.07%)</title><rect x="977.8" y="613" width="0.8" height="15.0" fill="rgb(205,7,8)" rx="2" ry="2" />
|
|
<text x="980.76" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ec_GFp_mont_group_set_curve (8 samples, 0.04%)</title><rect x="585.3" y="325" width="0.5" height="15.0" fill="rgb(215,53,47)" rx="2" ry="2" />
|
|
<text x="588.31" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (2 samples, 0.01%)</title><rect x="299.7" y="469" width="0.1" height="15.0" fill="rgb(236,102,22)" rx="2" ry="2" />
|
|
<text x="302.69" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_create (2 samples, 0.01%)</title><rect x="786.7" y="549" width="0.1" height="15.0" fill="rgb(243,124,18)" rx="2" ry="2" />
|
|
<text x="789.70" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (7 samples, 0.03%)</title><rect x="415.5" y="757" width="0.4" height="15.0" fill="rgb(219,169,42)" rx="2" ry="2" />
|
|
<text x="418.48" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (77 samples, 0.38%)</title><rect x="379.2" y="581" width="4.5" height="15.0" fill="rgb(211,127,15)" rx="2" ry="2" />
|
|
<text x="382.21" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (193 samples, 0.96%)</title><rect x="367.8" y="565" width="11.4" height="15.0" fill="rgb(220,193,6)" rx="2" ry="2" />
|
|
<text x="370.82" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_add_stream (4 samples, 0.02%)</title><rect x="786.5" y="549" width="0.2" height="15.0" fill="rgb(212,141,3)" rx="2" ry="2" />
|
|
<text x="789.46" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (43 samples, 0.21%)</title><rect x="563.0" y="437" width="2.6" height="15.0" fill="rgb(232,219,7)" rx="2" ry="2" />
|
|
<text x="566.01" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="1019.2" y="741" width="0.1" height="15.0" fill="rgb(237,148,9)" rx="2" ry="2" />
|
|
<text x="1022.23" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (9 samples, 0.04%)</title><rect x="967.3" y="549" width="0.5" height="15.0" fill="rgb(243,64,43)" rx="2" ry="2" />
|
|
<text x="970.26" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (4 samples, 0.02%)</title><rect x="977.5" y="581" width="0.3" height="15.0" fill="rgb(237,129,41)" rx="2" ry="2" />
|
|
<text x="980.52" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vm_munmap (2 samples, 0.01%)</title><rect x="675.9" y="405" width="0.1" height="15.0" fill="rgb(207,117,39)" rx="2" ry="2" />
|
|
<text x="678.92" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (3 samples, 0.01%)</title><rect x="670.4" y="485" width="0.1" height="15.0" fill="rgb(246,202,18)" rx="2" ry="2" />
|
|
<text x="673.37" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (12 samples, 0.06%)</title><rect x="966.4" y="661" width="0.7" height="15.0" fill="rgb(252,38,30)" rx="2" ry="2" />
|
|
<text x="969.43" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="370.9" y="405" width="0.3" height="15.0" fill="rgb(211,138,0)" rx="2" ry="2" />
|
|
<text x="373.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (10 samples, 0.05%)</title><rect x="412.5" y="597" width="0.6" height="15.0" fill="rgb(228,71,16)" rx="2" ry="2" />
|
|
<text x="415.48" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (3 samples, 0.01%)</title><rect x="580.6" y="421" width="0.2" height="15.0" fill="rgb(224,193,8)" rx="2" ry="2" />
|
|
<text x="583.59" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (184 samples, 0.92%)</title><rect x="579.0" y="437" width="10.9" height="15.0" fill="rgb(238,32,4)" rx="2" ry="2" />
|
|
<text x="582.00" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libpthread-2.17.so] (4 samples, 0.02%)</title><rect x="937.4" y="645" width="0.2" height="15.0" fill="rgb(221,52,51)" rx="2" ry="2" />
|
|
<text x="940.41" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="530.5" y="501" width="0.2" height="15.0" fill="rgb(249,153,46)" rx="2" ry="2" />
|
|
<text x="533.45" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (4 samples, 0.02%)</title><rect x="1019.3" y="613" width="0.3" height="15.0" fill="rgb(251,60,37)" rx="2" ry="2" />
|
|
<text x="1022.35" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (6 samples, 0.03%)</title><rect x="300.8" y="549" width="0.3" height="15.0" fill="rgb(220,117,37)" rx="2" ry="2" />
|
|
<text x="303.75" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (4 samples, 0.02%)</title><rect x="822.4" y="501" width="0.2" height="15.0" fill="rgb(241,1,33)" rx="2" ry="2" />
|
|
<text x="825.39" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (8 samples, 0.04%)</title><rect x="981.7" y="645" width="0.4" height="15.0" fill="rgb(220,146,38)" rx="2" ry="2" />
|
|
<text x="984.65" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="43.3" y="741" width="0.1" height="15.0" fill="rgb(212,136,27)" rx="2" ry="2" />
|
|
<text x="46.33" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="299.0" y="229" width="0.2" height="15.0" fill="rgb(236,87,4)" rx="2" ry="2" />
|
|
<text x="302.04" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (31 samples, 0.15%)</title><rect x="324.2" y="485" width="1.8" height="15.0" fill="rgb(234,25,11)" rx="2" ry="2" />
|
|
<text x="327.17" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (2 samples, 0.01%)</title><rect x="412.4" y="661" width="0.1" height="15.0" fill="rgb(234,172,34)" rx="2" ry="2" />
|
|
<text x="415.36" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (3 samples, 0.01%)</title><rect x="786.8" y="549" width="0.2" height="15.0" fill="rgb(238,44,10)" rx="2" ry="2" />
|
|
<text x="789.82" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="581.5" y="261" width="0.2" height="15.0" fill="rgb(224,196,53)" rx="2" ry="2" />
|
|
<text x="584.54" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="566.8" y="325" width="0.1" height="15.0" fill="rgb(219,94,47)" rx="2" ry="2" />
|
|
<text x="569.79" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (10 samples, 0.05%)</title><rect x="563.2" y="389" width="0.6" height="15.0" fill="rgb(230,166,9)" rx="2" ry="2" />
|
|
<text x="566.19" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (20 samples, 0.10%)</title><rect x="1026.8" y="613" width="1.2" height="15.0" fill="rgb(238,148,50)" rx="2" ry="2" />
|
|
<text x="1029.78" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (7 samples, 0.03%)</title><rect x="312.8" y="261" width="0.4" height="15.0" fill="rgb(226,18,23)" rx="2" ry="2" />
|
|
<text x="315.79" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>raw_ip_frag_list_stream_attach (3 samples, 0.01%)</title><rect x="539.3" y="517" width="0.2" height="15.0" fill="rgb(227,210,20)" rx="2" ry="2" />
|
|
<text x="542.30" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="990.4" y="613" width="0.1" height="15.0" fill="rgb(253,211,5)" rx="2" ry="2" />
|
|
<text x="993.38" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (9 samples, 0.04%)</title><rect x="534.8" y="533" width="0.5" height="15.0" fill="rgb(205,72,6)" rx="2" ry="2" />
|
|
<text x="537.76" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_cancel (2 samples, 0.01%)</title><rect x="301.5" y="469" width="0.1" height="15.0" fill="rgb(208,167,28)" rx="2" ry="2" />
|
|
<text x="304.46" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sip.so] (8 samples, 0.04%)</title><rect x="827.3" y="501" width="0.5" height="15.0" fill="rgb(239,77,13)" rx="2" ry="2" />
|
|
<text x="830.28" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="566.6" y="389" width="0.1" height="15.0" fill="rgb(241,171,0)" rx="2" ry="2" />
|
|
<text x="569.61" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="805.3" y="549" width="0.1" height="15.0" fill="rgb(225,55,19)" rx="2" ry="2" />
|
|
<text x="808.28" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_check (47 samples, 0.23%)</title><rect x="802.4" y="549" width="2.8" height="15.0" fill="rgb(206,217,23)" rx="2" ry="2" />
|
|
<text x="805.39" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_mod_inverse (3 samples, 0.01%)</title><rect x="585.5" y="293" width="0.2" height="15.0" fill="rgb(224,209,36)" rx="2" ry="2" />
|
|
<text x="588.49" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (8 samples, 0.04%)</title><rect x="412.5" y="501" width="0.4" height="15.0" fill="rgb(227,42,2)" rx="2" ry="2" />
|
|
<text x="415.48" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="387.9" y="341" width="0.2" height="15.0" fill="rgb(247,128,38)" rx="2" ry="2" />
|
|
<text x="390.88" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="376.9" y="389" width="0.4" height="15.0" fill="rgb(242,120,29)" rx="2" ry="2" />
|
|
<text x="379.91" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_plugin_get_ex_data (2 samples, 0.01%)</title><rect x="980.6" y="453" width="0.1" height="15.0" fill="rgb(231,19,37)" rx="2" ry="2" />
|
|
<text x="983.59" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>printaddr (4 samples, 0.02%)</title><rect x="590.9" y="469" width="0.3" height="15.0" fill="rgb(217,217,13)" rx="2" ry="2" />
|
|
<text x="593.92" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (3 samples, 0.01%)</title><rect x="393.0" y="613" width="0.1" height="15.0" fill="rgb(229,89,38)" rx="2" ry="2" />
|
|
<text x="395.95" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithCertificateDetail (2 samples, 0.01%)</title><rect x="299.6" y="437" width="0.1" height="15.0" fill="rgb(246,1,1)" rx="2" ry="2" />
|
|
<text x="302.57" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (35 samples, 0.17%)</title><rect x="978.9" y="613" width="2.0" height="15.0" fill="rgb(251,187,4)" rx="2" ry="2" />
|
|
<text x="981.88" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (67 samples, 0.33%)</title><rect x="1007.5" y="661" width="3.9" height="15.0" fill="rgb(221,229,12)" rx="2" ry="2" />
|
|
<text x="1010.49" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="566.6" y="341" width="0.1" height="15.0" fill="rgb(246,157,12)" rx="2" ry="2" />
|
|
<text x="569.61" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="671.6" y="405" width="0.1" height="15.0" fill="rgb(213,80,40)" rx="2" ry="2" />
|
|
<text x="674.61" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (1,486 samples, 7.43%)</title><rect x="305.1" y="645" width="87.6" height="15.0" fill="rgb(205,39,35)" rx="2" ry="2" />
|
|
<text x="308.06" y="655.5" >ipv4_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>FW_DNS_PLUG_ENTRY (60 samples, 0.30%)</title><rect x="982.7" y="677" width="3.6" height="15.0" fill="rgb(225,99,15)" rx="2" ry="2" />
|
|
<text x="985.72" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (5 samples, 0.02%)</title><rect x="337.1" y="469" width="0.3" height="15.0" fill="rgb(225,62,28)" rx="2" ry="2" />
|
|
<text x="340.09" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (953 samples, 4.76%)</title><rect x="305.1" y="581" width="56.2" height="15.0" fill="rgb(209,2,51)" rx="2" ry="2" />
|
|
<text x="308.06" y="591.5" >strea..</text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (7 samples, 0.03%)</title><rect x="332.5" y="373" width="0.4" height="15.0" fill="rgb(208,105,9)" rx="2" ry="2" />
|
|
<text x="335.49" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_ipport_union_addr (10 samples, 0.05%)</title><rect x="530.2" y="533" width="0.5" height="15.0" fill="rgb(208,63,36)" rx="2" ry="2" />
|
|
<text x="533.16" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="1014.2" y="613" width="0.1" height="15.0" fill="rgb(219,65,10)" rx="2" ry="2" />
|
|
<text x="1017.22" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (22 samples, 0.11%)</title><rect x="536.5" y="501" width="1.3" height="15.0" fill="rgb(234,195,29)" rx="2" ry="2" />
|
|
<text x="539.53" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.03%)</title><rect x="981.2" y="661" width="0.5" height="15.0" fill="rgb(230,11,33)" rx="2" ry="2" />
|
|
<text x="984.24" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="328.7" y="245" width="0.1" height="15.0" fill="rgb(249,23,2)" rx="2" ry="2" />
|
|
<text x="331.65" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_create (3 samples, 0.01%)</title><rect x="588.2" y="325" width="0.2" height="15.0" fill="rgb(243,200,3)" rx="2" ry="2" />
|
|
<text x="591.20" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (5 samples, 0.02%)</title><rect x="860.8" y="501" width="0.3" height="15.0" fill="rgb(248,40,2)" rx="2" ry="2" />
|
|
<text x="863.79" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (30 samples, 0.15%)</title><rect x="1024.5" y="405" width="1.7" height="15.0" fill="rgb(239,146,51)" rx="2" ry="2" />
|
|
<text x="1027.48" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="390.4" y="533" width="0.5" height="15.0" fill="rgb(251,179,41)" rx="2" ry="2" />
|
|
<text x="393.36" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (29 samples, 0.14%)</title><rect x="270.1" y="709" width="1.7" height="15.0" fill="rgb(217,91,17)" rx="2" ry="2" />
|
|
<text x="273.14" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1020.8" y="357" width="0.1" height="15.0" fill="rgb(208,54,13)" rx="2" ry="2" />
|
|
<text x="1023.76" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (22 samples, 0.11%)</title><rect x="640.8" y="501" width="1.3" height="15.0" fill="rgb(224,48,49)" rx="2" ry="2" />
|
|
<text x="643.76" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (82 samples, 0.41%)</title><rect x="1019.6" y="565" width="4.8" height="15.0" fill="rgb(232,151,44)" rx="2" ry="2" />
|
|
<text x="1022.58" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (18 samples, 0.09%)</title><rect x="386.8" y="357" width="1.1" height="15.0" fill="rgb(218,157,52)" rx="2" ry="2" />
|
|
<text x="389.82" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wangw_ingress_stream_is_wannat_session (8 samples, 0.04%)</title><rect x="964.7" y="581" width="0.5" height="15.0" fill="rgb(212,153,28)" rx="2" ry="2" />
|
|
<text x="967.72" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="565.6" y="373" width="0.2" height="15.0" fill="rgb(254,154,46)" rx="2" ry="2" />
|
|
<text x="568.61" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (5 samples, 0.02%)</title><rect x="980.9" y="645" width="0.3" height="15.0" fill="rgb(236,150,0)" rx="2" ry="2" />
|
|
<text x="983.95" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (14 samples, 0.07%)</title><rect x="315.7" y="517" width="0.8" height="15.0" fill="rgb(222,107,49)" rx="2" ry="2" />
|
|
<text x="318.68" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (20 samples, 0.10%)</title><rect x="298.5" y="485" width="1.2" height="15.0" fill="rgb(237,20,14)" rx="2" ry="2" />
|
|
<text x="301.51" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpReqResHeader (3 samples, 0.01%)</title><rect x="1014.2" y="709" width="0.1" height="15.0" fill="rgb(216,6,49)" rx="2" ry="2" />
|
|
<text x="1017.16" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="991.5" y="549" width="0.1" height="15.0" fill="rgb(213,72,34)" rx="2" ry="2" />
|
|
<text x="994.50" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>callback_dns_business_plug (33 samples, 0.16%)</title><rect x="793.5" y="437" width="2.0" height="15.0" fill="rgb(213,205,11)" rx="2" ry="2" />
|
|
<text x="796.54" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_l_avx (5 samples, 0.02%)</title><rect x="569.0" y="453" width="0.3" height="15.0" fill="rgb(211,135,0)" rx="2" ry="2" />
|
|
<text x="571.97" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="1028.1" y="549" width="0.2" height="15.0" fill="rgb(248,162,46)" rx="2" ry="2" />
|
|
<text x="1031.14" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="1028.1" y="501" width="0.2" height="15.0" fill="rgb(209,226,30)" rx="2" ry="2" />
|
|
<text x="1031.14" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (11 samples, 0.05%)</title><rect x="545.7" y="389" width="0.7" height="15.0" fill="rgb(233,67,25)" rx="2" ry="2" />
|
|
<text x="548.73" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (3 samples, 0.01%)</title><rect x="604.8" y="469" width="0.2" height="15.0" fill="rgb(227,192,0)" rx="2" ry="2" />
|
|
<text x="607.84" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="274.1" y="693" width="0.2" height="15.0" fill="rgb(237,122,49)" rx="2" ry="2" />
|
|
<text x="277.15" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (2 samples, 0.01%)</title><rect x="846.3" y="437" width="0.2" height="15.0" fill="rgb(218,192,35)" rx="2" ry="2" />
|
|
<text x="849.33" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (12 samples, 0.06%)</title><rect x="378.1" y="357" width="0.8" height="15.0" fill="rgb(215,41,17)" rx="2" ry="2" />
|
|
<text x="381.15" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_thread (9,286 samples, 46.42%)</title><rect x="416.1" y="741" width="547.7" height="15.0" fill="rgb(229,171,31)" rx="2" ry="2" />
|
|
<text x="419.07" y="751.5" >start_thread</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (3 samples, 0.01%)</title><rect x="561.5" y="373" width="0.2" height="15.0" fill="rgb(244,89,50)" rx="2" ry="2" />
|
|
<text x="564.54" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="394.2" y="629" width="0.1" height="15.0" fill="rgb(254,35,51)" rx="2" ry="2" />
|
|
<text x="397.19" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="1020.3" y="245" width="0.4" height="15.0" fill="rgb(241,45,13)" rx="2" ry="2" />
|
|
<text x="1023.29" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (26 samples, 0.13%)</title><rect x="324.3" y="341" width="1.5" height="15.0" fill="rgb(222,4,49)" rx="2" ry="2" />
|
|
<text x="327.29" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_no_init (3 samples, 0.01%)</title><rect x="1017.5" y="709" width="0.2" height="15.0" fill="rgb(245,0,24)" rx="2" ry="2" />
|
|
<text x="1020.52" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="304.4" y="485" width="0.1" height="15.0" fill="rgb(228,102,9)" rx="2" ry="2" />
|
|
<text x="307.41" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (40 samples, 0.20%)</title><rect x="978.9" y="677" width="2.3" height="15.0" fill="rgb(207,168,22)" rx="2" ry="2" />
|
|
<text x="981.88" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="919.1" y="485" width="0.3" height="15.0" fill="rgb(212,110,36)" rx="2" ry="2" />
|
|
<text x="922.13" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="671.3" y="421" width="0.1" height="15.0" fill="rgb(240,92,0)" rx="2" ry="2" />
|
|
<text x="674.26" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="981.8" y="597" width="0.1" height="15.0" fill="rgb(232,55,26)" rx="2" ry="2" />
|
|
<text x="984.77" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="963.8" y="581" width="0.2" height="15.0" fill="rgb(218,132,40)" rx="2" ry="2" />
|
|
<text x="966.84" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>parse_resource_record (2 samples, 0.01%)</title><rect x="1011.5" y="741" width="0.1" height="15.0" fill="rgb(240,63,44)" rx="2" ry="2" />
|
|
<text x="1014.50" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (20 samples, 0.10%)</title><rect x="1026.8" y="597" width="1.2" height="15.0" fill="rgb(243,132,8)" rx="2" ry="2" />
|
|
<text x="1029.78" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="675.9" y="453" width="0.1" height="15.0" fill="rgb(243,86,46)" rx="2" ry="2" />
|
|
<text x="678.92" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeRequestEntityPresent (73 samples, 0.36%)</title><rect x="319.6" y="485" width="4.3" height="15.0" fill="rgb(248,176,8)" rx="2" ry="2" />
|
|
<text x="322.63" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (4 samples, 0.02%)</title><rect x="394.9" y="709" width="0.2" height="15.0" fill="rgb(247,10,52)" rx="2" ry="2" />
|
|
<text x="397.90" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wiregraft_strdup (6 samples, 0.03%)</title><rect x="608.1" y="469" width="0.3" height="15.0" fill="rgb(244,113,38)" rx="2" ry="2" />
|
|
<text x="611.08" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="918.8" y="533" width="0.1" height="15.0" fill="rgb(214,144,16)" rx="2" ry="2" />
|
|
<text x="921.77" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>record_link_info_tcpall_entry_raw (2 samples, 0.01%)</title><rect x="631.8" y="485" width="0.1" height="15.0" fill="rgb(229,72,40)" rx="2" ry="2" />
|
|
<text x="634.79" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cycle_pkt_dump_by_classify (10 samples, 0.05%)</title><rect x="437.1" y="677" width="0.6" height="15.0" fill="rgb(215,0,2)" rx="2" ry="2" />
|
|
<text x="440.07" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_itoa_word (3 samples, 0.01%)</title><rect x="1012.9" y="661" width="0.1" height="15.0" fill="rgb(246,29,16)" rx="2" ry="2" />
|
|
<text x="1015.86" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="328.7" y="213" width="0.1" height="15.0" fill="rgb(210,209,11)" rx="2" ry="2" />
|
|
<text x="331.65" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (3 samples, 0.01%)</title><rect x="982.8" y="645" width="0.2" height="15.0" fill="rgb(247,68,14)" rx="2" ry="2" />
|
|
<text x="985.77" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="563.1" y="357" width="0.1" height="15.0" fill="rgb(216,167,28)" rx="2" ry="2" />
|
|
<text x="566.07" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (14 samples, 0.07%)</title><rect x="327.2" y="165" width="0.8" height="15.0" fill="rgb(217,194,47)" rx="2" ry="2" />
|
|
<text x="330.18" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_bsearch_ex_ (4 samples, 0.02%)</title><rect x="583.5" y="357" width="0.3" height="15.0" fill="rgb(235,162,18)" rx="2" ry="2" />
|
|
<text x="586.54" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="1010.6" y="613" width="0.1" height="15.0" fill="rgb(218,140,41)" rx="2" ry="2" />
|
|
<text x="1013.56" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (221 samples, 1.10%)</title><rect x="543.6" y="485" width="13.0" height="15.0" fill="rgb(213,36,7)" rx="2" ry="2" />
|
|
<text x="546.61" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (2 samples, 0.01%)</title><rect x="301.5" y="565" width="0.1" height="15.0" fill="rgb(217,127,3)" rx="2" ry="2" />
|
|
<text x="304.46" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (2 samples, 0.01%)</title><rect x="314.5" y="309" width="0.1" height="15.0" fill="rgb(234,24,10)" rx="2" ry="2" />
|
|
<text x="317.50" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="976.7" y="469" width="0.1" height="15.0" fill="rgb(247,81,4)" rx="2" ry="2" />
|
|
<text x="979.70" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (2 samples, 0.01%)</title><rect x="333.3" y="373" width="0.1" height="15.0" fill="rgb(223,188,45)" rx="2" ry="2" />
|
|
<text x="336.26" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (33 samples, 0.16%)</title><rect x="913.3" y="661" width="2.0" height="15.0" fill="rgb(217,52,53)" rx="2" ry="2" />
|
|
<text x="916.35" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CSuccinctHash::find (62 samples, 0.31%)</title><rect x="285.5" y="709" width="3.6" height="15.0" fill="rgb(223,160,2)" rx="2" ry="2" />
|
|
<text x="288.47" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (96 samples, 0.48%)</title><rect x="580.9" y="405" width="5.7" height="15.0" fill="rgb(211,208,44)" rx="2" ry="2" />
|
|
<text x="583.89" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (4 samples, 0.02%)</title><rect x="330.0" y="421" width="0.2" height="15.0" fill="rgb(214,76,45)" rx="2" ry="2" />
|
|
<text x="332.95" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (17 samples, 0.08%)</title><rect x="596.2" y="421" width="1.0" height="15.0" fill="rgb(254,208,24)" rx="2" ry="2" />
|
|
<text x="599.22" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="333.9" y="405" width="0.2" height="15.0" fill="rgb(208,186,12)" rx="2" ry="2" />
|
|
<text x="336.90" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (27 samples, 0.13%)</title><rect x="1021.2" y="469" width="1.6" height="15.0" fill="rgb(227,99,4)" rx="2" ry="2" />
|
|
<text x="1024.18" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_scan_intval (1,593 samples, 7.96%)</title><rect x="88.9" y="757" width="93.9" height="15.0" fill="rgb(210,203,52)" rx="2" ry="2" />
|
|
<text x="91.87" y="767.5" >Maat_scan_i..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (37 samples, 0.18%)</title><rect x="986.5" y="597" width="2.2" height="15.0" fill="rgb(213,17,32)" rx="2" ry="2" />
|
|
<text x="989.55" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (226 samples, 1.13%)</title><rect x="990.1" y="629" width="13.4" height="15.0" fill="rgb(213,113,46)" rx="2" ry="2" />
|
|
<text x="993.15" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_sse2 (21 samples, 0.10%)</title><rect x="129.4" y="629" width="1.2" height="15.0" fill="rgb(230,151,2)" rx="2" ry="2" />
|
|
<text x="132.39" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="671.1" y="357" width="0.2" height="15.0" fill="rgb(227,91,29)" rx="2" ry="2" />
|
|
<text x="674.08" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="561.6" y="341" width="0.1" height="15.0" fill="rgb(248,72,17)" rx="2" ry="2" />
|
|
<text x="564.60" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_create_per_stream (12 samples, 0.06%)</title><rect x="464.5" y="613" width="0.7" height="15.0" fill="rgb(219,216,16)" rx="2" ry="2" />
|
|
<text x="467.50" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (3 samples, 0.01%)</title><rect x="393.4" y="597" width="0.1" height="15.0" fill="rgb(248,77,32)" rx="2" ry="2" />
|
|
<text x="396.36" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="967.8" y="517" width="0.1" height="15.0" fill="rgb(220,99,25)" rx="2" ry="2" />
|
|
<text x="970.79" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="1006.1" y="629" width="0.3" height="15.0" fill="rgb(247,130,5)" rx="2" ry="2" />
|
|
<text x="1009.13" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (38 samples, 0.19%)</title><rect x="381.2" y="485" width="2.2" height="15.0" fill="rgb(233,166,29)" rx="2" ry="2" />
|
|
<text x="384.15" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (2 samples, 0.01%)</title><rect x="977.6" y="565" width="0.2" height="15.0" fill="rgb(251,180,29)" rx="2" ry="2" />
|
|
<text x="980.64" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (12 samples, 0.06%)</title><rect x="297.2" y="341" width="0.7" height="15.0" fill="rgb(207,109,1)" rx="2" ry="2" />
|
|
<text x="300.21" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libkni.so] (3 samples, 0.01%)</title><rect x="916.8" y="597" width="0.1" height="15.0" fill="rgb(238,65,28)" rx="2" ry="2" />
|
|
<text x="919.77" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (9 samples, 0.04%)</title><rect x="983.1" y="597" width="0.5" height="15.0" fill="rgb(229,171,4)" rx="2" ry="2" />
|
|
<text x="986.07" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (4 samples, 0.02%)</title><rect x="412.7" y="485" width="0.2" height="15.0" fill="rgb(205,205,9)" rx="2" ry="2" />
|
|
<text x="415.71" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="980.6" y="469" width="0.2" height="15.0" fill="rgb(211,10,52)" rx="2" ry="2" />
|
|
<text x="983.59" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (16 samples, 0.08%)</title><rect x="298.5" y="293" width="1.0" height="15.0" fill="rgb(209,19,20)" rx="2" ry="2" />
|
|
<text x="301.51" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="562.1" y="277" width="0.1" height="15.0" fill="rgb(235,82,21)" rx="2" ry="2" />
|
|
<text x="565.13" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (7 samples, 0.03%)</title><rect x="862.1" y="581" width="0.5" height="15.0" fill="rgb(228,122,39)" rx="2" ry="2" />
|
|
<text x="865.14" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_app_properties_policy (9 samples, 0.04%)</title><rect x="307.2" y="421" width="0.5" height="15.0" fill="rgb(250,177,42)" rx="2" ry="2" />
|
|
<text x="310.18" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_idle (2 samples, 0.01%)</title><rect x="1189.9" y="725" width="0.1" height="15.0" fill="rgb(206,203,17)" rx="2" ry="2" />
|
|
<text x="1192.88" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (10 samples, 0.05%)</title><rect x="335.6" y="469" width="0.6" height="15.0" fill="rgb(206,56,10)" rx="2" ry="2" />
|
|
<text x="338.61" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (8 samples, 0.04%)</title><rect x="1019.8" y="453" width="0.5" height="15.0" fill="rgb(234,122,36)" rx="2" ry="2" />
|
|
<text x="1022.82" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="379.0" y="421" width="0.1" height="15.0" fill="rgb(250,105,21)" rx="2" ry="2" />
|
|
<text x="382.03" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (5 samples, 0.02%)</title><rect x="861.8" y="581" width="0.3" height="15.0" fill="rgb(254,138,12)" rx="2" ry="2" />
|
|
<text x="864.79" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="1019.3" y="469" width="0.3" height="15.0" fill="rgb(245,147,19)" rx="2" ry="2" />
|
|
<text x="1022.35" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="1014.2" y="645" width="0.1" height="15.0" fill="rgb(250,146,9)" rx="2" ry="2" />
|
|
<text x="1017.22" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (73 samples, 0.36%)</title><rect x="319.6" y="453" width="4.3" height="15.0" fill="rgb(227,207,35)" rx="2" ry="2" />
|
|
<text x="322.63" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (22 samples, 0.11%)</title><rect x="128.1" y="629" width="1.3" height="15.0" fill="rgb(226,121,34)" rx="2" ry="2" />
|
|
<text x="131.09" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (14 samples, 0.07%)</title><rect x="977.8" y="565" width="0.8" height="15.0" fill="rgb(247,222,48)" rx="2" ry="2" />
|
|
<text x="980.76" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CSuccinctHash::find@plt (2 samples, 0.01%)</title><rect x="289.1" y="709" width="0.2" height="15.0" fill="rgb(235,4,33)" rx="2" ry="2" />
|
|
<text x="292.13" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>packet_io_hook_input (32 samples, 0.16%)</title><rect x="867.5" y="677" width="1.8" height="15.0" fill="rgb(221,167,50)" rx="2" ry="2" />
|
|
<text x="870.45" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (63 samples, 0.31%)</title><rect x="797.4" y="549" width="3.7" height="15.0" fill="rgb(230,99,9)" rx="2" ry="2" />
|
|
<text x="800.37" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (2 samples, 0.01%)</title><rect x="981.8" y="613" width="0.1" height="15.0" fill="rgb(238,92,54)" rx="2" ry="2" />
|
|
<text x="984.77" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (29 samples, 0.14%)</title><rect x="1017.4" y="741" width="1.7" height="15.0" fill="rgb(251,94,31)" rx="2" ry="2" />
|
|
<text x="1020.40" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (45 samples, 0.22%)</title><rect x="301.8" y="517" width="2.6" height="15.0" fill="rgb(220,4,19)" rx="2" ry="2" />
|
|
<text x="304.76" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (10 samples, 0.05%)</title><rect x="137.4" y="613" width="0.5" height="15.0" fill="rgb(248,51,29)" rx="2" ry="2" />
|
|
<text x="140.36" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>capture_bridge_cb (4 samples, 0.02%)</title><rect x="984.8" y="629" width="0.3" height="15.0" fill="rgb(229,182,48)" rx="2" ry="2" />
|
|
<text x="987.84" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (12 samples, 0.06%)</title><rect x="464.5" y="597" width="0.7" height="15.0" fill="rgb(209,196,4)" rx="2" ry="2" />
|
|
<text x="467.50" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_addr (2 samples, 0.01%)</title><rect x="366.7" y="501" width="0.1" height="15.0" fill="rgb(207,130,46)" rx="2" ry="2" />
|
|
<text x="369.70" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>c2i_ASN1_OBJECT (5 samples, 0.02%)</title><rect x="329.4" y="213" width="0.3" height="15.0" fill="rgb(247,82,11)" rx="2" ry="2" />
|
|
<text x="332.36" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (8 samples, 0.04%)</title><rect x="977.1" y="485" width="0.4" height="15.0" fill="rgb(231,120,20)" rx="2" ry="2" />
|
|
<text x="980.05" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1020.8" y="309" width="0.1" height="15.0" fill="rgb(220,132,34)" rx="2" ry="2" />
|
|
<text x="1023.76" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (6 samples, 0.03%)</title><rect x="980.6" y="549" width="0.3" height="15.0" fill="rgb(217,119,40)" rx="2" ry="2" />
|
|
<text x="983.59" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (35 samples, 0.17%)</title><rect x="330.4" y="421" width="2.0" height="15.0" fill="rgb(231,6,11)" rx="2" ry="2" />
|
|
<text x="333.36" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (11 samples, 0.05%)</title><rect x="315.0" y="437" width="0.7" height="15.0" fill="rgb(210,195,37)" rx="2" ry="2" />
|
|
<text x="318.03" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="830.7" y="469" width="0.2" height="15.0" fill="rgb(218,53,50)" rx="2" ry="2" />
|
|
<text x="833.70" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInflate2::fn_iDecode (2 samples, 0.01%)</title><rect x="563.3" y="293" width="0.1" height="15.0" fill="rgb(219,114,49)" rx="2" ry="2" />
|
|
<text x="566.25" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="976.8" y="453" width="0.1" height="15.0" fill="rgb(250,86,29)" rx="2" ry="2" />
|
|
<text x="979.82" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (31 samples, 0.15%)</title><rect x="793.7" y="373" width="1.8" height="15.0" fill="rgb(248,174,17)" rx="2" ry="2" />
|
|
<text x="796.66" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (29 samples, 0.14%)</title><rect x="831.9" y="485" width="1.7" height="15.0" fill="rgb(208,46,34)" rx="2" ry="2" />
|
|
<text x="834.88" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (21 samples, 0.10%)</title><rect x="965.2" y="581" width="1.2" height="15.0" fill="rgb(253,165,27)" rx="2" ry="2" />
|
|
<text x="968.20" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (5 samples, 0.02%)</title><rect x="1012.4" y="661" width="0.3" height="15.0" fill="rgb(208,202,18)" rx="2" ry="2" />
|
|
<text x="1015.45" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (4 samples, 0.02%)</title><rect x="1020.9" y="421" width="0.2" height="15.0" fill="rgb(248,59,32)" rx="2" ry="2" />
|
|
<text x="1023.88" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>c2i_ASN1_OBJECT (3 samples, 0.01%)</title><rect x="327.8" y="69" width="0.2" height="15.0" fill="rgb(219,155,31)" rx="2" ry="2" />
|
|
<text x="330.83" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (3 samples, 0.01%)</title><rect x="463.9" y="613" width="0.1" height="15.0" fill="rgb(235,228,47)" rx="2" ry="2" />
|
|
<text x="466.86" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="383.5" y="469" width="0.2" height="15.0" fill="rgb(220,120,3)" rx="2" ry="2" />
|
|
<text x="386.51" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="364.5" y="437" width="0.1" height="15.0" fill="rgb(219,222,2)" rx="2" ry="2" />
|
|
<text x="367.46" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (29 samples, 0.14%)</title><rect x="305.1" y="437" width="1.7" height="15.0" fill="rgb(207,71,10)" rx="2" ry="2" />
|
|
<text x="308.06" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (8 samples, 0.04%)</title><rect x="618.1" y="453" width="0.5" height="15.0" fill="rgb(213,4,26)" rx="2" ry="2" />
|
|
<text x="621.11" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="299.7" y="421" width="0.1" height="15.0" fill="rgb(210,74,31)" rx="2" ry="2" />
|
|
<text x="302.69" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_add_stream (3 samples, 0.01%)</title><rect x="535.3" y="533" width="0.2" height="15.0" fill="rgb(240,180,50)" rx="2" ry="2" />
|
|
<text x="538.29" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="330.0" y="357" width="0.2" height="15.0" fill="rgb(216,152,42)" rx="2" ry="2" />
|
|
<text x="332.95" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (23 samples, 0.11%)</title><rect x="386.7" y="373" width="1.4" height="15.0" fill="rgb(240,229,17)" rx="2" ry="2" />
|
|
<text x="389.70" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (2 samples, 0.01%)</title><rect x="913.0" y="645" width="0.1" height="15.0" fill="rgb(243,151,29)" rx="2" ry="2" />
|
|
<text x="915.99" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="1019.3" y="565" width="0.3" height="15.0" fill="rgb(205,117,1)" rx="2" ry="2" />
|
|
<text x="1022.35" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (8 samples, 0.04%)</title><rect x="986.8" y="565" width="0.5" height="15.0" fill="rgb(235,64,35)" rx="2" ry="2" />
|
|
<text x="989.79" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__stpcpy_sse2_unaligned (3 samples, 0.01%)</title><rect x="1013.3" y="725" width="0.2" height="15.0" fill="rgb(210,48,31)" rx="2" ry="2" />
|
|
<text x="1016.33" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_sse2 (20 samples, 0.10%)</title><rect x="137.9" y="613" width="1.2" height="15.0" fill="rgb(220,134,35)" rx="2" ry="2" />
|
|
<text x="140.95" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_ssl_entry (40 samples, 0.20%)</title><rect x="576.6" y="341" width="2.3" height="15.0" fill="rgb(219,145,29)" rx="2" ry="2" />
|
|
<text x="579.58" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (7 samples, 0.03%)</title><rect x="415.5" y="741" width="0.4" height="15.0" fill="rgb(229,168,15)" rx="2" ry="2" />
|
|
<text x="418.48" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_create (3 samples, 0.01%)</title><rect x="589.4" y="325" width="0.2" height="15.0" fill="rgb(245,112,24)" rx="2" ry="2" />
|
|
<text x="592.38" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="299.8" y="501" width="0.2" height="15.0" fill="rgb(220,215,15)" rx="2" ry="2" />
|
|
<text x="302.81" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="330.0" y="373" width="0.2" height="15.0" fill="rgb(253,141,14)" rx="2" ry="2" />
|
|
<text x="332.95" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (236 samples, 1.18%)</title><rect x="398.3" y="709" width="13.9" height="15.0" fill="rgb(207,31,42)" rx="2" ry="2" />
|
|
<text x="401.32" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="330.0" y="309" width="0.2" height="15.0" fill="rgb(253,136,47)" rx="2" ry="2" />
|
|
<text x="332.95" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (3 samples, 0.01%)</title><rect x="788.9" y="485" width="0.2" height="15.0" fill="rgb(236,18,38)" rx="2" ry="2" />
|
|
<text x="791.94" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (19 samples, 0.09%)</title><rect x="967.1" y="645" width="1.2" height="15.0" fill="rgb(211,217,32)" rx="2" ry="2" />
|
|
<text x="970.14" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (383 samples, 1.91%)</title><rect x="619.5" y="517" width="22.6" height="15.0" fill="rgb(252,167,20)" rx="2" ry="2" />
|
|
<text x="622.47" y="527.5" >s..</text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="390.4" y="501" width="0.1" height="15.0" fill="rgb(212,139,15)" rx="2" ry="2" />
|
|
<text x="393.36" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (3 samples, 0.01%)</title><rect x="1028.5" y="421" width="0.2" height="15.0" fill="rgb(239,104,8)" rx="2" ry="2" />
|
|
<text x="1031.49" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="383.8" y="453" width="0.1" height="15.0" fill="rgb(252,60,31)" rx="2" ry="2" />
|
|
<text x="386.81" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="299.2" y="245" width="0.1" height="15.0" fill="rgb(236,104,11)" rx="2" ry="2" />
|
|
<text x="302.16" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (8 samples, 0.04%)</title><rect x="45.3" y="741" width="0.4" height="15.0" fill="rgb(210,68,24)" rx="2" ry="2" />
|
|
<text x="48.27" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (43 samples, 0.21%)</title><rect x="301.8" y="421" width="2.5" height="15.0" fill="rgb(210,9,20)" rx="2" ry="2" />
|
|
<text x="304.76" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (3 samples, 0.01%)</title><rect x="1028.5" y="581" width="0.2" height="15.0" fill="rgb(254,1,27)" rx="2" ry="2" />
|
|
<text x="1031.49" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (13 samples, 0.06%)</title><rect x="973.3" y="469" width="0.7" height="15.0" fill="rgb(237,229,30)" rx="2" ry="2" />
|
|
<text x="976.28" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_mark_v4 (71 samples, 0.35%)</title><rect x="676.1" y="533" width="4.2" height="15.0" fill="rgb(241,218,24)" rx="2" ry="2" />
|
|
<text x="679.09" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pbe_uevent_malloc (3 samples, 0.01%)</title><rect x="387.9" y="357" width="0.2" height="15.0" fill="rgb(254,202,4)" rx="2" ry="2" />
|
|
<text x="390.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="412.4" y="517" width="0.1" height="15.0" fill="rgb(224,120,10)" rx="2" ry="2" />
|
|
<text x="415.36" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="1026.2" y="421" width="0.2" height="15.0" fill="rgb(210,106,52)" rx="2" ry="2" />
|
|
<text x="1029.25" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="586.7" y="341" width="0.1" height="15.0" fill="rgb(240,193,16)" rx="2" ry="2" />
|
|
<text x="589.67" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (7 samples, 0.03%)</title><rect x="976.6" y="501" width="0.4" height="15.0" fill="rgb(232,182,19)" rx="2" ry="2" />
|
|
<text x="979.58" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (11 samples, 0.05%)</title><rect x="384.7" y="485" width="0.6" height="15.0" fill="rgb(217,134,36)" rx="2" ry="2" />
|
|
<text x="387.69" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (9 samples, 0.04%)</title><rect x="967.3" y="469" width="0.5" height="15.0" fill="rgb(250,87,27)" rx="2" ry="2" />
|
|
<text x="970.26" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (2 samples, 0.01%)</title><rect x="536.1" y="517" width="0.1" height="15.0" fill="rgb(214,216,32)" rx="2" ry="2" />
|
|
<text x="539.06" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (9 samples, 0.04%)</title><rect x="791.8" y="405" width="0.5" height="15.0" fill="rgb(229,18,30)" rx="2" ry="2" />
|
|
<text x="794.77" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (14 samples, 0.07%)</title><rect x="787.2" y="533" width="0.9" height="15.0" fill="rgb(228,45,21)" rx="2" ry="2" />
|
|
<text x="790.23" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (39 samples, 0.19%)</title><rect x="970.7" y="533" width="2.3" height="15.0" fill="rgb(226,106,16)" rx="2" ry="2" />
|
|
<text x="973.74" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (4 samples, 0.02%)</title><rect x="915.4" y="661" width="0.2" height="15.0" fill="rgb(205,133,22)" rx="2" ry="2" />
|
|
<text x="918.35" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::search_expr (243 samples, 1.21%)</title><rect x="168.3" y="693" width="14.3" height="15.0" fill="rgb(206,82,38)" rx="2" ry="2" />
|
|
<text x="171.27" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (46 samples, 0.23%)</title><rect x="1026.8" y="677" width="2.7" height="15.0" fill="rgb(226,138,32)" rx="2" ry="2" />
|
|
<text x="1029.78" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="963.8" y="629" width="0.2" height="15.0" fill="rgb(230,215,31)" rx="2" ry="2" />
|
|
<text x="966.84" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="385.2" y="453" width="0.1" height="15.0" fill="rgb(249,51,10)" rx="2" ry="2" />
|
|
<text x="388.22" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (15 samples, 0.07%)</title><rect x="340.7" y="437" width="0.9" height="15.0" fill="rgb(247,107,36)" rx="2" ry="2" />
|
|
<text x="343.75" y="447.5" ></text>
|
|
</g>
|
|
</g>
|
|
</svg>
|