11913 lines
540 KiB
XML
11913 lines
540 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="710" onload="init(evt)" viewBox="0 0 1200 710" 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="710.0" fill="url(#background)" />
|
|
<text id="title" x="600.00" y="24" >Flame Graph</text>
|
|
<text id="details" x="10.00" y="693" > </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="693" > </text>
|
|
<g id="frames">
|
|
<g >
|
|
<title>dealipv4udppkt (32 samples, 0.16%)</title><rect x="828.4" y="613" width="1.9" height="15.0" fill="rgb(242,211,24)" rx="2" ry="2" />
|
|
<text x="831.42" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="826.5" y="437" width="0.1" height="15.0" fill="rgb(233,79,31)" rx="2" ry="2" />
|
|
<text x="829.47" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (18 samples, 0.09%)</title><rect x="841.0" y="357" width="1.0" height="15.0" fill="rgb(226,77,12)" rx="2" ry="2" />
|
|
<text x="843.99" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.02%)</title><rect x="840.8" y="405" width="0.2" height="15.0" fill="rgb(224,174,27)" rx="2" ry="2" />
|
|
<text x="843.81" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (5 samples, 0.03%)</title><rect x="304.3" y="405" width="0.3" height="15.0" fill="rgb(243,52,41)" rx="2" ry="2" />
|
|
<text x="307.31" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="681.0" y="277" width="0.1" height="15.0" fill="rgb(249,146,45)" rx="2" ry="2" />
|
|
<text x="684.00" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__do_sys_madvise (2 samples, 0.01%)</title><rect x="300.2" y="117" width="0.2" height="15.0" fill="rgb(224,61,11)" rx="2" ry="2" />
|
|
<text x="303.23" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (3 samples, 0.02%)</title><rect x="376.8" y="261" width="0.2" height="15.0" fill="rgb(218,108,39)" rx="2" ry="2" />
|
|
<text x="379.84" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (2 samples, 0.01%)</title><rect x="780.3" y="501" width="0.1" height="15.0" fill="rgb(244,71,0)" rx="2" ry="2" />
|
|
<text x="783.26" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (47 samples, 0.24%)</title><rect x="835.9" y="533" width="2.7" height="15.0" fill="rgb(219,91,47)" rx="2" ry="2" />
|
|
<text x="838.85" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (27 samples, 0.14%)</title><rect x="565.9" y="357" width="1.6" height="15.0" fill="rgb(238,145,19)" rx="2" ry="2" />
|
|
<text x="568.86" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (3 samples, 0.02%)</title><rect x="299.1" y="245" width="0.2" height="15.0" fill="rgb(241,54,48)" rx="2" ry="2" />
|
|
<text x="302.11" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (4 samples, 0.02%)</title><rect x="361.4" y="389" width="0.3" height="15.0" fill="rgb(213,6,49)" rx="2" ry="2" />
|
|
<text x="364.43" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="304.1" y="373" width="0.2" height="15.0" fill="rgb(241,148,36)" rx="2" ry="2" />
|
|
<text x="307.13" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (17 samples, 0.09%)</title><rect x="455.4" y="469" width="1.0" height="15.0" fill="rgb(234,136,41)" rx="2" ry="2" />
|
|
<text x="458.44" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_sketch_entry (24 samples, 0.12%)</title><rect x="575.6" y="357" width="1.4" height="15.0" fill="rgb(216,121,48)" rx="2" ry="2" />
|
|
<text x="578.60" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_ipv4 (6 samples, 0.03%)</title><rect x="359.0" y="341" width="0.4" height="15.0" fill="rgb(228,188,2)" rx="2" ry="2" />
|
|
<text x="362.01" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (14 samples, 0.07%)</title><rect x="579.4" y="341" width="0.9" height="15.0" fill="rgb(224,1,39)" rx="2" ry="2" />
|
|
<text x="582.43" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="302.0" y="309" width="0.2" height="15.0" fill="rgb(230,73,15)" rx="2" ry="2" />
|
|
<text x="305.01" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="367.8" y="293" width="0.1" height="15.0" fill="rgb(230,218,22)" rx="2" ry="2" />
|
|
<text x="370.81" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>append_common_field (4 samples, 0.02%)</title><rect x="379.9" y="373" width="0.2" height="15.0" fill="rgb(247,176,50)" rx="2" ry="2" />
|
|
<text x="382.90" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (13 samples, 0.07%)</title><rect x="836.1" y="373" width="0.8" height="15.0" fill="rgb(214,205,40)" rx="2" ry="2" />
|
|
<text x="839.09" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="512.9" y="389" width="0.5" height="15.0" fill="rgb(205,196,12)" rx="2" ry="2" />
|
|
<text x="515.86" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="377.0" y="261" width="0.4" height="15.0" fill="rgb(244,175,38)" rx="2" ry="2" />
|
|
<text x="380.01" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (3 samples, 0.02%)</title><rect x="828.2" y="357" width="0.2" height="15.0" fill="rgb(241,201,0)" rx="2" ry="2" />
|
|
<text x="831.24" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeHttpProtocol (2 samples, 0.01%)</title><rect x="559.5" y="325" width="0.2" height="15.0" fill="rgb(232,131,41)" rx="2" ry="2" />
|
|
<text x="562.55" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sched_clock_cpu (2 samples, 0.01%)</title><rect x="1182.2" y="517" width="0.1" height="15.0" fill="rgb(205,117,46)" rx="2" ry="2" />
|
|
<text x="1185.21" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (2 samples, 0.01%)</title><rect x="481.6" y="373" width="0.2" height="15.0" fill="rgb(225,82,7)" rx="2" ry="2" />
|
|
<text x="484.65" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_result_flow_get (2 samples, 0.01%)</title><rect x="523.5" y="293" width="0.2" height="15.0" fill="rgb(240,196,15)" rx="2" ry="2" />
|
|
<text x="526.55" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (24 samples, 0.12%)</title><rect x="822.1" y="357" width="1.4" height="15.0" fill="rgb(237,195,5)" rx="2" ry="2" />
|
|
<text x="825.10" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (72 samples, 0.36%)</title><rect x="357.2" y="453" width="4.2" height="15.0" fill="rgb(206,202,35)" rx="2" ry="2" />
|
|
<text x="360.18" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_recv_burst@plt (2 samples, 0.01%)</title><rect x="820.6" y="549" width="0.1" height="15.0" fill="rgb(227,190,49)" rx="2" ry="2" />
|
|
<text x="823.57" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="776.7" y="453" width="0.1" height="15.0" fill="rgb(239,152,7)" rx="2" ry="2" />
|
|
<text x="779.72" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (2 samples, 0.01%)</title><rect x="383.3" y="277" width="0.1" height="15.0" fill="rgb(211,43,24)" rx="2" ry="2" />
|
|
<text x="386.33" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (85 samples, 0.43%)</title><rect x="479.0" y="501" width="5.0" height="15.0" fill="rgb(250,34,44)" rx="2" ry="2" />
|
|
<text x="481.99" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>int_bn_mod_inverse (3 samples, 0.02%)</title><rect x="823.2" y="165" width="0.1" height="15.0" fill="rgb(234,171,23)" rx="2" ry="2" />
|
|
<text x="826.16" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (4 samples, 0.02%)</title><rect x="840.6" y="437" width="0.2" height="15.0" fill="rgb(227,50,18)" rx="2" ry="2" />
|
|
<text x="843.57" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="605.8" y="373" width="0.1" height="15.0" fill="rgb(224,77,18)" rx="2" ry="2" />
|
|
<text x="608.75" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="838.7" y="261" width="0.2" height="15.0" fill="rgb(237,149,7)" rx="2" ry="2" />
|
|
<text x="841.74" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>append_common_field (4 samples, 0.02%)</title><rect x="779.6" y="405" width="0.2" height="15.0" fill="rgb(240,146,51)" rx="2" ry="2" />
|
|
<text x="782.55" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (4 samples, 0.02%)</title><rect x="523.9" y="229" width="0.2" height="15.0" fill="rgb(236,59,25)" rx="2" ry="2" />
|
|
<text x="526.90" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>____strtod_l_internal (3 samples, 0.02%)</title><rect x="379.0" y="293" width="0.2" height="15.0" fill="rgb(221,85,38)" rx="2" ry="2" />
|
|
<text x="382.02" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (48 samples, 0.24%)</title><rect x="586.0" y="341" width="2.9" height="15.0" fill="rgb(215,129,20)" rx="2" ry="2" />
|
|
<text x="589.04" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="822.2" y="197" width="0.1" height="15.0" fill="rgb(254,1,23)" rx="2" ry="2" />
|
|
<text x="825.22" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="675.5" y="293" width="0.1" height="15.0" fill="rgb(209,70,25)" rx="2" ry="2" />
|
|
<text x="678.51" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (39 samples, 0.20%)</title><rect x="317.9" y="197" width="2.3" height="15.0" fill="rgb(253,151,46)" rx="2" ry="2" />
|
|
<text x="320.88" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>page_fault (3 samples, 0.02%)</title><rect x="481.8" y="325" width="0.2" height="15.0" fill="rgb(239,163,31)" rx="2" ry="2" />
|
|
<text x="484.82" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (15 samples, 0.08%)</title><rect x="379.0" y="389" width="0.9" height="15.0" fill="rgb(230,54,17)" rx="2" ry="2" />
|
|
<text x="382.02" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="305.5" y="245" width="0.2" height="15.0" fill="rgb(216,225,38)" rx="2" ry="2" />
|
|
<text x="308.49" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="356.9" y="293" width="0.1" height="15.0" fill="rgb(243,189,43)" rx="2" ry="2" />
|
|
<text x="359.89" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (5 samples, 0.03%)</title><rect x="585.7" y="341" width="0.3" height="15.0" fill="rgb(242,50,45)" rx="2" ry="2" />
|
|
<text x="588.75" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="700.0" y="309" width="0.1" height="15.0" fill="rgb(253,15,9)" rx="2" ry="2" />
|
|
<text x="703.00" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (6 samples, 0.03%)</title><rect x="826.7" y="485" width="0.4" height="15.0" fill="rgb(248,195,27)" rx="2" ry="2" />
|
|
<text x="829.71" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__lock_text_start (17 samples, 0.09%)</title><rect x="783.3" y="453" width="1.0" height="15.0" fill="rgb(254,189,11)" rx="2" ry="2" />
|
|
<text x="786.27" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_fqdn_plugin_table_get_ex_data (3 samples, 0.02%)</title><rect x="302.0" y="325" width="0.2" height="15.0" fill="rgb(243,167,0)" rx="2" ry="2" />
|
|
<text x="305.01" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (3 samples, 0.02%)</title><rect x="837.8" y="373" width="0.2" height="15.0" fill="rgb(206,12,1)" rx="2" ry="2" />
|
|
<text x="840.80" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (17 samples, 0.09%)</title><rect x="707.7" y="357" width="1.0" height="15.0" fill="rgb(223,119,45)" rx="2" ry="2" />
|
|
<text x="710.67" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new (2 samples, 0.01%)</title><rect x="482.6" y="309" width="0.1" height="15.0" fill="rgb(215,220,44)" rx="2" ry="2" />
|
|
<text x="485.59" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="350.0" y="341" width="0.4" height="15.0" fill="rgb(244,4,35)" rx="2" ry="2" />
|
|
<text x="353.04" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (2 samples, 0.01%)</title><rect x="406.9" y="581" width="0.1" height="15.0" fill="rgb(233,70,32)" rx="2" ry="2" />
|
|
<text x="409.87" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="381.6" y="181" width="0.2" height="15.0" fill="rgb(236,228,5)" rx="2" ry="2" />
|
|
<text x="384.56" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_opt_from_rawpkt (2 samples, 0.01%)</title><rect x="664.4" y="357" width="0.1" height="15.0" fill="rgb(240,105,45)" rx="2" ry="2" />
|
|
<text x="667.41" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="512.9" y="405" width="0.5" height="15.0" fill="rgb(221,204,33)" rx="2" ry="2" />
|
|
<text x="515.86" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_add (21 samples, 0.11%)</title><rect x="616.6" y="421" width="1.2" height="15.0" fill="rgb(242,116,0)" rx="2" ry="2" />
|
|
<text x="619.55" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (4 samples, 0.02%)</title><rect x="835.9" y="437" width="0.2" height="15.0" fill="rgb(215,80,33)" rx="2" ry="2" />
|
|
<text x="838.85" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="357.1" y="341" width="0.1" height="15.0" fill="rgb(220,228,20)" rx="2" ry="2" />
|
|
<text x="360.07" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (16 samples, 0.08%)</title><rect x="777.3" y="437" width="0.9" height="15.0" fill="rgb(225,147,47)" rx="2" ry="2" />
|
|
<text x="780.25" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_mutex_unlock (3 samples, 0.02%)</title><rect x="826.2" y="85" width="0.2" height="15.0" fill="rgb(241,150,42)" rx="2" ry="2" />
|
|
<text x="829.23" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="459.8" y="389" width="0.1" height="15.0" fill="rgb(229,146,46)" rx="2" ry="2" />
|
|
<text x="462.75" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="465.7" y="357" width="0.1" height="15.0" fill="rgb(227,191,50)" rx="2" ry="2" />
|
|
<text x="468.65" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="829.8" y="357" width="0.2" height="15.0" fill="rgb(247,178,4)" rx="2" ry="2" />
|
|
<text x="832.77" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (52 samples, 0.26%)</title><rect x="361.4" y="485" width="3.1" height="15.0" fill="rgb(227,106,22)" rx="2" ry="2" />
|
|
<text x="364.43" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="304.6" y="517" width="0.1" height="15.0" fill="rgb(221,190,31)" rx="2" ry="2" />
|
|
<text x="307.60" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="837.5" y="373" width="0.2" height="15.0" fill="rgb(220,38,31)" rx="2" ry="2" />
|
|
<text x="840.50" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="694.0" y="261" width="0.3" height="15.0" fill="rgb(210,100,48)" rx="2" ry="2" />
|
|
<text x="696.98" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="827.1" y="421" width="0.2" height="15.0" fill="rgb(208,13,6)" rx="2" ry="2" />
|
|
<text x="830.12" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_new (9 samples, 0.05%)</title><rect x="697.3" y="325" width="0.6" height="15.0" fill="rgb(249,189,22)" rx="2" ry="2" />
|
|
<text x="700.34" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (18 samples, 0.09%)</title><rect x="375.1" y="373" width="1.1" height="15.0" fill="rgb(247,75,26)" rx="2" ry="2" />
|
|
<text x="378.12" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (8 samples, 0.04%)</title><rect x="359.4" y="325" width="0.4" height="15.0" fill="rgb(220,90,15)" rx="2" ry="2" />
|
|
<text x="362.37" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (29 samples, 0.15%)</title><rect x="828.6" y="565" width="1.7" height="15.0" fill="rgb(251,203,3)" rx="2" ry="2" />
|
|
<text x="831.59" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (8 samples, 0.04%)</title><rect x="383.4" y="373" width="0.5" height="15.0" fill="rgb(218,168,45)" rx="2" ry="2" />
|
|
<text x="386.45" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_check (31 samples, 0.16%)</title><rect x="686.3" y="421" width="1.8" height="15.0" fill="rgb(224,211,8)" rx="2" ry="2" />
|
|
<text x="689.25" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (211 samples, 1.06%)</title><rect x="367.7" y="501" width="12.4" height="15.0" fill="rgb(243,174,2)" rx="2" ry="2" />
|
|
<text x="370.69" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="511.1" y="357" width="0.2" height="15.0" fill="rgb(219,185,44)" rx="2" ry="2" />
|
|
<text x="514.09" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>DNS_UDP_ENTRY (3 samples, 0.02%)</title><rect x="681.2" y="325" width="0.2" height="15.0" fill="rgb(217,190,7)" rx="2" ry="2" />
|
|
<text x="684.17" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="833.9" y="597" width="0.1" height="15.0" fill="rgb(230,138,25)" rx="2" ry="2" />
|
|
<text x="836.90" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_plug_entry (3 samples, 0.02%)</title><rect x="827.1" y="405" width="0.2" height="15.0" fill="rgb(246,207,8)" rx="2" ry="2" />
|
|
<text x="830.12" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (4 samples, 0.02%)</title><rect x="715.8" y="421" width="0.2" height="15.0" fill="rgb(240,6,2)" rx="2" ry="2" />
|
|
<text x="718.76" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="838.6" y="421" width="0.1" height="15.0" fill="rgb(254,78,27)" rx="2" ry="2" />
|
|
<text x="841.63" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (4 samples, 0.02%)</title><rect x="675.0" y="357" width="0.3" height="15.0" fill="rgb(245,178,27)" rx="2" ry="2" />
|
|
<text x="678.04" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (18 samples, 0.09%)</title><rect x="521.2" y="261" width="1.0" height="15.0" fill="rgb(254,43,18)" rx="2" ry="2" />
|
|
<text x="524.19" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (3 samples, 0.02%)</title><rect x="374.2" y="229" width="0.2" height="15.0" fill="rgb(208,216,22)" rx="2" ry="2" />
|
|
<text x="377.18" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sched_clock_cpu (2 samples, 0.01%)</title><rect x="1182.1" y="501" width="0.1" height="15.0" fill="rgb(226,208,13)" rx="2" ry="2" />
|
|
<text x="1185.09" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.02%)</title><rect x="828.2" y="533" width="0.2" height="15.0" fill="rgb(210,184,42)" rx="2" ry="2" />
|
|
<text x="831.24" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_add (21 samples, 0.11%)</title><rect x="616.6" y="405" width="1.2" height="15.0" fill="rgb(222,131,54)" rx="2" ry="2" />
|
|
<text x="619.55" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_check (11 samples, 0.06%)</title><rect x="686.4" y="389" width="0.7" height="15.0" fill="rgb(253,66,47)" rx="2" ry="2" />
|
|
<text x="689.43" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (153 samples, 0.77%)</title><rect x="305.9" y="325" width="9.0" height="15.0" fill="rgb(248,218,45)" rx="2" ry="2" />
|
|
<text x="308.90" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (44 samples, 0.22%)</title><rect x="824.0" y="501" width="2.6" height="15.0" fill="rgb(222,37,29)" rx="2" ry="2" />
|
|
<text x="826.99" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_l7_protocol_id2name (2 samples, 0.01%)</title><rect x="363.0" y="261" width="0.1" height="15.0" fill="rgb(222,139,26)" rx="2" ry="2" />
|
|
<text x="365.97" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (17 samples, 0.09%)</title><rect x="362.3" y="309" width="1.0" height="15.0" fill="rgb(215,123,28)" rx="2" ry="2" />
|
|
<text x="365.32" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (10 samples, 0.05%)</title><rect x="774.4" y="533" width="0.6" height="15.0" fill="rgb(247,218,52)" rx="2" ry="2" />
|
|
<text x="777.42" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="702.4" y="261" width="0.1" height="15.0" fill="rgb(218,95,20)" rx="2" ry="2" />
|
|
<text x="705.36" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="517" width="0.1" height="15.0" fill="rgb(246,58,40)" rx="2" ry="2" />
|
|
<text x="13.71" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="363.4" y="341" width="0.1" height="15.0" fill="rgb(211,83,41)" rx="2" ry="2" />
|
|
<text x="366.38" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__audit_syscall_entry (4 samples, 0.02%)</title><rect x="786.0" y="501" width="0.3" height="15.0" fill="rgb(217,110,39)" rx="2" ry="2" />
|
|
<text x="789.04" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dtls.so] (2 samples, 0.01%)</title><rect x="698.0" y="357" width="0.1" height="15.0" fill="rgb(243,122,53)" rx="2" ry="2" />
|
|
<text x="700.99" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.07%)</title><rect x="291.6" y="549" width="0.8" height="15.0" fill="rgb(227,155,23)" rx="2" ry="2" />
|
|
<text x="294.62" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (115 samples, 0.58%)</title><rect x="368.3" y="421" width="6.8" height="15.0" fill="rgb(222,4,46)" rx="2" ry="2" />
|
|
<text x="371.34" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="608.7" y="277" width="0.2" height="15.0" fill="rgb(250,14,9)" rx="2" ry="2" />
|
|
<text x="611.70" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="510.5" y="309" width="0.3" height="15.0" fill="rgb(208,90,6)" rx="2" ry="2" />
|
|
<text x="513.50" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_get (7 samples, 0.04%)</title><rect x="614.8" y="405" width="0.4" height="15.0" fill="rgb(245,138,3)" rx="2" ry="2" />
|
|
<text x="617.78" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="361.4" y="437" width="0.3" height="15.0" fill="rgb(241,176,11)" rx="2" ry="2" />
|
|
<text x="364.43" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (11 samples, 0.06%)</title><rect x="824.0" y="197" width="0.6" height="15.0" fill="rgb(227,17,17)" rx="2" ry="2" />
|
|
<text x="826.99" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SESSION_MARKER_RECORD_TCP_ENTRY (6 samples, 0.03%)</title><rect x="608.9" y="325" width="0.4" height="15.0" fill="rgb(212,162,25)" rx="2" ry="2" />
|
|
<text x="611.94" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_stream_carry_tunnel_type (3 samples, 0.02%)</title><rect x="456.6" y="485" width="0.1" height="15.0" fill="rgb(214,115,51)" rx="2" ry="2" />
|
|
<text x="459.56" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="583.6" y="261" width="0.1" height="15.0" fill="rgb(249,210,48)" rx="2" ry="2" />
|
|
<text x="586.56" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (3 samples, 0.02%)</title><rect x="829.8" y="405" width="0.2" height="15.0" fill="rgb(224,182,12)" rx="2" ry="2" />
|
|
<text x="832.77" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (3 samples, 0.02%)</title><rect x="609.3" y="325" width="0.2" height="15.0" fill="rgb(216,197,9)" rx="2" ry="2" />
|
|
<text x="612.29" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="836.6" y="309" width="0.3" height="15.0" fill="rgb(234,8,33)" rx="2" ry="2" />
|
|
<text x="839.62" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (9 samples, 0.05%)</title><rect x="611.6" y="293" width="0.5" height="15.0" fill="rgb(244,68,47)" rx="2" ry="2" />
|
|
<text x="614.60" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="607.3" y="373" width="0.2" height="15.0" fill="rgb(249,196,54)" rx="2" ry="2" />
|
|
<text x="610.35" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="651.1" y="261" width="0.2" height="15.0" fill="rgb(234,188,7)" rx="2" ry="2" />
|
|
<text x="654.14" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_payload (2 samples, 0.01%)</title><rect x="837.4" y="309" width="0.1" height="15.0" fill="rgb(252,223,45)" rx="2" ry="2" />
|
|
<text x="840.39" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (11 samples, 0.06%)</title><rect x="509.4" y="357" width="0.7" height="15.0" fill="rgb(229,117,42)" rx="2" ry="2" />
|
|
<text x="512.44" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="588.5" y="293" width="0.1" height="15.0" fill="rgb(206,221,54)" rx="2" ry="2" />
|
|
<text x="591.46" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (4 samples, 0.02%)</title><rect x="383.2" y="389" width="0.2" height="15.0" fill="rgb(211,185,7)" rx="2" ry="2" />
|
|
<text x="386.21" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (2 samples, 0.01%)</title><rect x="406.9" y="533" width="0.1" height="15.0" fill="rgb(214,50,22)" rx="2" ry="2" />
|
|
<text x="409.87" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="261" width="0.3" height="15.0" fill="rgb(214,163,6)" rx="2" ry="2" />
|
|
<text x="829.71" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="828.4" y="421" width="0.1" height="15.0" fill="rgb(241,122,29)" rx="2" ry="2" />
|
|
<text x="831.42" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (43 samples, 0.22%)</title><rect x="380.7" y="437" width="2.5" height="15.0" fill="rgb(205,217,30)" rx="2" ry="2" />
|
|
<text x="383.67" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ipv4_address (3 samples, 0.02%)</title><rect x="831.7" y="517" width="0.1" height="15.0" fill="rgb(215,71,44)" rx="2" ry="2" />
|
|
<text x="834.66" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="835.9" y="309" width="0.1" height="15.0" fill="rgb(247,189,43)" rx="2" ry="2" />
|
|
<text x="838.85" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="368.7" y="245" width="0.1" height="15.0" fill="rgb(207,27,29)" rx="2" ry="2" />
|
|
<text x="371.69" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="837.4" y="197" width="0.1" height="15.0" fill="rgb(205,8,35)" rx="2" ry="2" />
|
|
<text x="840.39" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (4 samples, 0.02%)</title><rect x="828.0" y="501" width="0.2" height="15.0" fill="rgb(217,137,15)" rx="2" ry="2" />
|
|
<text x="831.00" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (292 samples, 1.46%)</title><rect x="451.4" y="501" width="17.2" height="15.0" fill="rgb(222,78,25)" rx="2" ry="2" />
|
|
<text x="454.37" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_q_yield (3 samples, 0.02%)</title><rect x="674.2" y="245" width="0.1" height="15.0" fill="rgb(235,95,21)" rx="2" ry="2" />
|
|
<text x="677.15" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (49 samples, 0.25%)</title><rect x="350.0" y="389" width="2.9" height="15.0" fill="rgb(242,5,44)" rx="2" ry="2" />
|
|
<text x="353.04" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (4 samples, 0.02%)</title><rect x="835.9" y="373" width="0.2" height="15.0" fill="rgb(216,23,21)" rx="2" ry="2" />
|
|
<text x="838.85" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="838.7" y="293" width="0.2" height="15.0" fill="rgb(246,20,12)" rx="2" ry="2" />
|
|
<text x="841.74" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__audit_syscall_exit (4 samples, 0.02%)</title><rect x="785.6" y="501" width="0.2" height="15.0" fill="rgb(226,91,51)" rx="2" ry="2" />
|
|
<text x="788.57" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (31 samples, 0.16%)</title><rect x="821.7" y="453" width="1.9" height="15.0" fill="rgb(245,2,47)" rx="2" ry="2" />
|
|
<text x="824.75" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (5 samples, 0.03%)</title><rect x="350.5" y="261" width="0.3" height="15.0" fill="rgb(231,48,12)" rx="2" ry="2" />
|
|
<text x="353.52" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (44 samples, 0.22%)</title><rect x="824.0" y="517" width="2.6" height="15.0" fill="rgb(236,182,50)" rx="2" ry="2" />
|
|
<text x="826.99" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (6 samples, 0.03%)</title><rect x="302.2" y="373" width="0.3" height="15.0" fill="rgb(253,57,21)" rx="2" ry="2" />
|
|
<text x="305.18" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (9 samples, 0.05%)</title><rect x="526.7" y="325" width="0.6" height="15.0" fill="rgb(228,183,2)" rx="2" ry="2" />
|
|
<text x="529.73" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="831.0" y="469" width="0.1" height="15.0" fill="rgb(254,8,5)" rx="2" ry="2" />
|
|
<text x="833.95" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.02%)</title><rect x="837.8" y="389" width="0.2" height="15.0" fill="rgb(248,105,6)" rx="2" ry="2" />
|
|
<text x="840.80" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="363.4" y="373" width="0.1" height="15.0" fill="rgb(225,13,11)" rx="2" ry="2" />
|
|
<text x="366.38" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_fqdn_plugin_table_get_ex_data (13 samples, 0.07%)</title><rect x="824.8" y="181" width="0.8" height="15.0" fill="rgb(214,22,3)" rx="2" ry="2" />
|
|
<text x="827.82" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_app_id (7 samples, 0.04%)</title><rect x="354.9" y="325" width="0.4" height="15.0" fill="rgb(227,166,38)" rx="2" ry="2" />
|
|
<text x="357.88" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="315.2" y="213" width="0.4" height="15.0" fill="rgb(239,180,46)" rx="2" ry="2" />
|
|
<text x="318.17" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="823.8" y="373" width="0.1" height="15.0" fill="rgb(236,145,14)" rx="2" ry="2" />
|
|
<text x="826.75" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (4 samples, 0.02%)</title><rect x="778.2" y="373" width="0.2" height="15.0" fill="rgb(218,229,45)" rx="2" ry="2" />
|
|
<text x="781.20" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (7 samples, 0.04%)</title><rect x="828.6" y="389" width="0.4" height="15.0" fill="rgb(254,44,2)" rx="2" ry="2" />
|
|
<text x="831.59" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>append_common_field (10 samples, 0.05%)</title><rect x="382.6" y="373" width="0.6" height="15.0" fill="rgb(240,59,41)" rx="2" ry="2" />
|
|
<text x="385.62" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="828.6" y="373" width="0.4" height="15.0" fill="rgb(227,29,23)" rx="2" ry="2" />
|
|
<text x="831.59" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="509.7" y="277" width="0.4" height="15.0" fill="rgb(218,133,23)" rx="2" ry="2" />
|
|
<text x="512.68" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (2 samples, 0.01%)</title><rect x="581.0" y="277" width="0.1" height="15.0" fill="rgb(232,64,16)" rx="2" ry="2" />
|
|
<text x="583.97" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="829.4" y="85" width="0.4" height="15.0" fill="rgb(228,127,3)" rx="2" ry="2" />
|
|
<text x="832.36" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (14 samples, 0.07%)</title><rect x="820.7" y="469" width="0.9" height="15.0" fill="rgb(218,28,39)" rx="2" ry="2" />
|
|
<text x="823.74" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="487.0" y="421" width="0.1" height="15.0" fill="rgb(236,96,16)" rx="2" ry="2" />
|
|
<text x="490.02" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MurmurHash3_x64_128 (3 samples, 0.02%)</title><rect x="687.9" y="373" width="0.2" height="15.0" fill="rgb(228,165,38)" rx="2" ry="2" />
|
|
<text x="690.90" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__do_page_fault (3 samples, 0.02%)</title><rect x="481.8" y="293" width="0.2" height="15.0" fill="rgb(218,52,11)" rx="2" ry="2" />
|
|
<text x="484.82" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (3 samples, 0.02%)</title><rect x="304.1" y="309" width="0.2" height="15.0" fill="rgb(207,110,31)" rx="2" ry="2" />
|
|
<text x="307.13" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="304.6" y="485" width="0.1" height="15.0" fill="rgb(232,125,23)" rx="2" ry="2" />
|
|
<text x="307.60" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="607.3" y="357" width="0.2" height="15.0" fill="rgb(234,75,2)" rx="2" ry="2" />
|
|
<text x="610.35" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="277" width="0.1" height="15.0" fill="rgb(247,148,31)" rx="2" ry="2" />
|
|
<text x="13.71" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="838.6" y="453" width="0.1" height="15.0" fill="rgb(208,173,4)" rx="2" ry="2" />
|
|
<text x="841.63" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (4 samples, 0.02%)</title><rect x="776.2" y="517" width="0.3" height="15.0" fill="rgb(247,48,52)" rx="2" ry="2" />
|
|
<text x="779.25" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (33 samples, 0.17%)</title><rect x="509.4" y="405" width="2.0" height="15.0" fill="rgb(237,39,42)" rx="2" ry="2" />
|
|
<text x="512.44" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.02%)</title><rect x="828.4" y="501" width="0.2" height="15.0" fill="rgb(247,116,42)" rx="2" ry="2" />
|
|
<text x="831.42" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (42 samples, 0.21%)</title><rect x="824.0" y="373" width="2.5" height="15.0" fill="rgb(237,88,5)" rx="2" ry="2" />
|
|
<text x="826.99" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>deal_event_rules (8 samples, 0.04%)</title><rect x="779.6" y="421" width="0.4" height="15.0" fill="rgb(216,222,39)" rx="2" ry="2" />
|
|
<text x="782.55" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (4 samples, 0.02%)</title><rect x="481.2" y="341" width="0.2" height="15.0" fill="rgb(208,55,43)" rx="2" ry="2" />
|
|
<text x="484.17" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (4 samples, 0.02%)</title><rect x="484.0" y="501" width="0.2" height="15.0" fill="rgb(248,17,38)" rx="2" ry="2" />
|
|
<text x="487.01" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (8 samples, 0.04%)</title><rect x="359.4" y="309" width="0.4" height="15.0" fill="rgb(216,150,1)" rx="2" ry="2" />
|
|
<text x="362.37" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libpthread-2.17.so] (3 samples, 0.02%)</title><rect x="674.2" y="213" width="0.1" height="15.0" fill="rgb(248,58,12)" rx="2" ry="2" />
|
|
<text x="677.15" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncpy_sse2_unaligned (2 samples, 0.01%)</title><rect x="301.0" y="325" width="0.1" height="15.0" fill="rgb(249,197,12)" rx="2" ry="2" />
|
|
<text x="304.00" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (8 samples, 0.04%)</title><rect x="827.5" y="437" width="0.5" height="15.0" fill="rgb(252,218,29)" rx="2" ry="2" />
|
|
<text x="830.53" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (8 samples, 0.04%)</title><rect x="361.7" y="357" width="0.5" height="15.0" fill="rgb(236,186,2)" rx="2" ry="2" />
|
|
<text x="364.73" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="213" width="0.3" height="15.0" fill="rgb(252,51,9)" rx="2" ry="2" />
|
|
<text x="829.71" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="298.4" y="229" width="0.2" height="15.0" fill="rgb(205,28,17)" rx="2" ry="2" />
|
|
<text x="301.41" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (15 samples, 0.08%)</title><rect x="820.7" y="533" width="0.9" height="15.0" fill="rgb(233,213,25)" rx="2" ry="2" />
|
|
<text x="823.69" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="320.9" y="197" width="0.2" height="15.0" fill="rgb(233,106,30)" rx="2" ry="2" />
|
|
<text x="323.95" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>send_log_by_type (18 samples, 0.09%)</title><rect x="610.1" y="277" width="1.0" height="15.0" fill="rgb(239,103,28)" rx="2" ry="2" />
|
|
<text x="613.06" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="285.4" y="533" width="0.5" height="15.0" fill="rgb(208,181,18)" rx="2" ry="2" />
|
|
<text x="288.36" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (29 samples, 0.15%)</title><rect x="840.4" y="629" width="1.7" height="15.0" fill="rgb(211,73,28)" rx="2" ry="2" />
|
|
<text x="843.40" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_MONT_CTX_set (2 samples, 0.01%)</title><rect x="823.3" y="197" width="0.2" height="15.0" fill="rgb(224,217,33)" rx="2" ry="2" />
|
|
<text x="826.34" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="460.3" y="469" width="0.2" height="15.0" fill="rgb(249,151,19)" rx="2" ry="2" />
|
|
<text x="463.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_calculate_asymmteric (2 samples, 0.01%)</title><rect x="670.3" y="341" width="0.1" height="15.0" fill="rgb(251,138,27)" rx="2" ry="2" />
|
|
<text x="673.32" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (3 samples, 0.02%)</title><rect x="681.0" y="325" width="0.2" height="15.0" fill="rgb(230,55,38)" rx="2" ry="2" />
|
|
<text x="684.00" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (8 samples, 0.04%)</title><rect x="383.4" y="293" width="0.5" height="15.0" fill="rgb(214,122,34)" rx="2" ry="2" />
|
|
<text x="386.45" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="699.9" y="293" width="0.1" height="15.0" fill="rgb(236,91,32)" rx="2" ry="2" />
|
|
<text x="702.88" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (4 samples, 0.02%)</title><rect x="349.7" y="309" width="0.3" height="15.0" fill="rgb(210,195,20)" rx="2" ry="2" />
|
|
<text x="352.75" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="377.2" y="181" width="0.2" height="15.0" fill="rgb(209,107,21)" rx="2" ry="2" />
|
|
<text x="380.19" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (538 samples, 2.69%)</title><rect x="527.6" y="309" width="31.7" height="15.0" fill="rgb(252,9,31)" rx="2" ry="2" />
|
|
<text x="530.56" y="319.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.02%)</title><rect x="828.2" y="501" width="0.2" height="15.0" fill="rgb(211,210,4)" rx="2" ry="2" />
|
|
<text x="831.24" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="835.9" y="357" width="0.2" height="15.0" fill="rgb(222,10,24)" rx="2" ry="2" />
|
|
<text x="838.85" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_app_name_by_id (2 samples, 0.01%)</title><rect x="835.9" y="277" width="0.1" height="15.0" fill="rgb(207,199,29)" rx="2" ry="2" />
|
|
<text x="838.85" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_new (2 samples, 0.01%)</title><rect x="830.0" y="261" width="0.1" height="15.0" fill="rgb(231,115,14)" rx="2" ry="2" />
|
|
<text x="833.01" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__pthread_mutex_trylock (2 samples, 0.01%)</title><rect x="317.1" y="181" width="0.1" height="15.0" fill="rgb(207,33,27)" rx="2" ry="2" />
|
|
<text x="320.05" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="838.4" y="245" width="0.2" height="15.0" fill="rgb(254,25,29)" rx="2" ry="2" />
|
|
<text x="841.45" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (17 samples, 0.09%)</title><rect x="299.5" y="261" width="1.0" height="15.0" fill="rgb(220,55,5)" rx="2" ry="2" />
|
|
<text x="302.47" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="838.4" y="437" width="0.2" height="15.0" fill="rgb(247,75,22)" rx="2" ry="2" />
|
|
<text x="841.39" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="356.5" y="277" width="0.2" height="15.0" fill="rgb(253,72,51)" rx="2" ry="2" />
|
|
<text x="359.53" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (5 samples, 0.03%)</title><rect x="700.3" y="309" width="0.3" height="15.0" fill="rgb(220,9,18)" rx="2" ry="2" />
|
|
<text x="703.30" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_rawpkt_from_streaminfo (2 samples, 0.01%)</title><rect x="565.7" y="325" width="0.1" height="15.0" fill="rgb(245,102,2)" rx="2" ry="2" />
|
|
<text x="568.68" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (5 samples, 0.03%)</title><rect x="304.3" y="389" width="0.3" height="15.0" fill="rgb(222,109,3)" rx="2" ry="2" />
|
|
<text x="307.31" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_TCP_PACKET_ENTRY (2 samples, 0.01%)</title><rect x="511.7" y="325" width="0.2" height="15.0" fill="rgb(234,114,15)" rx="2" ry="2" />
|
|
<text x="514.74" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (2 samples, 0.01%)</title><rect x="304.6" y="469" width="0.1" height="15.0" fill="rgb(251,15,16)" rx="2" ry="2" />
|
|
<text x="307.60" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (5 samples, 0.03%)</title><rect x="318.5" y="165" width="0.3" height="15.0" fill="rgb(228,17,31)" rx="2" ry="2" />
|
|
<text x="321.53" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>srt_attribute_set_ip_asn (2 samples, 0.01%)</title><rect x="356.2" y="357" width="0.2" height="15.0" fill="rgb(217,214,51)" rx="2" ry="2" />
|
|
<text x="359.24" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="293" width="0.3" height="15.0" fill="rgb(228,207,13)" rx="2" ry="2" />
|
|
<text x="829.71" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (12 samples, 0.06%)</title><rect x="558.0" y="245" width="0.7" height="15.0" fill="rgb(212,90,43)" rx="2" ry="2" />
|
|
<text x="561.01" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (18 samples, 0.09%)</title><rect x="841.0" y="373" width="1.0" height="15.0" fill="rgb(220,29,11)" rx="2" ry="2" />
|
|
<text x="843.99" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="383.3" y="293" width="0.1" height="15.0" fill="rgb(211,14,28)" rx="2" ry="2" />
|
|
<text x="386.33" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="380.2" y="405" width="0.4" height="15.0" fill="rgb(254,168,20)" rx="2" ry="2" />
|
|
<text x="383.20" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__wake_up_common_lock (2 samples, 0.01%)</title><rect x="572.7" y="37" width="0.1" height="15.0" fill="rgb(235,175,52)" rx="2" ry="2" />
|
|
<text x="575.71" y="47.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_dynamic_table_row_metric_values_incrby (24 samples, 0.12%)</title><rect x="364.5" y="373" width="1.4" height="15.0" fill="rgb(215,132,33)" rx="2" ry="2" />
|
|
<text x="367.50" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (39 samples, 0.20%)</title><rect x="353.3" y="341" width="2.3" height="15.0" fill="rgb(216,134,14)" rx="2" ry="2" />
|
|
<text x="356.35" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (888 samples, 4.44%)</title><rect x="304.8" y="421" width="52.4" height="15.0" fill="rgb(219,93,32)" rx="2" ry="2" />
|
|
<text x="307.78" y="431.5" >plugi..</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="679.8" y="293" width="0.1" height="15.0" fill="rgb(227,80,51)" rx="2" ry="2" />
|
|
<text x="682.82" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (7 samples, 0.04%)</title><rect x="526.7" y="261" width="0.4" height="15.0" fill="rgb(237,193,34)" rx="2" ry="2" />
|
|
<text x="529.73" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="361.4" y="293" width="0.2" height="15.0" fill="rgb(221,156,8)" rx="2" ry="2" />
|
|
<text x="364.43" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="583.6" y="229" width="0.1" height="15.0" fill="rgb(241,158,3)" rx="2" ry="2" />
|
|
<text x="586.62" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (3 samples, 0.02%)</title><rect x="839.3" y="597" width="0.2" height="15.0" fill="rgb(215,160,31)" rx="2" ry="2" />
|
|
<text x="842.33" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (23 samples, 0.12%)</title><rect x="680.9" y="357" width="1.3" height="15.0" fill="rgb(250,86,40)" rx="2" ry="2" />
|
|
<text x="683.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (200 samples, 1.00%)</title><rect x="368.3" y="453" width="11.8" height="15.0" fill="rgb(247,158,43)" rx="2" ry="2" />
|
|
<text x="371.34" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="319.9" y="165" width="0.2" height="15.0" fill="rgb(234,14,15)" rx="2" ry="2" />
|
|
<text x="322.89" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="373.5" y="165" width="0.1" height="15.0" fill="rgb(246,17,21)" rx="2" ry="2" />
|
|
<text x="376.47" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (3 samples, 0.02%)</title><rect x="512.5" y="405" width="0.1" height="15.0" fill="rgb(213,30,0)" rx="2" ry="2" />
|
|
<text x="515.45" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_add (9 samples, 0.05%)</title><rect x="685.4" y="421" width="0.5" height="15.0" fill="rgb(220,220,7)" rx="2" ry="2" />
|
|
<text x="688.36" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="315.6" y="293" width="0.1" height="15.0" fill="rgb(233,133,13)" rx="2" ry="2" />
|
|
<text x="318.58" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (3 samples, 0.02%)</title><rect x="685.2" y="357" width="0.2" height="15.0" fill="rgb(224,126,34)" rx="2" ry="2" />
|
|
<text x="688.19" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="377.1" y="213" width="0.3" height="15.0" fill="rgb(241,92,5)" rx="2" ry="2" />
|
|
<text x="380.13" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (467 samples, 2.34%)</title><rect x="688.2" y="421" width="27.6" height="15.0" fill="rgb(206,152,29)" rx="2" ry="2" />
|
|
<text x="691.20" y="431.5" >s..</text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_and_copy_streamindex (10 samples, 0.05%)</title><rect x="457.3" y="485" width="0.6" height="15.0" fill="rgb(243,212,54)" rx="2" ry="2" />
|
|
<text x="460.33" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_jhash_4words (5 samples, 0.03%)</title><rect x="604.6" y="405" width="0.3" height="15.0" fill="rgb(252,184,5)" rx="2" ry="2" />
|
|
<text x="607.63" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (3 samples, 0.02%)</title><rect x="841.5" y="197" width="0.2" height="15.0" fill="rgb(233,84,35)" rx="2" ry="2" />
|
|
<text x="844.52" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (11 samples, 0.06%)</title><rect x="295.2" y="597" width="0.6" height="15.0" fill="rgb(235,135,11)" rx="2" ry="2" />
|
|
<text x="298.16" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_set_scan_district (4 samples, 0.02%)</title><rect x="305.4" y="261" width="0.3" height="15.0" fill="rgb(246,66,11)" rx="2" ry="2" />
|
|
<text x="308.43" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="468.1" y="357" width="0.1" height="15.0" fill="rgb(251,87,52)" rx="2" ry="2" />
|
|
<text x="471.13" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>swapper (5,895 samples, 29.48%)</title><rect x="842.1" y="645" width="347.9" height="15.0" fill="rgb(228,118,51)" rx="2" ry="2" />
|
|
<text x="845.11" y="655.5" >swapper</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="829.2" y="181" width="0.6" height="15.0" fill="rgb(213,116,27)" rx="2" ry="2" />
|
|
<text x="832.18" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (30 samples, 0.15%)</title><rect x="683.2" y="421" width="1.8" height="15.0" fill="rgb(206,47,24)" rx="2" ry="2" />
|
|
<text x="686.24" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (12 samples, 0.06%)</title><rect x="486.4" y="485" width="0.7" height="15.0" fill="rgb(217,84,15)" rx="2" ry="2" />
|
|
<text x="489.43" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (15 samples, 0.08%)</title><rect x="820.7" y="485" width="0.9" height="15.0" fill="rgb(213,2,1)" rx="2" ry="2" />
|
|
<text x="823.69" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="406.9" y="597" width="0.1" height="15.0" fill="rgb(242,224,40)" rx="2" ry="2" />
|
|
<text x="409.87" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="829.2" y="229" width="0.6" height="15.0" fill="rgb(240,103,3)" rx="2" ry="2" />
|
|
<text x="832.18" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_tcpall_entry (3 samples, 0.02%)</title><rect x="613.8" y="325" width="0.2" height="15.0" fill="rgb(215,73,3)" rx="2" ry="2" />
|
|
<text x="616.84" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (11 samples, 0.06%)</title><rect x="649.5" y="309" width="0.6" height="15.0" fill="rgb(226,229,44)" rx="2" ry="2" />
|
|
<text x="652.48" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_capture_packet_entry (7 samples, 0.04%)</title><rect x="578.7" y="341" width="0.4" height="15.0" fill="rgb(247,96,22)" rx="2" ry="2" />
|
|
<text x="581.73" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (3 samples, 0.02%)</title><rect x="651.8" y="309" width="0.2" height="15.0" fill="rgb(213,30,44)" rx="2" ry="2" />
|
|
<text x="654.79" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="574.4" y="309" width="0.1" height="15.0" fill="rgb(207,13,15)" rx="2" ry="2" />
|
|
<text x="577.42" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_ipv4 (28 samples, 0.14%)</title><rect x="716.9" y="437" width="1.6" height="15.0" fill="rgb(234,60,28)" rx="2" ry="2" />
|
|
<text x="719.88" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>syscall_slow_exit_work (7 samples, 0.04%)</title><rect x="785.5" y="517" width="0.4" height="15.0" fill="rgb(231,211,51)" rx="2" ry="2" />
|
|
<text x="788.51" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (34 samples, 0.17%)</title><rect x="680.3" y="421" width="2.1" height="15.0" fill="rgb(229,51,54)" rx="2" ry="2" />
|
|
<text x="683.35" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (9 samples, 0.05%)</title><rect x="570.6" y="277" width="0.6" height="15.0" fill="rgb(216,55,30)" rx="2" ry="2" />
|
|
<text x="573.64" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (17 samples, 0.09%)</title><rect x="299.5" y="245" width="1.0" height="15.0" fill="rgb(205,188,12)" rx="2" ry="2" />
|
|
<text x="302.47" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (97 samples, 0.49%)</title><rect x="774.3" y="549" width="5.7" height="15.0" fill="rgb(223,200,54)" rx="2" ry="2" />
|
|
<text x="777.30" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (35 samples, 0.18%)</title><rect x="657.9" y="341" width="2.1" height="15.0" fill="rgb(232,177,47)" rx="2" ry="2" />
|
|
<text x="660.92" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_TCP_PACKET_ENTRY (209 samples, 1.05%)</title><rect x="639.7" y="373" width="12.4" height="15.0" fill="rgb(245,17,47)" rx="2" ry="2" />
|
|
<text x="642.75" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (18 samples, 0.09%)</title><rect x="455.4" y="485" width="1.0" height="15.0" fill="rgb(232,186,52)" rx="2" ry="2" />
|
|
<text x="458.38" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_worker_process (24 samples, 0.12%)</title><rect x="298.1" y="357" width="1.4" height="15.0" fill="rgb(253,207,13)" rx="2" ry="2" />
|
|
<text x="301.05" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="355.7" y="293" width="0.2" height="15.0" fill="rgb(226,100,41)" rx="2" ry="2" />
|
|
<text x="358.71" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="315.6" y="309" width="0.1" height="15.0" fill="rgb(217,16,22)" rx="2" ry="2" />
|
|
<text x="318.58" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (3 samples, 0.02%)</title><rect x="838.7" y="517" width="0.2" height="15.0" fill="rgb(238,198,14)" rx="2" ry="2" />
|
|
<text x="841.74" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__localeconv (4 samples, 0.02%)</title><rect x="581.1" y="277" width="0.2" height="15.0" fill="rgb(245,146,17)" rx="2" ry="2" />
|
|
<text x="584.09" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="828.6" y="261" width="0.4" height="15.0" fill="rgb(226,121,38)" rx="2" ry="2" />
|
|
<text x="831.59" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (52 samples, 0.26%)</title><rect x="361.4" y="469" width="3.1" height="15.0" fill="rgb(206,4,22)" rx="2" ry="2" />
|
|
<text x="364.43" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (18 samples, 0.09%)</title><rect x="674.6" y="373" width="1.1" height="15.0" fill="rgb(223,174,45)" rx="2" ry="2" />
|
|
<text x="677.62" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="181" width="0.3" height="15.0" fill="rgb(222,32,28)" rx="2" ry="2" />
|
|
<text x="829.71" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (16 samples, 0.08%)</title><rect x="481.8" y="389" width="0.9" height="15.0" fill="rgb(249,94,15)" rx="2" ry="2" />
|
|
<text x="484.76" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.06%)</title><rect x="320.3" y="181" width="0.6" height="15.0" fill="rgb(225,227,31)" rx="2" ry="2" />
|
|
<text x="323.30" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (9 samples, 0.05%)</title><rect x="707.7" y="309" width="0.5" height="15.0" fill="rgb(235,84,32)" rx="2" ry="2" />
|
|
<text x="710.67" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (6 samples, 0.03%)</title><rect x="685.0" y="421" width="0.4" height="15.0" fill="rgb(218,111,19)" rx="2" ry="2" />
|
|
<text x="688.01" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (6 samples, 0.03%)</title><rect x="674.7" y="357" width="0.3" height="15.0" fill="rgb(249,32,17)" rx="2" ry="2" />
|
|
<text x="677.68" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="828.4" y="325" width="0.1" height="15.0" fill="rgb(224,5,54)" rx="2" ry="2" />
|
|
<text x="831.42" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (9 samples, 0.05%)</title><rect x="290.1" y="581" width="0.6" height="15.0" fill="rgb(217,224,47)" rx="2" ry="2" />
|
|
<text x="293.14" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (12 samples, 0.06%)</title><rect x="558.0" y="229" width="0.7" height="15.0" fill="rgb(216,7,1)" rx="2" ry="2" />
|
|
<text x="561.01" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="378.3" y="325" width="0.1" height="15.0" fill="rgb(214,214,35)" rx="2" ry="2" />
|
|
<text x="381.25" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="367.7" y="485" width="0.6" height="15.0" fill="rgb(227,174,49)" rx="2" ry="2" />
|
|
<text x="370.69" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (2 samples, 0.01%)</title><rect x="361.4" y="309" width="0.2" height="15.0" fill="rgb(231,213,45)" rx="2" ry="2" />
|
|
<text x="364.43" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (8 samples, 0.04%)</title><rect x="351.5" y="293" width="0.5" height="15.0" fill="rgb(241,159,36)" rx="2" ry="2" />
|
|
<text x="354.52" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (31 samples, 0.16%)</title><rect x="350.9" y="357" width="1.9" height="15.0" fill="rgb(217,89,41)" rx="2" ry="2" />
|
|
<text x="353.93" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mtx_lock (2 samples, 0.01%)</title><rect x="571.6" y="229" width="0.1" height="15.0" fill="rgb(209,74,38)" rx="2" ry="2" />
|
|
<text x="574.58" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_worker_process (9 samples, 0.05%)</title><rect x="302.8" y="373" width="0.6" height="15.0" fill="rgb(229,23,28)" rx="2" ry="2" />
|
|
<text x="305.83" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (530 samples, 2.65%)</title><rect x="317.2" y="293" width="31.2" height="15.0" fill="rgb(237,186,30)" rx="2" ry="2" />
|
|
<text x="320.17" y="303.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_partitioner (16 samples, 0.08%)</title><rect x="572.0" y="261" width="0.9" height="15.0" fill="rgb(233,138,16)" rx="2" ry="2" />
|
|
<text x="575.00" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="165" width="0.3" height="15.0" fill="rgb(218,5,29)" rx="2" ry="2" />
|
|
<text x="829.71" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_del (5 samples, 0.03%)</title><rect x="483.7" y="469" width="0.3" height="15.0" fill="rgb(241,227,23)" rx="2" ry="2" />
|
|
<text x="486.71" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (8 samples, 0.04%)</title><rect x="526.7" y="309" width="0.5" height="15.0" fill="rgb(226,33,53)" rx="2" ry="2" />
|
|
<text x="529.73" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="679.8" y="341" width="0.1" height="15.0" fill="rgb(251,27,24)" rx="2" ry="2" />
|
|
<text x="682.82" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="284.5" y="517" width="0.3" height="15.0" fill="rgb(252,50,13)" rx="2" ry="2" />
|
|
<text x="287.54" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>srt_attribute_set_ip_location (15 samples, 0.08%)</title><rect x="357.7" y="357" width="0.8" height="15.0" fill="rgb(238,59,25)" rx="2" ry="2" />
|
|
<text x="360.66" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (55 samples, 0.28%)</title><rect x="611.5" y="341" width="3.2" height="15.0" fill="rgb(213,53,44)" rx="2" ry="2" />
|
|
<text x="614.48" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (14 samples, 0.07%)</title><rect x="839.6" y="613" width="0.8" height="15.0" fill="rgb(218,7,37)" rx="2" ry="2" />
|
|
<text x="842.57" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (6 samples, 0.03%)</title><rect x="367.9" y="309" width="0.4" height="15.0" fill="rgb(222,62,43)" rx="2" ry="2" />
|
|
<text x="370.92" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (52 samples, 0.26%)</title><rect x="824.0" y="565" width="3.1" height="15.0" fill="rgb(206,142,48)" rx="2" ry="2" />
|
|
<text x="826.99" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (32 samples, 0.16%)</title><rect x="586.6" y="293" width="1.9" height="15.0" fill="rgb(235,177,17)" rx="2" ry="2" />
|
|
<text x="589.57" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (4 samples, 0.02%)</title><rect x="675.0" y="341" width="0.3" height="15.0" fill="rgb(222,150,49)" rx="2" ry="2" />
|
|
<text x="678.04" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (6 samples, 0.03%)</title><rect x="363.5" y="341" width="0.4" height="15.0" fill="rgb(241,71,11)" rx="2" ry="2" />
|
|
<text x="366.50" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (6 samples, 0.03%)</title><rect x="380.2" y="453" width="0.4" height="15.0" fill="rgb(242,53,42)" rx="2" ry="2" />
|
|
<text x="383.20" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="829.2" y="133" width="0.6" height="15.0" fill="rgb(209,103,47)" rx="2" ry="2" />
|
|
<text x="832.18" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (27 samples, 0.14%)</title><rect x="680.8" y="373" width="1.6" height="15.0" fill="rgb(207,94,28)" rx="2" ry="2" />
|
|
<text x="683.76" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="304.6" y="437" width="0.1" height="15.0" fill="rgb(216,178,28)" rx="2" ry="2" />
|
|
<text x="307.60" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="567.3" y="325" width="0.2" height="15.0" fill="rgb(219,155,24)" rx="2" ry="2" />
|
|
<text x="570.34" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_to_UTF8 (2 samples, 0.01%)</title><rect x="841.2" y="245" width="0.1" height="15.0" fill="rgb(227,8,7)" rx="2" ry="2" />
|
|
<text x="844.16" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (3 samples, 0.02%)</title><rect x="588.6" y="277" width="0.2" height="15.0" fill="rgb(221,91,50)" rx="2" ry="2" />
|
|
<text x="591.64" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (15 samples, 0.08%)</title><rect x="820.7" y="549" width="0.9" height="15.0" fill="rgb(237,47,43)" rx="2" ry="2" />
|
|
<text x="823.69" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>send_log_by_type (3 samples, 0.02%)</title><rect x="779.8" y="389" width="0.2" height="15.0" fill="rgb(225,116,47)" rx="2" ry="2" />
|
|
<text x="782.85" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_plug_entry (3 samples, 0.02%)</title><rect x="840.8" y="357" width="0.2" height="15.0" fill="rgb(211,212,6)" rx="2" ry="2" />
|
|
<text x="843.81" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (11 samples, 0.06%)</title><rect x="380.9" y="133" width="0.7" height="15.0" fill="rgb(253,91,8)" rx="2" ry="2" />
|
|
<text x="383.91" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (28 samples, 0.14%)</title><rect x="611.6" y="309" width="1.6" height="15.0" fill="rgb(230,122,19)" rx="2" ry="2" />
|
|
<text x="614.60" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___printf_fp_l (6 samples, 0.03%)</title><rect x="349.2" y="277" width="0.4" height="15.0" fill="rgb(220,203,43)" rx="2" ry="2" />
|
|
<text x="352.22" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_create_per_stream (4 samples, 0.02%)</title><rect x="460.2" y="485" width="0.3" height="15.0" fill="rgb(253,155,26)" rx="2" ry="2" />
|
|
<text x="463.22" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___printf_fp_l (12 samples, 0.06%)</title><rect x="360.3" y="277" width="0.7" height="15.0" fill="rgb(228,219,28)" rx="2" ry="2" />
|
|
<text x="363.31" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="376.2" y="261" width="0.1" height="15.0" fill="rgb(219,153,24)" rx="2" ry="2" />
|
|
<text x="379.19" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="302.2" y="405" width="0.3" height="15.0" fill="rgb(252,147,54)" rx="2" ry="2" />
|
|
<text x="305.18" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="466.2" y="357" width="0.3" height="15.0" fill="rgb(224,216,32)" rx="2" ry="2" />
|
|
<text x="469.18" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (4 samples, 0.02%)</title><rect x="779.6" y="389" width="0.2" height="15.0" fill="rgb(221,109,20)" rx="2" ry="2" />
|
|
<text x="782.55" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (56 samples, 0.28%)</title><rect x="479.4" y="485" width="3.3" height="15.0" fill="rgb(210,188,8)" rx="2" ry="2" />
|
|
<text x="482.40" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (12 samples, 0.06%)</title><rect x="829.1" y="309" width="0.7" height="15.0" fill="rgb(245,119,37)" rx="2" ry="2" />
|
|
<text x="832.07" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="350.2" y="277" width="0.2" height="15.0" fill="rgb(242,43,35)" rx="2" ry="2" />
|
|
<text x="353.16" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="374.1" y="213" width="0.1" height="15.0" fill="rgb(238,0,14)" rx="2" ry="2" />
|
|
<text x="377.06" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="822.2" y="165" width="0.1" height="15.0" fill="rgb(214,80,30)" rx="2" ry="2" />
|
|
<text x="825.22" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (601 samples, 3.01%)</title><rect x="638.9" y="389" width="35.5" height="15.0" fill="rgb(226,20,3)" rx="2" ry="2" />
|
|
<text x="641.92" y="399.5" >plu..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="568.2" y="261" width="0.1" height="15.0" fill="rgb(215,89,10)" rx="2" ry="2" />
|
|
<text x="571.22" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (8 samples, 0.04%)</title><rect x="778.4" y="389" width="0.5" height="15.0" fill="rgb(234,130,42)" rx="2" ry="2" />
|
|
<text x="781.43" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (22 samples, 0.11%)</title><rect x="776.9" y="469" width="1.3" height="15.0" fill="rgb(247,165,42)" rx="2" ry="2" />
|
|
<text x="779.90" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (4 samples, 0.02%)</title><rect x="827.3" y="453" width="0.2" height="15.0" fill="rgb(244,85,21)" rx="2" ry="2" />
|
|
<text x="830.30" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_and_copy_streamindex (2 samples, 0.01%)</title><rect x="512.0" y="421" width="0.2" height="15.0" fill="rgb(220,153,7)" rx="2" ry="2" />
|
|
<text x="515.04" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="841.7" y="229" width="0.3" height="15.0" fill="rgb(247,9,21)" rx="2" ry="2" />
|
|
<text x="844.69" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="381.8" y="197" width="0.5" height="15.0" fill="rgb(217,33,3)" rx="2" ry="2" />
|
|
<text x="384.79" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_plug_entry (2 samples, 0.01%)</title><rect x="838.6" y="469" width="0.1" height="15.0" fill="rgb(231,60,45)" rx="2" ry="2" />
|
|
<text x="841.63" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>QUIC_ENTRY (25 samples, 0.13%)</title><rect x="375.1" y="421" width="1.5" height="15.0" fill="rgb(252,130,43)" rx="2" ry="2" />
|
|
<text x="378.12" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (4 samples, 0.02%)</title><rect x="378.8" y="389" width="0.2" height="15.0" fill="rgb(216,7,42)" rx="2" ry="2" />
|
|
<text x="381.78" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="376.4" y="293" width="0.1" height="15.0" fill="rgb(240,71,5)" rx="2" ry="2" />
|
|
<text x="379.42" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (47 samples, 0.24%)</title><rect x="835.9" y="597" width="2.7" height="15.0" fill="rgb(232,121,54)" rx="2" ry="2" />
|
|
<text x="838.85" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_ipv4 (68 samples, 0.34%)</title><rect x="644.9" y="325" width="4.1" height="15.0" fill="rgb(228,22,45)" rx="2" ry="2" />
|
|
<text x="647.94" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (4 samples, 0.02%)</title><rect x="830.7" y="533" width="0.3" height="15.0" fill="rgb(214,4,10)" rx="2" ry="2" />
|
|
<text x="833.72" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (3 samples, 0.02%)</title><rect x="525.6" y="213" width="0.2" height="15.0" fill="rgb(228,30,37)" rx="2" ry="2" />
|
|
<text x="528.61" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (28 samples, 0.14%)</title><rect x="380.7" y="261" width="1.7" height="15.0" fill="rgb(215,181,31)" rx="2" ry="2" />
|
|
<text x="383.73" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_calloc (18 samples, 0.09%)</title><rect x="588.9" y="389" width="1.0" height="15.0" fill="rgb(225,97,13)" rx="2" ry="2" />
|
|
<text x="591.88" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (138 samples, 0.69%)</title><rect x="460.5" y="485" width="8.1" height="15.0" fill="rgb(234,28,42)" rx="2" ry="2" />
|
|
<text x="463.46" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (9 samples, 0.05%)</title><rect x="572.4" y="165" width="0.5" height="15.0" fill="rgb(253,3,43)" rx="2" ry="2" />
|
|
<text x="575.35" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_get_platform_opt@plt (2 samples, 0.01%)</title><rect x="665.5" y="357" width="0.2" height="15.0" fill="rgb(234,69,26)" rx="2" ry="2" />
|
|
<text x="668.54" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (27 samples, 0.14%)</title><rect x="713.5" y="341" width="1.5" height="15.0" fill="rgb(231,215,50)" rx="2" ry="2" />
|
|
<text x="716.46" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_increment (33 samples, 0.17%)</title><rect x="628.4" y="373" width="1.9" height="15.0" fill="rgb(222,3,41)" rx="2" ry="2" />
|
|
<text x="631.36" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="838.7" y="373" width="0.2" height="15.0" fill="rgb(225,228,37)" rx="2" ry="2" />
|
|
<text x="841.74" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (3 samples, 0.02%)</title><rect x="354.3" y="325" width="0.2" height="15.0" fill="rgb(210,117,20)" rx="2" ry="2" />
|
|
<text x="357.29" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_nohz_idle_enter (5 samples, 0.03%)</title><rect x="1189.7" y="565" width="0.3" height="15.0" fill="rgb(223,41,43)" rx="2" ry="2" />
|
|
<text x="1192.70" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (17 samples, 0.09%)</title><rect x="363.5" y="405" width="1.0" height="15.0" fill="rgb(216,78,14)" rx="2" ry="2" />
|
|
<text x="366.50" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="835.9" y="325" width="0.2" height="15.0" fill="rgb(218,207,19)" rx="2" ry="2" />
|
|
<text x="838.85" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (5 samples, 0.03%)</title><rect x="355.0" y="261" width="0.3" height="15.0" fill="rgb(213,228,13)" rx="2" ry="2" />
|
|
<text x="358.00" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (4 samples, 0.02%)</title><rect x="383.2" y="357" width="0.2" height="15.0" fill="rgb(228,170,49)" rx="2" ry="2" />
|
|
<text x="386.21" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_copy_from_user (2 samples, 0.01%)</title><rect x="782.6" y="485" width="0.1" height="15.0" fill="rgb(242,53,43)" rx="2" ry="2" />
|
|
<text x="785.62" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (10 samples, 0.05%)</title><rect x="382.6" y="421" width="0.6" height="15.0" fill="rgb(231,158,29)" rx="2" ry="2" />
|
|
<text x="385.62" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (28 samples, 0.14%)</title><rect x="840.4" y="581" width="1.6" height="15.0" fill="rgb(205,116,46)" rx="2" ry="2" />
|
|
<text x="843.40" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="610.8" y="197" width="0.1" height="15.0" fill="rgb(244,43,48)" rx="2" ry="2" />
|
|
<text x="613.77" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="467.2" y="373" width="0.2" height="15.0" fill="rgb(228,79,50)" rx="2" ry="2" />
|
|
<text x="470.25" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_trunk_cache (6 samples, 0.03%)</title><rect x="563.6" y="325" width="0.4" height="15.0" fill="rgb(248,95,41)" rx="2" ry="2" />
|
|
<text x="566.62" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (3 samples, 0.02%)</title><rect x="303.5" y="293" width="0.2" height="15.0" fill="rgb(232,187,33)" rx="2" ry="2" />
|
|
<text x="306.48" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="10.7" y="533" width="0.1" height="15.0" fill="rgb(208,131,8)" rx="2" ry="2" />
|
|
<text x="13.71" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_record (2 samples, 0.01%)</title><rect x="561.1" y="341" width="0.1" height="15.0" fill="rgb(248,222,11)" rx="2" ry="2" />
|
|
<text x="564.08" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_port@plt (2 samples, 0.01%)</title><rect x="697.9" y="357" width="0.1" height="15.0" fill="rgb(206,224,8)" rx="2" ry="2" />
|
|
<text x="700.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (5 samples, 0.03%)</title><rect x="585.0" y="341" width="0.3" height="15.0" fill="rgb(237,162,36)" rx="2" ry="2" />
|
|
<text x="588.04" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_sse42 (15 samples, 0.08%)</title><rect x="521.4" y="245" width="0.8" height="15.0" fill="rgb(214,29,29)" rx="2" ry="2" />
|
|
<text x="524.36" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (15 samples, 0.08%)</title><rect x="820.7" y="565" width="0.9" height="15.0" fill="rgb(224,165,44)" rx="2" ry="2" />
|
|
<text x="823.69" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (530 samples, 2.65%)</title><rect x="317.2" y="229" width="31.2" height="15.0" fill="rgb(234,48,38)" rx="2" ry="2" />
|
|
<text x="320.17" y="239.5" >[f..</text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log_level_enabled (2 samples, 0.01%)</title><rect x="300.6" y="213" width="0.1" height="15.0" fill="rgb(217,67,48)" rx="2" ry="2" />
|
|
<text x="303.59" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (12 samples, 0.06%)</title><rect x="524.3" y="293" width="0.7" height="15.0" fill="rgb(220,124,36)" rx="2" ry="2" />
|
|
<text x="527.31" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="823.8" y="405" width="0.1" height="15.0" fill="rgb(245,69,40)" rx="2" ry="2" />
|
|
<text x="826.75" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>STRATUM_ENTRY (3 samples, 0.02%)</title><rect x="565.0" y="357" width="0.2" height="15.0" fill="rgb(207,34,38)" rx="2" ry="2" />
|
|
<text x="568.03" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (28 samples, 0.14%)</title><rect x="840.4" y="549" width="1.6" height="15.0" fill="rgb(212,23,39)" rx="2" ry="2" />
|
|
<text x="843.40" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_add (46 samples, 0.23%)</title><rect x="627.9" y="421" width="2.7" height="15.0" fill="rgb(206,162,49)" rx="2" ry="2" />
|
|
<text x="630.88" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (16 samples, 0.08%)</title><rect x="481.8" y="373" width="0.9" height="15.0" fill="rgb(218,25,47)" rx="2" ry="2" />
|
|
<text x="484.76" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (12 samples, 0.06%)</title><rect x="379.2" y="309" width="0.7" height="15.0" fill="rgb(231,114,13)" rx="2" ry="2" />
|
|
<text x="382.20" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (15 samples, 0.08%)</title><rect x="694.7" y="357" width="0.9" height="15.0" fill="rgb(243,172,14)" rx="2" ry="2" />
|
|
<text x="697.69" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>send_log_by_type (7 samples, 0.04%)</title><rect x="673.9" y="325" width="0.4" height="15.0" fill="rgb(224,30,30)" rx="2" ry="2" />
|
|
<text x="676.92" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (3 samples, 0.02%)</title><rect x="519.8" y="309" width="0.1" height="15.0" fill="rgb(249,11,13)" rx="2" ry="2" />
|
|
<text x="522.77" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="10.7" y="629" width="0.1" height="15.0" fill="rgb(247,54,1)" rx="2" ry="2" />
|
|
<text x="13.71" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (7 samples, 0.04%)</title><rect x="380.2" y="533" width="0.4" height="15.0" fill="rgb(245,122,23)" rx="2" ry="2" />
|
|
<text x="383.20" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (12 samples, 0.06%)</title><rect x="778.2" y="405" width="0.7" height="15.0" fill="rgb(205,216,6)" rx="2" ry="2" />
|
|
<text x="781.20" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="827.5" y="421" width="0.5" height="15.0" fill="rgb(227,40,34)" rx="2" ry="2" />
|
|
<text x="830.53" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (18 samples, 0.09%)</title><rect x="576.0" y="341" width="1.0" height="15.0" fill="rgb(236,83,5)" rx="2" ry="2" />
|
|
<text x="578.95" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="315.5" y="197" width="0.1" height="15.0" fill="rgb(248,54,51)" rx="2" ry="2" />
|
|
<text x="318.46" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (888 samples, 4.44%)</title><rect x="304.8" y="437" width="52.4" height="15.0" fill="rgb(235,213,53)" rx="2" ry="2" />
|
|
<text x="307.78" y="447.5" >call_..</text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (30 samples, 0.15%)</title><rect x="562.3" y="341" width="1.8" height="15.0" fill="rgb(217,161,30)" rx="2" ry="2" />
|
|
<text x="565.32" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (55 samples, 0.28%)</title><rect x="380.7" y="597" width="3.2" height="15.0" fill="rgb(215,125,40)" rx="2" ry="2" />
|
|
<text x="383.67" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="383.2" y="437" width="0.2" height="15.0" fill="rgb(253,33,40)" rx="2" ry="2" />
|
|
<text x="386.21" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="823.8" y="357" width="0.1" height="15.0" fill="rgb(219,117,34)" rx="2" ry="2" />
|
|
<text x="826.75" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (25 samples, 0.13%)</title><rect x="822.1" y="437" width="1.5" height="15.0" fill="rgb(238,63,4)" rx="2" ry="2" />
|
|
<text x="825.10" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.04%)</title><rect x="610.3" y="245" width="0.4" height="15.0" fill="rgb(248,42,13)" rx="2" ry="2" />
|
|
<text x="613.30" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (57 samples, 0.29%)</title><rect x="830.5" y="581" width="3.4" height="15.0" fill="rgb(228,39,5)" rx="2" ry="2" />
|
|
<text x="833.54" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_ssse3_back (2 samples, 0.01%)</title><rect x="563.9" y="309" width="0.1" height="15.0" fill="rgb(238,58,44)" rx="2" ry="2" />
|
|
<text x="566.85" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="460.1" y="421" width="0.1" height="15.0" fill="rgb(225,8,17)" rx="2" ry="2" />
|
|
<text x="463.11" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (22 samples, 0.11%)</title><rect x="300.9" y="373" width="1.3" height="15.0" fill="rgb(249,56,42)" rx="2" ry="2" />
|
|
<text x="303.88" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="828.2" y="389" width="0.2" height="15.0" fill="rgb(244,70,28)" rx="2" ry="2" />
|
|
<text x="831.24" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (3 samples, 0.02%)</title><rect x="675.5" y="325" width="0.2" height="15.0" fill="rgb(221,208,13)" rx="2" ry="2" />
|
|
<text x="678.51" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (49 samples, 0.25%)</title><rect x="465.7" y="421" width="2.8" height="15.0" fill="rgb(251,184,51)" rx="2" ry="2" />
|
|
<text x="468.65" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (3 samples, 0.02%)</title><rect x="304.1" y="325" width="0.2" height="15.0" fill="rgb(220,77,35)" rx="2" ry="2" />
|
|
<text x="307.13" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dns.so] (2 samples, 0.01%)</title><rect x="833.9" y="613" width="0.1" height="15.0" fill="rgb(253,93,20)" rx="2" ry="2" />
|
|
<text x="836.90" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_mtod (2 samples, 0.01%)</title><rect x="723.7" y="565" width="0.1" height="15.0" fill="rgb(227,134,17)" rx="2" ry="2" />
|
|
<text x="726.72" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.03%)</title><rect x="298.3" y="261" width="0.3" height="15.0" fill="rgb(235,129,27)" rx="2" ry="2" />
|
|
<text x="301.29" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="827.3" y="405" width="0.2" height="15.0" fill="rgb(239,66,35)" rx="2" ry="2" />
|
|
<text x="830.30" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_search (4 samples, 0.02%)</title><rect x="686.0" y="421" width="0.3" height="15.0" fill="rgb(252,115,7)" rx="2" ry="2" />
|
|
<text x="689.01" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="822.2" y="213" width="0.1" height="15.0" fill="rgb(249,56,39)" rx="2" ry="2" />
|
|
<text x="825.22" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="609.0" y="277" width="0.1" height="15.0" fill="rgb(205,177,24)" rx="2" ry="2" />
|
|
<text x="612.00" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="509.3" y="405" width="0.1" height="15.0" fill="rgb(235,202,50)" rx="2" ry="2" />
|
|
<text x="512.32" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (42 samples, 0.21%)</title><rect x="824.0" y="341" width="2.5" height="15.0" fill="rgb(232,30,51)" rx="2" ry="2" />
|
|
<text x="826.99" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (10 samples, 0.05%)</title><rect x="315.0" y="261" width="0.6" height="15.0" fill="rgb(207,191,43)" rx="2" ry="2" />
|
|
<text x="317.99" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (3 samples, 0.02%)</title><rect x="367.5" y="325" width="0.2" height="15.0" fill="rgb(232,204,17)" rx="2" ry="2" />
|
|
<text x="370.51" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_record_tcpall_entry (6 samples, 0.03%)</title><rect x="675.3" y="357" width="0.4" height="15.0" fill="rgb(216,149,19)" rx="2" ry="2" />
|
|
<text x="678.33" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (5 samples, 0.03%)</title><rect x="589.6" y="357" width="0.3" height="15.0" fill="rgb(246,41,24)" rx="2" ry="2" />
|
|
<text x="592.64" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="840.4" y="405" width="0.1" height="15.0" fill="rgb(235,220,45)" rx="2" ry="2" />
|
|
<text x="843.40" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[capture_packet_plug.so] (5 samples, 0.03%)</title><rect x="640.4" y="341" width="0.3" height="15.0" fill="rgb(222,116,51)" rx="2" ry="2" />
|
|
<text x="643.40" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_spin_lock (6 samples, 0.03%)</title><rect x="407.0" y="613" width="0.3" height="15.0" fill="rgb(220,6,38)" rx="2" ry="2" />
|
|
<text x="409.99" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (5 samples, 0.03%)</title><rect x="574.9" y="325" width="0.3" height="15.0" fill="rgb(220,3,24)" rx="2" ry="2" />
|
|
<text x="577.95" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_string (3 samples, 0.02%)</title><rect x="378.1" y="341" width="0.2" height="15.0" fill="rgb(235,129,38)" rx="2" ry="2" />
|
|
<text x="381.08" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (2 samples, 0.01%)</title><rect x="363.4" y="357" width="0.1" height="15.0" fill="rgb(247,17,35)" rx="2" ry="2" />
|
|
<text x="366.38" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_payload (7 samples, 0.04%)</title><rect x="610.7" y="261" width="0.4" height="15.0" fill="rgb(206,126,14)" rx="2" ry="2" />
|
|
<text x="613.71" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SESSION_MARKER_RECORD_TCP_ENTRY (20 samples, 0.10%)</title><rect x="348.4" y="405" width="1.2" height="15.0" fill="rgb(208,218,49)" rx="2" ry="2" />
|
|
<text x="351.45" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>schedule (16 samples, 0.08%)</title><rect x="784.3" y="469" width="1.0" height="15.0" fill="rgb(222,75,5)" rx="2" ry="2" />
|
|
<text x="787.33" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="277" width="0.3" height="15.0" fill="rgb(205,24,9)" rx="2" ry="2" />
|
|
<text x="829.71" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_propluginfo_plugid (2 samples, 0.01%)</title><rect x="558.2" y="213" width="0.2" height="15.0" fill="rgb(249,125,13)" rx="2" ry="2" />
|
|
<text x="561.25" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (9 samples, 0.05%)</title><rect x="820.7" y="421" width="0.6" height="15.0" fill="rgb(212,97,27)" rx="2" ry="2" />
|
|
<text x="823.74" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_ipv4 (2 samples, 0.01%)</title><rect x="831.7" y="501" width="0.1" height="15.0" fill="rgb(250,162,22)" rx="2" ry="2" />
|
|
<text x="834.72" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (7 samples, 0.04%)</title><rect x="361.8" y="277" width="0.4" height="15.0" fill="rgb(233,208,42)" rx="2" ry="2" />
|
|
<text x="364.79" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>new_sync_write (2 samples, 0.01%)</title><rect x="674.2" y="101" width="0.1" height="15.0" fill="rgb(236,183,47)" rx="2" ry="2" />
|
|
<text x="677.15" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="838.0" y="453" width="0.3" height="15.0" fill="rgb(249,125,9)" rx="2" ry="2" />
|
|
<text x="840.98" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (4 samples, 0.02%)</title><rect x="523.9" y="261" width="0.2" height="15.0" fill="rgb(214,149,26)" rx="2" ry="2" />
|
|
<text x="526.90" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_destroy_stream (2 samples, 0.01%)</title><rect x="520.1" y="325" width="0.1" height="15.0" fill="rgb(228,174,45)" rx="2" ry="2" />
|
|
<text x="523.12" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (5 samples, 0.03%)</title><rect x="459.6" y="437" width="0.3" height="15.0" fill="rgb(211,69,9)" rx="2" ry="2" />
|
|
<text x="462.63" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (12 samples, 0.06%)</title><rect x="376.7" y="325" width="0.7" height="15.0" fill="rgb(211,71,29)" rx="2" ry="2" />
|
|
<text x="379.66" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="583.6" y="293" width="0.2" height="15.0" fill="rgb(241,188,29)" rx="2" ry="2" />
|
|
<text x="586.56" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (2 samples, 0.01%)</title><rect x="823.6" y="437" width="0.1" height="15.0" fill="rgb(250,43,6)" rx="2" ry="2" />
|
|
<text x="826.58" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (13 samples, 0.07%)</title><rect x="779.3" y="453" width="0.7" height="15.0" fill="rgb(227,8,9)" rx="2" ry="2" />
|
|
<text x="782.26" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_overlay_ipv4 (22 samples, 0.11%)</title><rect x="719.8" y="517" width="1.3" height="15.0" fill="rgb(221,64,10)" rx="2" ry="2" />
|
|
<text x="722.77" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="681.4" y="309" width="0.2" height="15.0" fill="rgb(245,204,21)" rx="2" ry="2" />
|
|
<text x="684.41" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (25 samples, 0.13%)</title><rect x="840.6" y="453" width="1.4" height="15.0" fill="rgb(234,22,31)" rx="2" ry="2" />
|
|
<text x="843.57" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="840.4" y="357" width="0.1" height="15.0" fill="rgb(210,130,0)" rx="2" ry="2" />
|
|
<text x="843.40" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_send_burst (389 samples, 1.95%)</title><rect x="383.9" y="613" width="23.0" height="15.0" fill="rgb(216,82,12)" rx="2" ry="2" />
|
|
<text x="386.92" y="623.5" >m..</text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___printf_fp_l (5 samples, 0.03%)</title><rect x="778.6" y="341" width="0.3" height="15.0" fill="rgb(241,216,15)" rx="2" ry="2" />
|
|
<text x="781.61" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="700.2" y="197" width="0.1" height="15.0" fill="rgb(251,106,34)" rx="2" ry="2" />
|
|
<text x="703.18" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (14 samples, 0.07%)</title><rect x="841.2" y="261" width="0.8" height="15.0" fill="rgb(250,45,24)" rx="2" ry="2" />
|
|
<text x="844.16" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (2 samples, 0.01%)</title><rect x="681.8" y="309" width="0.1" height="15.0" fill="rgb(215,57,46)" rx="2" ry="2" />
|
|
<text x="684.82" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="458.2" y="469" width="0.1" height="15.0" fill="rgb(221,1,23)" rx="2" ry="2" />
|
|
<text x="461.22" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="361.4" y="373" width="0.3" height="15.0" fill="rgb(214,70,31)" rx="2" ry="2" />
|
|
<text x="364.43" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (3 samples, 0.02%)</title><rect x="840.8" y="421" width="0.2" height="15.0" fill="rgb(208,106,51)" rx="2" ry="2" />
|
|
<text x="843.81" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="836.4" y="261" width="0.1" height="15.0" fill="rgb(240,124,17)" rx="2" ry="2" />
|
|
<text x="839.38" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="708.6" y="309" width="0.1" height="15.0" fill="rgb(238,195,6)" rx="2" ry="2" />
|
|
<text x="711.56" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (3 samples, 0.02%)</title><rect x="828.2" y="373" width="0.2" height="15.0" fill="rgb(223,141,34)" rx="2" ry="2" />
|
|
<text x="831.24" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_quic_plug_entry (2 samples, 0.01%)</title><rect x="480.7" y="309" width="0.1" height="15.0" fill="rgb(211,210,34)" rx="2" ry="2" />
|
|
<text x="483.70" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (4 samples, 0.02%)</title><rect x="828.0" y="517" width="0.2" height="15.0" fill="rgb(217,137,8)" rx="2" ry="2" />
|
|
<text x="831.00" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.03%)</title><rect x="838.6" y="597" width="0.3" height="15.0" fill="rgb(250,149,42)" rx="2" ry="2" />
|
|
<text x="841.63" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (15 samples, 0.08%)</title><rect x="820.7" y="517" width="0.9" height="15.0" fill="rgb(227,212,48)" rx="2" ry="2" />
|
|
<text x="823.69" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (8 samples, 0.04%)</title><rect x="820.8" y="373" width="0.5" height="15.0" fill="rgb(215,117,3)" rx="2" ry="2" />
|
|
<text x="823.80" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>DTLS_ENTRY (3 samples, 0.02%)</title><rect x="698.0" y="373" width="0.2" height="15.0" fill="rgb(243,183,48)" rx="2" ry="2" />
|
|
<text x="700.99" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (72 samples, 0.36%)</title><rect x="357.2" y="469" width="4.2" height="15.0" fill="rgb(241,24,31)" rx="2" ry="2" />
|
|
<text x="360.18" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (2 samples, 0.01%)</title><rect x="605.9" y="341" width="0.1" height="15.0" fill="rgb(207,99,49)" rx="2" ry="2" />
|
|
<text x="608.93" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="290.7" y="581" width="0.1" height="15.0" fill="rgb(231,44,54)" rx="2" ry="2" />
|
|
<text x="293.67" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="838.7" y="165" width="0.2" height="15.0" fill="rgb(217,102,12)" rx="2" ry="2" />
|
|
<text x="841.74" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_next (2 samples, 0.01%)</title><rect x="486.3" y="485" width="0.1" height="15.0" fill="rgb(227,138,51)" rx="2" ry="2" />
|
|
<text x="489.31" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="826.1" y="149" width="0.4" height="15.0" fill="rgb(247,38,36)" rx="2" ry="2" />
|
|
<text x="829.06" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__localeconv (2 samples, 0.01%)</title><rect x="707.8" y="293" width="0.2" height="15.0" fill="rgb(242,193,10)" rx="2" ry="2" />
|
|
<text x="710.85" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="826.2" y="101" width="0.3" height="15.0" fill="rgb(250,216,38)" rx="2" ry="2" />
|
|
<text x="829.17" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="462.8" y="437" width="0.2" height="15.0" fill="rgb(247,107,6)" rx="2" ry="2" />
|
|
<text x="465.76" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (2 samples, 0.01%)</title><rect x="288.3" y="517" width="0.1" height="15.0" fill="rgb(227,125,0)" rx="2" ry="2" />
|
|
<text x="291.25" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (3 samples, 0.02%)</title><rect x="367.5" y="309" width="0.2" height="15.0" fill="rgb(231,221,45)" rx="2" ry="2" />
|
|
<text x="370.51" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="828.6" y="245" width="0.4" height="15.0" fill="rgb(232,166,23)" rx="2" ry="2" />
|
|
<text x="831.59" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (93 samples, 0.47%)</title><rect x="821.6" y="613" width="5.5" height="15.0" fill="rgb(237,111,37)" rx="2" ry="2" />
|
|
<text x="824.57" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="776.1" y="517" width="0.1" height="15.0" fill="rgb(208,201,11)" rx="2" ry="2" />
|
|
<text x="779.13" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (14 samples, 0.07%)</title><rect x="612.2" y="261" width="0.9" height="15.0" fill="rgb(208,17,40)" rx="2" ry="2" />
|
|
<text x="615.25" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="284.5" y="549" width="0.3" height="15.0" fill="rgb(215,227,8)" rx="2" ry="2" />
|
|
<text x="287.54" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="356.9" y="309" width="0.1" height="15.0" fill="rgb(212,28,49)" rx="2" ry="2" />
|
|
<text x="359.89" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (31 samples, 0.16%)</title><rect x="361.7" y="421" width="1.8" height="15.0" fill="rgb(224,174,46)" rx="2" ry="2" />
|
|
<text x="364.67" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (3 samples, 0.02%)</title><rect x="465.8" y="325" width="0.2" height="15.0" fill="rgb(223,148,42)" rx="2" ry="2" />
|
|
<text x="468.83" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vfs_write (7 samples, 0.04%)</title><rect x="572.5" y="101" width="0.4" height="15.0" fill="rgb(233,33,50)" rx="2" ry="2" />
|
|
<text x="575.47" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (4 samples, 0.02%)</title><rect x="468.3" y="389" width="0.2" height="15.0" fill="rgb(216,31,38)" rx="2" ry="2" />
|
|
<text x="471.31" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (2 samples, 0.01%)</title><rect x="821.6" y="453" width="0.1" height="15.0" fill="rgb(236,67,7)" rx="2" ry="2" />
|
|
<text x="824.63" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (8 samples, 0.04%)</title><rect x="383.4" y="389" width="0.5" height="15.0" fill="rgb(244,125,41)" rx="2" ry="2" />
|
|
<text x="386.45" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (20 samples, 0.10%)</title><rect x="348.4" y="373" width="1.2" height="15.0" fill="rgb(248,79,32)" rx="2" ry="2" />
|
|
<text x="351.45" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (4 samples, 0.02%)</title><rect x="828.0" y="485" width="0.2" height="15.0" fill="rgb(215,228,3)" rx="2" ry="2" />
|
|
<text x="831.00" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>DNS_UDP_ENTRY (2 samples, 0.01%)</title><rect x="697.9" y="373" width="0.1" height="15.0" fill="rgb(239,114,52)" rx="2" ry="2" />
|
|
<text x="700.88" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_ipv4 (3 samples, 0.02%)</title><rect x="378.3" y="341" width="0.1" height="15.0" fill="rgb(253,45,16)" rx="2" ry="2" />
|
|
<text x="381.25" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.02%)</title><rect x="827.1" y="453" width="0.2" height="15.0" fill="rgb(220,222,28)" rx="2" ry="2" />
|
|
<text x="830.12" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (3 samples, 0.02%)</title><rect x="681.2" y="293" width="0.2" height="15.0" fill="rgb(232,173,14)" rx="2" ry="2" />
|
|
<text x="684.17" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="376.2" y="213" width="0.1" height="15.0" fill="rgb(219,92,19)" rx="2" ry="2" />
|
|
<text x="379.19" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="362.6" y="277" width="0.1" height="15.0" fill="rgb(212,200,49)" rx="2" ry="2" />
|
|
<text x="365.61" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_hit_path_list (4 samples, 0.02%)</title><rect x="302.8" y="357" width="0.3" height="15.0" fill="rgb(216,215,6)" rx="2" ry="2" />
|
|
<text x="305.83" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="828.4" y="341" width="0.1" height="15.0" fill="rgb(215,141,1)" rx="2" ry="2" />
|
|
<text x="831.42" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="779.6" y="309" width="0.1" height="15.0" fill="rgb(226,185,17)" rx="2" ry="2" />
|
|
<text x="782.61" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="821.3" y="277" width="0.2" height="15.0" fill="rgb(221,91,25)" rx="2" ry="2" />
|
|
<text x="824.28" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_integer (2 samples, 0.01%)</title><rect x="368.5" y="277" width="0.1" height="15.0" fill="rgb(248,177,50)" rx="2" ry="2" />
|
|
<text x="371.51" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (60 samples, 0.30%)</title><rect x="611.2" y="373" width="3.6" height="15.0" fill="rgb(219,72,13)" rx="2" ry="2" />
|
|
<text x="614.24" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (3 samples, 0.02%)</title><rect x="378.5" y="373" width="0.2" height="15.0" fill="rgb(236,166,29)" rx="2" ry="2" />
|
|
<text x="381.55" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (7 samples, 0.04%)</title><rect x="494.0" y="469" width="0.4" height="15.0" fill="rgb(239,107,10)" rx="2" ry="2" />
|
|
<text x="496.98" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="350.0" y="293" width="0.2" height="15.0" fill="rgb(231,76,19)" rx="2" ry="2" />
|
|
<text x="353.04" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (42 samples, 0.21%)</title><rect x="824.0" y="261" width="2.5" height="15.0" fill="rgb(248,60,30)" rx="2" ry="2" />
|
|
<text x="826.99" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_dynamic_read_htable_item_cnt (2 samples, 0.01%)</title><rect x="659.7" y="325" width="0.1" height="15.0" fill="rgb(215,38,15)" rx="2" ry="2" />
|
|
<text x="662.69" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (18 samples, 0.09%)</title><rect x="362.3" y="357" width="1.1" height="15.0" fill="rgb(252,118,22)" rx="2" ry="2" />
|
|
<text x="365.32" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>EC_GROUP_new_by_curve_name (9 samples, 0.05%)</title><rect x="822.9" y="229" width="0.6" height="15.0" fill="rgb(232,147,30)" rx="2" ry="2" />
|
|
<text x="825.93" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (121 samples, 0.61%)</title><rect x="519.0" y="357" width="7.1" height="15.0" fill="rgb(234,155,37)" rx="2" ry="2" />
|
|
<text x="522.00" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (39 samples, 0.20%)</title><rect x="480.4" y="405" width="2.3" height="15.0" fill="rgb(254,76,48)" rx="2" ry="2" />
|
|
<text x="483.41" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (4 samples, 0.02%)</title><rect x="708.0" y="293" width="0.2" height="15.0" fill="rgb(219,193,52)" rx="2" ry="2" />
|
|
<text x="710.97" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="833.2" y="485" width="0.1" height="15.0" fill="rgb(208,77,54)" rx="2" ry="2" />
|
|
<text x="836.20" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify (37 samples, 0.19%)</title><rect x="685.9" y="437" width="2.2" height="15.0" fill="rgb(245,187,39)" rx="2" ry="2" />
|
|
<text x="688.90" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (8 samples, 0.04%)</title><rect x="297.3" y="581" width="0.5" height="15.0" fill="rgb(225,104,33)" rx="2" ry="2" />
|
|
<text x="300.34" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (4 samples, 0.02%)</title><rect x="630.3" y="373" width="0.2" height="15.0" fill="rgb(233,174,4)" rx="2" ry="2" />
|
|
<text x="633.30" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="304.0" y="389" width="0.1" height="15.0" fill="rgb(232,82,41)" rx="2" ry="2" />
|
|
<text x="306.95" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_record_tcpall_entry (13 samples, 0.07%)</title><rect x="779.3" y="469" width="0.7" height="15.0" fill="rgb(222,205,36)" rx="2" ry="2" />
|
|
<text x="782.26" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (24 samples, 0.12%)</title><rect x="822.1" y="389" width="1.4" height="15.0" fill="rgb(235,25,35)" rx="2" ry="2" />
|
|
<text x="825.10" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="303.1" y="309" width="0.3" height="15.0" fill="rgb(235,29,41)" rx="2" ry="2" />
|
|
<text x="306.07" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="840.4" y="421" width="0.1" height="15.0" fill="rgb(208,1,50)" rx="2" ry="2" />
|
|
<text x="843.40" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_recv_burst (390 samples, 1.95%)</title><rect x="797.6" y="549" width="23.0" height="15.0" fill="rgb(210,67,7)" rx="2" ry="2" />
|
|
<text x="800.55" y="559.5" >m..</text>
|
|
</g>
|
|
<g >
|
|
<title>[unknown] (6 samples, 0.03%)</title><rect x="407.0" y="629" width="0.3" height="15.0" fill="rgb(239,62,45)" rx="2" ry="2" />
|
|
<text x="409.99" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.03%)</title><rect x="838.0" y="325" width="0.3" height="15.0" fill="rgb(232,23,15)" rx="2" ry="2" />
|
|
<text x="841.04" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_user_generic_unrolled (4 samples, 0.02%)</title><rect x="782.8" y="485" width="0.2" height="15.0" fill="rgb(244,24,48)" rx="2" ry="2" />
|
|
<text x="785.80" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (4 samples, 0.02%)</title><rect x="467.7" y="293" width="0.2" height="15.0" fill="rgb(225,83,46)" rx="2" ry="2" />
|
|
<text x="470.66" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (3 samples, 0.02%)</title><rect x="586.3" y="277" width="0.2" height="15.0" fill="rgb(251,69,45)" rx="2" ry="2" />
|
|
<text x="589.34" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="383.2" y="309" width="0.1" height="15.0" fill="rgb(219,95,43)" rx="2" ry="2" />
|
|
<text x="386.21" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="509.7" y="325" width="0.4" height="15.0" fill="rgb(237,74,19)" rx="2" ry="2" />
|
|
<text x="512.68" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (530 samples, 2.65%)</title><rect x="317.2" y="261" width="31.2" height="15.0" fill="rgb(223,105,6)" rx="2" ry="2" />
|
|
<text x="320.17" y="271.5" >pl..</text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (6 samples, 0.03%)</title><rect x="710.5" y="357" width="0.4" height="15.0" fill="rgb(251,15,45)" rx="2" ry="2" />
|
|
<text x="713.51" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_integer (4 samples, 0.02%)</title><rect x="356.4" y="357" width="0.3" height="15.0" fill="rgb(206,87,39)" rx="2" ry="2" />
|
|
<text x="359.42" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (5 samples, 0.03%)</title><rect x="560.3" y="309" width="0.3" height="15.0" fill="rgb(210,29,18)" rx="2" ry="2" />
|
|
<text x="563.31" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (138 samples, 0.69%)</title><rect x="652.3" y="373" width="8.2" height="15.0" fill="rgb(231,31,13)" rx="2" ry="2" />
|
|
<text x="655.32" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="526.9" y="229" width="0.2" height="15.0" fill="rgb(233,215,12)" rx="2" ry="2" />
|
|
<text x="529.91" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (8 samples, 0.04%)</title><rect x="383.4" y="437" width="0.5" height="15.0" fill="rgb(253,0,44)" rx="2" ry="2" />
|
|
<text x="386.45" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (17 samples, 0.09%)</title><rect x="363.5" y="437" width="1.0" height="15.0" fill="rgb(252,193,18)" rx="2" ry="2" />
|
|
<text x="366.50" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ftp.so] (5 samples, 0.03%)</title><rect x="352.9" y="389" width="0.3" height="15.0" fill="rgb(251,126,35)" rx="2" ry="2" />
|
|
<text x="355.93" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (7 samples, 0.04%)</title><rect x="828.6" y="437" width="0.4" height="15.0" fill="rgb(247,174,15)" rx="2" ry="2" />
|
|
<text x="831.59" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_ipv4 (2 samples, 0.01%)</title><rect x="838.6" y="389" width="0.1" height="15.0" fill="rgb(212,154,16)" rx="2" ry="2" />
|
|
<text x="841.63" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="377.2" y="165" width="0.2" height="15.0" fill="rgb(205,44,44)" rx="2" ry="2" />
|
|
<text x="380.19" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SESSION_MARKER_RECORD_TCP_ENTRY (19 samples, 0.10%)</title><rect x="560.1" y="357" width="1.1" height="15.0" fill="rgb(240,60,49)" rx="2" ry="2" />
|
|
<text x="563.08" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="382.3" y="165" width="0.1" height="15.0" fill="rgb(217,197,51)" rx="2" ry="2" />
|
|
<text x="385.27" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (5 samples, 0.03%)</title><rect x="304.3" y="485" width="0.3" height="15.0" fill="rgb(205,172,38)" rx="2" ry="2" />
|
|
<text x="307.31" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_check (66 samples, 0.33%)</title><rect x="620.6" y="389" width="3.9" height="15.0" fill="rgb(243,129,13)" rx="2" ry="2" />
|
|
<text x="623.63" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (15 samples, 0.08%)</title><rect x="820.7" y="613" width="0.9" height="15.0" fill="rgb(251,58,24)" rx="2" ry="2" />
|
|
<text x="823.69" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="693.6" y="309" width="0.1" height="15.0" fill="rgb(254,173,27)" rx="2" ry="2" />
|
|
<text x="696.63" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (39 samples, 0.20%)</title><rect x="821.6" y="565" width="2.3" height="15.0" fill="rgb(213,36,12)" rx="2" ry="2" />
|
|
<text x="824.57" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MAIL_TCP_ENTRY (5 samples, 0.03%)</title><rect x="559.7" y="357" width="0.3" height="15.0" fill="rgb(224,136,22)" rx="2" ry="2" />
|
|
<text x="562.72" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cycle_pkt_dump_by_classify (7 samples, 0.04%)</title><rect x="439.1" y="549" width="0.4" height="15.0" fill="rgb(245,6,30)" rx="2" ry="2" />
|
|
<text x="442.10" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="367.5" y="373" width="0.2" height="15.0" fill="rgb(242,198,50)" rx="2" ry="2" />
|
|
<text x="370.51" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (5 samples, 0.03%)</title><rect x="660.5" y="373" width="0.3" height="15.0" fill="rgb(218,66,13)" rx="2" ry="2" />
|
|
<text x="663.46" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (4 samples, 0.02%)</title><rect x="836.6" y="293" width="0.3" height="15.0" fill="rgb(224,45,38)" rx="2" ry="2" />
|
|
<text x="839.62" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="455.3" y="453" width="0.1" height="15.0" fill="rgb(214,20,31)" rx="2" ry="2" />
|
|
<text x="458.27" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (27 samples, 0.14%)</title><rect x="609.5" y="309" width="1.6" height="15.0" fill="rgb(238,187,39)" rx="2" ry="2" />
|
|
<text x="612.53" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_zalloc (2 samples, 0.01%)</title><rect x="838.7" y="213" width="0.2" height="15.0" fill="rgb(215,181,25)" rx="2" ry="2" />
|
|
<text x="841.74" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (4 samples, 0.02%)</title><rect x="835.9" y="341" width="0.2" height="15.0" fill="rgb(228,66,28)" rx="2" ry="2" />
|
|
<text x="838.85" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (3 samples, 0.02%)</title><rect x="840.8" y="389" width="0.2" height="15.0" fill="rgb(215,26,34)" rx="2" ry="2" />
|
|
<text x="843.81" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (4 samples, 0.02%)</title><rect x="778.0" y="389" width="0.2" height="15.0" fill="rgb(205,167,15)" rx="2" ry="2" />
|
|
<text x="780.96" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (2 samples, 0.01%)</title><rect x="351.6" y="213" width="0.1" height="15.0" fill="rgb(234,144,16)" rx="2" ry="2" />
|
|
<text x="354.58" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (2 samples, 0.01%)</title><rect x="480.2" y="453" width="0.1" height="15.0" fill="rgb(235,96,16)" rx="2" ry="2" />
|
|
<text x="483.23" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="708.7" y="293" width="0.2" height="15.0" fill="rgb(246,185,39)" rx="2" ry="2" />
|
|
<text x="711.68" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (5 samples, 0.03%)</title><rect x="351.2" y="309" width="0.3" height="15.0" fill="rgb(244,143,9)" rx="2" ry="2" />
|
|
<text x="354.16" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ftp.so] (2 samples, 0.01%)</title><rect x="565.2" y="341" width="0.1" height="15.0" fill="rgb(217,25,54)" rx="2" ry="2" />
|
|
<text x="568.21" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="368.5" y="213" width="0.1" height="15.0" fill="rgb(233,110,8)" rx="2" ry="2" />
|
|
<text x="371.51" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (4 samples, 0.02%)</title><rect x="304.4" y="325" width="0.2" height="15.0" fill="rgb(245,4,13)" rx="2" ry="2" />
|
|
<text x="307.37" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_client_hello (3 samples, 0.02%)</title><rect x="352.8" y="357" width="0.1" height="15.0" fill="rgb(233,211,10)" rx="2" ry="2" />
|
|
<text x="355.76" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="325" width="0.1" height="15.0" fill="rgb(245,96,37)" rx="2" ry="2" />
|
|
<text x="13.71" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="840.4" y="277" width="0.1" height="15.0" fill="rgb(219,96,33)" rx="2" ry="2" />
|
|
<text x="843.40" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>layer_addr_ntop_r (2 samples, 0.01%)</title><rect x="828.4" y="405" width="0.1" height="15.0" fill="rgb(220,7,54)" rx="2" ry="2" />
|
|
<text x="831.42" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="697.2" y="309" width="0.1" height="15.0" fill="rgb(224,128,48)" rx="2" ry="2" />
|
|
<text x="700.23" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (4 samples, 0.02%)</title><rect x="284.1" y="453" width="0.3" height="15.0" fill="rgb(244,184,53)" rx="2" ry="2" />
|
|
<text x="287.12" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (10 samples, 0.05%)</title><rect x="382.6" y="405" width="0.6" height="15.0" fill="rgb(241,112,35)" rx="2" ry="2" />
|
|
<text x="385.62" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>parse_dns_protocol (65 samples, 0.33%)</title><rect x="830.3" y="629" width="3.8" height="15.0" fill="rgb(219,160,41)" rx="2" ry="2" />
|
|
<text x="833.31" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (3 samples, 0.02%)</title><rect x="302.2" y="277" width="0.2" height="15.0" fill="rgb(241,46,33)" rx="2" ry="2" />
|
|
<text x="305.18" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (3 samples, 0.02%)</title><rect x="365.3" y="325" width="0.1" height="15.0" fill="rgb(229,198,24)" rx="2" ry="2" />
|
|
<text x="368.27" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_fqdn_plugin_table_get_ex_data (3 samples, 0.02%)</title><rect x="821.9" y="277" width="0.2" height="15.0" fill="rgb(230,55,10)" rx="2" ry="2" />
|
|
<text x="824.92" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509_NAME_get_index_by_OBJ (2 samples, 0.01%)</title><rect x="352.3" y="309" width="0.2" height="15.0" fill="rgb(254,23,4)" rx="2" ry="2" />
|
|
<text x="355.34" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="821.3" y="309" width="0.2" height="15.0" fill="rgb(235,207,9)" rx="2" ry="2" />
|
|
<text x="824.28" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_lua_runtime_context_get (5 samples, 0.03%)</title><rect x="711.0" y="357" width="0.3" height="15.0" fill="rgb(243,74,43)" rx="2" ry="2" />
|
|
<text x="714.04" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="829.1" y="181" width="0.1" height="15.0" fill="rgb(221,9,17)" rx="2" ry="2" />
|
|
<text x="832.07" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="304.1" y="357" width="0.2" height="15.0" fill="rgb(245,42,33)" rx="2" ry="2" />
|
|
<text x="307.13" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="831.0" y="501" width="0.1" height="15.0" fill="rgb(227,132,50)" rx="2" ry="2" />
|
|
<text x="833.95" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="287.7" y="533" width="0.2" height="15.0" fill="rgb(247,149,8)" rx="2" ry="2" />
|
|
<text x="290.72" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_integer (9 samples, 0.05%)</title><rect x="318.3" y="181" width="0.5" height="15.0" fill="rgb(214,140,21)" rx="2" ry="2" />
|
|
<text x="321.29" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="309" width="0.1" height="15.0" fill="rgb(215,42,32)" rx="2" ry="2" />
|
|
<text x="13.71" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (153 samples, 0.77%)</title><rect x="305.9" y="357" width="9.0" height="15.0" fill="rgb(244,94,3)" rx="2" ry="2" />
|
|
<text x="308.90" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (21 samples, 0.11%)</title><rect x="283.2" y="485" width="1.3" height="15.0" fill="rgb(220,45,48)" rx="2" ry="2" />
|
|
<text x="286.24" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (31 samples, 0.16%)</title><rect x="361.7" y="437" width="1.8" height="15.0" fill="rgb(215,123,7)" rx="2" ry="2" />
|
|
<text x="364.67" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="456.0" y="405" width="0.2" height="15.0" fill="rgb(207,216,35)" rx="2" ry="2" />
|
|
<text x="458.97" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="357.3" y="357" width="0.1" height="15.0" fill="rgb(253,150,46)" rx="2" ry="2" />
|
|
<text x="360.30" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>schedule_idle (122 samples, 0.61%)</title><rect x="1182.5" y="565" width="7.2" height="15.0" fill="rgb(214,72,29)" rx="2" ry="2" />
|
|
<text x="1185.51" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="838.7" y="469" width="0.2" height="15.0" fill="rgb(252,2,45)" rx="2" ry="2" />
|
|
<text x="841.74" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_fqdn_plugin_table_get_ex_data (2 samples, 0.01%)</title><rect x="376.2" y="245" width="0.1" height="15.0" fill="rgb(218,222,44)" rx="2" ry="2" />
|
|
<text x="379.19" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="358.1" y="277" width="0.1" height="15.0" fill="rgb(217,34,35)" rx="2" ry="2" />
|
|
<text x="361.07" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (4 samples, 0.02%)</title><rect x="377.4" y="325" width="0.3" height="15.0" fill="rgb(226,98,12)" rx="2" ry="2" />
|
|
<text x="380.43" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (11 samples, 0.06%)</title><rect x="380.9" y="165" width="0.7" height="15.0" fill="rgb(230,136,41)" rx="2" ry="2" />
|
|
<text x="383.91" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (4 samples, 0.02%)</title><rect x="691.4" y="309" width="0.2" height="15.0" fill="rgb(213,226,37)" rx="2" ry="2" />
|
|
<text x="694.38" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (49 samples, 0.25%)</title><rect x="479.8" y="469" width="2.9" height="15.0" fill="rgb(251,194,0)" rx="2" ry="2" />
|
|
<text x="482.82" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (30 samples, 0.15%)</title><rect x="657.9" y="325" width="1.8" height="15.0" fill="rgb(233,123,47)" rx="2" ry="2" />
|
|
<text x="660.92" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (12 samples, 0.06%)</title><rect x="829.1" y="373" width="0.7" height="15.0" fill="rgb(234,122,6)" rx="2" ry="2" />
|
|
<text x="832.07" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="703.5" y="325" width="0.1" height="15.0" fill="rgb(230,162,27)" rx="2" ry="2" />
|
|
<text x="706.48" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (12 samples, 0.06%)</title><rect x="568.8" y="325" width="0.7" height="15.0" fill="rgb(242,105,33)" rx="2" ry="2" />
|
|
<text x="571.81" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (9 samples, 0.05%)</title><rect x="351.5" y="325" width="0.5" height="15.0" fill="rgb(220,77,34)" rx="2" ry="2" />
|
|
<text x="354.46" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (6 samples, 0.03%)</title><rect x="574.9" y="341" width="0.3" height="15.0" fill="rgb(210,109,36)" rx="2" ry="2" />
|
|
<text x="577.89" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="507.8" y="373" width="0.1" height="15.0" fill="rgb(246,46,46)" rx="2" ry="2" />
|
|
<text x="510.79" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (2 samples, 0.01%)</title><rect x="674.5" y="421" width="0.1" height="15.0" fill="rgb(218,151,31)" rx="2" ry="2" />
|
|
<text x="677.51" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stratum_identify (2 samples, 0.01%)</title><rect x="565.1" y="341" width="0.1" height="15.0" fill="rgb(243,191,21)" rx="2" ry="2" />
|
|
<text x="568.09" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (13 samples, 0.07%)</title><rect x="829.0" y="437" width="0.8" height="15.0" fill="rgb(241,199,16)" rx="2" ry="2" />
|
|
<text x="832.01" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>append_common_field (6 samples, 0.03%)</title><rect x="366.9" y="373" width="0.4" height="15.0" fill="rgb(241,15,51)" rx="2" ry="2" />
|
|
<text x="369.92" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (17 samples, 0.09%)</title><rect x="363.5" y="389" width="1.0" height="15.0" fill="rgb(223,206,30)" rx="2" ry="2" />
|
|
<text x="366.50" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (4 samples, 0.02%)</title><rect x="665.7" y="357" width="0.2" height="15.0" fill="rgb(206,51,51)" rx="2" ry="2" />
|
|
<text x="668.65" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.04%)</title><rect x="300.9" y="341" width="0.5" height="15.0" fill="rgb(224,79,40)" rx="2" ry="2" />
|
|
<text x="303.94" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="455.1" y="421" width="0.2" height="15.0" fill="rgb(249,18,7)" rx="2" ry="2" />
|
|
<text x="458.09" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="775.8" y="501" width="0.2" height="15.0" fill="rgb(221,226,11)" rx="2" ry="2" />
|
|
<text x="778.78" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="481.6" y="357" width="0.2" height="15.0" fill="rgb(247,63,27)" rx="2" ry="2" />
|
|
<text x="484.65" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="825.6" y="181" width="0.5" height="15.0" fill="rgb(245,47,45)" rx="2" ry="2" />
|
|
<text x="828.58" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_mutex_destroy (2 samples, 0.01%)</title><rect x="671.9" y="341" width="0.1" height="15.0" fill="rgb(221,41,26)" rx="2" ry="2" />
|
|
<text x="674.91" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (2 samples, 0.01%)</title><rect x="383.2" y="293" width="0.1" height="15.0" fill="rgb(246,79,45)" rx="2" ry="2" />
|
|
<text x="386.21" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="703.5" y="309" width="0.1" height="15.0" fill="rgb(234,212,47)" rx="2" ry="2" />
|
|
<text x="706.48" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>save_polling_inject_context (6 samples, 0.03%)</title><rect x="513.7" y="421" width="0.3" height="15.0" fill="rgb(221,56,24)" rx="2" ry="2" />
|
|
<text x="516.69" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (3 samples, 0.02%)</title><rect x="378.1" y="357" width="0.2" height="15.0" fill="rgb(214,181,38)" rx="2" ry="2" />
|
|
<text x="381.08" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (4 samples, 0.02%)</title><rect x="317.6" y="197" width="0.3" height="15.0" fill="rgb(252,39,18)" rx="2" ry="2" />
|
|
<text x="320.64" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (4 samples, 0.02%)</title><rect x="513.8" y="405" width="0.2" height="15.0" fill="rgb(254,165,5)" rx="2" ry="2" />
|
|
<text x="516.81" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="367.7" y="357" width="0.2" height="15.0" fill="rgb(223,67,14)" rx="2" ry="2" />
|
|
<text x="370.75" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (9 samples, 0.05%)</title><rect x="779.5" y="437" width="0.5" height="15.0" fill="rgb(241,85,22)" rx="2" ry="2" />
|
|
<text x="782.49" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (36 samples, 0.18%)</title><rect x="357.2" y="373" width="2.2" height="15.0" fill="rgb(214,111,28)" rx="2" ry="2" />
|
|
<text x="360.24" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="304.4" y="341" width="0.2" height="15.0" fill="rgb(224,77,10)" rx="2" ry="2" />
|
|
<text x="307.37" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5,664 samples, 28.33%)</title><rect x="426.2" y="581" width="334.2" height="15.0" fill="rgb(219,197,48)" rx="2" ry="2" />
|
|
<text x="429.17" y="591.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_app_properties_policy (8 samples, 0.04%)</title><rect x="305.4" y="277" width="0.5" height="15.0" fill="rgb(248,201,44)" rx="2" ry="2" />
|
|
<text x="308.43" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_app_id_policy (9 samples, 0.05%)</title><rect x="304.9" y="277" width="0.5" height="15.0" fill="rgb(243,109,48)" rx="2" ry="2" />
|
|
<text x="307.90" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (2 samples, 0.01%)</title><rect x="779.6" y="325" width="0.1" height="15.0" fill="rgb(238,1,27)" rx="2" ry="2" />
|
|
<text x="782.61" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_report_identify_result (12 samples, 0.06%)</title><rect x="298.1" y="325" width="0.7" height="15.0" fill="rgb(207,33,28)" rx="2" ry="2" />
|
|
<text x="301.05" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (10 samples, 0.05%)</title><rect x="367.7" y="469" width="0.6" height="15.0" fill="rgb(235,110,37)" rx="2" ry="2" />
|
|
<text x="370.69" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="455.1" y="405" width="0.2" height="15.0" fill="rgb(219,111,20)" rx="2" ry="2" />
|
|
<text x="458.15" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_nanosleep (36 samples, 0.18%)</title><rect x="783.2" y="485" width="2.1" height="15.0" fill="rgb(249,157,1)" rx="2" ry="2" />
|
|
<text x="786.15" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (2 samples, 0.01%)</title><rect x="715.6" y="373" width="0.2" height="15.0" fill="rgb(254,145,6)" rx="2" ry="2" />
|
|
<text x="718.64" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (40 samples, 0.20%)</title><rect x="480.3" y="453" width="2.4" height="15.0" fill="rgb(240,227,36)" rx="2" ry="2" />
|
|
<text x="483.35" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="485" width="0.1" height="15.0" fill="rgb(243,179,16)" rx="2" ry="2" />
|
|
<text x="13.71" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (644 samples, 3.22%)</title><rect x="678.5" y="453" width="38.0" height="15.0" fill="rgb(209,130,11)" rx="2" ry="2" />
|
|
<text x="681.52" y="463.5" >dea..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (10 samples, 0.05%)</title><rect x="525.3" y="245" width="0.6" height="15.0" fill="rgb(239,207,20)" rx="2" ry="2" />
|
|
<text x="528.32" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="514.1" y="405" width="0.1" height="15.0" fill="rgb(250,30,44)" rx="2" ry="2" />
|
|
<text x="517.10" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (4 samples, 0.02%)</title><rect x="778.2" y="357" width="0.2" height="15.0" fill="rgb(239,208,14)" rx="2" ry="2" />
|
|
<text x="781.20" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_topic_partition_available (2 samples, 0.01%)</title><rect x="610.9" y="197" width="0.2" height="15.0" fill="rgb(238,28,53)" rx="2" ry="2" />
|
|
<text x="613.95" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="828.6" y="181" width="0.4" height="15.0" fill="rgb(254,159,39)" rx="2" ry="2" />
|
|
<text x="831.59" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (13 samples, 0.07%)</title><rect x="296.2" y="597" width="0.7" height="15.0" fill="rgb(253,160,8)" rx="2" ry="2" />
|
|
<text x="299.16" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (11 samples, 0.06%)</title><rect x="461.9" y="453" width="0.6" height="15.0" fill="rgb(220,54,22)" rx="2" ry="2" />
|
|
<text x="464.88" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="380.2" y="389" width="0.4" height="15.0" fill="rgb(242,159,34)" rx="2" ry="2" />
|
|
<text x="383.20" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (70 samples, 0.35%)</title><rect x="298.1" y="421" width="4.1" height="15.0" fill="rgb(232,75,2)" rx="2" ry="2" />
|
|
<text x="301.05" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (5 samples, 0.03%)</title><rect x="838.6" y="613" width="0.3" height="15.0" fill="rgb(210,55,18)" rx="2" ry="2" />
|
|
<text x="841.63" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="829.8" y="325" width="0.2" height="15.0" fill="rgb(208,142,8)" rx="2" ry="2" />
|
|
<text x="832.77" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="826.1" y="181" width="0.4" height="15.0" fill="rgb(237,13,7)" rx="2" ry="2" />
|
|
<text x="829.06" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ksys_write (2 samples, 0.01%)</title><rect x="674.2" y="149" width="0.1" height="15.0" fill="rgb(220,70,20)" rx="2" ry="2" />
|
|
<text x="677.15" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__schedule (15 samples, 0.08%)</title><rect x="784.4" y="453" width="0.9" height="15.0" fill="rgb(234,50,16)" rx="2" ry="2" />
|
|
<text x="787.39" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__schedule (121 samples, 0.61%)</title><rect x="1182.6" y="549" width="7.1" height="15.0" fill="rgb(219,2,23)" rx="2" ry="2" />
|
|
<text x="1185.56" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="608.9" y="293" width="0.2" height="15.0" fill="rgb(249,130,9)" rx="2" ry="2" />
|
|
<text x="611.94" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_calloc (7 samples, 0.04%)</title><rect x="577.9" y="389" width="0.4" height="15.0" fill="rgb(225,44,1)" rx="2" ry="2" />
|
|
<text x="580.90" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_record_tcpall_entry (7 samples, 0.04%)</title><rect x="366.9" y="421" width="0.4" height="15.0" fill="rgb(244,197,16)" rx="2" ry="2" />
|
|
<text x="369.92" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (2 samples, 0.01%)</title><rect x="779.0" y="453" width="0.1" height="15.0" fill="rgb(215,214,25)" rx="2" ry="2" />
|
|
<text x="782.02" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (198 samples, 0.99%)</title><rect x="272.8" y="517" width="11.7" height="15.0" fill="rgb(206,37,0)" rx="2" ry="2" />
|
|
<text x="275.79" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="297.2" y="581" width="0.1" height="15.0" fill="rgb(228,12,33)" rx="2" ry="2" />
|
|
<text x="300.17" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_sse42 (14 samples, 0.07%)</title><rect x="522.2" y="261" width="0.9" height="15.0" fill="rgb(227,194,51)" rx="2" ry="2" />
|
|
<text x="525.25" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_obj2nid (2 samples, 0.01%)</title><rect x="827.9" y="245" width="0.1" height="15.0" fill="rgb(244,89,38)" rx="2" ry="2" />
|
|
<text x="830.89" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="350.6" y="245" width="0.2" height="15.0" fill="rgb(238,39,14)" rx="2" ry="2" />
|
|
<text x="353.57" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_tcpall_entry (2 samples, 0.01%)</title><rect x="779.1" y="469" width="0.2" height="15.0" fill="rgb(252,74,41)" rx="2" ry="2" />
|
|
<text x="782.14" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TCP_ENTRY (2 samples, 0.01%)</title><rect x="565.2" y="357" width="0.1" height="15.0" fill="rgb(206,216,49)" rx="2" ry="2" />
|
|
<text x="568.21" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (23 samples, 0.12%)</title><rect x="372.8" y="229" width="1.4" height="15.0" fill="rgb(218,18,6)" rx="2" ry="2" />
|
|
<text x="375.82" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="456.0" y="421" width="0.2" height="15.0" fill="rgb(214,211,15)" rx="2" ry="2" />
|
|
<text x="458.97" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (5 samples, 0.03%)</title><rect x="363.9" y="277" width="0.2" height="15.0" fill="rgb(225,207,18)" rx="2" ry="2" />
|
|
<text x="366.85" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="380.7" y="165" width="0.2" height="15.0" fill="rgb(222,17,1)" rx="2" ry="2" />
|
|
<text x="383.73" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>all (19,995 samples, 100%)</title><rect x="10.0" y="661" width="1180.0" height="15.0" fill="rgb(229,21,5)" rx="2" ry="2" />
|
|
<text x="13.00" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (6 samples, 0.03%)</title><rect x="378.4" y="389" width="0.4" height="15.0" fill="rgb(237,132,1)" rx="2" ry="2" />
|
|
<text x="381.43" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.02%)</title><rect x="828.4" y="533" width="0.2" height="15.0" fill="rgb(214,162,25)" rx="2" ry="2" />
|
|
<text x="831.42" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_malloc (2 samples, 0.01%)</title><rect x="837.4" y="245" width="0.1" height="15.0" fill="rgb(228,179,28)" rx="2" ry="2" />
|
|
<text x="840.39" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (3 samples, 0.02%)</title><rect x="379.0" y="309" width="0.2" height="15.0" fill="rgb(207,195,52)" rx="2" ry="2" />
|
|
<text x="382.02" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (8 samples, 0.04%)</title><rect x="312.6" y="181" width="0.4" height="15.0" fill="rgb(228,1,12)" rx="2" ry="2" />
|
|
<text x="315.57" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (36 samples, 0.18%)</title><rect x="821.6" y="485" width="2.2" height="15.0" fill="rgb(243,134,50)" rx="2" ry="2" />
|
|
<text x="824.63" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (5 samples, 0.03%)</title><rect x="466.9" y="325" width="0.3" height="15.0" fill="rgb(233,209,23)" rx="2" ry="2" />
|
|
<text x="469.89" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (2 samples, 0.01%)</title><rect x="567.3" y="341" width="0.2" height="15.0" fill="rgb(220,218,41)" rx="2" ry="2" />
|
|
<text x="570.34" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (8 samples, 0.04%)</title><rect x="305.0" y="229" width="0.4" height="15.0" fill="rgb(237,97,2)" rx="2" ry="2" />
|
|
<text x="307.96" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="670.7" y="341" width="0.1" height="15.0" fill="rgb(208,37,38)" rx="2" ry="2" />
|
|
<text x="673.67" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="361.4" y="277" width="0.2" height="15.0" fill="rgb(241,176,27)" rx="2" ry="2" />
|
|
<text x="364.43" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (6 samples, 0.03%)</title><rect x="838.0" y="373" width="0.3" height="15.0" fill="rgb(233,42,51)" rx="2" ry="2" />
|
|
<text x="840.98" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="681.2" y="277" width="0.2" height="15.0" fill="rgb(242,137,28)" rx="2" ry="2" />
|
|
<text x="684.17" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (42 samples, 0.21%)</title><rect x="824.0" y="293" width="2.5" height="15.0" fill="rgb(254,63,45)" rx="2" ry="2" />
|
|
<text x="826.99" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (13 samples, 0.07%)</title><rect x="357.8" y="309" width="0.7" height="15.0" fill="rgb(231,78,3)" rx="2" ry="2" />
|
|
<text x="360.77" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="381.8" y="213" width="0.5" height="15.0" fill="rgb(210,189,9)" rx="2" ry="2" />
|
|
<text x="384.79" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (28 samples, 0.14%)</title><rect x="840.4" y="533" width="1.6" height="15.0" fill="rgb(249,137,31)" rx="2" ry="2" />
|
|
<text x="843.40" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="830.0" y="325" width="0.2" height="15.0" fill="rgb(219,83,51)" rx="2" ry="2" />
|
|
<text x="832.95" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="829.2" y="165" width="0.6" height="15.0" fill="rgb(232,177,53)" rx="2" ry="2" />
|
|
<text x="832.18" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="304.3" y="549" width="0.3" height="15.0" fill="rgb(230,118,37)" rx="2" ry="2" />
|
|
<text x="307.31" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="823.8" y="501" width="0.1" height="15.0" fill="rgb(216,30,35)" rx="2" ry="2" />
|
|
<text x="826.75" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_polling (582 samples, 2.91%)</title><rect x="786.3" y="581" width="34.4" height="15.0" fill="rgb(249,114,3)" rx="2" ry="2" />
|
|
<text x="789.34" y="591.5" >st..</text>
|
|
</g>
|
|
<g >
|
|
<title>http_findLineEnd (3 samples, 0.02%)</title><rect x="559.1" y="277" width="0.2" height="15.0" fill="rgb(209,11,22)" rx="2" ry="2" />
|
|
<text x="562.07" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (142 samples, 0.71%)</title><rect x="306.4" y="277" width="8.4" height="15.0" fill="rgb(227,63,11)" rx="2" ry="2" />
|
|
<text x="309.43" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_polling_inject_context (23 samples, 0.12%)</title><rect x="487.2" y="501" width="1.4" height="15.0" fill="rgb(229,52,45)" rx="2" ry="2" />
|
|
<text x="490.19" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (6 samples, 0.03%)</title><rect x="526.8" y="245" width="0.3" height="15.0" fill="rgb(250,209,26)" rx="2" ry="2" />
|
|
<text x="529.79" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="350.0" y="309" width="0.4" height="15.0" fill="rgb(207,192,32)" rx="2" ry="2" />
|
|
<text x="353.04" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeHeaderOver (2 samples, 0.01%)</title><rect x="559.3" y="309" width="0.1" height="15.0" fill="rgb(223,160,52)" rx="2" ry="2" />
|
|
<text x="562.31" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (12 samples, 0.06%)</title><rect x="778.2" y="421" width="0.7" height="15.0" fill="rgb(222,174,1)" rx="2" ry="2" />
|
|
<text x="781.20" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="836.9" y="261" width="0.4" height="15.0" fill="rgb(249,108,54)" rx="2" ry="2" />
|
|
<text x="839.91" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="827.3" y="341" width="0.2" height="15.0" fill="rgb(213,60,1)" rx="2" ry="2" />
|
|
<text x="830.30" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (75 samples, 0.38%)</title><rect x="568.7" y="357" width="4.4" height="15.0" fill="rgb(225,68,40)" rx="2" ry="2" />
|
|
<text x="571.69" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (3 samples, 0.02%)</title><rect x="299.3" y="261" width="0.2" height="15.0" fill="rgb(208,115,45)" rx="2" ry="2" />
|
|
<text x="302.29" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_hit_path_list (9 samples, 0.05%)</title><rect x="368.3" y="373" width="0.6" height="15.0" fill="rgb(253,4,30)" rx="2" ry="2" />
|
|
<text x="371.34" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_destroy (4 samples, 0.02%)</title><rect x="465.8" y="357" width="0.3" height="15.0" fill="rgb(225,185,41)" rx="2" ry="2" />
|
|
<text x="468.83" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="710.5" y="341" width="0.1" height="15.0" fill="rgb(226,157,0)" rx="2" ry="2" />
|
|
<text x="713.51" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (29 samples, 0.15%)</title><rect x="380.7" y="389" width="1.7" height="15.0" fill="rgb(213,35,36)" rx="2" ry="2" />
|
|
<text x="383.67" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (7 samples, 0.04%)</title><rect x="836.9" y="357" width="0.4" height="15.0" fill="rgb(220,177,49)" rx="2" ry="2" />
|
|
<text x="839.86" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_string (6 samples, 0.03%)</title><rect x="358.7" y="341" width="0.3" height="15.0" fill="rgb(248,37,2)" rx="2" ry="2" />
|
|
<text x="361.66" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (4 samples, 0.02%)</title><rect x="697.6" y="293" width="0.2" height="15.0" fill="rgb(212,39,33)" rx="2" ry="2" />
|
|
<text x="700.58" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (21 samples, 0.11%)</title><rect x="681.0" y="341" width="1.2" height="15.0" fill="rgb(240,155,4)" rx="2" ry="2" />
|
|
<text x="684.00" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (22 samples, 0.11%)</title><rect x="312.1" y="197" width="1.3" height="15.0" fill="rgb(237,4,12)" rx="2" ry="2" />
|
|
<text x="315.10" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (5 samples, 0.03%)</title><rect x="363.9" y="261" width="0.2" height="15.0" fill="rgb(254,115,29)" rx="2" ry="2" />
|
|
<text x="366.85" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="836.0" y="277" width="0.1" height="15.0" fill="rgb(230,62,22)" rx="2" ry="2" />
|
|
<text x="838.97" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (248 samples, 1.24%)</title><rect x="590.3" y="437" width="14.6" height="15.0" fill="rgb(246,197,0)" rx="2" ry="2" />
|
|
<text x="593.29" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (24 samples, 0.12%)</title><rect x="315.8" y="293" width="1.4" height="15.0" fill="rgb(217,14,1)" rx="2" ry="2" />
|
|
<text x="318.76" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_ipv4 (4 samples, 0.02%)</title><rect x="356.8" y="341" width="0.2" height="15.0" fill="rgb(253,151,21)" rx="2" ry="2" />
|
|
<text x="359.77" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_worker_process (115 samples, 0.58%)</title><rect x="368.3" y="389" width="6.8" height="15.0" fill="rgb(240,162,52)" rx="2" ry="2" />
|
|
<text x="371.34" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (8 samples, 0.04%)</title><rect x="350.5" y="357" width="0.4" height="15.0" fill="rgb(244,3,2)" rx="2" ry="2" />
|
|
<text x="353.46" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (11 samples, 0.06%)</title><rect x="363.9" y="341" width="0.6" height="15.0" fill="rgb(213,105,54)" rx="2" ry="2" />
|
|
<text x="366.85" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="838.7" y="357" width="0.2" height="15.0" fill="rgb(222,77,22)" rx="2" ry="2" />
|
|
<text x="841.74" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="583.6" y="245" width="0.1" height="15.0" fill="rgb(215,155,0)" rx="2" ry="2" />
|
|
<text x="586.62" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (3 samples, 0.02%)</title><rect x="357.0" y="389" width="0.2" height="15.0" fill="rgb(245,189,3)" rx="2" ry="2" />
|
|
<text x="360.01" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (28 samples, 0.14%)</title><rect x="840.4" y="517" width="1.6" height="15.0" fill="rgb(220,25,9)" rx="2" ry="2" />
|
|
<text x="843.40" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (3 samples, 0.02%)</title><rect x="608.7" y="245" width="0.2" height="15.0" fill="rgb(220,29,17)" rx="2" ry="2" />
|
|
<text x="611.70" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_application_data (10 samples, 0.05%)</title><rect x="562.7" y="325" width="0.6" height="15.0" fill="rgb(210,209,31)" rx="2" ry="2" />
|
|
<text x="565.73" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="321.3" y="149" width="0.1" height="15.0" fill="rgb(242,59,9)" rx="2" ry="2" />
|
|
<text x="324.30" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (5 samples, 0.03%)</title><rect x="351.2" y="325" width="0.3" height="15.0" fill="rgb(241,193,28)" rx="2" ry="2" />
|
|
<text x="354.16" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (28 samples, 0.14%)</title><rect x="380.7" y="277" width="1.7" height="15.0" fill="rgb(207,159,14)" rx="2" ry="2" />
|
|
<text x="383.73" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="710.6" y="341" width="0.3" height="15.0" fill="rgb(211,52,17)" rx="2" ry="2" />
|
|
<text x="713.62" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="10.7" y="405" width="0.1" height="15.0" fill="rgb(246,64,25)" rx="2" ry="2" />
|
|
<text x="13.71" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_hit_path_list (9 samples, 0.05%)</title><rect x="836.1" y="325" width="0.5" height="15.0" fill="rgb(234,179,9)" rx="2" ry="2" />
|
|
<text x="839.09" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (8 samples, 0.04%)</title><rect x="383.4" y="517" width="0.5" height="15.0" fill="rgb(212,153,34)" rx="2" ry="2" />
|
|
<text x="386.45" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (5 samples, 0.03%)</title><rect x="830.0" y="357" width="0.2" height="15.0" fill="rgb(247,112,44)" rx="2" ry="2" />
|
|
<text x="832.95" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (5 samples, 0.03%)</title><rect x="838.6" y="581" width="0.3" height="15.0" fill="rgb(208,94,1)" rx="2" ry="2" />
|
|
<text x="841.63" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="315.6" y="261" width="0.1" height="15.0" fill="rgb(214,86,8)" rx="2" ry="2" />
|
|
<text x="318.58" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="382.3" y="149" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
|
|
<text x="385.27" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (7 samples, 0.04%)</title><rect x="828.6" y="405" width="0.4" height="15.0" fill="rgb(245,208,5)" rx="2" ry="2" />
|
|
<text x="831.59" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="356.5" y="293" width="0.2" height="15.0" fill="rgb(216,81,39)" rx="2" ry="2" />
|
|
<text x="359.53" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (24 samples, 0.12%)</title><rect x="509.4" y="389" width="1.5" height="15.0" fill="rgb(213,191,24)" rx="2" ry="2" />
|
|
<text x="512.44" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (25 samples, 0.13%)</title><rect x="302.8" y="485" width="1.5" height="15.0" fill="rgb(209,133,26)" rx="2" ry="2" />
|
|
<text x="305.83" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cpu_limit_can_i_do (5 samples, 0.03%)</title><rect x="457.0" y="453" width="0.3" height="15.0" fill="rgb(230,159,11)" rx="2" ry="2" />
|
|
<text x="460.04" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="313.4" y="197" width="0.2" height="15.0" fill="rgb(230,125,7)" rx="2" ry="2" />
|
|
<text x="316.39" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="563.2" y="277" width="0.1" height="15.0" fill="rgb(216,2,36)" rx="2" ry="2" />
|
|
<text x="566.20" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>append_common_field (2 samples, 0.01%)</title><rect x="304.6" y="389" width="0.1" height="15.0" fill="rgb(226,136,3)" rx="2" ry="2" />
|
|
<text x="307.60" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (12 samples, 0.06%)</title><rect x="480.8" y="389" width="0.7" height="15.0" fill="rgb(246,59,39)" rx="2" ry="2" />
|
|
<text x="483.82" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_identify_broad_multicast_pkt (8 samples, 0.04%)</title><rect x="721.1" y="533" width="0.5" height="15.0" fill="rgb(211,87,6)" rx="2" ry="2" />
|
|
<text x="724.13" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_data_path_to_buffer (3 samples, 0.02%)</title><rect x="302.8" y="325" width="0.2" height="15.0" fill="rgb(209,158,30)" rx="2" ry="2" />
|
|
<text x="305.83" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (3 samples, 0.02%)</title><rect x="700.1" y="309" width="0.2" height="15.0" fill="rgb(250,48,32)" rx="2" ry="2" />
|
|
<text x="703.12" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="380.7" y="149" width="0.2" height="15.0" fill="rgb(205,109,45)" rx="2" ry="2" />
|
|
<text x="383.73" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (8 samples, 0.04%)</title><rect x="383.4" y="213" width="0.5" height="15.0" fill="rgb(242,97,19)" rx="2" ry="2" />
|
|
<text x="386.45" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (13 samples, 0.07%)</title><rect x="606.2" y="389" width="0.8" height="15.0" fill="rgb(218,20,34)" rx="2" ry="2" />
|
|
<text x="609.23" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="460.1" y="437" width="0.1" height="15.0" fill="rgb(230,196,7)" rx="2" ry="2" />
|
|
<text x="463.11" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (24 samples, 0.12%)</title><rect x="299.5" y="373" width="1.4" height="15.0" fill="rgb(222,207,45)" rx="2" ry="2" />
|
|
<text x="302.47" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bn_div_fixed_top (3 samples, 0.02%)</title><rect x="823.0" y="165" width="0.2" height="15.0" fill="rgb(247,9,9)" rx="2" ry="2" />
|
|
<text x="825.99" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (9 samples, 0.05%)</title><rect x="834.7" y="581" width="0.6" height="15.0" fill="rgb(214,211,18)" rx="2" ry="2" />
|
|
<text x="837.73" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___printf_fp_l (8 samples, 0.04%)</title><rect x="379.4" y="293" width="0.4" height="15.0" fill="rgb(242,199,2)" rx="2" ry="2" />
|
|
<text x="382.37" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (3 samples, 0.02%)</title><rect x="481.6" y="389" width="0.2" height="15.0" fill="rgb(244,46,13)" rx="2" ry="2" />
|
|
<text x="484.59" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (12 samples, 0.06%)</title><rect x="298.1" y="309" width="0.7" height="15.0" fill="rgb(209,125,0)" rx="2" ry="2" />
|
|
<text x="301.05" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="487.0" y="405" width="0.1" height="15.0" fill="rgb(236,115,6)" rx="2" ry="2" />
|
|
<text x="490.02" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_trunk_free (2 samples, 0.01%)</title><rect x="564.0" y="325" width="0.1" height="15.0" fill="rgb(234,31,28)" rx="2" ry="2" />
|
|
<text x="566.97" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="460.1" y="405" width="0.1" height="15.0" fill="rgb(222,163,29)" rx="2" ry="2" />
|
|
<text x="463.11" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="827.3" y="261" width="0.1" height="15.0" fill="rgb(229,216,39)" rx="2" ry="2" />
|
|
<text x="830.30" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="694.5" y="293" width="0.1" height="15.0" fill="rgb(249,76,16)" rx="2" ry="2" />
|
|
<text x="697.45" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="511.7" y="341" width="0.3" height="15.0" fill="rgb(207,95,43)" rx="2" ry="2" />
|
|
<text x="514.74" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_sketch_entry (16 samples, 0.08%)</title><rect x="710.9" y="373" width="0.9" height="15.0" fill="rgb(213,202,46)" rx="2" ry="2" />
|
|
<text x="713.86" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (19 samples, 0.10%)</title><rect x="674.6" y="405" width="1.1" height="15.0" fill="rgb(254,57,30)" rx="2" ry="2" />
|
|
<text x="677.62" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="510.6" y="293" width="0.2" height="15.0" fill="rgb(230,228,16)" rx="2" ry="2" />
|
|
<text x="513.56" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="530.0" y="213" width="0.5" height="15.0" fill="rgb(238,96,41)" rx="2" ry="2" />
|
|
<text x="532.98" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>deal_event_rules (4 samples, 0.02%)</title><rect x="833.5" y="485" width="0.2" height="15.0" fill="rgb(213,159,5)" rx="2" ry="2" />
|
|
<text x="836.49" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="838.6" y="517" width="0.1" height="15.0" fill="rgb(240,68,52)" rx="2" ry="2" />
|
|
<text x="841.63" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (4 samples, 0.02%)</title><rect x="775.4" y="533" width="0.3" height="15.0" fill="rgb(242,211,15)" rx="2" ry="2" />
|
|
<text x="778.42" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_obj2nid (2 samples, 0.01%)</title><rect x="10.7" y="245" width="0.1" height="15.0" fill="rgb(231,27,54)" rx="2" ry="2" />
|
|
<text x="13.71" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (193 samples, 0.97%)</title><rect x="273.1" y="501" width="11.4" height="15.0" fill="rgb(250,63,11)" rx="2" ry="2" />
|
|
<text x="276.09" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (4 samples, 0.02%)</title><rect x="456.2" y="437" width="0.2" height="15.0" fill="rgb(208,83,38)" rx="2" ry="2" />
|
|
<text x="459.21" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="511.7" y="309" width="0.2" height="15.0" fill="rgb(212,122,50)" rx="2" ry="2" />
|
|
<text x="514.74" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="377.1" y="229" width="0.3" height="15.0" fill="rgb(218,8,54)" rx="2" ry="2" />
|
|
<text x="380.13" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (16 samples, 0.08%)</title><rect x="525.1" y="261" width="1.0" height="15.0" fill="rgb(208,150,28)" rx="2" ry="2" />
|
|
<text x="528.14" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="841.7" y="245" width="0.3" height="15.0" fill="rgb(238,208,38)" rx="2" ry="2" />
|
|
<text x="844.69" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_new (2 samples, 0.01%)</title><rect x="351.2" y="293" width="0.1" height="15.0" fill="rgb(210,123,35)" rx="2" ry="2" />
|
|
<text x="354.22" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="705.7" y="341" width="0.1" height="15.0" fill="rgb(228,150,12)" rx="2" ry="2" />
|
|
<text x="708.67" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="828.6" y="229" width="0.4" height="15.0" fill="rgb(238,48,23)" rx="2" ry="2" />
|
|
<text x="831.59" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (6 samples, 0.03%)</title><rect x="715.4" y="389" width="0.4" height="15.0" fill="rgb(231,166,41)" rx="2" ry="2" />
|
|
<text x="718.40" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="827.3" y="357" width="0.2" height="15.0" fill="rgb(222,6,27)" rx="2" ry="2" />
|
|
<text x="830.30" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="567.6" y="325" width="0.1" height="15.0" fill="rgb(242,47,4)" rx="2" ry="2" />
|
|
<text x="570.63" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (5 samples, 0.03%)</title><rect x="581.8" y="309" width="0.3" height="15.0" fill="rgb(226,188,47)" rx="2" ry="2" />
|
|
<text x="584.79" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (49 samples, 0.25%)</title><rect x="465.7" y="405" width="2.8" height="15.0" fill="rgb(254,125,21)" rx="2" ry="2" />
|
|
<text x="468.65" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (39 samples, 0.20%)</title><rect x="353.3" y="389" width="2.3" height="15.0" fill="rgb(206,94,6)" rx="2" ry="2" />
|
|
<text x="356.35" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="651.1" y="245" width="0.2" height="15.0" fill="rgb(225,152,14)" rx="2" ry="2" />
|
|
<text x="654.14" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>send_log_by_type (4 samples, 0.02%)</title><rect x="482.5" y="341" width="0.2" height="15.0" fill="rgb(206,213,5)" rx="2" ry="2" />
|
|
<text x="485.47" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="377.0" y="245" width="0.4" height="15.0" fill="rgb(247,172,49)" rx="2" ry="2" />
|
|
<text x="380.01" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (4,786 samples, 23.94%)</title><rect x="439.5" y="549" width="282.5" height="15.0" fill="rgb(219,167,7)" rx="2" ry="2" />
|
|
<text x="442.51" y="559.5" >eth_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.02%)</title><rect x="829.8" y="389" width="0.2" height="15.0" fill="rgb(246,89,0)" rx="2" ry="2" />
|
|
<text x="832.77" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="708.4" y="325" width="0.2" height="15.0" fill="rgb(229,206,30)" rx="2" ry="2" />
|
|
<text x="711.44" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (27 samples, 0.14%)</title><rect x="680.8" y="389" width="1.6" height="15.0" fill="rgb(233,74,8)" rx="2" ry="2" />
|
|
<text x="683.76" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (5 samples, 0.03%)</title><rect x="382.9" y="277" width="0.3" height="15.0" fill="rgb(205,190,49)" rx="2" ry="2" />
|
|
<text x="385.91" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.03%)</title><rect x="355.0" y="309" width="0.3" height="15.0" fill="rgb(213,211,18)" rx="2" ry="2" />
|
|
<text x="358.00" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (4 samples, 0.02%)</title><rect x="305.7" y="245" width="0.2" height="15.0" fill="rgb(243,119,44)" rx="2" ry="2" />
|
|
<text x="308.66" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (28 samples, 0.14%)</title><rect x="828.6" y="501" width="1.6" height="15.0" fill="rgb(221,4,54)" rx="2" ry="2" />
|
|
<text x="831.59" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="357.1" y="325" width="0.1" height="15.0" fill="rgb(227,149,42)" rx="2" ry="2" />
|
|
<text x="360.07" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.02%)</title><rect x="685.2" y="341" width="0.2" height="15.0" fill="rgb(243,19,27)" rx="2" ry="2" />
|
|
<text x="688.19" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (43 samples, 0.22%)</title><rect x="380.7" y="485" width="2.5" height="15.0" fill="rgb(243,64,50)" rx="2" ry="2" />
|
|
<text x="383.67" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="824.6" y="197" width="0.2" height="15.0" fill="rgb(242,127,50)" rx="2" ry="2" />
|
|
<text x="827.64" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>send_log_by_type (2 samples, 0.01%)</title><rect x="614.6" y="245" width="0.1" height="15.0" fill="rgb(222,40,43)" rx="2" ry="2" />
|
|
<text x="617.61" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (18 samples, 0.09%)</title><rect x="362.3" y="373" width="1.1" height="15.0" fill="rgb(253,36,36)" rx="2" ry="2" />
|
|
<text x="365.32" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (7 samples, 0.04%)</title><rect x="361.8" y="261" width="0.4" height="15.0" fill="rgb(231,47,30)" rx="2" ry="2" />
|
|
<text x="364.79" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (5 samples, 0.03%)</title><rect x="376.7" y="309" width="0.3" height="15.0" fill="rgb(208,132,47)" rx="2" ry="2" />
|
|
<text x="379.72" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="356.5" y="325" width="0.2" height="15.0" fill="rgb(237,25,54)" rx="2" ry="2" />
|
|
<text x="359.48" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (59 samples, 0.30%)</title><rect x="435.6" y="549" width="3.5" height="15.0" fill="rgb(225,14,38)" rx="2" ry="2" />
|
|
<text x="438.61" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_worker_process (78 samples, 0.39%)</title><rect x="520.4" y="325" width="4.6" height="15.0" fill="rgb(225,134,21)" rx="2" ry="2" />
|
|
<text x="523.42" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="613.7" y="293" width="0.1" height="15.0" fill="rgb(227,192,7)" rx="2" ry="2" />
|
|
<text x="616.66" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="836.9" y="245" width="0.4" height="15.0" fill="rgb(232,155,31)" rx="2" ry="2" />
|
|
<text x="839.91" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_q_io_event (11 samples, 0.06%)</title><rect x="572.2" y="213" width="0.7" height="15.0" fill="rgb(215,149,50)" rx="2" ry="2" />
|
|
<text x="575.23" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_CreateObject (2 samples, 0.01%)</title><rect x="582.3" y="325" width="0.1" height="15.0" fill="rgb(223,122,2)" rx="2" ry="2" />
|
|
<text x="585.27" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (14 samples, 0.07%)</title><rect x="713.5" y="325" width="0.8" height="15.0" fill="rgb(226,100,16)" rx="2" ry="2" />
|
|
<text x="716.46" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (6 samples, 0.03%)</title><rect x="821.7" y="437" width="0.4" height="15.0" fill="rgb(210,26,49)" rx="2" ry="2" />
|
|
<text x="824.75" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="839.7" y="581" width="0.1" height="15.0" fill="rgb(231,28,37)" rx="2" ry="2" />
|
|
<text x="842.69" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (34 samples, 0.17%)</title><rect x="680.3" y="405" width="2.1" height="15.0" fill="rgb(236,45,44)" rx="2" ry="2" />
|
|
<text x="683.35" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (6 samples, 0.03%)</title><rect x="305.1" y="181" width="0.3" height="15.0" fill="rgb(209,47,17)" rx="2" ry="2" />
|
|
<text x="308.07" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (961 samples, 4.81%)</title><rect x="304.7" y="485" width="56.7" height="15.0" fill="rgb(238,86,41)" rx="2" ry="2" />
|
|
<text x="307.72" y="495.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (3 samples, 0.02%)</title><rect x="828.2" y="421" width="0.2" height="15.0" fill="rgb(206,37,0)" rx="2" ry="2" />
|
|
<text x="831.24" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (6 samples, 0.03%)</title><rect x="775.0" y="533" width="0.4" height="15.0" fill="rgb(212,127,43)" rx="2" ry="2" />
|
|
<text x="778.01" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (4 samples, 0.02%)</title><rect x="382.4" y="405" width="0.2" height="15.0" fill="rgb(237,96,30)" rx="2" ry="2" />
|
|
<text x="385.38" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (11 samples, 0.06%)</title><rect x="707.7" y="341" width="0.6" height="15.0" fill="rgb(249,203,2)" rx="2" ry="2" />
|
|
<text x="710.67" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (6 samples, 0.03%)</title><rect x="721.6" y="533" width="0.4" height="15.0" fill="rgb(215,93,5)" rx="2" ry="2" />
|
|
<text x="724.60" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_l7_protocol_id2name (5 samples, 0.03%)</title><rect x="657.3" y="325" width="0.3" height="15.0" fill="rgb(209,25,54)" rx="2" ry="2" />
|
|
<text x="660.27" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_ids (2 samples, 0.01%)</title><rect x="827.4" y="325" width="0.1" height="15.0" fill="rgb(248,48,4)" rx="2" ry="2" />
|
|
<text x="830.41" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (20 samples, 0.10%)</title><rect x="827.1" y="597" width="1.1" height="15.0" fill="rgb(254,3,7)" rx="2" ry="2" />
|
|
<text x="830.06" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>direction_I2E (5 samples, 0.03%)</title><rect x="382.9" y="341" width="0.3" height="15.0" fill="rgb(250,65,10)" rx="2" ry="2" />
|
|
<text x="385.91" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__pthread_enable_asynccancel (4 samples, 0.02%)</title><rect x="781.4" y="549" width="0.3" height="15.0" fill="rgb(254,122,43)" rx="2" ry="2" />
|
|
<text x="784.44" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (18 samples, 0.09%)</title><rect x="507.4" y="421" width="1.0" height="15.0" fill="rgb(218,36,18)" rx="2" ry="2" />
|
|
<text x="510.38" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (8 samples, 0.04%)</title><rect x="567.9" y="309" width="0.4" height="15.0" fill="rgb(212,4,41)" rx="2" ry="2" />
|
|
<text x="570.87" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="606.6" y="341" width="0.2" height="15.0" fill="rgb(235,172,18)" rx="2" ry="2" />
|
|
<text x="609.64" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (8 samples, 0.04%)</title><rect x="509.6" y="341" width="0.5" height="15.0" fill="rgb(249,1,31)" rx="2" ry="2" />
|
|
<text x="512.62" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (81 samples, 0.41%)</title><rect x="298.1" y="485" width="4.7" height="15.0" fill="rgb(222,173,39)" rx="2" ry="2" />
|
|
<text x="301.05" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (43 samples, 0.22%)</title><rect x="350.4" y="373" width="2.5" height="15.0" fill="rgb(216,69,5)" rx="2" ry="2" />
|
|
<text x="353.40" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_new_reserve (3 samples, 0.02%)</title><rect x="822.6" y="261" width="0.2" height="15.0" fill="rgb(242,22,47)" rx="2" ry="2" />
|
|
<text x="825.63" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (21 samples, 0.11%)</title><rect x="359.8" y="325" width="1.3" height="15.0" fill="rgb(229,179,8)" rx="2" ry="2" />
|
|
<text x="362.84" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_quic_plug_entry (18 samples, 0.09%)</title><rect x="375.1" y="341" width="1.1" height="15.0" fill="rgb(234,168,50)" rx="2" ry="2" />
|
|
<text x="378.12" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (55 samples, 0.28%)</title><rect x="380.7" y="581" width="3.2" height="15.0" fill="rgb(215,21,28)" rx="2" ry="2" />
|
|
<text x="383.67" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (468 samples, 2.34%)</title><rect x="688.1" y="437" width="27.7" height="15.0" fill="rgb(219,220,35)" rx="2" ry="2" />
|
|
<text x="691.14" y="447.5" >s..</text>
|
|
</g>
|
|
<g >
|
|
<title>qm_free_default (2 samples, 0.01%)</title><rect x="525.7" y="181" width="0.1" height="15.0" fill="rgb(205,92,32)" rx="2" ry="2" />
|
|
<text x="528.67" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="827.5" y="293" width="0.5" height="15.0" fill="rgb(235,164,44)" rx="2" ry="2" />
|
|
<text x="830.53" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (29 samples, 0.15%)</title><rect x="380.7" y="357" width="1.7" height="15.0" fill="rgb(234,159,4)" rx="2" ry="2" />
|
|
<text x="383.67" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (19 samples, 0.10%)</title><rect x="579.1" y="357" width="1.2" height="15.0" fill="rgb(249,29,22)" rx="2" ry="2" />
|
|
<text x="582.14" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (29 samples, 0.15%)</title><rect x="380.7" y="405" width="1.7" height="15.0" fill="rgb(247,34,22)" rx="2" ry="2" />
|
|
<text x="383.67" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (18 samples, 0.09%)</title><rect x="304.8" y="325" width="1.1" height="15.0" fill="rgb(205,3,15)" rx="2" ry="2" />
|
|
<text x="307.84" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (5 samples, 0.03%)</title><rect x="382.9" y="309" width="0.3" height="15.0" fill="rgb(252,94,24)" rx="2" ry="2" />
|
|
<text x="385.91" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.03%)</title><rect x="355.0" y="293" width="0.3" height="15.0" fill="rgb(208,183,44)" rx="2" ry="2" />
|
|
<text x="358.00" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (4 samples, 0.02%)</title><rect x="718.3" y="373" width="0.2" height="15.0" fill="rgb(229,98,51)" rx="2" ry="2" />
|
|
<text x="721.30" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (6 samples, 0.03%)</title><rect x="368.5" y="341" width="0.4" height="15.0" fill="rgb(250,12,37)" rx="2" ry="2" />
|
|
<text x="371.51" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="459.5" y="453" width="0.1" height="15.0" fill="rgb(217,132,48)" rx="2" ry="2" />
|
|
<text x="462.46" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (18 samples, 0.09%)</title><rect x="841.0" y="325" width="1.0" height="15.0" fill="rgb(248,159,9)" rx="2" ry="2" />
|
|
<text x="843.99" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (5 samples, 0.03%)</title><rect x="303.1" y="341" width="0.3" height="15.0" fill="rgb(235,164,37)" rx="2" ry="2" />
|
|
<text x="306.07" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (5 samples, 0.03%)</title><rect x="304.3" y="517" width="0.3" height="15.0" fill="rgb(211,74,52)" rx="2" ry="2" />
|
|
<text x="307.31" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (12 samples, 0.06%)</title><rect x="822.8" y="261" width="0.7" height="15.0" fill="rgb(215,126,52)" rx="2" ry="2" />
|
|
<text x="825.81" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="350.3" y="261" width="0.1" height="15.0" fill="rgb(216,56,40)" rx="2" ry="2" />
|
|
<text x="353.28" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_plug_entry (8 samples, 0.04%)</title><rect x="820.8" y="357" width="0.5" height="15.0" fill="rgb(254,212,8)" rx="2" ry="2" />
|
|
<text x="823.80" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (14 samples, 0.07%)</title><rect x="463.3" y="453" width="0.8" height="15.0" fill="rgb(245,81,15)" rx="2" ry="2" />
|
|
<text x="466.29" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="511.1" y="341" width="0.2" height="15.0" fill="rgb(233,203,14)" rx="2" ry="2" />
|
|
<text x="514.09" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="831.0" y="533" width="0.1" height="15.0" fill="rgb(247,72,29)" rx="2" ry="2" />
|
|
<text x="833.95" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="320.8" y="149" width="0.1" height="15.0" fill="rgb(231,77,39)" rx="2" ry="2" />
|
|
<text x="323.83" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="823.8" y="437" width="0.1" height="15.0" fill="rgb(220,148,44)" rx="2" ry="2" />
|
|
<text x="826.75" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (5 samples, 0.03%)</title><rect x="826.7" y="453" width="0.3" height="15.0" fill="rgb(225,225,22)" rx="2" ry="2" />
|
|
<text x="829.71" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (12 samples, 0.06%)</title><rect x="829.1" y="357" width="0.7" height="15.0" fill="rgb(212,15,26)" rx="2" ry="2" />
|
|
<text x="832.07" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (3 samples, 0.02%)</title><rect x="486.8" y="453" width="0.2" height="15.0" fill="rgb(240,130,14)" rx="2" ry="2" />
|
|
<text x="489.84" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (4 samples, 0.02%)</title><rect x="376.8" y="277" width="0.2" height="15.0" fill="rgb(243,86,0)" rx="2" ry="2" />
|
|
<text x="379.78" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (460 samples, 2.30%)</title><rect x="530.5" y="261" width="27.1" height="15.0" fill="rgb(249,176,12)" rx="2" ry="2" />
|
|
<text x="533.45" y="271.5" >_..</text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_dynamic_table_row_metric_values_incrby (3 samples, 0.02%)</title><rect x="367.3" y="357" width="0.2" height="15.0" fill="rgb(216,109,1)" rx="2" ry="2" />
|
|
<text x="370.33" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (72 samples, 0.36%)</title><rect x="357.2" y="421" width="4.2" height="15.0" fill="rgb(238,35,43)" rx="2" ry="2" />
|
|
<text x="360.18" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (60 samples, 0.30%)</title><rect x="569.6" y="325" width="3.5" height="15.0" fill="rgb(253,13,9)" rx="2" ry="2" />
|
|
<text x="572.58" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (78 samples, 0.39%)</title><rect x="781.7" y="533" width="4.6" height="15.0" fill="rgb(229,161,14)" rx="2" ry="2" />
|
|
<text x="784.68" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (6 samples, 0.03%)</title><rect x="679.7" y="405" width="0.4" height="15.0" fill="rgb(244,186,41)" rx="2" ry="2" />
|
|
<text x="682.70" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="377.9" y="309" width="0.2" height="15.0" fill="rgb(230,189,19)" rx="2" ry="2" />
|
|
<text x="380.90" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (3 samples, 0.02%)</title><rect x="828.4" y="549" width="0.2" height="15.0" fill="rgb(214,55,9)" rx="2" ry="2" />
|
|
<text x="831.42" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="582.7" y="277" width="0.2" height="15.0" fill="rgb(223,132,45)" rx="2" ry="2" />
|
|
<text x="585.68" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_no_init (2 samples, 0.01%)</title><rect x="708.1" y="261" width="0.1" height="15.0" fill="rgb(231,214,4)" rx="2" ry="2" />
|
|
<text x="711.09" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (6 samples, 0.03%)</title><rect x="288.0" y="533" width="0.4" height="15.0" fill="rgb(249,39,39)" rx="2" ry="2" />
|
|
<text x="291.02" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__hrtimer_init (3 samples, 0.02%)</title><rect x="785.3" y="469" width="0.2" height="15.0" fill="rgb(240,137,44)" rx="2" ry="2" />
|
|
<text x="788.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (8 samples, 0.04%)</title><rect x="774.5" y="517" width="0.5" height="15.0" fill="rgb(233,11,35)" rx="2" ry="2" />
|
|
<text x="777.54" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_record (28 samples, 0.14%)</title><rect x="708.9" y="357" width="1.6" height="15.0" fill="rgb(229,59,51)" rx="2" ry="2" />
|
|
<text x="711.85" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (3 samples, 0.02%)</title><rect x="561.6" y="309" width="0.1" height="15.0" fill="rgb(227,207,17)" rx="2" ry="2" />
|
|
<text x="564.55" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_mutex_unlock (2 samples, 0.01%)</title><rect x="316.9" y="133" width="0.1" height="15.0" fill="rgb(209,160,22)" rx="2" ry="2" />
|
|
<text x="319.88" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="381.8" y="181" width="0.5" height="15.0" fill="rgb(218,205,48)" rx="2" ry="2" />
|
|
<text x="384.79" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_make_jhash (9 samples, 0.05%)</title><rect x="478.5" y="485" width="0.5" height="15.0" fill="rgb(235,203,49)" rx="2" ry="2" />
|
|
<text x="481.46" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_recv_burst (585 samples, 2.93%)</title><rect x="723.8" y="565" width="34.6" height="15.0" fill="rgb(248,180,40)" rx="2" ry="2" />
|
|
<text x="726.84" y="575.5" >ma..</text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (20 samples, 0.10%)</title><rect x="649.0" y="325" width="1.1" height="15.0" fill="rgb(248,25,21)" rx="2" ry="2" />
|
|
<text x="651.95" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_worker_process (8 samples, 0.04%)</title><rect x="383.4" y="405" width="0.5" height="15.0" fill="rgb(243,64,23)" rx="2" ry="2" />
|
|
<text x="386.45" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (13 samples, 0.07%)</title><rect x="373.3" y="213" width="0.8" height="15.0" fill="rgb(226,15,52)" rx="2" ry="2" />
|
|
<text x="376.29" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (8 samples, 0.04%)</title><rect x="467.5" y="341" width="0.5" height="15.0" fill="rgb(243,38,41)" rx="2" ry="2" />
|
|
<text x="470.54" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_malloc_device (5 samples, 0.03%)</title><rect x="640.4" y="325" width="0.3" height="15.0" fill="rgb(243,138,50)" rx="2" ry="2" />
|
|
<text x="643.40" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="574.1" y="341" width="0.7" height="15.0" fill="rgb(238,144,46)" rx="2" ry="2" />
|
|
<text x="577.12" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (5 samples, 0.03%)</title><rect x="838.6" y="565" width="0.3" height="15.0" fill="rgb(235,148,5)" rx="2" ry="2" />
|
|
<text x="841.63" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (28 samples, 0.14%)</title><rect x="380.7" y="325" width="1.7" height="15.0" fill="rgb(237,88,21)" rx="2" ry="2" />
|
|
<text x="383.73" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>capture_packet_scan_proto_addr (38 samples, 0.19%)</title><rect x="695.6" y="341" width="2.3" height="15.0" fill="rgb(236,63,7)" rx="2" ry="2" />
|
|
<text x="698.63" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="314.5" y="261" width="0.3" height="15.0" fill="rgb(224,96,10)" rx="2" ry="2" />
|
|
<text x="317.52" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>send_event_log (5 samples, 0.03%)</title><rect x="614.4" y="261" width="0.3" height="15.0" fill="rgb(236,89,44)" rx="2" ry="2" />
|
|
<text x="617.43" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="514.1" y="389" width="0.1" height="15.0" fill="rgb(244,217,37)" rx="2" ry="2" />
|
|
<text x="517.10" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="480.8" y="357" width="0.2" height="15.0" fill="rgb(208,157,27)" rx="2" ry="2" />
|
|
<text x="483.82" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_lua_runtime_context_get (5 samples, 0.03%)</title><rect x="575.7" y="341" width="0.3" height="15.0" fill="rgb(210,51,34)" rx="2" ry="2" />
|
|
<text x="578.66" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_record_tcpall_entry (12 samples, 0.06%)</title><rect x="614.0" y="325" width="0.7" height="15.0" fill="rgb(248,2,13)" rx="2" ry="2" />
|
|
<text x="617.02" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (1,016 samples, 5.08%)</title><rect x="517.9" y="389" width="60.0" height="15.0" fill="rgb(253,7,50)" rx="2" ry="2" />
|
|
<text x="520.94" y="399.5" >call_s..</text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (2 samples, 0.01%)</title><rect x="10.7" y="597" width="0.1" height="15.0" fill="rgb(225,19,47)" rx="2" ry="2" />
|
|
<text x="13.71" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_server_hello (3 samples, 0.02%)</title><rect x="823.6" y="453" width="0.2" height="15.0" fill="rgb(213,208,54)" rx="2" ry="2" />
|
|
<text x="826.58" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (10 samples, 0.05%)</title><rect x="614.1" y="293" width="0.6" height="15.0" fill="rgb(208,150,22)" rx="2" ry="2" />
|
|
<text x="617.13" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___uflow (2 samples, 0.01%)</title><rect x="348.6" y="277" width="0.1" height="15.0" fill="rgb(240,35,33)" rx="2" ry="2" />
|
|
<text x="351.57" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_worker_process (7 samples, 0.04%)</title><rect x="828.6" y="421" width="0.4" height="15.0" fill="rgb(249,67,46)" rx="2" ry="2" />
|
|
<text x="831.59" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="827.3" y="277" width="0.1" height="15.0" fill="rgb(209,27,4)" rx="2" ry="2" />
|
|
<text x="830.30" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSH_ENTRY (14 samples, 0.07%)</title><rect x="561.2" y="357" width="0.8" height="15.0" fill="rgb(208,72,36)" rx="2" ry="2" />
|
|
<text x="564.20" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="837.0" y="213" width="0.3" height="15.0" fill="rgb(217,144,9)" rx="2" ry="2" />
|
|
<text x="839.97" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (5 samples, 0.03%)</title><rect x="718.2" y="389" width="0.3" height="15.0" fill="rgb(241,166,17)" rx="2" ry="2" />
|
|
<text x="721.24" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>srt_attribute_set_flags (2 samples, 0.01%)</title><rect x="710.7" y="325" width="0.1" height="15.0" fill="rgb(205,73,32)" rx="2" ry="2" />
|
|
<text x="713.68" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_jump_layer@plt (2 samples, 0.01%)</title><rect x="579.3" y="341" width="0.1" height="15.0" fill="rgb(229,21,8)" rx="2" ry="2" />
|
|
<text x="582.26" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (4 samples, 0.02%)</title><rect x="511.7" y="357" width="0.3" height="15.0" fill="rgb(232,203,14)" rx="2" ry="2" />
|
|
<text x="514.74" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (8 samples, 0.04%)</title><rect x="832.9" y="501" width="0.5" height="15.0" fill="rgb(213,152,16)" rx="2" ry="2" />
|
|
<text x="835.90" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_madvise (2 samples, 0.01%)</title><rect x="300.2" y="181" width="0.2" height="15.0" fill="rgb(210,81,26)" rx="2" ry="2" />
|
|
<text x="303.23" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (17 samples, 0.09%)</title><rect x="299.5" y="277" width="1.0" height="15.0" fill="rgb(235,18,31)" rx="2" ry="2" />
|
|
<text x="302.47" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>save_polling_inject_context (4 samples, 0.02%)</title><rect x="680.1" y="421" width="0.2" height="15.0" fill="rgb(224,28,51)" rx="2" ry="2" />
|
|
<text x="683.05" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="821.3" y="341" width="0.2" height="15.0" fill="rgb(224,191,27)" rx="2" ry="2" />
|
|
<text x="824.28" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="354.9" y="293" width="0.1" height="15.0" fill="rgb(246,0,15)" rx="2" ry="2" />
|
|
<text x="357.88" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="835.9" y="389" width="0.2" height="15.0" fill="rgb(244,74,29)" rx="2" ry="2" />
|
|
<text x="838.85" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (412 samples, 2.06%)</title><rect x="690.9" y="389" width="24.3" height="15.0" fill="rgb(252,167,21)" rx="2" ry="2" />
|
|
<text x="693.91" y="399.5" >p..</text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_next (12 samples, 0.06%)</title><rect x="460.8" y="469" width="0.7" height="15.0" fill="rgb(211,163,19)" rx="2" ry="2" />
|
|
<text x="463.81" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_cpuidle (5,763 samples, 28.82%)</title><rect x="842.2" y="565" width="340.1" height="15.0" fill="rgb(238,198,47)" rx="2" ry="2" />
|
|
<text x="845.23" y="575.5" >call_cpuidle</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="670.8" y="341" width="0.2" height="15.0" fill="rgb(210,112,33)" rx="2" ry="2" />
|
|
<text x="673.85" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (11 samples, 0.06%)</title><rect x="363.9" y="357" width="0.6" height="15.0" fill="rgb(247,210,36)" rx="2" ry="2" />
|
|
<text x="366.85" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (9 samples, 0.05%)</title><rect x="566.7" y="309" width="0.6" height="15.0" fill="rgb(242,158,4)" rx="2" ry="2" />
|
|
<text x="569.75" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (4 samples, 0.02%)</title><rect x="481.8" y="357" width="0.2" height="15.0" fill="rgb(220,222,50)" rx="2" ry="2" />
|
|
<text x="484.76" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_flag (2 samples, 0.01%)</title><rect x="670.9" y="293" width="0.1" height="15.0" fill="rgb(225,92,41)" rx="2" ry="2" />
|
|
<text x="673.91" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="827.3" y="309" width="0.1" height="15.0" fill="rgb(235,121,19)" rx="2" ry="2" />
|
|
<text x="830.30" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="229" width="0.3" height="15.0" fill="rgb(223,77,52)" rx="2" ry="2" />
|
|
<text x="829.71" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (8 samples, 0.04%)</title><rect x="560.3" y="325" width="0.5" height="15.0" fill="rgb(226,120,39)" rx="2" ry="2" />
|
|
<text x="563.31" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="775.8" y="485" width="0.2" height="15.0" fill="rgb(245,44,50)" rx="2" ry="2" />
|
|
<text x="778.83" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (2 samples, 0.01%)</title><rect x="823.8" y="389" width="0.1" height="15.0" fill="rgb(223,184,41)" rx="2" ry="2" />
|
|
<text x="826.75" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>round_and_return (3 samples, 0.02%)</title><rect x="359.7" y="261" width="0.1" height="15.0" fill="rgb(226,203,23)" rx="2" ry="2" />
|
|
<text x="362.66" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (3 samples, 0.02%)</title><rect x="840.2" y="565" width="0.1" height="15.0" fill="rgb(225,155,8)" rx="2" ry="2" />
|
|
<text x="843.16" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (9 samples, 0.05%)</title><rect x="302.8" y="389" width="0.6" height="15.0" fill="rgb(220,135,10)" rx="2" ry="2" />
|
|
<text x="305.83" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (3 samples, 0.02%)</title><rect x="838.7" y="501" width="0.2" height="15.0" fill="rgb(235,13,14)" rx="2" ry="2" />
|
|
<text x="841.74" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="821.8" y="293" width="0.1" height="15.0" fill="rgb(227,113,28)" rx="2" ry="2" />
|
|
<text x="824.81" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="826.7" y="469" width="0.4" height="15.0" fill="rgb(248,86,18)" rx="2" ry="2" />
|
|
<text x="829.71" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="838.6" y="357" width="0.1" height="15.0" fill="rgb(216,180,25)" rx="2" ry="2" />
|
|
<text x="841.63" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="835.9" y="293" width="0.1" height="15.0" fill="rgb(226,183,46)" rx="2" ry="2" />
|
|
<text x="838.85" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="357" width="0.1" height="15.0" fill="rgb(221,113,14)" rx="2" ry="2" />
|
|
<text x="13.71" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (2 samples, 0.01%)</title><rect x="512.2" y="405" width="0.1" height="15.0" fill="rgb(234,111,28)" rx="2" ry="2" />
|
|
<text x="515.16" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (4 samples, 0.02%)</title><rect x="302.5" y="437" width="0.3" height="15.0" fill="rgb(205,207,22)" rx="2" ry="2" />
|
|
<text x="305.54" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (106 samples, 0.53%)</title><rect x="368.9" y="309" width="6.2" height="15.0" fill="rgb(217,61,13)" rx="2" ry="2" />
|
|
<text x="371.87" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="302.4" y="309" width="0.1" height="15.0" fill="rgb(254,24,26)" rx="2" ry="2" />
|
|
<text x="305.36" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="679.9" y="341" width="0.2" height="15.0" fill="rgb(239,129,6)" rx="2" ry="2" />
|
|
<text x="682.94" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (25 samples, 0.13%)</title><rect x="302.8" y="421" width="1.5" height="15.0" fill="rgb(226,215,38)" rx="2" ry="2" />
|
|
<text x="305.83" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="561.6" y="277" width="0.1" height="15.0" fill="rgb(206,98,47)" rx="2" ry="2" />
|
|
<text x="564.55" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (4,709 samples, 23.55%)</title><rect x="443.2" y="533" width="277.9" height="15.0" fill="rgb(214,168,15)" rx="2" ry="2" />
|
|
<text x="446.17" y="543.5" >ipv4_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (18 samples, 0.09%)</title><rect x="612.2" y="293" width="1.0" height="15.0" fill="rgb(235,107,9)" rx="2" ry="2" />
|
|
<text x="615.19" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="299.9" y="197" width="0.5" height="15.0" fill="rgb(205,147,15)" rx="2" ry="2" />
|
|
<text x="302.94" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (3 samples, 0.02%)</title><rect x="353.3" y="325" width="0.2" height="15.0" fill="rgb(219,159,34)" rx="2" ry="2" />
|
|
<text x="356.35" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_hit_path_list (19 samples, 0.10%)</title><rect x="304.8" y="357" width="1.1" height="15.0" fill="rgb(245,109,19)" rx="2" ry="2" />
|
|
<text x="307.78" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ddos_sketch_logging_print (2 samples, 0.01%)</title><rect x="715.0" y="341" width="0.2" height="15.0" fill="rgb(213,155,30)" rx="2" ry="2" />
|
|
<text x="718.05" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="284.5" y="533" width="0.3" height="15.0" fill="rgb(245,109,19)" rx="2" ry="2" />
|
|
<text x="287.54" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (5 samples, 0.03%)</title><rect x="778.6" y="357" width="0.3" height="15.0" fill="rgb(226,40,38)" rx="2" ry="2" />
|
|
<text x="781.61" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (13 samples, 0.07%)</title><rect x="348.9" y="325" width="0.7" height="15.0" fill="rgb(246,128,20)" rx="2" ry="2" />
|
|
<text x="351.86" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="373.5" y="197" width="0.1" height="15.0" fill="rgb(248,55,34)" rx="2" ry="2" />
|
|
<text x="376.47" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="827.4" y="309" width="0.1" height="15.0" fill="rgb(229,79,21)" rx="2" ry="2" />
|
|
<text x="830.41" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_flags (2 samples, 0.01%)</title><rect x="670.9" y="309" width="0.1" height="15.0" fill="rgb(245,217,7)" rx="2" ry="2" />
|
|
<text x="673.91" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (4 samples, 0.02%)</title><rect x="779.3" y="421" width="0.2" height="15.0" fill="rgb(220,25,39)" rx="2" ry="2" />
|
|
<text x="782.26" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="304.6" y="533" width="0.1" height="15.0" fill="rgb(222,222,49)" rx="2" ry="2" />
|
|
<text x="307.60" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (7 samples, 0.04%)</title><rect x="380.2" y="501" width="0.4" height="15.0" fill="rgb(250,190,13)" rx="2" ry="2" />
|
|
<text x="383.20" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="827.1" y="373" width="0.2" height="15.0" fill="rgb(209,112,1)" rx="2" ry="2" />
|
|
<text x="830.12" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (24 samples, 0.12%)</title><rect x="364.5" y="421" width="1.4" height="15.0" fill="rgb(216,89,45)" rx="2" ry="2" />
|
|
<text x="367.50" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="702.1" y="325" width="0.1" height="15.0" fill="rgb(218,10,8)" rx="2" ry="2" />
|
|
<text x="705.13" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libpthread-2.17.so] (95 samples, 0.48%)</title><rect x="780.7" y="565" width="5.6" height="15.0" fill="rgb(227,64,8)" rx="2" ry="2" />
|
|
<text x="783.67" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (10 samples, 0.05%)</title><rect x="315.0" y="277" width="0.6" height="15.0" fill="rgb(232,100,50)" rx="2" ry="2" />
|
|
<text x="317.99" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (28 samples, 0.14%)</title><rect x="836.1" y="405" width="1.6" height="15.0" fill="rgb(205,168,45)" rx="2" ry="2" />
|
|
<text x="839.09" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (24 samples, 0.12%)</title><rect x="822.1" y="405" width="1.4" height="15.0" fill="rgb(248,149,5)" rx="2" ry="2" />
|
|
<text x="825.10" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="715.0" y="325" width="0.2" height="15.0" fill="rgb(245,195,45)" rx="2" ry="2" />
|
|
<text x="718.05" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (3 samples, 0.02%)</title><rect x="838.7" y="485" width="0.2" height="15.0" fill="rgb(224,175,7)" rx="2" ry="2" />
|
|
<text x="841.74" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (3 samples, 0.02%)</title><rect x="838.1" y="277" width="0.2" height="15.0" fill="rgb(216,162,47)" rx="2" ry="2" />
|
|
<text x="841.10" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (3 samples, 0.02%)</title><rect x="527.0" y="213" width="0.1" height="15.0" fill="rgb(207,184,33)" rx="2" ry="2" />
|
|
<text x="529.97" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (9 samples, 0.05%)</title><rect x="673.8" y="341" width="0.5" height="15.0" fill="rgb(238,31,32)" rx="2" ry="2" />
|
|
<text x="676.80" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (1,285 samples, 6.43%)</title><rect x="304.3" y="565" width="75.8" height="15.0" fill="rgb(225,190,0)" rx="2" ry="2" />
|
|
<text x="307.31" y="575.5" >dealipv4..</text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (2 samples, 0.01%)</title><rect x="351.6" y="197" width="0.1" height="15.0" fill="rgb(253,105,31)" rx="2" ry="2" />
|
|
<text x="354.58" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (15 samples, 0.08%)</title><rect x="379.0" y="357" width="0.9" height="15.0" fill="rgb(237,12,21)" rx="2" ry="2" />
|
|
<text x="382.02" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (19 samples, 0.10%)</title><rect x="567.5" y="357" width="1.1" height="15.0" fill="rgb(238,183,19)" rx="2" ry="2" />
|
|
<text x="570.45" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (13 samples, 0.07%)</title><rect x="353.5" y="325" width="0.8" height="15.0" fill="rgb(232,158,44)" rx="2" ry="2" />
|
|
<text x="356.52" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="523.8" y="277" width="0.3" height="15.0" fill="rgb(211,221,51)" rx="2" ry="2" />
|
|
<text x="526.84" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (12 samples, 0.06%)</title><rect x="298.8" y="325" width="0.7" height="15.0" fill="rgb(218,75,9)" rx="2" ry="2" />
|
|
<text x="301.76" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="836.9" y="229" width="0.4" height="15.0" fill="rgb(218,193,32)" rx="2" ry="2" />
|
|
<text x="839.91" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>syscall_trace_enter (6 samples, 0.03%)</title><rect x="785.9" y="517" width="0.4" height="15.0" fill="rgb(253,64,2)" rx="2" ry="2" />
|
|
<text x="788.93" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>EC_GROUP_set_generator (2 samples, 0.01%)</title><rect x="841.8" y="197" width="0.1" height="15.0" fill="rgb(226,145,8)" rx="2" ry="2" />
|
|
<text x="844.75" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="840.6" y="341" width="0.2" height="15.0" fill="rgb(238,213,14)" rx="2" ry="2" />
|
|
<text x="843.57" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (2 samples, 0.01%)</title><rect x="464.8" y="453" width="0.1" height="15.0" fill="rgb(220,31,35)" rx="2" ry="2" />
|
|
<text x="467.77" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (12 samples, 0.06%)</title><rect x="376.7" y="341" width="0.7" height="15.0" fill="rgb(232,157,31)" rx="2" ry="2" />
|
|
<text x="379.66" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (78 samples, 0.39%)</title><rect x="781.7" y="549" width="4.6" height="15.0" fill="rgb(224,121,44)" rx="2" ry="2" />
|
|
<text x="784.68" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (13 samples, 0.07%)</title><rect x="510.1" y="373" width="0.8" height="15.0" fill="rgb(242,12,13)" rx="2" ry="2" />
|
|
<text x="513.09" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (37 samples, 0.19%)</title><rect x="357.2" y="405" width="2.2" height="15.0" fill="rgb(230,63,47)" rx="2" ry="2" />
|
|
<text x="360.18" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="838.0" y="357" width="0.3" height="15.0" fill="rgb(226,16,40)" rx="2" ry="2" />
|
|
<text x="840.98" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (2 samples, 0.01%)</title><rect x="826.6" y="517" width="0.1" height="15.0" fill="rgb(208,61,38)" rx="2" ry="2" />
|
|
<text x="829.59" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_search (41 samples, 0.21%)</title><rect x="617.8" y="421" width="2.4" height="15.0" fill="rgb(251,29,19)" rx="2" ry="2" />
|
|
<text x="620.79" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (3 samples, 0.02%)</title><rect x="837.8" y="405" width="0.2" height="15.0" fill="rgb(225,18,50)" rx="2" ry="2" />
|
|
<text x="840.80" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (4 samples, 0.02%)</title><rect x="383.2" y="325" width="0.2" height="15.0" fill="rgb(243,30,17)" rx="2" ry="2" />
|
|
<text x="386.21" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="833.6" y="437" width="0.1" height="15.0" fill="rgb(251,60,5)" rx="2" ry="2" />
|
|
<text x="836.61" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (2 samples, 0.01%)</title><rect x="826.5" y="421" width="0.1" height="15.0" fill="rgb(234,129,18)" rx="2" ry="2" />
|
|
<text x="829.47" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (6 samples, 0.03%)</title><rect x="367.3" y="469" width="0.4" height="15.0" fill="rgb(252,91,49)" rx="2" ry="2" />
|
|
<text x="370.33" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (6 samples, 0.03%)</title><rect x="367.3" y="485" width="0.4" height="15.0" fill="rgb(234,189,7)" rx="2" ry="2" />
|
|
<text x="370.33" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (3 samples, 0.02%)</title><rect x="828.2" y="597" width="0.2" height="15.0" fill="rgb(207,71,54)" rx="2" ry="2" />
|
|
<text x="831.24" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="437" width="0.1" height="15.0" fill="rgb(251,111,40)" rx="2" ry="2" />
|
|
<text x="13.71" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (25 samples, 0.13%)</title><rect x="375.1" y="389" width="1.5" height="15.0" fill="rgb(226,20,54)" rx="2" ry="2" />
|
|
<text x="378.12" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="824.6" y="181" width="0.2" height="15.0" fill="rgb(218,161,25)" rx="2" ry="2" />
|
|
<text x="827.64" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_MONT_CTX_set (6 samples, 0.03%)</title><rect x="823.0" y="197" width="0.3" height="15.0" fill="rgb(212,103,41)" rx="2" ry="2" />
|
|
<text x="825.99" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>layer_addr_ntop_r (3 samples, 0.02%)</title><rect x="354.7" y="325" width="0.2" height="15.0" fill="rgb(246,63,29)" rx="2" ry="2" />
|
|
<text x="357.71" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (2 samples, 0.01%)</title><rect x="840.4" y="469" width="0.1" height="15.0" fill="rgb(211,152,44)" rx="2" ry="2" />
|
|
<text x="843.40" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (11 samples, 0.06%)</title><rect x="677.9" y="437" width="0.6" height="15.0" fill="rgb(213,85,17)" rx="2" ry="2" />
|
|
<text x="680.87" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (7 samples, 0.04%)</title><rect x="508.0" y="405" width="0.4" height="15.0" fill="rgb(252,92,40)" rx="2" ry="2" />
|
|
<text x="510.97" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="487.0" y="373" width="0.1" height="15.0" fill="rgb(237,16,16)" rx="2" ry="2" />
|
|
<text x="490.02" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="288.7" y="565" width="0.1" height="15.0" fill="rgb(248,65,21)" rx="2" ry="2" />
|
|
<text x="291.67" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>direction_I2E (2 samples, 0.01%)</title><rect x="362.6" y="293" width="0.1" height="15.0" fill="rgb(237,75,43)" rx="2" ry="2" />
|
|
<text x="365.61" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="341" width="0.1" height="15.0" fill="rgb(229,122,40)" rx="2" ry="2" />
|
|
<text x="13.71" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ftp.so] (5 samples, 0.03%)</title><rect x="352.9" y="373" width="0.3" height="15.0" fill="rgb(210,74,8)" rx="2" ry="2" />
|
|
<text x="355.93" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (9 samples, 0.05%)</title><rect x="834.7" y="597" width="0.6" height="15.0" fill="rgb(205,155,27)" rx="2" ry="2" />
|
|
<text x="837.73" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>send_event_log (4 samples, 0.02%)</title><rect x="779.8" y="405" width="0.2" height="15.0" fill="rgb(249,26,40)" rx="2" ry="2" />
|
|
<text x="782.79" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (106 samples, 0.53%)</title><rect x="368.9" y="357" width="6.2" height="15.0" fill="rgb(247,228,46)" rx="2" ry="2" />
|
|
<text x="371.87" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="368.5" y="325" width="0.4" height="15.0" fill="rgb(244,82,46)" rx="2" ry="2" />
|
|
<text x="371.51" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (15 samples, 0.08%)</title><rect x="508.4" y="421" width="0.9" height="15.0" fill="rgb(241,108,36)" rx="2" ry="2" />
|
|
<text x="511.44" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="823.6" y="421" width="0.1" height="15.0" fill="rgb(205,226,47)" rx="2" ry="2" />
|
|
<text x="826.58" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="383.2" y="261" width="0.1" height="15.0" fill="rgb(234,74,45)" rx="2" ry="2" />
|
|
<text x="386.21" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (15 samples, 0.08%)</title><rect x="291.6" y="565" width="0.9" height="15.0" fill="rgb(244,20,47)" rx="2" ry="2" />
|
|
<text x="294.62" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (11 samples, 0.06%)</title><rect x="314.9" y="357" width="0.7" height="15.0" fill="rgb(228,197,49)" rx="2" ry="2" />
|
|
<text x="317.93" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (173 samples, 0.87%)</title><rect x="578.7" y="373" width="10.2" height="15.0" fill="rgb(241,163,28)" rx="2" ry="2" />
|
|
<text x="581.67" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.5] (12 samples, 0.06%)</title><rect x="759.3" y="549" width="0.7" height="15.0" fill="rgb(242,20,0)" rx="2" ry="2" />
|
|
<text x="762.25" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (4 samples, 0.02%)</title><rect x="383.2" y="469" width="0.2" height="15.0" fill="rgb(208,211,32)" rx="2" ry="2" />
|
|
<text x="386.21" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_get_flags (2 samples, 0.01%)</title><rect x="609.2" y="309" width="0.1" height="15.0" fill="rgb(254,114,26)" rx="2" ry="2" />
|
|
<text x="612.18" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_tcpall_entry (21 samples, 0.11%)</title><rect x="671.0" y="373" width="1.3" height="15.0" fill="rgb(245,1,44)" rx="2" ry="2" />
|
|
<text x="674.02" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (2 samples, 0.01%)</title><rect x="568.3" y="341" width="0.2" height="15.0" fill="rgb(233,207,6)" rx="2" ry="2" />
|
|
<text x="571.34" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (3 samples, 0.02%)</title><rect x="367.7" y="341" width="0.2" height="15.0" fill="rgb(251,127,20)" rx="2" ry="2" />
|
|
<text x="370.75" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (13 samples, 0.07%)</title><rect x="693.8" y="309" width="0.8" height="15.0" fill="rgb(221,114,5)" rx="2" ry="2" />
|
|
<text x="696.80" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_app_name_by_id (2 samples, 0.01%)</title><rect x="657.2" y="325" width="0.1" height="15.0" fill="rgb(213,198,7)" rx="2" ry="2" />
|
|
<text x="660.16" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (8 samples, 0.04%)</title><rect x="383.4" y="357" width="0.5" height="15.0" fill="rgb(226,228,22)" rx="2" ry="2" />
|
|
<text x="386.45" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (12 samples, 0.06%)</title><rect x="829.1" y="405" width="0.7" height="15.0" fill="rgb(234,58,19)" rx="2" ry="2" />
|
|
<text x="832.07" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (9 samples, 0.05%)</title><rect x="510.9" y="389" width="0.5" height="15.0" fill="rgb(240,22,12)" rx="2" ry="2" />
|
|
<text x="513.86" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (11 samples, 0.06%)</title><rect x="824.0" y="165" width="0.6" height="15.0" fill="rgb(244,112,31)" rx="2" ry="2" />
|
|
<text x="826.99" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_capture_packet_entry (39 samples, 0.20%)</title><rect x="695.6" y="357" width="2.3" height="15.0" fill="rgb(251,143,3)" rx="2" ry="2" />
|
|
<text x="698.57" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (15 samples, 0.08%)</title><rect x="379.0" y="373" width="0.9" height="15.0" fill="rgb(233,148,18)" rx="2" ry="2" />
|
|
<text x="382.02" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_worker_process (5 samples, 0.03%)</title><rect x="826.7" y="421" width="0.3" height="15.0" fill="rgb(210,156,31)" rx="2" ry="2" />
|
|
<text x="829.71" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (5 samples, 0.03%)</title><rect x="363.9" y="293" width="0.2" height="15.0" fill="rgb(212,80,40)" rx="2" ry="2" />
|
|
<text x="366.85" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (6 samples, 0.03%)</title><rect x="300.5" y="277" width="0.3" height="15.0" fill="rgb(242,184,14)" rx="2" ry="2" />
|
|
<text x="303.47" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (5 samples, 0.03%)</title><rect x="368.0" y="293" width="0.3" height="15.0" fill="rgb(217,48,40)" rx="2" ry="2" />
|
|
<text x="370.98" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="377.9" y="325" width="0.2" height="15.0" fill="rgb(254,148,24)" rx="2" ry="2" />
|
|
<text x="380.90" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (4 samples, 0.02%)</title><rect x="838.4" y="421" width="0.2" height="15.0" fill="rgb(207,213,17)" rx="2" ry="2" />
|
|
<text x="841.39" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="825.6" y="165" width="0.5" height="15.0" fill="rgb(240,38,43)" rx="2" ry="2" />
|
|
<text x="828.58" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="355.7" y="309" width="0.2" height="15.0" fill="rgb(234,2,11)" rx="2" ry="2" />
|
|
<text x="358.71" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_ip_plugin_table_get_ex_data (2 samples, 0.01%)</title><rect x="357.5" y="341" width="0.2" height="15.0" fill="rgb(209,162,4)" rx="2" ry="2" />
|
|
<text x="360.54" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="681.4" y="293" width="0.1" height="15.0" fill="rgb(240,71,51)" rx="2" ry="2" />
|
|
<text x="684.41" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="469" width="0.1" height="15.0" fill="rgb(232,90,43)" rx="2" ry="2" />
|
|
<text x="13.71" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>direction_I2E (3 samples, 0.02%)</title><rect x="354.5" y="325" width="0.2" height="15.0" fill="rgb(220,220,17)" rx="2" ry="2" />
|
|
<text x="357.53" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_payload (2 samples, 0.01%)</title><rect x="482.6" y="325" width="0.1" height="15.0" fill="rgb(238,31,9)" rx="2" ry="2" />
|
|
<text x="485.59" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="775.7" y="517" width="0.3" height="15.0" fill="rgb(239,87,33)" rx="2" ry="2" />
|
|
<text x="778.72" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="699.6" y="309" width="0.3" height="15.0" fill="rgb(243,136,13)" rx="2" ry="2" />
|
|
<text x="702.65" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (13 samples, 0.07%)</title><rect x="464.9" y="453" width="0.8" height="15.0" fill="rgb(220,121,1)" rx="2" ry="2" />
|
|
<text x="467.89" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>send_log_by_type (53 samples, 0.27%)</title><rect x="569.8" y="309" width="3.1" height="15.0" fill="rgb(251,57,52)" rx="2" ry="2" />
|
|
<text x="572.81" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_bsearch (9 samples, 0.05%)</title><rect x="293.4" y="597" width="0.5" height="15.0" fill="rgb(216,118,11)" rx="2" ry="2" />
|
|
<text x="296.39" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gdev_keepalive_ip_entry (6 samples, 0.03%)</title><rect x="720.5" y="501" width="0.3" height="15.0" fill="rgb(217,10,44)" rx="2" ry="2" />
|
|
<text x="723.48" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (39 samples, 0.20%)</title><rect x="520.8" y="277" width="2.3" height="15.0" fill="rgb(219,57,37)" rx="2" ry="2" />
|
|
<text x="523.77" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_hit_path_list (51 samples, 0.26%)</title><rect x="520.7" y="309" width="3.0" height="15.0" fill="rgb(228,124,0)" rx="2" ry="2" />
|
|
<text x="523.65" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (12 samples, 0.06%)</title><rect x="829.1" y="389" width="0.7" height="15.0" fill="rgb(229,57,42)" rx="2" ry="2" />
|
|
<text x="832.07" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (10 samples, 0.05%)</title><rect x="700.0" y="325" width="0.6" height="15.0" fill="rgb(215,221,32)" rx="2" ry="2" />
|
|
<text x="703.00" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (10 samples, 0.05%)</title><rect x="704.3" y="357" width="0.6" height="15.0" fill="rgb(254,175,39)" rx="2" ry="2" />
|
|
<text x="707.31" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="361.4" y="261" width="0.2" height="15.0" fill="rgb(253,187,0)" rx="2" ry="2" />
|
|
<text x="364.43" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="367.5" y="357" width="0.2" height="15.0" fill="rgb(253,89,53)" rx="2" ry="2" />
|
|
<text x="370.51" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="560.9" y="293" width="0.1" height="15.0" fill="rgb(248,154,2)" rx="2" ry="2" />
|
|
<text x="563.90" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (5 samples, 0.03%)</title><rect x="826.7" y="405" width="0.3" height="15.0" fill="rgb(239,166,47)" rx="2" ry="2" />
|
|
<text x="829.71" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (17 samples, 0.09%)</title><rect x="687.1" y="389" width="1.0" height="15.0" fill="rgb(236,188,27)" rx="2" ry="2" />
|
|
<text x="690.08" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (6 samples, 0.03%)</title><rect x="302.2" y="421" width="0.3" height="15.0" fill="rgb(245,226,1)" rx="2" ry="2" />
|
|
<text x="305.18" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (3 samples, 0.02%)</title><rect x="524.8" y="277" width="0.2" height="15.0" fill="rgb(228,218,3)" rx="2" ry="2" />
|
|
<text x="527.84" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (8 samples, 0.04%)</title><rect x="829.8" y="421" width="0.4" height="15.0" fill="rgb(227,16,53)" rx="2" ry="2" />
|
|
<text x="832.77" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (132 samples, 0.66%)</title><rect x="306.7" y="261" width="7.8" height="15.0" fill="rgb(230,92,9)" rx="2" ry="2" />
|
|
<text x="309.73" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_STAT_LATEENCY (6 samples, 0.03%)</title><rect x="519.7" y="325" width="0.3" height="15.0" fill="rgb(235,96,1)" rx="2" ry="2" />
|
|
<text x="522.65" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>packet_io_under_ddos_should_bypass (5 samples, 0.03%)</title><rect x="457.0" y="469" width="0.3" height="15.0" fill="rgb(224,229,9)" rx="2" ry="2" />
|
|
<text x="460.04" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (8 samples, 0.04%)</title><rect x="778.4" y="373" width="0.5" height="15.0" fill="rgb(239,119,29)" rx="2" ry="2" />
|
|
<text x="781.43" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>finish_task_switch (14 samples, 0.07%)</title><rect x="784.5" y="437" width="0.8" height="15.0" fill="rgb(249,71,31)" rx="2" ry="2" />
|
|
<text x="787.45" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_add (44 samples, 0.22%)</title><rect x="628.0" y="405" width="2.6" height="15.0" fill="rgb(208,21,6)" rx="2" ry="2" />
|
|
<text x="631.00" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>append_common_field (39 samples, 0.20%)</title><rect x="353.3" y="357" width="2.3" height="15.0" fill="rgb(242,102,46)" rx="2" ry="2" />
|
|
<text x="356.35" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (17 samples, 0.09%)</title><rect x="365.9" y="421" width="1.0" height="15.0" fill="rgb(230,151,40)" rx="2" ry="2" />
|
|
<text x="368.92" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_app_name_by_id (5 samples, 0.03%)</title><rect x="355.0" y="277" width="0.3" height="15.0" fill="rgb(205,207,15)" rx="2" ry="2" />
|
|
<text x="358.00" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (11 samples, 0.06%)</title><rect x="363.9" y="373" width="0.6" height="15.0" fill="rgb(209,195,49)" rx="2" ry="2" />
|
|
<text x="366.85" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (106 samples, 0.53%)</title><rect x="298.1" y="501" width="6.2" height="15.0" fill="rgb(212,200,12)" rx="2" ry="2" />
|
|
<text x="301.05" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (6 samples, 0.03%)</title><rect x="826.7" y="501" width="0.4" height="15.0" fill="rgb(240,35,43)" rx="2" ry="2" />
|
|
<text x="829.71" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (15 samples, 0.08%)</title><rect x="820.7" y="629" width="0.9" height="15.0" fill="rgb(254,179,26)" rx="2" ry="2" />
|
|
<text x="823.69" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_session_flags (2 samples, 0.01%)</title><rect x="670.9" y="325" width="0.1" height="15.0" fill="rgb(237,52,13)" rx="2" ry="2" />
|
|
<text x="673.91" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (6 samples, 0.03%)</title><rect x="836.9" y="309" width="0.4" height="15.0" fill="rgb(249,218,30)" rx="2" ry="2" />
|
|
<text x="839.91" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (2 samples, 0.01%)</title><rect x="840.4" y="437" width="0.1" height="15.0" fill="rgb(250,48,29)" rx="2" ry="2" />
|
|
<text x="843.40" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="826.1" y="133" width="0.4" height="15.0" fill="rgb(246,113,17)" rx="2" ry="2" />
|
|
<text x="829.12" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (6 samples, 0.03%)</title><rect x="670.7" y="357" width="0.3" height="15.0" fill="rgb(215,127,53)" rx="2" ry="2" />
|
|
<text x="673.67" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (4 samples, 0.02%)</title><rect x="524.6" y="277" width="0.2" height="15.0" fill="rgb(225,22,2)" rx="2" ry="2" />
|
|
<text x="527.61" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libpthread-2.17.so] (11 samples, 0.06%)</title><rect x="572.2" y="197" width="0.7" height="15.0" fill="rgb(213,207,7)" rx="2" ry="2" />
|
|
<text x="575.23" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_calloc (9 samples, 0.05%)</title><rect x="715.2" y="405" width="0.6" height="15.0" fill="rgb(251,20,20)" rx="2" ry="2" />
|
|
<text x="718.23" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="378.1" y="309" width="0.2" height="15.0" fill="rgb(226,81,23)" rx="2" ry="2" />
|
|
<text x="381.08" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCP_ENTRY (9 samples, 0.05%)</title><rect x="565.3" y="357" width="0.6" height="15.0" fill="rgb(230,6,6)" rx="2" ry="2" />
|
|
<text x="568.33" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="577.7" y="341" width="0.2" height="15.0" fill="rgb(206,189,15)" rx="2" ry="2" />
|
|
<text x="580.72" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="292.6" y="565" width="0.5" height="15.0" fill="rgb(224,109,13)" rx="2" ry="2" />
|
|
<text x="295.56" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_no_init (2 samples, 0.01%)</title><rect x="585.4" y="309" width="0.1" height="15.0" fill="rgb(252,117,13)" rx="2" ry="2" />
|
|
<text x="588.39" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="383.3" y="261" width="0.1" height="15.0" fill="rgb(233,226,48)" rx="2" ry="2" />
|
|
<text x="386.33" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="571.8" y="229" width="0.1" height="15.0" fill="rgb(212,43,3)" rx="2" ry="2" />
|
|
<text x="574.76" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="838.4" y="229" width="0.2" height="15.0" fill="rgb(234,160,12)" rx="2" ry="2" />
|
|
<text x="841.45" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="354.9" y="309" width="0.1" height="15.0" fill="rgb(237,142,25)" rx="2" ry="2" />
|
|
<text x="357.88" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (14 samples, 0.07%)</title><rect x="820.7" y="437" width="0.9" height="15.0" fill="rgb(215,214,20)" rx="2" ry="2" />
|
|
<text x="823.74" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_ids (2 samples, 0.01%)</title><rect x="376.2" y="277" width="0.1" height="15.0" fill="rgb(210,11,13)" rx="2" ry="2" />
|
|
<text x="379.19" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_ncopy (2 samples, 0.01%)</title><rect x="822.2" y="229" width="0.1" height="15.0" fill="rgb(205,16,47)" rx="2" ry="2" />
|
|
<text x="825.22" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (10 samples, 0.05%)</title><rect x="714.3" y="293" width="0.6" height="15.0" fill="rgb(244,96,45)" rx="2" ry="2" />
|
|
<text x="717.34" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__localeconv (2 samples, 0.01%)</title><rect x="560.4" y="277" width="0.1" height="15.0" fill="rgb(206,2,16)" rx="2" ry="2" />
|
|
<text x="563.37" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (39 samples, 0.20%)</title><rect x="353.3" y="373" width="2.3" height="15.0" fill="rgb(230,110,45)" rx="2" ry="2" />
|
|
<text x="356.35" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="606.6" y="357" width="0.2" height="15.0" fill="rgb(218,53,34)" rx="2" ry="2" />
|
|
<text x="609.64" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (2 samples, 0.01%)</title><rect x="581.0" y="261" width="0.1" height="15.0" fill="rgb(218,218,18)" rx="2" ry="2" />
|
|
<text x="583.97" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (5 samples, 0.03%)</title><rect x="838.6" y="549" width="0.3" height="15.0" fill="rgb(246,187,46)" rx="2" ry="2" />
|
|
<text x="841.63" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_sse2 (2 samples, 0.01%)</title><rect x="288.1" y="517" width="0.2" height="15.0" fill="rgb(211,158,39)" rx="2" ry="2" />
|
|
<text x="291.14" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_q_yield (12 samples, 0.06%)</title><rect x="572.2" y="229" width="0.7" height="15.0" fill="rgb(225,79,11)" rx="2" ry="2" />
|
|
<text x="575.17" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfs_write (7 samples, 0.04%)</title><rect x="572.5" y="117" width="0.4" height="15.0" fill="rgb(245,185,53)" rx="2" ry="2" />
|
|
<text x="575.47" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (11 samples, 0.06%)</title><rect x="363.9" y="309" width="0.6" height="15.0" fill="rgb(253,152,51)" rx="2" ry="2" />
|
|
<text x="366.85" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="582.7" y="309" width="0.2" height="15.0" fill="rgb(236,56,46)" rx="2" ry="2" />
|
|
<text x="585.68" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="780.3" y="517" width="0.1" height="15.0" fill="rgb(249,213,22)" rx="2" ry="2" />
|
|
<text x="783.26" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="354.4" y="293" width="0.1" height="15.0" fill="rgb(247,37,50)" rx="2" ry="2" />
|
|
<text x="357.35" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="382.5" y="325" width="0.1" height="15.0" fill="rgb(253,161,7)" rx="2" ry="2" />
|
|
<text x="385.50" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_recogniseGeneralEntityRegion (4 samples, 0.02%)</title><rect x="528.1" y="261" width="0.3" height="15.0" fill="rgb(234,159,16)" rx="2" ry="2" />
|
|
<text x="531.15" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (8 samples, 0.04%)</title><rect x="365.9" y="325" width="0.5" height="15.0" fill="rgb(245,224,38)" rx="2" ry="2" />
|
|
<text x="368.92" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (3 samples, 0.02%)</title><rect x="560.9" y="309" width="0.2" height="15.0" fill="rgb(226,21,15)" rx="2" ry="2" />
|
|
<text x="563.90" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ipv4_address (2 samples, 0.01%)</title><rect x="357.1" y="373" width="0.1" height="15.0" fill="rgb(249,151,13)" rx="2" ry="2" />
|
|
<text x="360.07" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (136 samples, 0.68%)</title><rect x="596.4" y="405" width="8.0" height="15.0" fill="rgb(215,5,34)" rx="2" ry="2" />
|
|
<text x="599.37" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (44 samples, 0.22%)</title><rect x="824.0" y="453" width="2.6" height="15.0" fill="rgb(223,97,50)" rx="2" ry="2" />
|
|
<text x="826.99" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (4 samples, 0.02%)</title><rect x="776.2" y="501" width="0.3" height="15.0" fill="rgb(242,6,26)" rx="2" ry="2" />
|
|
<text x="779.25" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="582.4" y="293" width="0.2" height="15.0" fill="rgb(236,183,32)" rx="2" ry="2" />
|
|
<text x="585.44" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (13 samples, 0.07%)</title><rect x="467.5" y="373" width="0.7" height="15.0" fill="rgb(245,16,54)" rx="2" ry="2" />
|
|
<text x="470.48" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (3 samples, 0.02%)</title><rect x="304.1" y="405" width="0.2" height="15.0" fill="rgb(208,149,32)" rx="2" ry="2" />
|
|
<text x="307.13" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (3 samples, 0.02%)</title><rect x="841.5" y="213" width="0.2" height="15.0" fill="rgb(236,71,18)" rx="2" ry="2" />
|
|
<text x="844.52" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="821.0" y="309" width="0.1" height="15.0" fill="rgb(223,113,1)" rx="2" ry="2" />
|
|
<text x="823.98" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ja3_md5sum (8 samples, 0.04%)</title><rect x="835.3" y="613" width="0.5" height="15.0" fill="rgb(228,141,40)" rx="2" ry="2" />
|
|
<text x="838.32" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_ids (3 samples, 0.02%)</title><rect x="302.0" y="357" width="0.2" height="15.0" fill="rgb(233,56,30)" rx="2" ry="2" />
|
|
<text x="305.01" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="779.4" y="405" width="0.1" height="15.0" fill="rgb(224,168,49)" rx="2" ry="2" />
|
|
<text x="782.38" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="588.3" y="277" width="0.2" height="15.0" fill="rgb(242,59,46)" rx="2" ry="2" />
|
|
<text x="591.34" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="349.6" y="325" width="0.4" height="15.0" fill="rgb(211,18,23)" rx="2" ry="2" />
|
|
<text x="352.63" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (15 samples, 0.08%)</title><rect x="485.4" y="485" width="0.8" height="15.0" fill="rgb(246,172,19)" rx="2" ry="2" />
|
|
<text x="488.36" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_plug_entry (4 samples, 0.02%)</title><rect x="350.2" y="293" width="0.2" height="15.0" fill="rgb(215,74,37)" rx="2" ry="2" />
|
|
<text x="353.16" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="836.9" y="277" width="0.4" height="15.0" fill="rgb(229,28,20)" rx="2" ry="2" />
|
|
<text x="839.91" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (48 samples, 0.24%)</title><rect x="364.5" y="469" width="2.8" height="15.0" fill="rgb(254,98,10)" rx="2" ry="2" />
|
|
<text x="367.50" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (12 samples, 0.06%)</title><rect x="379.2" y="341" width="0.7" height="15.0" fill="rgb(242,93,23)" rx="2" ry="2" />
|
|
<text x="382.20" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (30 samples, 0.15%)</title><rect x="361.7" y="389" width="1.8" height="15.0" fill="rgb(234,180,52)" rx="2" ry="2" />
|
|
<text x="364.73" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_ssse3_back (4 samples, 0.02%)</title><rect x="289.8" y="581" width="0.3" height="15.0" fill="rgb(216,205,36)" rx="2" ry="2" />
|
|
<text x="292.85" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (28 samples, 0.14%)</title><rect x="380.7" y="309" width="1.7" height="15.0" fill="rgb(216,58,30)" rx="2" ry="2" />
|
|
<text x="383.73" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="377.1" y="197" width="0.3" height="15.0" fill="rgb(240,157,41)" rx="2" ry="2" />
|
|
<text x="380.13" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="780.3" y="533" width="0.1" height="15.0" fill="rgb(246,201,4)" rx="2" ry="2" />
|
|
<text x="783.26" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (4 samples, 0.02%)</title><rect x="608.7" y="309" width="0.2" height="15.0" fill="rgb(240,91,7)" rx="2" ry="2" />
|
|
<text x="611.70" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_tcpall_entry (48 samples, 0.24%)</title><rect x="586.0" y="357" width="2.9" height="15.0" fill="rgb(246,149,8)" rx="2" ry="2" />
|
|
<text x="589.04" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (12 samples, 0.06%)</title><rect x="379.2" y="325" width="0.7" height="15.0" fill="rgb(205,7,19)" rx="2" ry="2" />
|
|
<text x="382.20" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="421" width="0.1" height="15.0" fill="rgb(235,204,43)" rx="2" ry="2" />
|
|
<text x="13.71" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="826.6" y="485" width="0.1" height="15.0" fill="rgb(227,190,14)" rx="2" ry="2" />
|
|
<text x="829.59" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddNumberToObject (2 samples, 0.01%)</title><rect x="665.8" y="341" width="0.1" height="15.0" fill="rgb(227,194,34)" rx="2" ry="2" />
|
|
<text x="668.77" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (9 samples, 0.05%)</title><rect x="707.7" y="325" width="0.5" height="15.0" fill="rgb(224,107,53)" rx="2" ry="2" />
|
|
<text x="710.67" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (4 samples, 0.02%)</title><rect x="681.8" y="325" width="0.3" height="15.0" fill="rgb(221,14,12)" rx="2" ry="2" />
|
|
<text x="684.82" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_plug_entry (7 samples, 0.04%)</title><rect x="349.6" y="341" width="0.4" height="15.0" fill="rgb(253,160,17)" rx="2" ry="2" />
|
|
<text x="352.63" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (10 samples, 0.05%)</title><rect x="673.7" y="357" width="0.6" height="15.0" fill="rgb(225,183,9)" rx="2" ry="2" />
|
|
<text x="676.74" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="368.5" y="309" width="0.4" height="15.0" fill="rgb(208,51,35)" rx="2" ry="2" />
|
|
<text x="371.51" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="292.7" y="549" width="0.4" height="15.0" fill="rgb(238,224,9)" rx="2" ry="2" />
|
|
<text x="295.68" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="821.7" y="421" width="0.4" height="15.0" fill="rgb(231,96,33)" rx="2" ry="2" />
|
|
<text x="824.75" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (193 samples, 0.97%)</title><rect x="604.9" y="437" width="11.4" height="15.0" fill="rgb(229,51,51)" rx="2" ry="2" />
|
|
<text x="607.93" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="829.1" y="245" width="0.1" height="15.0" fill="rgb(240,27,10)" rx="2" ry="2" />
|
|
<text x="832.07" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="700.1" y="277" width="0.2" height="15.0" fill="rgb(237,135,52)" rx="2" ry="2" />
|
|
<text x="703.12" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>QUIC_ENTRY (4 samples, 0.02%)</title><rect x="480.6" y="389" width="0.2" height="15.0" fill="rgb(252,199,45)" rx="2" ry="2" />
|
|
<text x="483.58" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="606.0" y="389" width="0.2" height="15.0" fill="rgb(230,82,1)" rx="2" ry="2" />
|
|
<text x="609.05" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.03%)</title><rect x="304.3" y="453" width="0.3" height="15.0" fill="rgb(253,93,53)" rx="2" ry="2" />
|
|
<text x="307.31" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_destroy (4 samples, 0.02%)</title><rect x="608.7" y="293" width="0.2" height="15.0" fill="rgb(252,29,42)" rx="2" ry="2" />
|
|
<text x="611.70" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_worker_process (4 samples, 0.02%)</title><rect x="838.4" y="357" width="0.2" height="15.0" fill="rgb(237,40,44)" rx="2" ry="2" />
|
|
<text x="841.39" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (51 samples, 0.26%)</title><rect x="562.0" y="357" width="3.0" height="15.0" fill="rgb(219,115,9)" rx="2" ry="2" />
|
|
<text x="565.02" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>append_common_field (2 samples, 0.01%)</title><rect x="823.8" y="453" width="0.1" height="15.0" fill="rgb(210,95,4)" rx="2" ry="2" />
|
|
<text x="826.75" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (29 samples, 0.15%)</title><rect x="380.7" y="421" width="1.7" height="15.0" fill="rgb(220,137,20)" rx="2" ry="2" />
|
|
<text x="383.67" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (12 samples, 0.06%)</title><rect x="524.3" y="309" width="0.7" height="15.0" fill="rgb(232,84,38)" rx="2" ry="2" />
|
|
<text x="527.31" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (25 samples, 0.13%)</title><rect x="302.8" y="437" width="1.5" height="15.0" fill="rgb(217,192,41)" rx="2" ry="2" />
|
|
<text x="305.83" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>EC_GROUP_new_by_curve_name (4 samples, 0.02%)</title><rect x="841.7" y="213" width="0.2" height="15.0" fill="rgb(217,44,31)" rx="2" ry="2" />
|
|
<text x="844.69" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (2 samples, 0.01%)</title><rect x="836.0" y="309" width="0.1" height="15.0" fill="rgb(236,63,34)" rx="2" ry="2" />
|
|
<text x="838.97" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_integer (11 samples, 0.06%)</title><rect x="824.0" y="213" width="0.6" height="15.0" fill="rgb(213,146,28)" rx="2" ry="2" />
|
|
<text x="826.99" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="829.1" y="229" width="0.1" height="15.0" fill="rgb(219,84,8)" rx="2" ry="2" />
|
|
<text x="832.07" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>____strtod_l_internal (3 samples, 0.02%)</title><rect x="364.0" y="245" width="0.1" height="15.0" fill="rgb(211,167,34)" rx="2" ry="2" />
|
|
<text x="366.97" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="304.6" y="373" width="0.1" height="15.0" fill="rgb(221,162,10)" rx="2" ry="2" />
|
|
<text x="307.60" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (25 samples, 0.13%)</title><rect x="375.1" y="405" width="1.5" height="15.0" fill="rgb(252,33,20)" rx="2" ry="2" />
|
|
<text x="378.12" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (3 samples, 0.02%)</title><rect x="829.8" y="373" width="0.2" height="15.0" fill="rgb(254,99,24)" rx="2" ry="2" />
|
|
<text x="832.77" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_jump_layer (4 samples, 0.02%)</title><rect x="653.9" y="357" width="0.2" height="15.0" fill="rgb(249,30,30)" rx="2" ry="2" />
|
|
<text x="656.85" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="838.4" y="277" width="0.2" height="15.0" fill="rgb(237,220,36)" rx="2" ry="2" />
|
|
<text x="841.39" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (530 samples, 2.65%)</title><rect x="317.2" y="277" width="31.2" height="15.0" fill="rgb(240,143,1)" rx="2" ry="2" />
|
|
<text x="320.17" y="287.5" >PR..</text>
|
|
</g>
|
|
<g >
|
|
<title>srt_attribute_set_ip_location (4 samples, 0.02%)</title><rect x="377.4" y="357" width="0.3" height="15.0" fill="rgb(223,84,36)" rx="2" ry="2" />
|
|
<text x="380.43" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (6 samples, 0.03%)</title><rect x="568.9" y="293" width="0.3" height="15.0" fill="rgb(217,34,20)" rx="2" ry="2" />
|
|
<text x="571.87" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (4 samples, 0.02%)</title><rect x="383.2" y="453" width="0.2" height="15.0" fill="rgb(224,162,34)" rx="2" ry="2" />
|
|
<text x="386.21" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (82 samples, 0.41%)</title><rect x="369.8" y="261" width="4.8" height="15.0" fill="rgb(226,109,19)" rx="2" ry="2" />
|
|
<text x="372.75" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (3,911 samples, 19.56%)</title><rect x="488.6" y="501" width="230.8" height="15.0" fill="rgb(218,179,22)" rx="2" ry="2" />
|
|
<text x="491.55" y="511.5" >vxlan_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_ids (3 samples, 0.02%)</title><rect x="821.9" y="309" width="0.2" height="15.0" fill="rgb(206,8,45)" rx="2" ry="2" />
|
|
<text x="824.92" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_tcpall_entry (6 samples, 0.03%)</title><rect x="361.1" y="405" width="0.3" height="15.0" fill="rgb(238,228,43)" rx="2" ry="2" />
|
|
<text x="364.08" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (2 samples, 0.01%)</title><rect x="361.4" y="341" width="0.2" height="15.0" fill="rgb(233,81,18)" rx="2" ry="2" />
|
|
<text x="364.43" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mpn_lshift (2 samples, 0.01%)</title><rect x="360.8" y="261" width="0.2" height="15.0" fill="rgb(213,89,11)" rx="2" ry="2" />
|
|
<text x="363.84" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (3 samples, 0.02%)</title><rect x="828.2" y="565" width="0.2" height="15.0" fill="rgb(247,180,32)" rx="2" ry="2" />
|
|
<text x="831.24" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_ipv4 (2 samples, 0.01%)</title><rect x="357.1" y="357" width="0.1" height="15.0" fill="rgb(230,43,24)" rx="2" ry="2" />
|
|
<text x="360.07" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_toppar_enq_msg (3 samples, 0.02%)</title><rect x="674.2" y="261" width="0.1" height="15.0" fill="rgb(231,131,46)" rx="2" ry="2" />
|
|
<text x="677.15" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="679.9" y="357" width="0.2" height="15.0" fill="rgb(244,199,36)" rx="2" ry="2" />
|
|
<text x="682.94" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="779.6" y="293" width="0.1" height="15.0" fill="rgb(229,84,13)" rx="2" ry="2" />
|
|
<text x="782.61" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (3 samples, 0.02%)</title><rect x="302.2" y="309" width="0.2" height="15.0" fill="rgb(222,101,10)" rx="2" ry="2" />
|
|
<text x="305.18" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (4 samples, 0.02%)</title><rect x="585.3" y="341" width="0.3" height="15.0" fill="rgb(232,72,6)" rx="2" ry="2" />
|
|
<text x="588.33" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (2 samples, 0.01%)</title><rect x="708.2" y="325" width="0.1" height="15.0" fill="rgb(219,24,12)" rx="2" ry="2" />
|
|
<text x="711.20" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_bsearch_ex_ (2 samples, 0.01%)</title><rect x="827.9" y="229" width="0.1" height="15.0" fill="rgb(219,201,40)" rx="2" ry="2" />
|
|
<text x="830.89" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (114 samples, 0.57%)</title><rect x="773.7" y="565" width="6.7" height="15.0" fill="rgb(248,119,45)" rx="2" ry="2" />
|
|
<text x="776.65" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (72 samples, 0.36%)</title><rect x="357.2" y="437" width="4.2" height="15.0" fill="rgb(248,92,37)" rx="2" ry="2" />
|
|
<text x="360.18" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (4 samples, 0.02%)</title><rect x="835.9" y="421" width="0.2" height="15.0" fill="rgb(231,15,18)" rx="2" ry="2" />
|
|
<text x="838.85" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new (6 samples, 0.03%)</title><rect x="674.0" y="293" width="0.3" height="15.0" fill="rgb(240,190,0)" rx="2" ry="2" />
|
|
<text x="676.97" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (3 samples, 0.02%)</title><rect x="706.2" y="373" width="0.2" height="15.0" fill="rgb(220,204,34)" rx="2" ry="2" />
|
|
<text x="709.20" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_curr_msgs_add (2 samples, 0.01%)</title><rect x="571.6" y="245" width="0.1" height="15.0" fill="rgb(244,189,34)" rx="2" ry="2" />
|
|
<text x="574.58" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (7 samples, 0.04%)</title><rect x="366.9" y="405" width="0.4" height="15.0" fill="rgb(236,42,29)" rx="2" ry="2" />
|
|
<text x="369.92" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="827.3" y="293" width="0.1" height="15.0" fill="rgb(236,160,52)" rx="2" ry="2" />
|
|
<text x="830.30" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (4 samples, 0.02%)</title><rect x="378.8" y="341" width="0.2" height="15.0" fill="rgb(247,134,14)" rx="2" ry="2" />
|
|
<text x="381.78" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (561 samples, 2.81%)</title><rect x="526.6" y="341" width="33.1" height="15.0" fill="rgb(205,151,39)" rx="2" ry="2" />
|
|
<text x="529.56" y="351.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="829.1" y="149" width="0.1" height="15.0" fill="rgb(207,139,47)" rx="2" ry="2" />
|
|
<text x="832.07" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (40 samples, 0.20%)</title><rect x="821.6" y="597" width="2.3" height="15.0" fill="rgb(220,134,18)" rx="2" ry="2" />
|
|
<text x="824.57" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_field_parser (2 samples, 0.01%)</title><rect x="355.9" y="357" width="0.2" height="15.0" fill="rgb(246,3,36)" rx="2" ry="2" />
|
|
<text x="358.94" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="589.3" y="341" width="0.3" height="15.0" fill="rgb(222,131,45)" rx="2" ry="2" />
|
|
<text x="592.29" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (8 samples, 0.04%)</title><rect x="359.4" y="293" width="0.4" height="15.0" fill="rgb(232,187,9)" rx="2" ry="2" />
|
|
<text x="362.37" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_sticky_partition (2 samples, 0.01%)</title><rect x="610.9" y="213" width="0.2" height="15.0" fill="rgb(235,58,38)" rx="2" ry="2" />
|
|
<text x="613.95" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_plug_entry (4 samples, 0.02%)</title><rect x="827.3" y="389" width="0.2" height="15.0" fill="rgb(213,218,35)" rx="2" ry="2" />
|
|
<text x="830.30" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_idle (5,895 samples, 29.48%)</title><rect x="842.1" y="581" width="347.9" height="15.0" fill="rgb(216,101,21)" rx="2" ry="2" />
|
|
<text x="845.11" y="591.5" >do_idle</text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (2 samples, 0.01%)</title><rect x="487.0" y="437" width="0.1" height="15.0" fill="rgb(231,89,6)" rx="2" ry="2" />
|
|
<text x="490.02" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_STAT_UDP_ADD (2 samples, 0.01%)</title><rect x="465.7" y="373" width="0.1" height="15.0" fill="rgb(229,168,8)" rx="2" ry="2" />
|
|
<text x="468.65" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_pop_free (2 samples, 0.01%)</title><rect x="351.6" y="229" width="0.1" height="15.0" fill="rgb(213,4,51)" rx="2" ry="2" />
|
|
<text x="354.58" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (47 samples, 0.24%)</title><rect x="380.7" y="517" width="2.7" height="15.0" fill="rgb(234,79,16)" rx="2" ry="2" />
|
|
<text x="383.67" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="298.1" y="277" width="0.7" height="15.0" fill="rgb(215,217,10)" rx="2" ry="2" />
|
|
<text x="301.05" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="481.6" y="325" width="0.2" height="15.0" fill="rgb(207,131,14)" rx="2" ry="2" />
|
|
<text x="484.65" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfs_write (2 samples, 0.01%)</title><rect x="674.2" y="133" width="0.1" height="15.0" fill="rgb(228,82,15)" rx="2" ry="2" />
|
|
<text x="677.15" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (9 samples, 0.05%)</title><rect x="294.0" y="597" width="0.5" height="15.0" fill="rgb(241,141,38)" rx="2" ry="2" />
|
|
<text x="296.98" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (4 samples, 0.02%)</title><rect x="304.4" y="357" width="0.2" height="15.0" fill="rgb(210,222,25)" rx="2" ry="2" />
|
|
<text x="307.37" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="682.1" y="293" width="0.1" height="15.0" fill="rgb(247,34,31)" rx="2" ry="2" />
|
|
<text x="685.06" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="833.9" y="581" width="0.1" height="15.0" fill="rgb(232,162,44)" rx="2" ry="2" />
|
|
<text x="836.90" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (6 samples, 0.03%)</title><rect x="835.4" y="565" width="0.4" height="15.0" fill="rgb(232,108,31)" rx="2" ry="2" />
|
|
<text x="838.44" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (98 samples, 0.49%)</title><rect x="654.2" y="357" width="5.8" height="15.0" fill="rgb(216,215,20)" rx="2" ry="2" />
|
|
<text x="657.21" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (5 samples, 0.03%)</title><rect x="382.6" y="293" width="0.3" height="15.0" fill="rgb(208,221,32)" rx="2" ry="2" />
|
|
<text x="385.62" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_current_time_ms (2 samples, 0.01%)</title><rect x="575.5" y="341" width="0.1" height="15.0" fill="rgb(249,218,3)" rx="2" ry="2" />
|
|
<text x="578.48" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7,002 samples, 35.02%)</title><rect x="407.5" y="597" width="413.2" height="15.0" fill="rgb(235,67,52)" rx="2" ry="2" />
|
|
<text x="410.46" y="607.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (5 samples, 0.03%)</title><rect x="710.2" y="341" width="0.3" height="15.0" fill="rgb(243,223,23)" rx="2" ry="2" />
|
|
<text x="713.21" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (4,140 samples, 20.71%)</title><rect x="40.2" y="549" width="244.3" height="15.0" fill="rgb(206,157,14)" rx="2" ry="2" />
|
|
<text x="43.16" y="559.5" >[libmaat4.so.4.0]</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="825.6" y="213" width="0.5" height="15.0" fill="rgb(240,207,16)" rx="2" ry="2" />
|
|
<text x="828.58" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (554 samples, 2.77%)</title><rect x="315.8" y="325" width="32.6" height="15.0" fill="rgb(222,85,26)" rx="2" ry="2" />
|
|
<text x="318.76" y="335.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (4 samples, 0.02%)</title><rect x="644.5" y="309" width="0.3" height="15.0" fill="rgb(227,189,41)" rx="2" ry="2" />
|
|
<text x="647.53" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (106 samples, 0.53%)</title><rect x="368.9" y="341" width="6.2" height="15.0" fill="rgb(223,161,54)" rx="2" ry="2" />
|
|
<text x="371.87" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (10 samples, 0.05%)</title><rect x="315.0" y="229" width="0.6" height="15.0" fill="rgb(211,204,14)" rx="2" ry="2" />
|
|
<text x="317.99" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new00 (2 samples, 0.01%)</title><rect x="837.4" y="261" width="0.1" height="15.0" fill="rgb(236,100,43)" rx="2" ry="2" />
|
|
<text x="840.39" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[conn_telemetry.so] (4 samples, 0.02%)</title><rect x="583.9" y="341" width="0.3" height="15.0" fill="rgb(225,168,32)" rx="2" ry="2" />
|
|
<text x="586.92" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="480.2" y="421" width="0.1" height="15.0" fill="rgb(206,106,25)" rx="2" ry="2" />
|
|
<text x="483.23" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_cancel (3 samples, 0.02%)</title><rect x="675.5" y="309" width="0.2" height="15.0" fill="rgb(232,24,13)" rx="2" ry="2" />
|
|
<text x="678.51" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="828.0" y="421" width="0.2" height="15.0" fill="rgb(241,211,0)" rx="2" ry="2" />
|
|
<text x="831.00" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (27 samples, 0.14%)</title><rect x="609.5" y="325" width="1.6" height="15.0" fill="rgb(206,131,29)" rx="2" ry="2" />
|
|
<text x="612.53" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_server_hello (3 samples, 0.02%)</title><rect x="382.4" y="373" width="0.2" height="15.0" fill="rgb(243,164,12)" rx="2" ry="2" />
|
|
<text x="385.44" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (3 samples, 0.02%)</title><rect x="435.4" y="549" width="0.2" height="15.0" fill="rgb(215,211,54)" rx="2" ry="2" />
|
|
<text x="438.44" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_app_id (6 samples, 0.03%)</title><rect x="362.7" y="293" width="0.4" height="15.0" fill="rgb(208,177,13)" rx="2" ry="2" />
|
|
<text x="365.73" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_opt_from_rawpkt (4 samples, 0.02%)</title><rect x="707.2" y="357" width="0.2" height="15.0" fill="rgb(219,9,47)" rx="2" ry="2" />
|
|
<text x="710.20" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,475 samples, 7.38%)</title><rect x="503.2" y="437" width="87.1" height="15.0" fill="rgb(229,104,13)" rx="2" ry="2" />
|
|
<text x="506.25" y="447.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.03%)</title><rect x="832.4" y="501" width="0.3" height="15.0" fill="rgb(245,110,6)" rx="2" ry="2" />
|
|
<text x="835.43" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zap_page_range (2 samples, 0.01%)</title><rect x="300.2" y="101" width="0.2" height="15.0" fill="rgb(216,224,27)" rx="2" ry="2" />
|
|
<text x="303.23" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="679.8" y="325" width="0.1" height="15.0" fill="rgb(217,171,45)" rx="2" ry="2" />
|
|
<text x="682.82" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="838.6" y="373" width="0.1" height="15.0" fill="rgb(229,68,54)" rx="2" ry="2" />
|
|
<text x="841.63" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (6 samples, 0.03%)</title><rect x="312.7" y="149" width="0.3" height="15.0" fill="rgb(246,166,17)" rx="2" ry="2" />
|
|
<text x="315.69" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>srt_attribute_set_flags (4 samples, 0.02%)</title><rect x="583.6" y="309" width="0.2" height="15.0" fill="rgb(248,175,40)" rx="2" ry="2" />
|
|
<text x="586.56" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (37 samples, 0.19%)</title><rect x="357.2" y="389" width="2.2" height="15.0" fill="rgb(246,34,39)" rx="2" ry="2" />
|
|
<text x="360.18" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="840.6" y="421" width="0.2" height="15.0" fill="rgb(225,143,22)" rx="2" ry="2" />
|
|
<text x="843.57" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (29 samples, 0.15%)</title><rect x="359.4" y="389" width="1.7" height="15.0" fill="rgb(227,162,46)" rx="2" ry="2" />
|
|
<text x="362.37" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (21 samples, 0.11%)</title><rect x="840.8" y="437" width="1.2" height="15.0" fill="rgb(237,197,2)" rx="2" ry="2" />
|
|
<text x="843.81" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="830.0" y="309" width="0.2" height="15.0" fill="rgb(238,190,6)" rx="2" ry="2" />
|
|
<text x="832.95" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="302.2" y="325" width="0.2" height="15.0" fill="rgb(231,120,7)" rx="2" ry="2" />
|
|
<text x="305.18" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (3 samples, 0.02%)</title><rect x="458.2" y="485" width="0.1" height="15.0" fill="rgb(213,3,49)" rx="2" ry="2" />
|
|
<text x="461.16" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (3 samples, 0.02%)</title><rect x="828.4" y="565" width="0.2" height="15.0" fill="rgb(238,157,28)" rx="2" ry="2" />
|
|
<text x="831.42" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="315.6" y="277" width="0.1" height="15.0" fill="rgb(232,221,13)" rx="2" ry="2" />
|
|
<text x="318.58" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>send_log_by_type (4 samples, 0.02%)</title><rect x="713.1" y="325" width="0.2" height="15.0" fill="rgb(214,181,32)" rx="2" ry="2" />
|
|
<text x="716.10" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (28 samples, 0.14%)</title><rect x="836.1" y="421" width="1.6" height="15.0" fill="rgb(221,120,33)" rx="2" ry="2" />
|
|
<text x="839.09" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_sse42 (9 samples, 0.05%)</title><rect x="692.6" y="277" width="0.5" height="15.0" fill="rgb(224,1,20)" rx="2" ry="2" />
|
|
<text x="695.56" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="657.8" y="341" width="0.1" height="15.0" fill="rgb(209,81,13)" rx="2" ry="2" />
|
|
<text x="660.80" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="368.6" y="261" width="0.2" height="15.0" fill="rgb(210,194,34)" rx="2" ry="2" />
|
|
<text x="371.63" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (30 samples, 0.15%)</title><rect x="657.9" y="309" width="1.8" height="15.0" fill="rgb(221,206,26)" rx="2" ry="2" />
|
|
<text x="660.92" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="406.9" y="613" width="0.1" height="15.0" fill="rgb(247,10,21)" rx="2" ry="2" />
|
|
<text x="409.87" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (42 samples, 0.21%)</title><rect x="824.0" y="389" width="2.5" height="15.0" fill="rgb(236,66,45)" rx="2" ry="2" />
|
|
<text x="826.99" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (15 samples, 0.08%)</title><rect x="356.1" y="373" width="0.9" height="15.0" fill="rgb(222,6,41)" rx="2" ry="2" />
|
|
<text x="359.12" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (15 samples, 0.08%)</title><rect x="820.7" y="501" width="0.9" height="15.0" fill="rgb(246,101,6)" rx="2" ry="2" />
|
|
<text x="823.69" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (3 samples, 0.02%)</title><rect x="465.8" y="309" width="0.2" height="15.0" fill="rgb(212,104,1)" rx="2" ry="2" />
|
|
<text x="468.83" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="822.6" y="229" width="0.2" height="15.0" fill="rgb(247,77,7)" rx="2" ry="2" />
|
|
<text x="825.63" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (14 samples, 0.07%)</title><rect x="775.7" y="533" width="0.8" height="15.0" fill="rgb(234,90,20)" rx="2" ry="2" />
|
|
<text x="778.66" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_offload (2 samples, 0.01%)</title><rect x="693.6" y="325" width="0.1" height="15.0" fill="rgb(246,44,43)" rx="2" ry="2" />
|
|
<text x="696.63" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="681.2" y="245" width="0.2" height="15.0" fill="rgb(205,7,17)" rx="2" ry="2" />
|
|
<text x="684.17" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>packet_io_hook_input (19 samples, 0.10%)</title><rect x="722.4" y="549" width="1.1" height="15.0" fill="rgb(246,109,2)" rx="2" ry="2" />
|
|
<text x="725.37" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.03%)</title><rect x="702.2" y="309" width="0.3" height="15.0" fill="rgb(220,128,46)" rx="2" ry="2" />
|
|
<text x="705.24" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (200 samples, 1.00%)</title><rect x="368.3" y="437" width="11.8" height="15.0" fill="rgb(212,136,4)" rx="2" ry="2" />
|
|
<text x="371.34" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="284.5" y="565" width="0.3" height="15.0" fill="rgb(237,66,38)" rx="2" ry="2" />
|
|
<text x="287.54" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (2 samples, 0.01%)</title><rect x="838.6" y="533" width="0.1" height="15.0" fill="rgb(210,37,11)" rx="2" ry="2" />
|
|
<text x="841.63" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="830.0" y="293" width="0.2" height="15.0" fill="rgb(208,216,38)" rx="2" ry="2" />
|
|
<text x="832.95" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (17 samples, 0.09%)</title><rect x="365.9" y="373" width="1.0" height="15.0" fill="rgb(215,65,20)" rx="2" ry="2" />
|
|
<text x="368.92" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (4 samples, 0.02%)</title><rect x="467.7" y="309" width="0.2" height="15.0" fill="rgb(224,190,42)" rx="2" ry="2" />
|
|
<text x="470.66" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="480.7" y="325" width="0.1" height="15.0" fill="rgb(220,93,52)" rx="2" ry="2" />
|
|
<text x="483.70" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="480.7" y="357" width="0.1" height="15.0" fill="rgb(241,80,13)" rx="2" ry="2" />
|
|
<text x="483.70" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="821.6" y="277" width="0.1" height="15.0" fill="rgb(240,130,50)" rx="2" ry="2" />
|
|
<text x="824.63" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new (26 samples, 0.13%)</title><rect x="571.4" y="277" width="1.5" height="15.0" fill="rgb(242,67,53)" rx="2" ry="2" />
|
|
<text x="574.41" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="840.4" y="341" width="0.1" height="15.0" fill="rgb(216,34,40)" rx="2" ry="2" />
|
|
<text x="843.40" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="377.5" y="309" width="0.2" height="15.0" fill="rgb(245,173,26)" rx="2" ry="2" />
|
|
<text x="380.48" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="822.6" y="181" width="0.2" height="15.0" fill="rgb(225,59,29)" rx="2" ry="2" />
|
|
<text x="825.63" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="611.8" y="277" width="0.2" height="15.0" fill="rgb(240,196,19)" rx="2" ry="2" />
|
|
<text x="614.77" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_worker_process (2 samples, 0.01%)</title><rect x="840.4" y="453" width="0.1" height="15.0" fill="rgb(225,219,38)" rx="2" ry="2" />
|
|
<text x="843.40" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (27 samples, 0.14%)</title><rect x="824.0" y="229" width="1.6" height="15.0" fill="rgb(246,16,29)" rx="2" ry="2" />
|
|
<text x="826.99" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_fqdn_plugin_table_get_ex_data (2 samples, 0.01%)</title><rect x="831.0" y="485" width="0.1" height="15.0" fill="rgb(228,154,13)" rx="2" ry="2" />
|
|
<text x="833.95" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (11 samples, 0.06%)</title><rect x="644.1" y="325" width="0.7" height="15.0" fill="rgb(211,163,31)" rx="2" ry="2" />
|
|
<text x="647.11" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (9 samples, 0.05%)</title><rect x="836.1" y="293" width="0.5" height="15.0" fill="rgb(206,69,27)" rx="2" ry="2" />
|
|
<text x="839.09" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (27 samples, 0.14%)</title><rect x="832.3" y="565" width="1.5" height="15.0" fill="rgb(206,122,47)" rx="2" ry="2" />
|
|
<text x="835.25" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (18 samples, 0.09%)</title><rect x="525.1" y="309" width="1.0" height="15.0" fill="rgb(242,89,5)" rx="2" ry="2" />
|
|
<text x="528.08" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (4 samples, 0.02%)</title><rect x="840.6" y="405" width="0.2" height="15.0" fill="rgb(241,39,39)" rx="2" ry="2" />
|
|
<text x="843.57" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_bsearch_ex_ (2 samples, 0.01%)</title><rect x="10.7" y="229" width="0.1" height="15.0" fill="rgb(209,80,3)" rx="2" ry="2" />
|
|
<text x="13.71" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (6 samples, 0.03%)</title><rect x="826.7" y="517" width="0.4" height="15.0" fill="rgb(220,191,26)" rx="2" ry="2" />
|
|
<text x="829.71" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="838.6" y="485" width="0.1" height="15.0" fill="rgb(251,44,40)" rx="2" ry="2" />
|
|
<text x="841.63" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_new (3 samples, 0.02%)</title><rect x="708.7" y="357" width="0.2" height="15.0" fill="rgb(225,1,33)" rx="2" ry="2" />
|
|
<text x="711.68" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pipe_write (6 samples, 0.03%)</title><rect x="572.5" y="69" width="0.4" height="15.0" fill="rgb(222,118,42)" rx="2" ry="2" />
|
|
<text x="575.53" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_is_ctrlbuf (2 samples, 0.01%)</title><rect x="723.6" y="565" width="0.1" height="15.0" fill="rgb(215,77,10)" rx="2" ry="2" />
|
|
<text x="726.61" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>packet_io_hook_forward (7 samples, 0.04%)</title><rect x="722.0" y="549" width="0.4" height="15.0" fill="rgb(243,49,9)" rx="2" ry="2" />
|
|
<text x="724.95" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (4 samples, 0.02%)</title><rect x="608.9" y="309" width="0.3" height="15.0" fill="rgb(254,118,19)" rx="2" ry="2" />
|
|
<text x="611.94" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (5 samples, 0.03%)</title><rect x="482.1" y="325" width="0.3" height="15.0" fill="rgb(249,165,49)" rx="2" ry="2" />
|
|
<text x="485.12" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (26 samples, 0.13%)</title><rect x="832.3" y="533" width="1.5" height="15.0" fill="rgb(210,9,9)" rx="2" ry="2" />
|
|
<text x="835.31" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.5] (191 samples, 0.96%)</title><rect x="762.3" y="565" width="11.3" height="15.0" fill="rgb(208,0,24)" rx="2" ry="2" />
|
|
<text x="765.32" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (59 samples, 0.30%)</title><rect x="776.5" y="501" width="3.5" height="15.0" fill="rgb(237,1,51)" rx="2" ry="2" />
|
|
<text x="779.54" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_capture_packet_entry (150 samples, 0.75%)</title><rect x="643.2" y="357" width="8.9" height="15.0" fill="rgb(222,120,54)" rx="2" ry="2" />
|
|
<text x="646.23" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_increment (17 samples, 0.09%)</title><rect x="616.6" y="373" width="1.0" height="15.0" fill="rgb(244,192,10)" rx="2" ry="2" />
|
|
<text x="619.55" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (10 samples, 0.05%)</title><rect x="315.0" y="341" width="0.6" height="15.0" fill="rgb(220,229,17)" rx="2" ry="2" />
|
|
<text x="317.99" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="487.0" y="469" width="0.1" height="15.0" fill="rgb(243,99,21)" rx="2" ry="2" />
|
|
<text x="490.02" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="665.8" y="309" width="0.1" height="15.0" fill="rgb(207,23,21)" rx="2" ry="2" />
|
|
<text x="668.77" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (15 samples, 0.08%)</title><rect x="820.7" y="581" width="0.9" height="15.0" fill="rgb(249,187,5)" rx="2" ry="2" />
|
|
<text x="823.69" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="820.9" y="325" width="0.2" height="15.0" fill="rgb(227,27,48)" rx="2" ry="2" />
|
|
<text x="823.86" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="827.3" y="437" width="0.2" height="15.0" fill="rgb(229,196,42)" rx="2" ry="2" />
|
|
<text x="830.30" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (4 samples, 0.02%)</title><rect x="696.9" y="293" width="0.2" height="15.0" fill="rgb(208,70,0)" rx="2" ry="2" />
|
|
<text x="699.87" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="373" width="0.3" height="15.0" fill="rgb(242,62,1)" rx="2" ry="2" />
|
|
<text x="829.71" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="563.0" y="293" width="0.3" height="15.0" fill="rgb(253,165,4)" rx="2" ry="2" />
|
|
<text x="565.97" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (8 samples, 0.04%)</title><rect x="361.7" y="341" width="0.5" height="15.0" fill="rgb(240,39,1)" rx="2" ry="2" />
|
|
<text x="364.73" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="377.0" y="293" width="0.4" height="15.0" fill="rgb(215,165,13)" rx="2" ry="2" />
|
|
<text x="380.01" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="838.4" y="293" width="0.2" height="15.0" fill="rgb(252,190,28)" rx="2" ry="2" />
|
|
<text x="841.39" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (14 samples, 0.07%)</title><rect x="566.5" y="341" width="0.8" height="15.0" fill="rgb(209,201,39)" rx="2" ry="2" />
|
|
<text x="569.45" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new00 (5 samples, 0.03%)</title><rect x="571.7" y="245" width="0.3" height="15.0" fill="rgb(252,134,38)" rx="2" ry="2" />
|
|
<text x="574.70" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="465.8" y="341" width="0.3" height="15.0" fill="rgb(217,74,16)" rx="2" ry="2" />
|
|
<text x="468.83" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="821.6" y="421" width="0.1" height="15.0" fill="rgb(235,101,8)" rx="2" ry="2" />
|
|
<text x="824.63" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="705.3" y="325" width="0.1" height="15.0" fill="rgb(249,133,0)" rx="2" ry="2" />
|
|
<text x="708.25" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (25 samples, 0.13%)</title><rect x="302.8" y="453" width="1.5" height="15.0" fill="rgb(229,2,8)" rx="2" ry="2" />
|
|
<text x="305.83" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (1,278 samples, 6.39%)</title><rect x="304.7" y="517" width="75.4" height="15.0" fill="rgb(252,5,44)" rx="2" ry="2" />
|
|
<text x="307.72" y="527.5" >ipv4_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (11 samples, 0.06%)</title><rect x="705.0" y="357" width="0.6" height="15.0" fill="rgb(226,217,12)" rx="2" ry="2" />
|
|
<text x="707.96" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (7 samples, 0.04%)</title><rect x="349.6" y="373" width="0.4" height="15.0" fill="rgb(248,180,29)" rx="2" ry="2" />
|
|
<text x="352.63" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddNumberToObject (2 samples, 0.01%)</title><rect x="708.3" y="341" width="0.1" height="15.0" fill="rgb(254,29,34)" rx="2" ry="2" />
|
|
<text x="711.32" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (3 samples, 0.02%)</title><rect x="367.5" y="405" width="0.2" height="15.0" fill="rgb(215,34,36)" rx="2" ry="2" />
|
|
<text x="370.51" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (6 samples, 0.03%)</title><rect x="836.9" y="325" width="0.4" height="15.0" fill="rgb(236,137,37)" rx="2" ry="2" />
|
|
<text x="839.91" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="680.1" y="389" width="0.2" height="15.0" fill="rgb(234,95,6)" rx="2" ry="2" />
|
|
<text x="683.11" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="821.9" y="245" width="0.2" height="15.0" fill="rgb(213,162,15)" rx="2" ry="2" />
|
|
<text x="824.92" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (8 samples, 0.04%)</title><rect x="609.5" y="277" width="0.5" height="15.0" fill="rgb(242,48,50)" rx="2" ry="2" />
|
|
<text x="612.53" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>poll_idle (288 samples, 1.44%)</title><rect x="1165.2" y="517" width="17.0" height="15.0" fill="rgb(223,216,6)" rx="2" ry="2" />
|
|
<text x="1168.21" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="296.8" y="565" width="0.1" height="15.0" fill="rgb(226,68,17)" rx="2" ry="2" />
|
|
<text x="299.75" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (42 samples, 0.21%)</title><rect x="824.0" y="421" width="2.5" height="15.0" fill="rgb(213,187,7)" rx="2" ry="2" />
|
|
<text x="826.99" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (4 samples, 0.02%)</title><rect x="778.2" y="389" width="0.2" height="15.0" fill="rgb(232,80,20)" rx="2" ry="2" />
|
|
<text x="781.20" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (4 samples, 0.02%)</title><rect x="383.2" y="421" width="0.2" height="15.0" fill="rgb(250,71,13)" rx="2" ry="2" />
|
|
<text x="386.21" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (20 samples, 0.10%)</title><rect x="827.1" y="533" width="1.1" height="15.0" fill="rgb(239,99,36)" rx="2" ry="2" />
|
|
<text x="830.06" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (8 samples, 0.04%)</title><rect x="464.3" y="453" width="0.5" height="15.0" fill="rgb(235,185,25)" rx="2" ry="2" />
|
|
<text x="467.30" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="374.4" y="229" width="0.1" height="15.0" fill="rgb(210,86,47)" rx="2" ry="2" />
|
|
<text x="377.36" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (46 samples, 0.23%)</title><rect x="824.0" y="533" width="2.7" height="15.0" fill="rgb(250,114,1)" rx="2" ry="2" />
|
|
<text x="826.99" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_ip_plugin_table_get_ex_data (4 samples, 0.02%)</title><rect x="377.4" y="341" width="0.3" height="15.0" fill="rgb(248,112,25)" rx="2" ry="2" />
|
|
<text x="380.43" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="303.1" y="325" width="0.3" height="15.0" fill="rgb(239,111,21)" rx="2" ry="2" />
|
|
<text x="306.07" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (8 samples, 0.04%)</title><rect x="711.3" y="357" width="0.5" height="15.0" fill="rgb(235,98,15)" rx="2" ry="2" />
|
|
<text x="714.33" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (14 samples, 0.07%)</title><rect x="778.2" y="453" width="0.8" height="15.0" fill="rgb(222,122,52)" rx="2" ry="2" />
|
|
<text x="781.20" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (2 samples, 0.01%)</title><rect x="354.4" y="309" width="0.1" height="15.0" fill="rgb(213,104,45)" rx="2" ry="2" />
|
|
<text x="357.35" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (4 samples, 0.02%)</title><rect x="321.4" y="181" width="0.3" height="15.0" fill="rgb(224,105,46)" rx="2" ry="2" />
|
|
<text x="324.42" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (8 samples, 0.04%)</title><rect x="820.8" y="389" width="0.5" height="15.0" fill="rgb(219,39,49)" rx="2" ry="2" />
|
|
<text x="823.80" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddNumberToObject (2 samples, 0.01%)</title><rect x="468.0" y="357" width="0.1" height="15.0" fill="rgb(252,218,50)" rx="2" ry="2" />
|
|
<text x="471.01" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_string_embed_free (2 samples, 0.01%)</title><rect x="351.9" y="197" width="0.1" height="15.0" fill="rgb(242,186,4)" rx="2" ry="2" />
|
|
<text x="354.87" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (45 samples, 0.23%)</title><rect x="586.2" y="325" width="2.6" height="15.0" fill="rgb(249,104,46)" rx="2" ry="2" />
|
|
<text x="589.16" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="827.5" y="373" width="0.5" height="15.0" fill="rgb(209,101,8)" rx="2" ry="2" />
|
|
<text x="830.53" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (8 samples, 0.04%)</title><rect x="380.1" y="565" width="0.5" height="15.0" fill="rgb(243,159,41)" rx="2" ry="2" />
|
|
<text x="383.14" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (8 samples, 0.04%)</title><rect x="526.7" y="293" width="0.5" height="15.0" fill="rgb(221,198,42)" rx="2" ry="2" />
|
|
<text x="529.73" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (3 samples, 0.02%)</title><rect x="828.4" y="517" width="0.2" height="15.0" fill="rgb(214,85,47)" rx="2" ry="2" />
|
|
<text x="831.42" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (2 samples, 0.01%)</title><rect x="381.6" y="165" width="0.1" height="15.0" fill="rgb(218,44,25)" rx="2" ry="2" />
|
|
<text x="384.56" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_parser_execute (2 samples, 0.01%)</title><rect x="355.9" y="341" width="0.2" height="15.0" fill="rgb(210,172,30)" rx="2" ry="2" />
|
|
<text x="358.94" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="702.2" y="325" width="0.4" height="15.0" fill="rgb(220,41,39)" rx="2" ry="2" />
|
|
<text x="705.24" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (58 samples, 0.29%)</title><rect x="830.5" y="613" width="3.4" height="15.0" fill="rgb(233,115,49)" rx="2" ry="2" />
|
|
<text x="833.48" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>deal_event_rules (2 samples, 0.01%)</title><rect x="569.7" y="309" width="0.1" height="15.0" fill="rgb(223,180,21)" rx="2" ry="2" />
|
|
<text x="572.70" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (4 samples, 0.02%)</title><rect x="838.1" y="309" width="0.2" height="15.0" fill="rgb(239,24,40)" rx="2" ry="2" />
|
|
<text x="841.10" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (7 samples, 0.04%)</title><rect x="508.0" y="389" width="0.4" height="15.0" fill="rgb(208,116,23)" rx="2" ry="2" />
|
|
<text x="510.97" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (47 samples, 0.24%)</title><rect x="835.9" y="549" width="2.7" height="15.0" fill="rgb(217,91,5)" rx="2" ry="2" />
|
|
<text x="838.85" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (4 samples, 0.02%)</title><rect x="679.7" y="389" width="0.2" height="15.0" fill="rgb(226,140,17)" rx="2" ry="2" />
|
|
<text x="682.70" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="837.4" y="213" width="0.1" height="15.0" fill="rgb(238,58,27)" rx="2" ry="2" />
|
|
<text x="840.39" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (5 samples, 0.03%)</title><rect x="826.7" y="437" width="0.3" height="15.0" fill="rgb(239,213,48)" rx="2" ry="2" />
|
|
<text x="829.71" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (3 samples, 0.02%)</title><rect x="367.5" y="293" width="0.2" height="15.0" fill="rgb(252,58,1)" rx="2" ry="2" />
|
|
<text x="370.51" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="821.6" y="373" width="0.1" height="15.0" fill="rgb(229,223,46)" rx="2" ry="2" />
|
|
<text x="824.63" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_hit_path_list (12 samples, 0.06%)</title><rect x="298.1" y="341" width="0.7" height="15.0" fill="rgb(215,51,38)" rx="2" ry="2" />
|
|
<text x="301.05" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (76 samples, 0.38%)</title><rect x="706.4" y="373" width="4.5" height="15.0" fill="rgb(248,226,42)" rx="2" ry="2" />
|
|
<text x="709.37" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="316.6" y="165" width="0.4" height="15.0" fill="rgb(210,28,13)" rx="2" ry="2" />
|
|
<text x="319.58" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="838.7" y="421" width="0.2" height="15.0" fill="rgb(207,135,26)" rx="2" ry="2" />
|
|
<text x="841.74" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (18 samples, 0.09%)</title><rect x="674.6" y="389" width="1.1" height="15.0" fill="rgb(249,74,14)" rx="2" ry="2" />
|
|
<text x="677.62" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (24 samples, 0.12%)</title><rect x="315.8" y="261" width="1.4" height="15.0" fill="rgb(251,107,53)" rx="2" ry="2" />
|
|
<text x="318.76" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>quic_protocol_identify (12 samples, 0.06%)</title><rect x="376.7" y="357" width="0.7" height="15.0" fill="rgb(243,19,44)" rx="2" ry="2" />
|
|
<text x="379.66" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (7 samples, 0.04%)</title><rect x="366.9" y="389" width="0.4" height="15.0" fill="rgb(222,181,11)" rx="2" ry="2" />
|
|
<text x="369.92" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_TCP_PACKET_ENTRY (7 samples, 0.04%)</title><rect x="578.7" y="357" width="0.4" height="15.0" fill="rgb(207,11,54)" rx="2" ry="2" />
|
|
<text x="581.73" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (8 samples, 0.04%)</title><rect x="365.9" y="309" width="0.5" height="15.0" fill="rgb(219,1,23)" rx="2" ry="2" />
|
|
<text x="368.92" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_rawpkt_opt_from_streaminfo (3 samples, 0.02%)</title><rect x="707.4" y="357" width="0.2" height="15.0" fill="rgb(208,166,52)" rx="2" ry="2" />
|
|
<text x="710.44" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (2 samples, 0.01%)</title><rect x="10.7" y="565" width="0.1" height="15.0" fill="rgb(225,10,46)" rx="2" ry="2" />
|
|
<text x="13.71" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (23 samples, 0.12%)</title><rect x="315.8" y="213" width="1.4" height="15.0" fill="rgb(246,89,3)" rx="2" ry="2" />
|
|
<text x="318.81" y="223.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(206,215,34)" rx="2" ry="2" />
|
|
<text x="379.66" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="829.2" y="117" width="0.6" height="15.0" fill="rgb(226,201,44)" rx="2" ry="2" />
|
|
<text x="832.18" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_opt_from_rawpkt (3 samples, 0.02%)</title><rect x="565.5" y="325" width="0.2" height="15.0" fill="rgb(237,85,14)" rx="2" ry="2" />
|
|
<text x="568.51" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_worker_process (13 samples, 0.07%)</title><rect x="836.1" y="341" width="0.8" height="15.0" fill="rgb(216,149,44)" rx="2" ry="2" />
|
|
<text x="839.09" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (734 samples, 3.67%)</title><rect x="631.1" y="421" width="43.3" height="15.0" fill="rgb(235,199,0)" rx="2" ry="2" />
|
|
<text x="634.13" y="431.5" >stre..</text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (2 samples, 0.01%)</title><rect x="680.4" y="389" width="0.1" height="15.0" fill="rgb(207,15,45)" rx="2" ry="2" />
|
|
<text x="683.41" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (7 samples, 0.04%)</title><rect x="349.6" y="389" width="0.4" height="15.0" fill="rgb(223,8,39)" rx="2" ry="2" />
|
|
<text x="352.63" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_CreateObject (2 samples, 0.01%)</title><rect x="708.4" y="341" width="0.2" height="15.0" fill="rgb(249,211,50)" rx="2" ry="2" />
|
|
<text x="711.44" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_initHttpConnection (2 samples, 0.01%)</title><rect x="559.4" y="325" width="0.1" height="15.0" fill="rgb(223,157,48)" rx="2" ry="2" />
|
|
<text x="562.43" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="245" width="0.3" height="15.0" fill="rgb(212,128,35)" rx="2" ry="2" />
|
|
<text x="829.71" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="700.1" y="245" width="0.2" height="15.0" fill="rgb(250,189,24)" rx="2" ry="2" />
|
|
<text x="703.12" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_del_stream (3 samples, 0.02%)</title><rect x="464.1" y="453" width="0.2" height="15.0" fill="rgb(244,17,6)" rx="2" ry="2" />
|
|
<text x="467.12" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="303.2" y="245" width="0.1" height="15.0" fill="rgb(220,115,44)" rx="2" ry="2" />
|
|
<text x="306.19" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>polling_stream_timeout (115 samples, 0.58%)</title><rect x="773.6" y="581" width="6.8" height="15.0" fill="rgb(247,213,31)" rx="2" ry="2" />
|
|
<text x="776.59" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_quic_plug_entry (3 samples, 0.02%)</title><rect x="699.7" y="293" width="0.2" height="15.0" fill="rgb(254,168,49)" rx="2" ry="2" />
|
|
<text x="702.71" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_get_ja3_fingerprint (27 samples, 0.14%)</title><rect x="834.2" y="629" width="1.6" height="15.0" fill="rgb(208,187,14)" rx="2" ry="2" />
|
|
<text x="837.20" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="829.1" y="213" width="0.1" height="15.0" fill="rgb(233,226,5)" rx="2" ry="2" />
|
|
<text x="832.07" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="300.2" y="165" width="0.2" height="15.0" fill="rgb(254,153,5)" rx="2" ry="2" />
|
|
<text x="303.23" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (2 samples, 0.01%)</title><rect x="10.7" y="581" width="0.1" height="15.0" fill="rgb(250,220,18)" rx="2" ry="2" />
|
|
<text x="13.71" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (52 samples, 0.26%)</title><rect x="361.4" y="453" width="3.1" height="15.0" fill="rgb(206,221,50)" rx="2" ry="2" />
|
|
<text x="364.43" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (5 samples, 0.03%)</title><rect x="304.3" y="437" width="0.3" height="15.0" fill="rgb(233,34,13)" rx="2" ry="2" />
|
|
<text x="307.31" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (12 samples, 0.06%)</title><rect x="829.1" y="325" width="0.7" height="15.0" fill="rgb(237,191,36)" rx="2" ry="2" />
|
|
<text x="832.07" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (13 samples, 0.07%)</title><rect x="693.8" y="325" width="0.8" height="15.0" fill="rgb(215,65,41)" rx="2" ry="2" />
|
|
<text x="696.80" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (15 samples, 0.08%)</title><rect x="685.0" y="437" width="0.9" height="15.0" fill="rgb(207,222,27)" rx="2" ry="2" />
|
|
<text x="688.01" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>layer_addr_ntop_r (2 samples, 0.01%)</title><rect x="779.6" y="373" width="0.1" height="15.0" fill="rgb(234,26,48)" rx="2" ry="2" />
|
|
<text x="782.61" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="319.5" y="149" width="0.2" height="15.0" fill="rgb(236,118,42)" rx="2" ry="2" />
|
|
<text x="322.53" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (3 samples, 0.02%)</title><rect x="685.2" y="389" width="0.2" height="15.0" fill="rgb(247,107,50)" rx="2" ry="2" />
|
|
<text x="688.19" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (39 samples, 0.20%)</title><rect x="821.6" y="549" width="2.3" height="15.0" fill="rgb(243,201,50)" rx="2" ry="2" />
|
|
<text x="824.57" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="841.4" y="213" width="0.1" height="15.0" fill="rgb(253,70,5)" rx="2" ry="2" />
|
|
<text x="844.40" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_primitive_free (2 samples, 0.01%)</title><rect x="351.9" y="213" width="0.1" height="15.0" fill="rgb(225,188,52)" rx="2" ry="2" />
|
|
<text x="354.87" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="699.8" y="277" width="0.1" height="15.0" fill="rgb(227,111,26)" rx="2" ry="2" />
|
|
<text x="702.76" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_CreateNumber (3 samples, 0.02%)</title><rect x="582.1" y="309" width="0.2" height="15.0" fill="rgb(248,78,40)" rx="2" ry="2" />
|
|
<text x="585.09" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="605.9" y="325" width="0.1" height="15.0" fill="rgb(207,182,11)" rx="2" ry="2" />
|
|
<text x="608.93" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (2 samples, 0.01%)</title><rect x="831.5" y="517" width="0.2" height="15.0" fill="rgb(218,214,2)" rx="2" ry="2" />
|
|
<text x="834.54" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (28 samples, 0.14%)</title><rect x="828.6" y="517" width="1.6" height="15.0" fill="rgb(245,108,43)" rx="2" ry="2" />
|
|
<text x="831.59" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (4 samples, 0.02%)</title><rect x="828.0" y="405" width="0.2" height="15.0" fill="rgb(208,216,29)" rx="2" ry="2" />
|
|
<text x="831.00" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (11 samples, 0.06%)</title><rect x="713.6" y="309" width="0.7" height="15.0" fill="rgb(206,76,40)" rx="2" ry="2" />
|
|
<text x="716.63" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (11 samples, 0.06%)</title><rect x="656.2" y="277" width="0.7" height="15.0" fill="rgb(217,19,34)" rx="2" ry="2" />
|
|
<text x="659.21" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (42 samples, 0.21%)</title><rect x="824.0" y="405" width="2.5" height="15.0" fill="rgb(218,191,6)" rx="2" ry="2" />
|
|
<text x="826.99" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (14 samples, 0.07%)</title><rect x="566.5" y="325" width="0.8" height="15.0" fill="rgb(251,217,34)" rx="2" ry="2" />
|
|
<text x="569.45" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (5 samples, 0.03%)</title><rect x="838.0" y="341" width="0.3" height="15.0" fill="rgb(250,172,10)" rx="2" ry="2" />
|
|
<text x="841.04" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="507.8" y="389" width="0.1" height="15.0" fill="rgb(233,180,52)" rx="2" ry="2" />
|
|
<text x="510.79" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (28 samples, 0.14%)</title><rect x="611.6" y="325" width="1.6" height="15.0" fill="rgb(239,192,38)" rx="2" ry="2" />
|
|
<text x="614.60" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="512.9" y="357" width="0.5" height="15.0" fill="rgb(253,113,52)" rx="2" ry="2" />
|
|
<text x="515.92" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[conn_telemetry.so] (3 samples, 0.02%)</title><rect x="584.0" y="325" width="0.2" height="15.0" fill="rgb(244,202,54)" rx="2" ry="2" />
|
|
<text x="586.98" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (22 samples, 0.11%)</title><rect x="776.9" y="453" width="1.3" height="15.0" fill="rgb(233,24,8)" rx="2" ry="2" />
|
|
<text x="779.90" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="501" width="0.1" height="15.0" fill="rgb(253,33,45)" rx="2" ry="2" />
|
|
<text x="13.71" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (3 samples, 0.02%)</title><rect x="379.0" y="341" width="0.2" height="15.0" fill="rgb(251,154,35)" rx="2" ry="2" />
|
|
<text x="382.02" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="480.2" y="405" width="0.1" height="15.0" fill="rgb(237,81,30)" rx="2" ry="2" />
|
|
<text x="483.23" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (10 samples, 0.05%)</title><rect x="367.7" y="421" width="0.6" height="15.0" fill="rgb(246,170,0)" rx="2" ry="2" />
|
|
<text x="370.69" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (8 samples, 0.04%)</title><rect x="820.8" y="341" width="0.5" height="15.0" fill="rgb(211,216,20)" rx="2" ry="2" />
|
|
<text x="823.80" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="705.1" y="325" width="0.2" height="15.0" fill="rgb(229,75,4)" rx="2" ry="2" />
|
|
<text x="708.13" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (3 samples, 0.02%)</title><rect x="708.7" y="341" width="0.2" height="15.0" fill="rgb(223,84,6)" rx="2" ry="2" />
|
|
<text x="711.68" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_calculate_bound (3 samples, 0.02%)</title><rect x="670.4" y="341" width="0.2" height="15.0" fill="rgb(206,118,5)" rx="2" ry="2" />
|
|
<text x="673.43" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="298.9" y="261" width="0.4" height="15.0" fill="rgb(237,49,19)" rx="2" ry="2" />
|
|
<text x="301.88" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (42 samples, 0.21%)</title><rect x="824.0" y="325" width="2.5" height="15.0" fill="rgb(249,121,35)" rx="2" ry="2" />
|
|
<text x="826.99" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (5 samples, 0.03%)</title><rect x="713.0" y="357" width="0.3" height="15.0" fill="rgb(227,33,14)" rx="2" ry="2" />
|
|
<text x="716.04" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="828.6" y="277" width="0.4" height="15.0" fill="rgb(229,20,21)" rx="2" ry="2" />
|
|
<text x="831.59" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="341" width="0.3" height="15.0" fill="rgb(241,162,41)" rx="2" ry="2" />
|
|
<text x="829.71" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_ipport_union_addr (18 samples, 0.09%)</title><rect x="454.3" y="485" width="1.1" height="15.0" fill="rgb(205,213,22)" rx="2" ry="2" />
|
|
<text x="457.32" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="679.8" y="309" width="0.1" height="15.0" fill="rgb(227,121,16)" rx="2" ry="2" />
|
|
<text x="682.82" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (6 samples, 0.03%)</title><rect x="821.7" y="405" width="0.4" height="15.0" fill="rgb(241,107,36)" rx="2" ry="2" />
|
|
<text x="824.75" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="584.6" y="325" width="0.4" height="15.0" fill="rgb(208,10,52)" rx="2" ry="2" />
|
|
<text x="587.57" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="481.6" y="341" width="0.2" height="15.0" fill="rgb(222,157,35)" rx="2" ry="2" />
|
|
<text x="484.65" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="835.9" y="245" width="0.1" height="15.0" fill="rgb(227,98,30)" rx="2" ry="2" />
|
|
<text x="838.85" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="708.6" y="325" width="0.1" height="15.0" fill="rgb(213,91,46)" rx="2" ry="2" />
|
|
<text x="711.56" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="829.2" y="213" width="0.6" height="15.0" fill="rgb(227,178,33)" rx="2" ry="2" />
|
|
<text x="832.18" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="197" width="0.3" height="15.0" fill="rgb(227,32,10)" rx="2" ry="2" />
|
|
<text x="829.71" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_engine_stat_report_add (2 samples, 0.01%)</title><rect x="523.1" y="277" width="0.2" height="15.0" fill="rgb(231,68,15)" rx="2" ry="2" />
|
|
<text x="526.13" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (53 samples, 0.27%)</title><rect x="645.8" y="309" width="3.2" height="15.0" fill="rgb(216,3,42)" rx="2" ry="2" />
|
|
<text x="648.82" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="606.5" y="373" width="0.3" height="15.0" fill="rgb(230,122,5)" rx="2" ry="2" />
|
|
<text x="609.52" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="828.4" y="485" width="0.2" height="15.0" fill="rgb(237,183,53)" rx="2" ry="2" />
|
|
<text x="831.42" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (6 samples, 0.03%)</title><rect x="302.2" y="357" width="0.3" height="15.0" fill="rgb(234,65,17)" rx="2" ry="2" />
|
|
<text x="305.18" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="363.4" y="309" width="0.1" height="15.0" fill="rgb(240,56,48)" rx="2" ry="2" />
|
|
<text x="366.38" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="675.5" y="277" width="0.1" height="15.0" fill="rgb(251,84,25)" rx="2" ry="2" />
|
|
<text x="678.51" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (5 samples, 0.03%)</title><rect x="465.8" y="373" width="0.3" height="15.0" fill="rgb(249,26,14)" rx="2" ry="2" />
|
|
<text x="468.77" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="514.1" y="373" width="0.1" height="15.0" fill="rgb(212,111,5)" rx="2" ry="2" />
|
|
<text x="517.10" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (24 samples, 0.12%)</title><rect x="529.0" y="245" width="1.5" height="15.0" fill="rgb(214,57,39)" rx="2" ry="2" />
|
|
<text x="532.03" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_rawpkt_opt_from_streaminfo (4 samples, 0.02%)</title><rect x="664.5" y="357" width="0.3" height="15.0" fill="rgb(237,226,54)" rx="2" ry="2" />
|
|
<text x="667.53" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>finish_task_switch (119 samples, 0.60%)</title><rect x="1182.7" y="533" width="7.0" height="15.0" fill="rgb(227,106,15)" rx="2" ry="2" />
|
|
<text x="1185.68" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (7 samples, 0.04%)</title><rect x="380.2" y="517" width="0.4" height="15.0" fill="rgb(218,178,6)" rx="2" ry="2" />
|
|
<text x="383.20" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (29 samples, 0.15%)</title><rect x="359.4" y="341" width="1.7" height="15.0" fill="rgb(235,31,44)" rx="2" ry="2" />
|
|
<text x="362.37" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (20 samples, 0.10%)</title><rect x="827.1" y="565" width="1.1" height="15.0" fill="rgb(227,54,23)" rx="2" ry="2" />
|
|
<text x="830.06" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (36 samples, 0.18%)</title><rect x="821.6" y="501" width="2.2" height="15.0" fill="rgb(222,203,4)" rx="2" ry="2" />
|
|
<text x="824.63" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (10 samples, 0.05%)</title><rect x="321.1" y="197" width="0.6" height="15.0" fill="rgb(217,219,18)" rx="2" ry="2" />
|
|
<text x="324.07" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_create (4 samples, 0.02%)</title><rect x="692.0" y="325" width="0.2" height="15.0" fill="rgb(236,175,26)" rx="2" ry="2" />
|
|
<text x="694.97" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.5] (352 samples, 1.76%)</title><rect x="799.8" y="533" width="20.8" height="15.0" fill="rgb(216,201,17)" rx="2" ry="2" />
|
|
<text x="802.79" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="681.6" y="325" width="0.2" height="15.0" fill="rgb(248,17,45)" rx="2" ry="2" />
|
|
<text x="684.65" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hack_digit.13666 (2 samples, 0.01%)</title><rect x="349.5" y="261" width="0.1" height="15.0" fill="rgb(243,118,13)" rx="2" ry="2" />
|
|
<text x="352.45" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (24 samples, 0.12%)</title><rect x="822.1" y="341" width="1.4" height="15.0" fill="rgb(218,1,3)" rx="2" ry="2" />
|
|
<text x="825.10" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (34 samples, 0.17%)</title><rect x="580.6" y="341" width="2.0" height="15.0" fill="rgb(206,118,25)" rx="2" ry="2" />
|
|
<text x="583.61" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (5 samples, 0.03%)</title><rect x="382.6" y="341" width="0.3" height="15.0" fill="rgb(225,137,38)" rx="2" ry="2" />
|
|
<text x="385.62" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (19 samples, 0.10%)</title><rect x="696.0" y="309" width="1.1" height="15.0" fill="rgb(215,85,41)" rx="2" ry="2" />
|
|
<text x="698.99" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="780.3" y="549" width="0.1" height="15.0" fill="rgb(206,44,3)" rx="2" ry="2" />
|
|
<text x="783.26" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="455.1" y="437" width="0.2" height="15.0" fill="rgb(254,143,54)" rx="2" ry="2" />
|
|
<text x="458.09" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="823.8" y="469" width="0.1" height="15.0" fill="rgb(242,39,22)" rx="2" ry="2" />
|
|
<text x="826.75" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_ipentry (4 samples, 0.02%)</title><rect x="720.8" y="501" width="0.3" height="15.0" fill="rgb(231,94,7)" rx="2" ry="2" />
|
|
<text x="723.83" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="353.8" y="309" width="0.1" height="15.0" fill="rgb(210,157,9)" rx="2" ry="2" />
|
|
<text x="356.76" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (200 samples, 1.00%)</title><rect x="368.3" y="469" width="11.8" height="15.0" fill="rgb(233,143,19)" rx="2" ry="2" />
|
|
<text x="371.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (568 samples, 2.84%)</title><rect x="314.9" y="405" width="33.5" height="15.0" fill="rgb(238,141,0)" rx="2" ry="2" />
|
|
<text x="317.93" y="415.5" >HT..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (11 samples, 0.06%)</title><rect x="580.7" y="309" width="0.6" height="15.0" fill="rgb(225,28,8)" rx="2" ry="2" />
|
|
<text x="583.67" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="305.7" y="229" width="0.2" height="15.0" fill="rgb(241,58,44)" rx="2" ry="2" />
|
|
<text x="308.72" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="456.0" y="437" width="0.2" height="15.0" fill="rgb(247,154,10)" rx="2" ry="2" />
|
|
<text x="458.97" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (21 samples, 0.11%)</title><rect x="466.1" y="389" width="1.3" height="15.0" fill="rgb(231,55,14)" rx="2" ry="2" />
|
|
<text x="469.13" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (530 samples, 2.65%)</title><rect x="317.2" y="309" width="31.2" height="15.0" fill="rgb(230,216,49)" rx="2" ry="2" />
|
|
<text x="320.17" y="319.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (6 samples, 0.03%)</title><rect x="302.2" y="437" width="0.3" height="15.0" fill="rgb(243,190,28)" rx="2" ry="2" />
|
|
<text x="305.18" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (2 samples, 0.01%)</title><rect x="481.6" y="293" width="0.2" height="15.0" fill="rgb(244,158,31)" rx="2" ry="2" />
|
|
<text x="484.65" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="303.4" y="389" width="0.6" height="15.0" fill="rgb(254,130,1)" rx="2" ry="2" />
|
|
<text x="306.36" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (29 samples, 0.15%)</title><rect x="359.4" y="373" width="1.7" height="15.0" fill="rgb(207,137,51)" rx="2" ry="2" />
|
|
<text x="362.37" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="827.5" y="357" width="0.5" height="15.0" fill="rgb(234,199,28)" rx="2" ry="2" />
|
|
<text x="830.53" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (2 samples, 0.01%)</title><rect x="284.8" y="565" width="0.1" height="15.0" fill="rgb(240,76,13)" rx="2" ry="2" />
|
|
<text x="287.77" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (106 samples, 0.53%)</title><rect x="298.1" y="533" width="6.2" height="15.0" fill="rgb(224,63,24)" rx="2" ry="2" />
|
|
<text x="301.05" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_record_tcpall_entry (6 samples, 0.03%)</title><rect x="585.7" y="357" width="0.3" height="15.0" fill="rgb(211,57,49)" rx="2" ry="2" />
|
|
<text x="588.69" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_partitioner (5 samples, 0.03%)</title><rect x="674.0" y="277" width="0.3" height="15.0" fill="rgb(220,157,41)" rx="2" ry="2" />
|
|
<text x="677.03" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___printf_fp_l (3 samples, 0.02%)</title><rect x="364.3" y="245" width="0.2" height="15.0" fill="rgb(211,200,19)" rx="2" ry="2" />
|
|
<text x="367.32" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (42 samples, 0.21%)</title><rect x="824.0" y="245" width="2.5" height="15.0" fill="rgb(217,42,4)" rx="2" ry="2" />
|
|
<text x="826.99" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (3 samples, 0.02%)</title><rect x="838.7" y="533" width="0.2" height="15.0" fill="rgb(243,128,51)" rx="2" ry="2" />
|
|
<text x="841.74" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>quic_protocol_identify (10 samples, 0.05%)</title><rect x="303.4" y="341" width="0.6" height="15.0" fill="rgb(211,134,49)" rx="2" ry="2" />
|
|
<text x="306.36" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (4 samples, 0.02%)</title><rect x="838.1" y="293" width="0.2" height="15.0" fill="rgb(225,20,11)" rx="2" ry="2" />
|
|
<text x="841.10" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (12 samples, 0.06%)</title><rect x="829.1" y="341" width="0.7" height="15.0" fill="rgb(223,122,51)" rx="2" ry="2" />
|
|
<text x="832.07" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (10 samples, 0.05%)</title><rect x="303.4" y="309" width="0.6" height="15.0" fill="rgb(248,192,21)" rx="2" ry="2" />
|
|
<text x="306.36" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="565.4" y="341" width="0.5" height="15.0" fill="rgb(253,59,11)" rx="2" ry="2" />
|
|
<text x="568.39" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="833.9" y="565" width="0.1" height="15.0" fill="rgb(221,224,0)" rx="2" ry="2" />
|
|
<text x="836.90" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (5 samples, 0.03%)</title><rect x="821.3" y="421" width="0.3" height="15.0" fill="rgb(234,31,22)" rx="2" ry="2" />
|
|
<text x="824.28" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="513.7" y="405" width="0.1" height="15.0" fill="rgb(224,65,49)" rx="2" ry="2" />
|
|
<text x="516.69" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.04%)</title><rect x="583.4" y="325" width="0.4" height="15.0" fill="rgb(236,149,33)" rx="2" ry="2" />
|
|
<text x="586.39" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (9 samples, 0.05%)</title><rect x="366.4" y="309" width="0.5" height="15.0" fill="rgb(225,176,28)" rx="2" ry="2" />
|
|
<text x="369.39" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log_level_enabled (2 samples, 0.01%)</title><rect x="435.3" y="549" width="0.1" height="15.0" fill="rgb(253,183,21)" rx="2" ry="2" />
|
|
<text x="438.32" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (8 samples, 0.04%)</title><rect x="827.5" y="453" width="0.5" height="15.0" fill="rgb(239,6,9)" rx="2" ry="2" />
|
|
<text x="830.53" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_app_name_by_id (2 samples, 0.01%)</title><rect x="612.0" y="277" width="0.1" height="15.0" fill="rgb(222,41,36)" rx="2" ry="2" />
|
|
<text x="615.01" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="455.1" y="453" width="0.2" height="15.0" fill="rgb(231,91,1)" rx="2" ry="2" />
|
|
<text x="458.09" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_packet_is_myself (4 samples, 0.02%)</title><rect x="438.9" y="533" width="0.2" height="15.0" fill="rgb(213,12,0)" rx="2" ry="2" />
|
|
<text x="441.86" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (5 samples, 0.03%)</title><rect x="568.9" y="277" width="0.3" height="15.0" fill="rgb(215,185,16)" rx="2" ry="2" />
|
|
<text x="571.93" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (4 samples, 0.02%)</title><rect x="828.0" y="357" width="0.2" height="15.0" fill="rgb(210,108,44)" rx="2" ry="2" />
|
|
<text x="831.00" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_polling_inject_context (16 samples, 0.08%)</title><rect x="675.9" y="437" width="0.9" height="15.0" fill="rgb(235,229,44)" rx="2" ry="2" />
|
|
<text x="678.86" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (4 samples, 0.02%)</title><rect x="302.5" y="469" width="0.3" height="15.0" fill="rgb(250,42,16)" rx="2" ry="2" />
|
|
<text x="305.54" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="838.7" y="325" width="0.2" height="15.0" fill="rgb(233,223,54)" rx="2" ry="2" />
|
|
<text x="841.74" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="353.8" y="293" width="0.1" height="15.0" fill="rgb(234,152,39)" rx="2" ry="2" />
|
|
<text x="356.76" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="468.1" y="341" width="0.1" height="15.0" fill="rgb(232,12,49)" rx="2" ry="2" />
|
|
<text x="471.13" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (43 samples, 0.22%)</title><rect x="380.7" y="501" width="2.5" height="15.0" fill="rgb(236,214,16)" rx="2" ry="2" />
|
|
<text x="383.67" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (29 samples, 0.15%)</title><rect x="828.6" y="597" width="1.7" height="15.0" fill="rgb(229,156,34)" rx="2" ry="2" />
|
|
<text x="831.59" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (7 samples, 0.04%)</title><rect x="361.8" y="293" width="0.4" height="15.0" fill="rgb(250,115,49)" rx="2" ry="2" />
|
|
<text x="364.79" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_dynamic_table_row_metric_values_incrby (4 samples, 0.02%)</title><rect x="378.8" y="373" width="0.2" height="15.0" fill="rgb(238,195,0)" rx="2" ry="2" />
|
|
<text x="381.78" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="298.1" y="293" width="0.7" height="15.0" fill="rgb(238,106,51)" rx="2" ry="2" />
|
|
<text x="301.05" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (196 samples, 0.98%)</title><rect x="578.4" y="405" width="11.5" height="15.0" fill="rgb(215,77,2)" rx="2" ry="2" />
|
|
<text x="581.37" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (56 samples, 0.28%)</title><rect x="349.6" y="405" width="3.3" height="15.0" fill="rgb(224,154,54)" rx="2" ry="2" />
|
|
<text x="352.63" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (3 samples, 0.02%)</title><rect x="367.3" y="325" width="0.2" height="15.0" fill="rgb(226,89,7)" rx="2" ry="2" />
|
|
<text x="370.33" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_report_identify_result (8 samples, 0.04%)</title><rect x="693.1" y="309" width="0.5" height="15.0" fill="rgb(227,113,39)" rx="2" ry="2" />
|
|
<text x="696.10" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="304.6" y="501" width="0.1" height="15.0" fill="rgb(209,165,17)" rx="2" ry="2" />
|
|
<text x="307.60" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (24 samples, 0.12%)</title><rect x="364.5" y="357" width="1.4" height="15.0" fill="rgb(222,188,15)" rx="2" ry="2" />
|
|
<text x="367.50" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (10 samples, 0.05%)</title><rect x="294.5" y="597" width="0.6" height="15.0" fill="rgb(216,28,17)" rx="2" ry="2" />
|
|
<text x="297.51" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.05%)</title><rect x="292.6" y="581" width="0.5" height="15.0" fill="rgb(217,99,8)" rx="2" ry="2" />
|
|
<text x="295.56" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_application_data (6 samples, 0.03%)</title><rect x="350.0" y="373" width="0.4" height="15.0" fill="rgb(211,223,47)" rx="2" ry="2" />
|
|
<text x="353.04" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="298.9" y="245" width="0.2" height="15.0" fill="rgb(228,110,12)" rx="2" ry="2" />
|
|
<text x="301.94" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (525 samples, 2.63%)</title><rect x="317.5" y="213" width="30.9" height="15.0" fill="rgb(227,180,45)" rx="2" ry="2" />
|
|
<text x="320.47" y="223.5" >[f..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (4 samples, 0.02%)</title><rect x="466.7" y="325" width="0.2" height="15.0" fill="rgb(224,91,14)" rx="2" ry="2" />
|
|
<text x="469.66" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="362.8" y="277" width="0.3" height="15.0" fill="rgb(232,37,31)" rx="2" ry="2" />
|
|
<text x="365.85" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (173 samples, 0.87%)</title><rect x="578.7" y="389" width="10.2" height="15.0" fill="rgb(238,192,45)" rx="2" ry="2" />
|
|
<text x="581.67" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (5 samples, 0.03%)</title><rect x="830.0" y="389" width="0.2" height="15.0" fill="rgb(242,207,16)" rx="2" ry="2" />
|
|
<text x="832.95" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_new (2 samples, 0.01%)</title><rect x="838.7" y="277" width="0.2" height="15.0" fill="rgb(210,1,7)" rx="2" ry="2" />
|
|
<text x="841.74" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (24 samples, 0.12%)</title><rect x="364.5" y="405" width="1.4" height="15.0" fill="rgb(217,20,3)" rx="2" ry="2" />
|
|
<text x="367.50" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (23 samples, 0.12%)</title><rect x="569.8" y="293" width="1.4" height="15.0" fill="rgb(240,85,21)" rx="2" ry="2" />
|
|
<text x="572.81" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (39 samples, 0.20%)</title><rect x="353.3" y="405" width="2.3" height="15.0" fill="rgb(209,192,36)" rx="2" ry="2" />
|
|
<text x="356.35" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_app_name_by_id (3 samples, 0.02%)</title><rect x="611.8" y="261" width="0.2" height="15.0" fill="rgb(213,40,42)" rx="2" ry="2" />
|
|
<text x="614.83" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (3,803 samples, 19.02%)</title><rect x="494.4" y="469" width="224.4" height="15.0" fill="rgb(219,27,32)" rx="2" ry="2" />
|
|
<text x="497.39" y="479.5" >ipv4_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (6 samples, 0.03%)</title><rect x="312.7" y="165" width="0.3" height="15.0" fill="rgb(230,195,40)" rx="2" ry="2" />
|
|
<text x="315.69" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="406.9" y="565" width="0.1" height="15.0" fill="rgb(240,98,2)" rx="2" ry="2" />
|
|
<text x="409.87" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="693.6" y="293" width="0.1" height="15.0" fill="rgb(215,163,27)" rx="2" ry="2" />
|
|
<text x="696.63" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (4 samples, 0.02%)</title><rect x="318.0" y="181" width="0.2" height="15.0" fill="rgb(225,229,40)" rx="2" ry="2" />
|
|
<text x="321.00" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (5 samples, 0.03%)</title><rect x="675.4" y="341" width="0.3" height="15.0" fill="rgb(253,64,48)" rx="2" ry="2" />
|
|
<text x="678.39" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_create (2 samples, 0.01%)</title><rect x="568.7" y="341" width="0.1" height="15.0" fill="rgb(251,205,2)" rx="2" ry="2" />
|
|
<text x="571.69" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="700.2" y="165" width="0.1" height="15.0" fill="rgb(233,103,44)" rx="2" ry="2" />
|
|
<text x="703.18" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (19 samples, 0.10%)</title><rect x="300.9" y="357" width="1.1" height="15.0" fill="rgb(230,82,8)" rx="2" ry="2" />
|
|
<text x="303.88" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (3 samples, 0.02%)</title><rect x="367.3" y="405" width="0.2" height="15.0" fill="rgb(217,48,13)" rx="2" ry="2" />
|
|
<text x="370.33" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_new (4 samples, 0.02%)</title><rect x="841.3" y="245" width="0.2" height="15.0" fill="rgb(235,1,3)" rx="2" ry="2" />
|
|
<text x="844.28" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_div (3 samples, 0.02%)</title><rect x="823.0" y="181" width="0.2" height="15.0" fill="rgb(216,1,19)" rx="2" ry="2" />
|
|
<text x="825.99" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (10 samples, 0.05%)</title><rect x="382.6" y="357" width="0.6" height="15.0" fill="rgb(227,195,45)" rx="2" ry="2" />
|
|
<text x="385.62" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (23 samples, 0.12%)</title><rect x="827.1" y="613" width="1.3" height="15.0" fill="rgb(244,165,35)" rx="2" ry="2" />
|
|
<text x="830.06" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (28 samples, 0.14%)</title><rect x="380.7" y="229" width="1.7" height="15.0" fill="rgb(205,13,28)" rx="2" ry="2" />
|
|
<text x="383.73" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="560.7" y="293" width="0.1" height="15.0" fill="rgb(253,81,3)" rx="2" ry="2" />
|
|
<text x="563.67" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>direction_I2E (2 samples, 0.01%)</title><rect x="383.3" y="309" width="0.1" height="15.0" fill="rgb(227,225,30)" rx="2" ry="2" />
|
|
<text x="386.33" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="821.6" y="437" width="0.1" height="15.0" fill="rgb(237,15,47)" rx="2" ry="2" />
|
|
<text x="824.63" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_integer (3 samples, 0.02%)</title><rect x="380.7" y="197" width="0.2" height="15.0" fill="rgb(208,191,52)" rx="2" ry="2" />
|
|
<text x="383.73" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_page_fault (3 samples, 0.02%)</title><rect x="481.8" y="309" width="0.2" height="15.0" fill="rgb(227,16,16)" rx="2" ry="2" />
|
|
<text x="484.82" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (24 samples, 0.12%)</title><rect x="299.5" y="389" width="1.4" height="15.0" fill="rgb(254,99,44)" rx="2" ry="2" />
|
|
<text x="302.47" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (38 samples, 0.19%)</title><rect x="698.3" y="357" width="2.3" height="15.0" fill="rgb(223,59,23)" rx="2" ry="2" />
|
|
<text x="701.35" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_create (2 samples, 0.01%)</title><rect x="458.0" y="485" width="0.2" height="15.0" fill="rgb(248,116,33)" rx="2" ry="2" />
|
|
<text x="461.04" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (8 samples, 0.04%)</title><rect x="361.7" y="309" width="0.5" height="15.0" fill="rgb(218,73,3)" rx="2" ry="2" />
|
|
<text x="364.73" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="376.2" y="229" width="0.1" height="15.0" fill="rgb(222,214,12)" rx="2" ry="2" />
|
|
<text x="379.19" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (6 samples, 0.03%)</title><rect x="838.0" y="421" width="0.3" height="15.0" fill="rgb(251,163,51)" rx="2" ry="2" />
|
|
<text x="840.98" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="821.6" y="341" width="0.1" height="15.0" fill="rgb(242,228,22)" rx="2" ry="2" />
|
|
<text x="824.63" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_create (2 samples, 0.01%)</title><rect x="350.8" y="261" width="0.1" height="15.0" fill="rgb(218,5,39)" rx="2" ry="2" />
|
|
<text x="353.81" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Rb_tree_increment (2 samples, 0.01%)</title><rect x="704.8" y="325" width="0.1" height="15.0" fill="rgb(228,190,51)" rx="2" ry="2" />
|
|
<text x="707.78" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (6 samples, 0.03%)</title><rect x="697.5" y="309" width="0.3" height="15.0" fill="rgb(252,72,41)" rx="2" ry="2" />
|
|
<text x="700.46" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (2 samples, 0.01%)</title><rect x="685.1" y="389" width="0.1" height="15.0" fill="rgb(242,109,50)" rx="2" ry="2" />
|
|
<text x="688.07" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (6 samples, 0.03%)</title><rect x="836.9" y="293" width="0.4" height="15.0" fill="rgb(252,30,2)" rx="2" ry="2" />
|
|
<text x="839.91" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseRegion (4 samples, 0.02%)</title><rect x="528.1" y="277" width="0.3" height="15.0" fill="rgb(241,18,26)" rx="2" ry="2" />
|
|
<text x="531.15" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (10 samples, 0.05%)</title><rect x="580.7" y="293" width="0.6" height="15.0" fill="rgb(220,137,14)" rx="2" ry="2" />
|
|
<text x="583.73" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (18 samples, 0.09%)</title><rect x="304.8" y="309" width="1.1" height="15.0" fill="rgb(220,180,5)" rx="2" ry="2" />
|
|
<text x="307.84" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (3 samples, 0.02%)</title><rect x="828.2" y="549" width="0.2" height="15.0" fill="rgb(206,44,32)" rx="2" ry="2" />
|
|
<text x="831.24" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cpuidle_enter (5,763 samples, 28.82%)</title><rect x="842.2" y="549" width="340.1" height="15.0" fill="rgb(214,84,11)" rx="2" ry="2" />
|
|
<text x="845.23" y="559.5" >cpuidle_enter</text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (9 samples, 0.05%)</title><rect x="820.7" y="405" width="0.6" height="15.0" fill="rgb(242,220,9)" rx="2" ry="2" />
|
|
<text x="823.74" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="511.2" y="309" width="0.1" height="15.0" fill="rgb(211,118,19)" rx="2" ry="2" />
|
|
<text x="514.15" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddNumberToObject (2 samples, 0.01%)</title><rect x="560.8" y="325" width="0.1" height="15.0" fill="rgb(208,168,38)" rx="2" ry="2" />
|
|
<text x="563.78" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cpuidle_enter_state (5,763 samples, 28.82%)</title><rect x="842.2" y="533" width="340.1" height="15.0" fill="rgb(210,11,10)" rx="2" ry="2" />
|
|
<text x="845.23" y="543.5" >cpuidle_enter_state</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="837.4" y="229" width="0.1" height="15.0" fill="rgb(234,42,38)" rx="2" ry="2" />
|
|
<text x="840.39" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>____strtod_l_internal (4 samples, 0.02%)</title><rect x="778.2" y="341" width="0.2" height="15.0" fill="rgb(239,114,32)" rx="2" ry="2" />
|
|
<text x="781.20" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="828.6" y="357" width="0.4" height="15.0" fill="rgb(233,187,52)" rx="2" ry="2" />
|
|
<text x="831.59" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_jhash_4words (4 samples, 0.02%)</title><rect x="478.8" y="469" width="0.2" height="15.0" fill="rgb(247,90,30)" rx="2" ry="2" />
|
|
<text x="481.75" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="828.6" y="197" width="0.4" height="15.0" fill="rgb(220,167,53)" rx="2" ry="2" />
|
|
<text x="831.59" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="380.2" y="357" width="0.1" height="15.0" fill="rgb(230,209,3)" rx="2" ry="2" />
|
|
<text x="383.20" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (2 samples, 0.01%)</title><rect x="314.8" y="277" width="0.1" height="15.0" fill="rgb(217,148,54)" rx="2" ry="2" />
|
|
<text x="317.81" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (11 samples, 0.06%)</title><rect x="509.4" y="373" width="0.7" height="15.0" fill="rgb(246,12,36)" rx="2" ry="2" />
|
|
<text x="512.44" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (3 samples, 0.02%)</title><rect x="588.6" y="293" width="0.2" height="15.0" fill="rgb(217,152,40)" rx="2" ry="2" />
|
|
<text x="591.64" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (8 samples, 0.04%)</title><rect x="383.4" y="277" width="0.5" height="15.0" fill="rgb(227,81,50)" rx="2" ry="2" />
|
|
<text x="386.45" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (743 samples, 3.72%)</title><rect x="630.6" y="437" width="43.8" height="15.0" fill="rgb(227,108,3)" rx="2" ry="2" />
|
|
<text x="633.60" y="447.5" >stre..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (12 samples, 0.06%)</title><rect x="298.8" y="309" width="0.7" height="15.0" fill="rgb(252,5,14)" rx="2" ry="2" />
|
|
<text x="301.76" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (8 samples, 0.04%)</title><rect x="357.8" y="293" width="0.4" height="15.0" fill="rgb(221,90,10)" rx="2" ry="2" />
|
|
<text x="360.77" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (4 samples, 0.02%)</title><rect x="511.5" y="389" width="0.2" height="15.0" fill="rgb(231,18,32)" rx="2" ry="2" />
|
|
<text x="514.51" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (10 samples, 0.05%)</title><rect x="562.7" y="309" width="0.6" height="15.0" fill="rgb(220,175,23)" rx="2" ry="2" />
|
|
<text x="565.73" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="660.0" y="341" width="0.1" height="15.0" fill="rgb(230,142,17)" rx="2" ry="2" />
|
|
<text x="662.99" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_new (7 samples, 0.04%)</title><rect x="582.6" y="341" width="0.4" height="15.0" fill="rgb(243,164,1)" rx="2" ry="2" />
|
|
<text x="585.62" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="511.2" y="325" width="0.1" height="15.0" fill="rgb(252,19,52)" rx="2" ry="2" />
|
|
<text x="514.15" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (6 samples, 0.03%)</title><rect x="367.3" y="453" width="0.4" height="15.0" fill="rgb(243,4,32)" rx="2" ry="2" />
|
|
<text x="370.33" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="580.0" y="293" width="0.2" height="15.0" fill="rgb(243,113,39)" rx="2" ry="2" />
|
|
<text x="583.02" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (3 samples, 0.02%)</title><rect x="523.3" y="277" width="0.2" height="15.0" fill="rgb(216,218,5)" rx="2" ry="2" />
|
|
<text x="526.31" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__tls_get_addr (4 samples, 0.02%)</title><rect x="758.1" y="549" width="0.2" height="15.0" fill="rgb(244,153,25)" rx="2" ry="2" />
|
|
<text x="761.07" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (6 samples, 0.03%)</title><rect x="525.4" y="229" width="0.4" height="15.0" fill="rgb(252,7,19)" rx="2" ry="2" />
|
|
<text x="528.43" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>layer_addr_ntop_r (3 samples, 0.02%)</title><rect x="828.2" y="405" width="0.2" height="15.0" fill="rgb(244,48,52)" rx="2" ry="2" />
|
|
<text x="831.24" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (3 samples, 0.02%)</title><rect x="379.0" y="325" width="0.2" height="15.0" fill="rgb(222,53,22)" rx="2" ry="2" />
|
|
<text x="382.02" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_ncopy (2 samples, 0.01%)</title><rect x="841.2" y="213" width="0.1" height="15.0" fill="rgb(221,184,44)" rx="2" ry="2" />
|
|
<text x="844.16" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_app_properties_policy (4 samples, 0.02%)</title><rect x="368.6" y="293" width="0.3" height="15.0" fill="rgb(231,7,53)" rx="2" ry="2" />
|
|
<text x="371.63" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_add_proto_tag (3 samples, 0.02%)</title><rect x="526.4" y="341" width="0.2" height="15.0" fill="rgb(243,108,28)" rx="2" ry="2" />
|
|
<text x="529.38" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (5 samples, 0.03%)</title><rect x="718.5" y="453" width="0.3" height="15.0" fill="rgb(221,181,1)" rx="2" ry="2" />
|
|
<text x="721.53" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (29 samples, 0.15%)</title><rect x="676.8" y="453" width="1.7" height="15.0" fill="rgb(249,172,6)" rx="2" ry="2" />
|
|
<text x="679.81" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="362.8" y="261" width="0.2" height="15.0" fill="rgb(235,7,38)" rx="2" ry="2" />
|
|
<text x="365.85" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (15 samples, 0.08%)</title><rect x="820.7" y="597" width="0.9" height="15.0" fill="rgb(238,184,44)" rx="2" ry="2" />
|
|
<text x="823.69" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (3 samples, 0.02%)</title><rect x="367.7" y="309" width="0.2" height="15.0" fill="rgb(228,3,8)" rx="2" ry="2" />
|
|
<text x="370.75" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="367.3" y="421" width="0.4" height="15.0" fill="rgb(211,72,13)" rx="2" ry="2" />
|
|
<text x="370.33" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (11 samples, 0.06%)</title><rect x="614.1" y="309" width="0.6" height="15.0" fill="rgb(237,124,44)" rx="2" ry="2" />
|
|
<text x="617.08" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_realloc (2 samples, 0.01%)</title><rect x="570.9" y="261" width="0.2" height="15.0" fill="rgb(210,71,33)" rx="2" ry="2" />
|
|
<text x="573.94" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (4 samples, 0.02%)</title><rect x="703.1" y="341" width="0.2" height="15.0" fill="rgb(219,92,43)" rx="2" ry="2" />
|
|
<text x="706.07" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (3 samples, 0.02%)</title><rect x="313.0" y="181" width="0.2" height="15.0" fill="rgb(226,28,4)" rx="2" ry="2" />
|
|
<text x="316.04" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="315.6" y="245" width="0.1" height="15.0" fill="rgb(215,123,34)" rx="2" ry="2" />
|
|
<text x="318.58" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (3 samples, 0.02%)</title><rect x="378.1" y="325" width="0.2" height="15.0" fill="rgb(242,136,41)" rx="2" ry="2" />
|
|
<text x="381.08" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__wake_up_sync_key (2 samples, 0.01%)</title><rect x="572.7" y="53" width="0.1" height="15.0" fill="rgb(216,30,46)" rx="2" ry="2" />
|
|
<text x="575.71" y="63.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (5 samples, 0.03%)</title><rect x="705.8" y="341" width="0.3" height="15.0" fill="rgb(235,190,50)" rx="2" ry="2" />
|
|
<text x="708.78" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (6 samples, 0.03%)</title><rect x="363.5" y="373" width="0.4" height="15.0" fill="rgb(240,171,54)" rx="2" ry="2" />
|
|
<text x="366.50" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (14 samples, 0.07%)</title><rect x="612.2" y="277" width="0.9" height="15.0" fill="rgb(222,49,21)" rx="2" ry="2" />
|
|
<text x="615.25" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="570.8" y="261" width="0.1" height="15.0" fill="rgb(219,148,49)" rx="2" ry="2" />
|
|
<text x="573.82" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (42 samples, 0.21%)</title><rect x="824.0" y="309" width="2.5" height="15.0" fill="rgb(240,227,27)" rx="2" ry="2" />
|
|
<text x="826.99" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (13 samples, 0.07%)</title><rect x="824.8" y="149" width="0.8" height="15.0" fill="rgb(218,19,46)" rx="2" ry="2" />
|
|
<text x="827.82" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="829.1" y="165" width="0.1" height="15.0" fill="rgb(238,80,12)" rx="2" ry="2" />
|
|
<text x="832.07" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (3 samples, 0.02%)</title><rect x="775.2" y="517" width="0.2" height="15.0" fill="rgb(224,147,13)" rx="2" ry="2" />
|
|
<text x="778.19" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="373.5" y="181" width="0.1" height="15.0" fill="rgb(219,63,20)" rx="2" ry="2" />
|
|
<text x="376.47" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="389" width="0.1" height="15.0" fill="rgb(233,107,21)" rx="2" ry="2" />
|
|
<text x="13.71" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="827.1" y="389" width="0.2" height="15.0" fill="rgb(231,3,20)" rx="2" ry="2" />
|
|
<text x="830.12" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.5] (166 samples, 0.83%)</title><rect x="416.4" y="581" width="9.8" height="15.0" fill="rgb(241,168,30)" rx="2" ry="2" />
|
|
<text x="419.38" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (6 samples, 0.03%)</title><rect x="826.7" y="533" width="0.4" height="15.0" fill="rgb(232,158,13)" rx="2" ry="2" />
|
|
<text x="829.71" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (30 samples, 0.15%)</title><rect x="376.7" y="389" width="1.7" height="15.0" fill="rgb(231,44,20)" rx="2" ry="2" />
|
|
<text x="379.66" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___clock_gettime (3 samples, 0.02%)</title><rect x="691.6" y="325" width="0.2" height="15.0" fill="rgb(244,33,41)" rx="2" ry="2" />
|
|
<text x="694.62" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="821.3" y="373" width="0.2" height="15.0" fill="rgb(228,26,26)" rx="2" ry="2" />
|
|
<text x="824.28" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (181 samples, 0.91%)</title><rect x="593.7" y="421" width="10.7" height="15.0" fill="rgb(228,215,41)" rx="2" ry="2" />
|
|
<text x="596.71" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (6 samples, 0.03%)</title><rect x="377.0" y="309" width="0.4" height="15.0" fill="rgb(249,112,29)" rx="2" ry="2" />
|
|
<text x="380.01" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (8 samples, 0.04%)</title><rect x="380.1" y="581" width="0.5" height="15.0" fill="rgb(243,128,45)" rx="2" ry="2" />
|
|
<text x="383.14" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_overlay_udp (15 samples, 0.08%)</title><rect x="485.4" y="501" width="0.8" height="15.0" fill="rgb(237,212,4)" rx="2" ry="2" />
|
|
<text x="488.36" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_get_platform_opt (13 samples, 0.07%)</title><rect x="664.8" y="357" width="0.7" height="15.0" fill="rgb(217,19,11)" rx="2" ry="2" />
|
|
<text x="667.77" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (7 samples, 0.04%)</title><rect x="351.6" y="261" width="0.4" height="15.0" fill="rgb(215,16,20)" rx="2" ry="2" />
|
|
<text x="354.58" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_polling_all_entry (499 samples, 2.50%)</title><rect x="791.2" y="565" width="29.5" height="15.0" fill="rgb(235,191,34)" rx="2" ry="2" />
|
|
<text x="794.24" y="575.5" >kn..</text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___printf_fp_l (5 samples, 0.03%)</title><rect x="361.9" y="245" width="0.3" height="15.0" fill="rgb(243,27,52)" rx="2" ry="2" />
|
|
<text x="364.90" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="827.5" y="325" width="0.5" height="15.0" fill="rgb(246,224,37)" rx="2" ry="2" />
|
|
<text x="830.53" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__st_pkt_proc_context_check_timeout (6 samples, 0.03%)</title><rect x="790.9" y="565" width="0.3" height="15.0" fill="rgb(231,86,35)" rx="2" ry="2" />
|
|
<text x="793.88" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (47 samples, 0.24%)</title><rect x="835.9" y="565" width="2.7" height="15.0" fill="rgb(242,114,34)" rx="2" ry="2" />
|
|
<text x="838.85" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="465.8" y="277" width="0.1" height="15.0" fill="rgb(244,202,0)" rx="2" ry="2" />
|
|
<text x="468.83" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (12 samples, 0.06%)</title><rect x="714.3" y="309" width="0.7" height="15.0" fill="rgb(218,56,52)" rx="2" ry="2" />
|
|
<text x="717.34" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509_NAME_get_text_by_OBJ (3 samples, 0.02%)</title><rect x="352.3" y="325" width="0.2" height="15.0" fill="rgb(245,198,53)" rx="2" ry="2" />
|
|
<text x="355.29" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (3 samples, 0.02%)</title><rect x="827.1" y="469" width="0.2" height="15.0" fill="rgb(225,224,21)" rx="2" ry="2" />
|
|
<text x="830.12" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="608.8" y="213" width="0.1" height="15.0" fill="rgb(233,161,22)" rx="2" ry="2" />
|
|
<text x="611.76" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (4 samples, 0.02%)</title><rect x="293.7" y="581" width="0.2" height="15.0" fill="rgb(220,148,12)" rx="2" ry="2" />
|
|
<text x="296.68" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="302.2" y="341" width="0.2" height="15.0" fill="rgb(241,69,25)" rx="2" ry="2" />
|
|
<text x="305.18" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.03%)</title><rect x="358.2" y="293" width="0.3" height="15.0" fill="rgb(210,182,16)" rx="2" ry="2" />
|
|
<text x="361.25" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_payload (6 samples, 0.03%)</title><rect x="674.0" y="309" width="0.3" height="15.0" fill="rgb(226,89,17)" rx="2" ry="2" />
|
|
<text x="676.97" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="314.3" y="229" width="0.1" height="15.0" fill="rgb(253,167,39)" rx="2" ry="2" />
|
|
<text x="317.28" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="694.1" y="245" width="0.1" height="15.0" fill="rgb(217,23,26)" rx="2" ry="2" />
|
|
<text x="697.10" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (24 samples, 0.12%)</title><rect x="315.8" y="277" width="1.4" height="15.0" fill="rgb(231,178,23)" rx="2" ry="2" />
|
|
<text x="318.76" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (5 samples, 0.03%)</title><rect x="376.7" y="293" width="0.3" height="15.0" fill="rgb(252,110,24)" rx="2" ry="2" />
|
|
<text x="379.72" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (8 samples, 0.04%)</title><rect x="383.4" y="245" width="0.5" height="15.0" fill="rgb(221,134,1)" rx="2" ry="2" />
|
|
<text x="386.45" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="583.2" y="325" width="0.2" height="15.0" fill="rgb(205,53,9)" rx="2" ry="2" />
|
|
<text x="586.15" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (33 samples, 0.17%)</title><rect x="835.9" y="453" width="1.9" height="15.0" fill="rgb(244,79,25)" rx="2" ry="2" />
|
|
<text x="838.85" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (51 samples, 0.26%)</title><rect x="310.8" y="213" width="3.0" height="15.0" fill="rgb(223,22,22)" rx="2" ry="2" />
|
|
<text x="313.80" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_proxy_tcp_options_parse (4 samples, 0.02%)</title><rect x="660.2" y="357" width="0.3" height="15.0" fill="rgb(231,111,47)" rx="2" ry="2" />
|
|
<text x="663.22" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="465.8" y="261" width="0.1" height="15.0" fill="rgb(221,130,26)" rx="2" ry="2" />
|
|
<text x="468.83" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (4 samples, 0.02%)</title><rect x="613.4" y="309" width="0.2" height="15.0" fill="rgb(231,6,37)" rx="2" ry="2" />
|
|
<text x="616.37" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (28 samples, 0.14%)</title><rect x="840.4" y="565" width="1.6" height="15.0" fill="rgb(249,180,5)" rx="2" ry="2" />
|
|
<text x="843.40" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (8 samples, 0.04%)</title><rect x="365.9" y="341" width="0.5" height="15.0" fill="rgb(208,102,17)" rx="2" ry="2" />
|
|
<text x="368.92" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (525 samples, 2.63%)</title><rect x="527.8" y="293" width="31.0" height="15.0" fill="rgb(205,34,16)" rx="2" ry="2" />
|
|
<text x="530.80" y="303.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (9 samples, 0.05%)</title><rect x="366.4" y="341" width="0.5" height="15.0" fill="rgb(211,138,54)" rx="2" ry="2" />
|
|
<text x="369.39" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (4 samples, 0.02%)</title><rect x="617.6" y="373" width="0.2" height="15.0" fill="rgb(232,131,7)" rx="2" ry="2" />
|
|
<text x="620.56" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (5 samples, 0.03%)</title><rect x="691.3" y="325" width="0.3" height="15.0" fill="rgb(223,176,41)" rx="2" ry="2" />
|
|
<text x="694.33" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (3 samples, 0.02%)</title><rect x="828.4" y="453" width="0.2" height="15.0" fill="rgb(217,212,47)" rx="2" ry="2" />
|
|
<text x="831.42" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (14 samples, 0.07%)</title><rect x="297.0" y="613" width="0.8" height="15.0" fill="rgb(226,55,41)" rx="2" ry="2" />
|
|
<text x="299.99" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="481.4" y="309" width="0.1" height="15.0" fill="rgb(211,180,49)" rx="2" ry="2" />
|
|
<text x="484.41" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (38 samples, 0.19%)</title><rect x="286.1" y="581" width="2.3" height="15.0" fill="rgb(226,98,7)" rx="2" ry="2" />
|
|
<text x="289.13" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="291.7" y="533" width="0.7" height="15.0" fill="rgb(218,75,50)" rx="2" ry="2" />
|
|
<text x="294.68" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new0 (3 samples, 0.02%)</title><rect x="610.7" y="229" width="0.2" height="15.0" fill="rgb(206,135,32)" rx="2" ry="2" />
|
|
<text x="613.71" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,848 samples, 9.24%)</title><rect x="297.9" y="629" width="109.1" height="15.0" fill="rgb(251,211,25)" rx="2" ry="2" />
|
|
<text x="300.93" y="639.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (15 samples, 0.08%)</title><rect x="557.8" y="261" width="0.9" height="15.0" fill="rgb(250,179,22)" rx="2" ry="2" />
|
|
<text x="560.83" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_report_identify_result (9 samples, 0.05%)</title><rect x="368.3" y="357" width="0.6" height="15.0" fill="rgb(205,103,34)" rx="2" ry="2" />
|
|
<text x="371.34" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (14 samples, 0.07%)</title><rect x="824.8" y="197" width="0.8" height="15.0" fill="rgb(250,161,38)" rx="2" ry="2" />
|
|
<text x="827.76" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (6 samples, 0.03%)</title><rect x="367.9" y="341" width="0.4" height="15.0" fill="rgb(235,71,42)" rx="2" ry="2" />
|
|
<text x="370.92" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="361.4" y="245" width="0.2" height="15.0" fill="rgb(216,173,10)" rx="2" ry="2" />
|
|
<text x="364.43" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pop3_entry_fun (2 samples, 0.01%)</title><rect x="559.8" y="341" width="0.2" height="15.0" fill="rgb(227,99,17)" rx="2" ry="2" />
|
|
<text x="562.84" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_quic_plug_entry (7 samples, 0.04%)</title><rect x="376.2" y="341" width="0.4" height="15.0" fill="rgb(224,62,6)" rx="2" ry="2" />
|
|
<text x="379.19" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (5 samples, 0.03%)</title><rect x="513.4" y="405" width="0.3" height="15.0" fill="rgb(241,178,33)" rx="2" ry="2" />
|
|
<text x="516.40" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="309" width="0.3" height="15.0" fill="rgb(214,211,20)" rx="2" ry="2" />
|
|
<text x="829.71" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (2 samples, 0.01%)</title><rect x="10.7" y="549" width="0.1" height="15.0" fill="rgb(222,173,16)" rx="2" ry="2" />
|
|
<text x="13.71" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_mod_inverse (2 samples, 0.01%)</title><rect x="823.3" y="181" width="0.2" height="15.0" fill="rgb(253,106,5)" rx="2" ry="2" />
|
|
<text x="826.34" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (70 samples, 0.35%)</title><rect x="298.1" y="405" width="4.1" height="15.0" fill="rgb(217,130,45)" rx="2" ry="2" />
|
|
<text x="301.05" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (10 samples, 0.05%)</title><rect x="693.9" y="293" width="0.6" height="15.0" fill="rgb(224,55,25)" rx="2" ry="2" />
|
|
<text x="696.86" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="821.6" y="357" width="0.1" height="15.0" fill="rgb(240,211,39)" rx="2" ry="2" />
|
|
<text x="824.63" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (5 samples, 0.03%)</title><rect x="589.9" y="421" width="0.3" height="15.0" fill="rgb(233,199,53)" rx="2" ry="2" />
|
|
<text x="592.94" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (888 samples, 4.44%)</title><rect x="304.8" y="469" width="52.4" height="15.0" fill="rgb(233,61,52)" rx="2" ry="2" />
|
|
<text x="307.78" y="479.5" >strea..</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (18 samples, 0.09%)</title><rect x="375.1" y="325" width="1.1" height="15.0" fill="rgb(238,105,27)" rx="2" ry="2" />
|
|
<text x="378.12" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (6 samples, 0.03%)</title><rect x="564.7" y="325" width="0.3" height="15.0" fill="rgb(234,181,46)" rx="2" ry="2" />
|
|
<text x="567.68" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="679.9" y="325" width="0.2" height="15.0" fill="rgb(209,53,19)" rx="2" ry="2" />
|
|
<text x="682.94" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="697.1" y="309" width="0.1" height="15.0" fill="rgb(245,122,21)" rx="2" ry="2" />
|
|
<text x="700.11" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify (195 samples, 0.98%)</title><rect x="616.3" y="437" width="11.5" height="15.0" fill="rgb(229,60,33)" rx="2" ry="2" />
|
|
<text x="619.32" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="378.0" y="293" width="0.1" height="15.0" fill="rgb(216,114,17)" rx="2" ry="2" />
|
|
<text x="380.96" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_record_tcp_entry (14 samples, 0.07%)</title><rect x="577.1" y="357" width="0.8" height="15.0" fill="rgb(231,136,44)" rx="2" ry="2" />
|
|
<text x="580.07" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_to_UTF8 (2 samples, 0.01%)</title><rect x="822.2" y="261" width="0.1" height="15.0" fill="rgb(253,37,43)" rx="2" ry="2" />
|
|
<text x="825.22" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (4,126 samples, 20.64%)</title><rect x="41.0" y="533" width="243.5" height="15.0" fill="rgb(207,87,21)" rx="2" ry="2" />
|
|
<text x="43.98" y="543.5" >[libmaat4.so.4.0]</text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="674.2" y="181" width="0.1" height="15.0" fill="rgb(205,97,43)" rx="2" ry="2" />
|
|
<text x="677.15" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_check (129 samples, 0.65%)</title><rect x="620.2" y="421" width="7.6" height="15.0" fill="rgb(211,99,5)" rx="2" ry="2" />
|
|
<text x="623.21" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="582.1" y="293" width="0.2" height="15.0" fill="rgb(238,84,51)" rx="2" ry="2" />
|
|
<text x="585.15" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="316.8" y="149" width="0.2" height="15.0" fill="rgb(208,18,10)" rx="2" ry="2" />
|
|
<text x="319.82" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (3 samples, 0.02%)</title><rect x="839.3" y="581" width="0.2" height="15.0" fill="rgb(235,116,33)" rx="2" ry="2" />
|
|
<text x="842.33" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (4 samples, 0.02%)</title><rect x="655.4" y="325" width="0.3" height="15.0" fill="rgb(252,10,2)" rx="2" ry="2" />
|
|
<text x="658.44" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="578.1" y="341" width="0.2" height="15.0" fill="rgb(245,41,45)" rx="2" ry="2" />
|
|
<text x="581.14" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (39 samples, 0.20%)</title><rect x="821.6" y="581" width="2.3" height="15.0" fill="rgb(214,143,2)" rx="2" ry="2" />
|
|
<text x="824.57" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_STAT_TCP_ADD (7 samples, 0.04%)</title><rect x="519.2" y="341" width="0.4" height="15.0" fill="rgb(223,191,43)" rx="2" ry="2" />
|
|
<text x="522.18" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="821.9" y="261" width="0.2" height="15.0" fill="rgb(246,190,36)" rx="2" ry="2" />
|
|
<text x="824.92" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (5 samples, 0.03%)</title><rect x="560.3" y="293" width="0.3" height="15.0" fill="rgb(244,148,23)" rx="2" ry="2" />
|
|
<text x="563.31" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="713.1" y="309" width="0.1" height="15.0" fill="rgb(238,105,6)" rx="2" ry="2" />
|
|
<text x="716.10" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (530 samples, 2.65%)</title><rect x="317.2" y="245" width="31.2" height="15.0" fill="rgb(207,172,32)" rx="2" ry="2" />
|
|
<text x="320.17" y="255.5" >pl..</text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (3 samples, 0.02%)</title><rect x="367.5" y="389" width="0.2" height="15.0" fill="rgb(212,118,35)" rx="2" ry="2" />
|
|
<text x="370.51" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="480.7" y="341" width="0.1" height="15.0" fill="rgb(226,187,48)" rx="2" ry="2" />
|
|
<text x="483.70" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="680.2" y="341" width="0.1" height="15.0" fill="rgb(207,163,29)" rx="2" ry="2" />
|
|
<text x="683.17" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (11 samples, 0.06%)</title><rect x="380.9" y="197" width="0.7" height="15.0" fill="rgb(206,36,54)" rx="2" ry="2" />
|
|
<text x="383.91" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>process_ipv4_pkt (34 samples, 0.17%)</title><rect x="716.5" y="453" width="2.0" height="15.0" fill="rgb(219,161,1)" rx="2" ry="2" />
|
|
<text x="719.52" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="376.0" y="309" width="0.2" height="15.0" fill="rgb(218,160,9)" rx="2" ry="2" />
|
|
<text x="378.95" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (8 samples, 0.04%)</title><rect x="511.5" y="421" width="0.5" height="15.0" fill="rgb(226,200,51)" rx="2" ry="2" />
|
|
<text x="514.51" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_bsearch (8 samples, 0.04%)</title><rect x="288.4" y="581" width="0.4" height="15.0" fill="rgb(254,220,12)" rx="2" ry="2" />
|
|
<text x="291.37" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_vxlan_addr (7 samples, 0.04%)</title><rect x="718.9" y="485" width="0.5" height="15.0" fill="rgb(216,116,31)" rx="2" ry="2" />
|
|
<text x="721.94" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="320.7" y="165" width="0.2" height="15.0" fill="rgb(220,201,38)" rx="2" ry="2" />
|
|
<text x="323.65" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (4 samples, 0.02%)</title><rect x="582.4" y="325" width="0.2" height="15.0" fill="rgb(229,209,3)" rx="2" ry="2" />
|
|
<text x="585.38" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (12 samples, 0.06%)</title><rect x="827.3" y="469" width="0.7" height="15.0" fill="rgb(249,107,43)" rx="2" ry="2" />
|
|
<text x="830.30" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (6 samples, 0.03%)</title><rect x="364.1" y="293" width="0.4" height="15.0" fill="rgb(216,209,0)" rx="2" ry="2" />
|
|
<text x="367.15" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (18 samples, 0.09%)</title><rect x="316.0" y="181" width="1.1" height="15.0" fill="rgb(251,178,7)" rx="2" ry="2" />
|
|
<text x="318.99" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (36 samples, 0.18%)</title><rect x="835.9" y="469" width="2.1" height="15.0" fill="rgb(227,35,7)" rx="2" ry="2" />
|
|
<text x="838.85" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="355.6" y="373" width="0.5" height="15.0" fill="rgb(220,26,35)" rx="2" ry="2" />
|
|
<text x="358.65" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (2 samples, 0.01%)</title><rect x="481.6" y="309" width="0.2" height="15.0" fill="rgb(215,212,3)" rx="2" ry="2" />
|
|
<text x="484.65" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (4 samples, 0.02%)</title><rect x="312.8" y="133" width="0.2" height="15.0" fill="rgb(210,58,5)" rx="2" ry="2" />
|
|
<text x="315.80" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (4 samples, 0.02%)</title><rect x="379.9" y="405" width="0.2" height="15.0" fill="rgb(220,88,18)" rx="2" ry="2" />
|
|
<text x="382.90" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (24 samples, 0.12%)</title><rect x="822.1" y="421" width="1.4" height="15.0" fill="rgb(232,154,28)" rx="2" ry="2" />
|
|
<text x="825.10" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (8 samples, 0.04%)</title><rect x="584.6" y="341" width="0.4" height="15.0" fill="rgb(248,160,28)" rx="2" ry="2" />
|
|
<text x="587.57" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (6 samples, 0.03%)</title><rect x="579.8" y="309" width="0.4" height="15.0" fill="rgb(215,36,12)" rx="2" ry="2" />
|
|
<text x="582.85" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new0 (2 samples, 0.01%)</title><rect x="837.4" y="277" width="0.1" height="15.0" fill="rgb(237,123,45)" rx="2" ry="2" />
|
|
<text x="840.39" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (18 samples, 0.09%)</title><rect x="380.7" y="213" width="1.1" height="15.0" fill="rgb(251,202,14)" rx="2" ry="2" />
|
|
<text x="383.73" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (7 samples, 0.04%)</title><rect x="376.2" y="357" width="0.4" height="15.0" fill="rgb(217,135,23)" rx="2" ry="2" />
|
|
<text x="379.19" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (28 samples, 0.14%)</title><rect x="828.6" y="469" width="1.6" height="15.0" fill="rgb(238,20,44)" rx="2" ry="2" />
|
|
<text x="831.59" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (7 samples, 0.04%)</title><rect x="348.4" y="309" width="0.5" height="15.0" fill="rgb(247,188,0)" rx="2" ry="2" />
|
|
<text x="351.45" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="292.4" y="549" width="0.1" height="15.0" fill="rgb(239,215,13)" rx="2" ry="2" />
|
|
<text x="295.39" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (6 samples, 0.03%)</title><rect x="367.9" y="325" width="0.4" height="15.0" fill="rgb(206,224,11)" rx="2" ry="2" />
|
|
<text x="370.92" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>append_common_field (3 samples, 0.02%)</title><rect x="828.2" y="437" width="0.2" height="15.0" fill="rgb(241,159,36)" rx="2" ry="2" />
|
|
<text x="831.24" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (26 samples, 0.13%)</title><rect x="528.9" y="261" width="1.6" height="15.0" fill="rgb(246,73,51)" rx="2" ry="2" />
|
|
<text x="531.92" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (3 samples, 0.02%)</title><rect x="578.9" y="309" width="0.2" height="15.0" fill="rgb(207,228,43)" rx="2" ry="2" />
|
|
<text x="581.90" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (2 samples, 0.01%)</title><rect x="679.7" y="373" width="0.1" height="15.0" fill="rgb(241,40,13)" rx="2" ry="2" />
|
|
<text x="682.70" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (2 samples, 0.01%)</title><rect x="519.8" y="277" width="0.1" height="15.0" fill="rgb(214,214,21)" rx="2" ry="2" />
|
|
<text x="522.83" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="613.4" y="277" width="0.1" height="15.0" fill="rgb(208,198,15)" rx="2" ry="2" />
|
|
<text x="616.37" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.05%)</title><rect x="572.3" y="181" width="0.6" height="15.0" fill="rgb(230,91,3)" rx="2" ry="2" />
|
|
<text x="575.29" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="357.5" y="325" width="0.2" height="15.0" fill="rgb(230,67,54)" rx="2" ry="2" />
|
|
<text x="360.54" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="708.3" y="309" width="0.1" height="15.0" fill="rgb(211,136,51)" rx="2" ry="2" />
|
|
<text x="711.32" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (28 samples, 0.14%)</title><rect x="380.7" y="293" width="1.7" height="15.0" fill="rgb(248,27,31)" rx="2" ry="2" />
|
|
<text x="383.73" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_matched_signature_id_cb (2 samples, 0.01%)</title><rect x="827.1" y="341" width="0.1" height="15.0" fill="rgb(213,212,54)" rx="2" ry="2" />
|
|
<text x="830.12" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="837.0" y="197" width="0.3" height="15.0" fill="rgb(220,210,0)" rx="2" ry="2" />
|
|
<text x="839.97" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_mark_l4 (47 samples, 0.24%)</title><rect x="627.8" y="437" width="2.8" height="15.0" fill="rgb(207,216,2)" rx="2" ry="2" />
|
|
<text x="630.83" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (13 samples, 0.07%)</title><rect x="836.1" y="357" width="0.8" height="15.0" fill="rgb(220,119,54)" rx="2" ry="2" />
|
|
<text x="839.09" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="298.6" y="261" width="0.1" height="15.0" fill="rgb(245,27,44)" rx="2" ry="2" />
|
|
<text x="301.58" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_STAT_LATEENCY (8 samples, 0.04%)</title><rect x="691.3" y="341" width="0.5" height="15.0" fill="rgb(207,194,43)" rx="2" ry="2" />
|
|
<text x="694.33" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (4 samples, 0.02%)</title><rect x="463.1" y="437" width="0.2" height="15.0" fill="rgb(208,153,21)" rx="2" ry="2" />
|
|
<text x="466.06" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (2 samples, 0.01%)</title><rect x="824.6" y="133" width="0.2" height="15.0" fill="rgb(238,150,16)" rx="2" ry="2" />
|
|
<text x="827.64" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="355.1" y="245" width="0.1" height="15.0" fill="rgb(227,218,19)" rx="2" ry="2" />
|
|
<text x="358.06" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="481.4" y="325" width="0.1" height="15.0" fill="rgb(238,46,6)" rx="2" ry="2" />
|
|
<text x="484.41" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="828.4" y="389" width="0.1" height="15.0" fill="rgb(235,135,43)" rx="2" ry="2" />
|
|
<text x="831.42" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (20 samples, 0.10%)</title><rect x="348.4" y="389" width="1.2" height="15.0" fill="rgb(240,33,14)" rx="2" ry="2" />
|
|
<text x="351.45" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (19 samples, 0.10%)</title><rect x="484.2" y="501" width="1.2" height="15.0" fill="rgb(229,6,32)" rx="2" ry="2" />
|
|
<text x="487.24" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___pthread_mutex_lock (2 samples, 0.01%)</title><rect x="571.6" y="213" width="0.1" height="15.0" fill="rgb(215,123,23)" rx="2" ry="2" />
|
|
<text x="574.58" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="826.1" y="117" width="0.4" height="15.0" fill="rgb(249,83,44)" rx="2" ry="2" />
|
|
<text x="829.12" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ipv4_address (4 samples, 0.02%)</title><rect x="356.8" y="357" width="0.2" height="15.0" fill="rgb(238,103,40)" rx="2" ry="2" />
|
|
<text x="359.77" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (14 samples, 0.07%)</title><rect x="699.1" y="325" width="0.8" height="15.0" fill="rgb(252,1,41)" rx="2" ry="2" />
|
|
<text x="702.06" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (17 samples, 0.09%)</title><rect x="299.5" y="293" width="1.0" height="15.0" fill="rgb(236,126,12)" rx="2" ry="2" />
|
|
<text x="302.47" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="321.2" y="181" width="0.2" height="15.0" fill="rgb(224,177,24)" rx="2" ry="2" />
|
|
<text x="324.18" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (47 samples, 0.24%)</title><rect x="835.9" y="613" width="2.7" height="15.0" fill="rgb(237,46,38)" rx="2" ry="2" />
|
|
<text x="838.85" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="682.1" y="325" width="0.1" height="15.0" fill="rgb(241,33,44)" rx="2" ry="2" />
|
|
<text x="685.06" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="585.3" y="325" width="0.3" height="15.0" fill="rgb(227,95,30)" rx="2" ry="2" />
|
|
<text x="588.33" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (2 samples, 0.01%)</title><rect x="679.7" y="357" width="0.1" height="15.0" fill="rgb(227,74,22)" rx="2" ry="2" />
|
|
<text x="682.70" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="300.5" y="261" width="0.3" height="15.0" fill="rgb(222,119,12)" rx="2" ry="2" />
|
|
<text x="303.47" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (3 samples, 0.02%)</title><rect x="284.9" y="565" width="0.2" height="15.0" fill="rgb(209,161,18)" rx="2" ry="2" />
|
|
<text x="287.89" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (18 samples, 0.09%)</title><rect x="377.4" y="373" width="1.0" height="15.0" fill="rgb(253,75,23)" rx="2" ry="2" />
|
|
<text x="380.37" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (7 samples, 0.04%)</title><rect x="373.6" y="197" width="0.5" height="15.0" fill="rgb(247,111,2)" rx="2" ry="2" />
|
|
<text x="376.65" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="319.7" y="165" width="0.1" height="15.0" fill="rgb(225,16,1)" rx="2" ry="2" />
|
|
<text x="322.65" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="827.3" y="373" width="0.2" height="15.0" fill="rgb(238,149,49)" rx="2" ry="2" />
|
|
<text x="830.30" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="315.6" y="229" width="0.1" height="15.0" fill="rgb(205,164,13)" rx="2" ry="2" />
|
|
<text x="318.58" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (545 samples, 2.73%)</title><rect x="527.3" y="325" width="32.1" height="15.0" fill="rgb(253,66,2)" rx="2" ry="2" />
|
|
<text x="530.26" y="335.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="583.6" y="277" width="0.1" height="15.0" fill="rgb(207,32,40)" rx="2" ry="2" />
|
|
<text x="586.56" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="827.5" y="341" width="0.5" height="15.0" fill="rgb(232,130,34)" rx="2" ry="2" />
|
|
<text x="830.53" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (39 samples, 0.20%)</title><rect x="821.6" y="517" width="2.3" height="15.0" fill="rgb(229,70,50)" rx="2" ry="2" />
|
|
<text x="824.57" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (7 samples, 0.04%)</title><rect x="581.4" y="309" width="0.4" height="15.0" fill="rgb(205,151,26)" rx="2" ry="2" />
|
|
<text x="584.38" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (60 samples, 0.30%)</title><rect x="611.2" y="389" width="3.6" height="15.0" fill="rgb(225,110,8)" rx="2" ry="2" />
|
|
<text x="614.24" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="487.0" y="389" width="0.1" height="15.0" fill="rgb(213,61,34)" rx="2" ry="2" />
|
|
<text x="490.02" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_tcpall_entry (26 samples, 0.13%)</title><rect x="584.2" y="357" width="1.5" height="15.0" fill="rgb(227,28,46)" rx="2" ry="2" />
|
|
<text x="587.15" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (18 samples, 0.09%)</title><rect x="841.0" y="389" width="1.0" height="15.0" fill="rgb(250,114,46)" rx="2" ry="2" />
|
|
<text x="843.99" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="700.1" y="261" width="0.2" height="15.0" fill="rgb(239,69,51)" rx="2" ry="2" />
|
|
<text x="703.12" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_record_udp_entry (25 samples, 0.13%)</title><rect x="711.9" y="373" width="1.4" height="15.0" fill="rgb(233,59,37)" rx="2" ry="2" />
|
|
<text x="714.86" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="827.5" y="389" width="0.5" height="15.0" fill="rgb(251,28,15)" rx="2" ry="2" />
|
|
<text x="830.53" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (60 samples, 0.30%)</title><rect x="776.5" y="533" width="3.5" height="15.0" fill="rgb(248,216,29)" rx="2" ry="2" />
|
|
<text x="779.48" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_polling_inject_context (8 samples, 0.04%)</title><rect x="716.1" y="437" width="0.4" height="15.0" fill="rgb(238,211,1)" rx="2" ry="2" />
|
|
<text x="719.05" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (14 samples, 0.07%)</title><rect x="560.3" y="341" width="0.8" height="15.0" fill="rgb(210,50,33)" rx="2" ry="2" />
|
|
<text x="563.25" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="822.3" y="245" width="0.3" height="15.0" fill="rgb(222,29,10)" rx="2" ry="2" />
|
|
<text x="825.34" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stratum_identify (2 samples, 0.01%)</title><rect x="301.9" y="341" width="0.1" height="15.0" fill="rgb(215,168,35)" rx="2" ry="2" />
|
|
<text x="304.89" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_partitioner (4 samples, 0.02%)</title><rect x="610.9" y="229" width="0.2" height="15.0" fill="rgb(233,15,35)" rx="2" ry="2" />
|
|
<text x="613.89" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.04%)</title><rect x="693.2" y="277" width="0.4" height="15.0" fill="rgb(240,70,11)" rx="2" ry="2" />
|
|
<text x="696.15" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="665.8" y="325" width="0.1" height="15.0" fill="rgb(238,130,26)" rx="2" ry="2" />
|
|
<text x="668.77" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (17 samples, 0.09%)</title><rect x="699.0" y="341" width="1.0" height="15.0" fill="rgb(225,135,41)" rx="2" ry="2" />
|
|
<text x="702.00" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (22 samples, 0.11%)</title><rect x="655.7" y="325" width="1.3" height="15.0" fill="rgb(242,80,42)" rx="2" ry="2" />
|
|
<text x="658.68" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (2 samples, 0.01%)</title><rect x="486.1" y="469" width="0.1" height="15.0" fill="rgb(240,76,26)" rx="2" ry="2" />
|
|
<text x="489.13" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (11 samples, 0.06%)</title><rect x="705.0" y="341" width="0.6" height="15.0" fill="rgb(231,165,10)" rx="2" ry="2" />
|
|
<text x="707.96" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>deal_event_rules (7 samples, 0.04%)</title><rect x="614.3" y="277" width="0.4" height="15.0" fill="rgb(212,85,31)" rx="2" ry="2" />
|
|
<text x="617.31" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_q_io_event (3 samples, 0.02%)</title><rect x="674.2" y="229" width="0.1" height="15.0" fill="rgb(233,69,5)" rx="2" ry="2" />
|
|
<text x="677.15" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (28 samples, 0.14%)</title><rect x="380.7" y="245" width="1.7" height="15.0" fill="rgb(237,53,30)" rx="2" ry="2" />
|
|
<text x="383.73" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (18 samples, 0.09%)</title><rect x="841.0" y="293" width="1.0" height="15.0" fill="rgb(247,209,29)" rx="2" ry="2" />
|
|
<text x="843.99" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="780.3" y="485" width="0.1" height="15.0" fill="rgb(212,165,50)" rx="2" ry="2" />
|
|
<text x="783.26" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="468.1" y="325" width="0.1" height="15.0" fill="rgb(219,1,27)" rx="2" ry="2" />
|
|
<text x="471.13" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (14 samples, 0.07%)</title><rect x="318.8" y="181" width="0.9" height="15.0" fill="rgb(213,23,53)" rx="2" ry="2" />
|
|
<text x="321.82" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="466.4" y="341" width="0.1" height="15.0" fill="rgb(245,68,44)" rx="2" ry="2" />
|
|
<text x="469.36" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (2 samples, 0.01%)</title><rect x="466.5" y="357" width="0.2" height="15.0" fill="rgb(219,206,24)" rx="2" ry="2" />
|
|
<text x="469.54" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="838.7" y="181" width="0.2" height="15.0" fill="rgb(240,125,13)" rx="2" ry="2" />
|
|
<text x="841.74" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mail_identify_pop3 (2 samples, 0.01%)</title><rect x="559.8" y="325" width="0.2" height="15.0" fill="rgb(219,33,10)" rx="2" ry="2" />
|
|
<text x="562.84" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (70 samples, 0.35%)</title><rect x="298.1" y="437" width="4.1" height="15.0" fill="rgb(251,99,46)" rx="2" ry="2" />
|
|
<text x="301.05" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (8 samples, 0.04%)</title><rect x="467.5" y="325" width="0.5" height="15.0" fill="rgb(219,119,4)" rx="2" ry="2" />
|
|
<text x="470.54" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (6 samples, 0.03%)</title><rect x="367.3" y="437" width="0.4" height="15.0" fill="rgb(221,161,22)" rx="2" ry="2" />
|
|
<text x="370.33" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.04%)</title><rect x="574.1" y="325" width="0.4" height="15.0" fill="rgb(208,56,4)" rx="2" ry="2" />
|
|
<text x="577.12" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (3 samples, 0.02%)</title><rect x="841.5" y="181" width="0.2" height="15.0" fill="rgb(236,29,13)" rx="2" ry="2" />
|
|
<text x="844.52" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="382.1" y="133" width="0.2" height="15.0" fill="rgb(237,86,31)" rx="2" ry="2" />
|
|
<text x="385.09" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="837.5" y="357" width="0.2" height="15.0" fill="rgb(249,149,13)" rx="2" ry="2" />
|
|
<text x="840.50" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (3 samples, 0.02%)</title><rect x="304.1" y="389" width="0.2" height="15.0" fill="rgb(232,141,16)" rx="2" ry="2" />
|
|
<text x="307.13" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (6 samples, 0.03%)</title><rect x="380.2" y="485" width="0.4" height="15.0" fill="rgb(228,185,45)" rx="2" ry="2" />
|
|
<text x="383.20" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_string (4 samples, 0.02%)</title><rect x="305.7" y="261" width="0.2" height="15.0" fill="rgb(252,20,46)" rx="2" ry="2" />
|
|
<text x="308.66" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.07%)</title><rect x="529.7" y="229" width="0.8" height="15.0" fill="rgb(227,76,48)" rx="2" ry="2" />
|
|
<text x="532.68" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="840.4" y="389" width="0.1" height="15.0" fill="rgb(214,219,14)" rx="2" ry="2" />
|
|
<text x="843.40" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_session_flags (2 samples, 0.01%)</title><rect x="574.7" y="325" width="0.1" height="15.0" fill="rgb(209,115,48)" rx="2" ry="2" />
|
|
<text x="577.71" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="293.1" y="597" width="0.1" height="15.0" fill="rgb(228,80,16)" rx="2" ry="2" />
|
|
<text x="296.09" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (42 samples, 0.21%)</title><rect x="824.0" y="437" width="2.5" height="15.0" fill="rgb(246,211,0)" rx="2" ry="2" />
|
|
<text x="826.99" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="605.6" y="389" width="0.4" height="15.0" fill="rgb(223,59,36)" rx="2" ry="2" />
|
|
<text x="608.64" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (5 samples, 0.03%)</title><rect x="581.8" y="293" width="0.3" height="15.0" fill="rgb(213,38,6)" rx="2" ry="2" />
|
|
<text x="584.79" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (8 samples, 0.04%)</title><rect x="351.5" y="277" width="0.5" height="15.0" fill="rgb(207,169,14)" rx="2" ry="2" />
|
|
<text x="354.52" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__audit_syscall_exit (2 samples, 0.01%)</title><rect x="782.4" y="517" width="0.2" height="15.0" fill="rgb(223,97,10)" rx="2" ry="2" />
|
|
<text x="785.44" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (4,809 samples, 24.05%)</title><rect x="13.2" y="613" width="283.8" height="15.0" fill="rgb(246,65,14)" rx="2" ry="2" />
|
|
<text x="16.19" y="623.5" >[libmaat4.so.4.0]</text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddNumberToObject (8 samples, 0.04%)</title><rect x="581.8" y="325" width="0.5" height="15.0" fill="rgb(224,102,13)" rx="2" ry="2" />
|
|
<text x="584.79" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (2 samples, 0.01%)</title><rect x="828.4" y="357" width="0.1" height="15.0" fill="rgb(254,172,37)" rx="2" ry="2" />
|
|
<text x="831.42" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="361.6" y="357" width="0.1" height="15.0" fill="rgb(247,218,17)" rx="2" ry="2" />
|
|
<text x="364.55" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (6 samples, 0.03%)</title><rect x="380.2" y="373" width="0.4" height="15.0" fill="rgb(237,152,44)" rx="2" ry="2" />
|
|
<text x="383.20" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (557 samples, 2.79%)</title><rect x="315.6" y="341" width="32.8" height="15.0" fill="rgb(224,82,11)" rx="2" ry="2" />
|
|
<text x="318.58" y="351.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>get_propluginfo_plugid (3 samples, 0.02%)</title><rect x="563.0" y="277" width="0.2" height="15.0" fill="rgb(206,160,45)" rx="2" ry="2" />
|
|
<text x="566.03" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (3 samples, 0.02%)</title><rect x="837.3" y="341" width="0.2" height="15.0" fill="rgb(247,131,14)" rx="2" ry="2" />
|
|
<text x="840.33" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="829.2" y="197" width="0.6" height="15.0" fill="rgb(208,37,46)" rx="2" ry="2" />
|
|
<text x="832.18" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="584.7" y="293" width="0.3" height="15.0" fill="rgb(226,182,34)" rx="2" ry="2" />
|
|
<text x="587.69" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (18 samples, 0.09%)</title><rect x="841.0" y="309" width="1.0" height="15.0" fill="rgb(216,63,23)" rx="2" ry="2" />
|
|
<text x="843.99" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="459.8" y="421" width="0.1" height="15.0" fill="rgb(209,52,29)" rx="2" ry="2" />
|
|
<text x="462.75" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,067 samples, 5.34%)</title><rect x="304.7" y="501" width="63.0" height="15.0" fill="rgb(253,98,41)" rx="2" ry="2" />
|
|
<text x="307.72" y="511.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>session_record_tcpall_entry (36 samples, 0.18%)</title><rect x="672.3" y="373" width="2.1" height="15.0" fill="rgb(250,32,38)" rx="2" ry="2" />
|
|
<text x="675.26" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_toppar_enq_msg (12 samples, 0.06%)</title><rect x="572.2" y="245" width="0.7" height="15.0" fill="rgb(228,67,32)" rx="2" ry="2" />
|
|
<text x="575.17" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (28 samples, 0.14%)</title><rect x="828.6" y="533" width="1.6" height="15.0" fill="rgb(251,137,18)" rx="2" ry="2" />
|
|
<text x="831.59" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssh.so] (3 samples, 0.02%)</title><rect x="561.7" y="325" width="0.2" height="15.0" fill="rgb(232,34,6)" rx="2" ry="2" />
|
|
<text x="564.73" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_app_name_by_id (18 samples, 0.09%)</title><rect x="655.9" y="309" width="1.1" height="15.0" fill="rgb(234,78,28)" rx="2" ry="2" />
|
|
<text x="658.92" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_integer (8 samples, 0.04%)</title><rect x="305.0" y="245" width="0.4" height="15.0" fill="rgb(243,146,46)" rx="2" ry="2" />
|
|
<text x="307.96" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (4 samples, 0.02%)</title><rect x="828.0" y="453" width="0.2" height="15.0" fill="rgb(234,129,8)" rx="2" ry="2" />
|
|
<text x="831.00" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (11 samples, 0.06%)</title><rect x="777.3" y="421" width="0.6" height="15.0" fill="rgb(251,127,35)" rx="2" ry="2" />
|
|
<text x="780.25" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="828.6" y="341" width="0.4" height="15.0" fill="rgb(244,36,33)" rx="2" ry="2" />
|
|
<text x="831.59" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (16 samples, 0.08%)</title><rect x="525.1" y="293" width="1.0" height="15.0" fill="rgb(205,126,51)" rx="2" ry="2" />
|
|
<text x="528.14" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (42 samples, 0.21%)</title><rect x="824.0" y="277" width="2.5" height="15.0" fill="rgb(221,185,43)" rx="2" ry="2" />
|
|
<text x="826.99" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (48 samples, 0.24%)</title><rect x="364.5" y="437" width="2.8" height="15.0" fill="rgb(219,139,39)" rx="2" ry="2" />
|
|
<text x="367.50" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (4 samples, 0.02%)</title><rect x="836.6" y="325" width="0.3" height="15.0" fill="rgb(244,214,49)" rx="2" ry="2" />
|
|
<text x="839.62" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="383.2" y="277" width="0.1" height="15.0" fill="rgb(245,12,3)" rx="2" ry="2" />
|
|
<text x="386.21" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (7 samples, 0.04%)</title><rect x="719.4" y="517" width="0.4" height="15.0" fill="rgb(223,39,47)" rx="2" ry="2" />
|
|
<text x="722.36" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (4 samples, 0.02%)</title><rect x="379.9" y="357" width="0.2" height="15.0" fill="rgb(212,27,7)" rx="2" ry="2" />
|
|
<text x="382.90" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (3 samples, 0.02%)</title><rect x="368.3" y="341" width="0.2" height="15.0" fill="rgb(213,174,24)" rx="2" ry="2" />
|
|
<text x="371.34" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_hit_path_list (3 samples, 0.02%)</title><rect x="838.4" y="341" width="0.2" height="15.0" fill="rgb(211,101,10)" rx="2" ry="2" />
|
|
<text x="841.39" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (5 samples, 0.03%)</title><rect x="586.2" y="293" width="0.3" height="15.0" fill="rgb(240,70,22)" rx="2" ry="2" />
|
|
<text x="589.22" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (43 samples, 0.22%)</title><rect x="380.7" y="469" width="2.5" height="15.0" fill="rgb(247,18,39)" rx="2" ry="2" />
|
|
<text x="383.67" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>secondary_startup_64 (5,895 samples, 29.48%)</title><rect x="842.1" y="629" width="347.9" height="15.0" fill="rgb(238,101,23)" rx="2" ry="2" />
|
|
<text x="845.11" y="639.5" >secondary_startup_64</text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (23 samples, 0.12%)</title><rect x="822.2" y="309" width="1.3" height="15.0" fill="rgb(231,24,53)" rx="2" ry="2" />
|
|
<text x="825.16" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="655.8" y="309" width="0.1" height="15.0" fill="rgb(244,179,20)" rx="2" ry="2" />
|
|
<text x="658.80" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="296.8" y="549" width="0.1" height="15.0" fill="rgb(205,12,8)" rx="2" ry="2" />
|
|
<text x="299.75" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="382.3" y="197" width="0.1" height="15.0" fill="rgb(253,11,47)" rx="2" ry="2" />
|
|
<text x="385.27" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>read_app_id_expression (2 samples, 0.01%)</title><rect x="827.1" y="309" width="0.1" height="15.0" fill="rgb(240,159,52)" rx="2" ry="2" />
|
|
<text x="830.12" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="363.5" y="357" width="0.4" height="15.0" fill="rgb(206,207,35)" rx="2" ry="2" />
|
|
<text x="366.50" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (14 samples, 0.07%)</title><rect x="832.9" y="517" width="0.8" height="15.0" fill="rgb(230,113,30)" rx="2" ry="2" />
|
|
<text x="835.90" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4,926 samples, 24.64%)</title><rect x="432.8" y="565" width="290.7" height="15.0" fill="rgb(228,209,26)" rx="2" ry="2" />
|
|
<text x="435.84" y="575.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (6 samples, 0.03%)</title><rect x="832.4" y="517" width="0.3" height="15.0" fill="rgb(213,18,39)" rx="2" ry="2" />
|
|
<text x="835.37" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_call_plugins (6 samples, 0.03%)</title><rect x="350.0" y="357" width="0.4" height="15.0" fill="rgb(205,137,43)" rx="2" ry="2" />
|
|
<text x="353.04" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (176 samples, 0.88%)</title><rect x="468.6" y="501" width="10.4" height="15.0" fill="rgb(250,224,0)" rx="2" ry="2" />
|
|
<text x="471.60" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (4 samples, 0.02%)</title><rect x="713.1" y="341" width="0.2" height="15.0" fill="rgb(239,29,17)" rx="2" ry="2" />
|
|
<text x="716.10" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (4 samples, 0.02%)</title><rect x="382.4" y="389" width="0.2" height="15.0" fill="rgb(252,68,43)" rx="2" ry="2" />
|
|
<text x="385.38" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (5 samples, 0.03%)</title><rect x="833.4" y="501" width="0.3" height="15.0" fill="rgb(246,3,31)" rx="2" ry="2" />
|
|
<text x="836.43" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (4,155 samples, 20.78%)</title><rect x="39.3" y="565" width="245.2" height="15.0" fill="rgb(205,112,14)" rx="2" ry="2" />
|
|
<text x="42.33" y="575.5" >[libmaat4.so.4.0]</text>
|
|
</g>
|
|
<g >
|
|
<title>__mpn_lshift (2 samples, 0.01%)</title><rect x="379.7" y="277" width="0.1" height="15.0" fill="rgb(232,106,0)" rx="2" ry="2" />
|
|
<text x="382.73" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (44 samples, 0.22%)</title><rect x="824.0" y="469" width="2.6" height="15.0" fill="rgb(253,131,1)" rx="2" ry="2" />
|
|
<text x="826.99" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (70 samples, 0.35%)</title><rect x="298.1" y="453" width="4.1" height="15.0" fill="rgb(235,67,47)" rx="2" ry="2" />
|
|
<text x="301.05" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="376.2" y="293" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
|
|
<text x="379.19" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_destroy (19 samples, 0.10%)</title><rect x="525.0" y="325" width="1.1" height="15.0" fill="rgb(239,169,27)" rx="2" ry="2" />
|
|
<text x="528.02" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (196 samples, 0.98%)</title><rect x="578.4" y="421" width="11.5" height="15.0" fill="rgb(215,113,14)" rx="2" ry="2" />
|
|
<text x="581.37" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>native_sched_clock (2 samples, 0.01%)</title><rect x="1182.1" y="485" width="0.1" height="15.0" fill="rgb(225,105,15)" rx="2" ry="2" />
|
|
<text x="1185.09" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BIO_snprintf (2 samples, 0.01%)</title><rect x="352.0" y="309" width="0.2" height="15.0" fill="rgb(245,105,12)" rx="2" ry="2" />
|
|
<text x="355.05" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (8 samples, 0.04%)</title><rect x="350.5" y="325" width="0.4" height="15.0" fill="rgb(205,223,3)" rx="2" ry="2" />
|
|
<text x="353.46" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (2 samples, 0.01%)</title><rect x="480.2" y="437" width="0.1" height="15.0" fill="rgb(220,0,33)" rx="2" ry="2" />
|
|
<text x="483.23" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (4 samples, 0.02%)</title><rect x="511.7" y="389" width="0.3" height="15.0" fill="rgb(243,31,51)" rx="2" ry="2" />
|
|
<text x="514.74" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="480.1" y="453" width="0.1" height="15.0" fill="rgb(216,148,2)" rx="2" ry="2" />
|
|
<text x="483.11" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (6 samples, 0.03%)</title><rect x="578.0" y="373" width="0.3" height="15.0" fill="rgb(218,102,32)" rx="2" ry="2" />
|
|
<text x="580.96" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (4,863 samples, 24.32%)</title><rect x="10.9" y="629" width="287.0" height="15.0" fill="rgb(249,49,18)" rx="2" ry="2" />
|
|
<text x="13.89" y="639.5" >[libmaat4.so.4.0]</text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (10 samples, 0.05%)</title><rect x="567.7" y="325" width="0.6" height="15.0" fill="rgb(205,148,44)" rx="2" ry="2" />
|
|
<text x="570.75" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (9 samples, 0.05%)</title><rect x="466.7" y="357" width="0.5" height="15.0" fill="rgb(229,200,54)" rx="2" ry="2" />
|
|
<text x="469.66" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="357" width="0.3" height="15.0" fill="rgb(217,36,18)" rx="2" ry="2" />
|
|
<text x="829.71" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_plug_entry (6 samples, 0.03%)</title><rect x="821.7" y="373" width="0.4" height="15.0" fill="rgb(207,99,42)" rx="2" ry="2" />
|
|
<text x="824.75" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_new (2 samples, 0.01%)</title><rect x="703.3" y="341" width="0.1" height="15.0" fill="rgb(224,155,42)" rx="2" ry="2" />
|
|
<text x="706.31" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>append_common_field (17 samples, 0.09%)</title><rect x="362.3" y="325" width="1.0" height="15.0" fill="rgb(205,131,8)" rx="2" ry="2" />
|
|
<text x="365.32" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (55 samples, 0.28%)</title><rect x="380.7" y="613" width="3.2" height="15.0" fill="rgb(214,224,3)" rx="2" ry="2" />
|
|
<text x="383.67" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (2 samples, 0.01%)</title><rect x="703.5" y="341" width="0.1" height="15.0" fill="rgb(231,116,30)" rx="2" ry="2" />
|
|
<text x="706.48" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (18 samples, 0.09%)</title><rect x="841.0" y="277" width="1.0" height="15.0" fill="rgb(232,132,13)" rx="2" ry="2" />
|
|
<text x="843.99" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="356.9" y="277" width="0.1" height="15.0" fill="rgb(209,70,36)" rx="2" ry="2" />
|
|
<text x="359.89" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_zalloc (3 samples, 0.02%)</title><rect x="822.6" y="245" width="0.2" height="15.0" fill="rgb(235,64,54)" rx="2" ry="2" />
|
|
<text x="825.63" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (24 samples, 0.12%)</title><rect x="315.8" y="229" width="1.4" height="15.0" fill="rgb(223,168,11)" rx="2" ry="2" />
|
|
<text x="318.76" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_check (124 samples, 0.62%)</title><rect x="620.5" y="405" width="7.3" height="15.0" fill="rgb(234,177,9)" rx="2" ry="2" />
|
|
<text x="623.51" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="486.1" y="453" width="0.1" height="15.0" fill="rgb(220,35,21)" rx="2" ry="2" />
|
|
<text x="489.13" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="363.4" y="325" width="0.1" height="15.0" fill="rgb(236,62,31)" rx="2" ry="2" />
|
|
<text x="366.38" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="303.1" y="261" width="0.3" height="15.0" fill="rgb(235,123,28)" rx="2" ry="2" />
|
|
<text x="306.07" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (37 samples, 0.19%)</title><rect x="655.4" y="341" width="2.2" height="15.0" fill="rgb(222,162,16)" rx="2" ry="2" />
|
|
<text x="658.39" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="838.7" y="309" width="0.2" height="15.0" fill="rgb(221,229,32)" rx="2" ry="2" />
|
|
<text x="841.74" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (4 samples, 0.02%)</title><rect x="383.2" y="501" width="0.2" height="15.0" fill="rgb(218,81,54)" rx="2" ry="2" />
|
|
<text x="386.21" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (3 samples, 0.02%)</title><rect x="828.2" y="325" width="0.2" height="15.0" fill="rgb(249,204,33)" rx="2" ry="2" />
|
|
<text x="831.24" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (6 samples, 0.03%)</title><rect x="679.7" y="421" width="0.4" height="15.0" fill="rgb(234,195,43)" rx="2" ry="2" />
|
|
<text x="682.70" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="582.7" y="293" width="0.2" height="15.0" fill="rgb(228,58,38)" rx="2" ry="2" />
|
|
<text x="585.68" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (23 samples, 0.12%)</title><rect x="674.4" y="437" width="1.4" height="15.0" fill="rgb(216,140,20)" rx="2" ry="2" />
|
|
<text x="677.45" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (15 samples, 0.08%)</title><rect x="692.2" y="309" width="0.9" height="15.0" fill="rgb(207,86,2)" rx="2" ry="2" />
|
|
<text x="695.21" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (2 samples, 0.01%)</title><rect x="840.4" y="485" width="0.1" height="15.0" fill="rgb(223,6,15)" rx="2" ry="2" />
|
|
<text x="843.40" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_create_per_stream (2 samples, 0.01%)</title><rect x="514.1" y="421" width="0.1" height="15.0" fill="rgb(225,219,9)" rx="2" ry="2" />
|
|
<text x="517.10" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="837.9" y="309" width="0.1" height="15.0" fill="rgb(215,164,18)" rx="2" ry="2" />
|
|
<text x="840.86" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new (2 samples, 0.01%)</title><rect x="837.4" y="293" width="0.1" height="15.0" fill="rgb(250,208,54)" rx="2" ry="2" />
|
|
<text x="840.39" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="304.6" y="453" width="0.1" height="15.0" fill="rgb(246,104,43)" rx="2" ry="2" />
|
|
<text x="307.60" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (567 samples, 2.84%)</title><rect x="526.3" y="357" width="33.4" height="15.0" fill="rgb(241,57,12)" rx="2" ry="2" />
|
|
<text x="529.26" y="367.5" >HT..</text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (6 samples, 0.03%)</title><rect x="302.2" y="453" width="0.3" height="15.0" fill="rgb(248,64,12)" rx="2" ry="2" />
|
|
<text x="305.18" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="577.8" y="325" width="0.1" height="15.0" fill="rgb(228,168,27)" rx="2" ry="2" />
|
|
<text x="580.78" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="700.1" y="293" width="0.2" height="15.0" fill="rgb(210,42,8)" rx="2" ry="2" />
|
|
<text x="703.12" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_create (2 samples, 0.01%)</title><rect x="681.2" y="229" width="0.2" height="15.0" fill="rgb(245,138,41)" rx="2" ry="2" />
|
|
<text x="684.23" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (28 samples, 0.14%)</title><rect x="380.7" y="341" width="1.7" height="15.0" fill="rgb(225,137,25)" rx="2" ry="2" />
|
|
<text x="383.73" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (3 samples, 0.02%)</title><rect x="839.3" y="565" width="0.2" height="15.0" fill="rgb(233,64,19)" rx="2" ry="2" />
|
|
<text x="842.33" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (2 samples, 0.01%)</title><rect x="680.5" y="389" width="0.1" height="15.0" fill="rgb(211,154,14)" rx="2" ry="2" />
|
|
<text x="683.53" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (5 samples, 0.03%)</title><rect x="508.1" y="373" width="0.3" height="15.0" fill="rgb(239,219,18)" rx="2" ry="2" />
|
|
<text x="511.08" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="315.6" y="213" width="0.1" height="15.0" fill="rgb(205,38,51)" rx="2" ry="2" />
|
|
<text x="318.58" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libkni.so] (9 samples, 0.05%)</title><rect x="671.6" y="357" width="0.5" height="15.0" fill="rgb(229,62,41)" rx="2" ry="2" />
|
|
<text x="674.56" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ipv4_address (3 samples, 0.02%)</title><rect x="378.3" y="357" width="0.1" height="15.0" fill="rgb(205,121,2)" rx="2" ry="2" />
|
|
<text x="381.25" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (4 samples, 0.02%)</title><rect x="704.5" y="325" width="0.3" height="15.0" fill="rgb(211,116,39)" rx="2" ry="2" />
|
|
<text x="707.54" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>srt_attribute_set_category_ids (3 samples, 0.02%)</title><rect x="319.7" y="181" width="0.1" height="15.0" fill="rgb(222,85,10)" rx="2" ry="2" />
|
|
<text x="322.65" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.02%)</title><rect x="605.9" y="357" width="0.1" height="15.0" fill="rgb(206,171,36)" rx="2" ry="2" />
|
|
<text x="608.87" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="708.7" y="309" width="0.2" height="15.0" fill="rgb(207,20,34)" rx="2" ry="2" />
|
|
<text x="711.68" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3,044 samples, 15.22%)</title><rect x="497.2" y="453" width="179.6" height="15.0" fill="rgb(212,85,0)" rx="2" ry="2" />
|
|
<text x="500.17" y="463.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>srt_attribute_set_establish_latecy (4 samples, 0.02%)</title><rect x="660.0" y="357" width="0.2" height="15.0" fill="rgb(243,24,27)" rx="2" ry="2" />
|
|
<text x="662.99" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (14 samples, 0.07%)</title><rect x="820.7" y="453" width="0.9" height="15.0" fill="rgb(234,33,47)" rx="2" ry="2" />
|
|
<text x="823.74" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_worker_process (40 samples, 0.20%)</title><rect x="692.2" y="341" width="2.4" height="15.0" fill="rgb(205,218,24)" rx="2" ry="2" />
|
|
<text x="695.21" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (28 samples, 0.14%)</title><rect x="830.5" y="565" width="1.7" height="15.0" fill="rgb(242,28,3)" rx="2" ry="2" />
|
|
<text x="833.54" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (11 samples, 0.06%)</title><rect x="824.0" y="181" width="0.6" height="15.0" fill="rgb(235,67,19)" rx="2" ry="2" />
|
|
<text x="826.99" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (8 samples, 0.04%)</title><rect x="510.4" y="357" width="0.5" height="15.0" fill="rgb(214,105,28)" rx="2" ry="2" />
|
|
<text x="513.39" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log_level_enabled (3 samples, 0.02%)</title><rect x="722.5" y="533" width="0.2" height="15.0" fill="rgb(206,37,0)" rx="2" ry="2" />
|
|
<text x="725.54" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="380.2" y="437" width="0.4" height="15.0" fill="rgb(248,50,29)" rx="2" ry="2" />
|
|
<text x="383.20" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="383.2" y="405" width="0.2" height="15.0" fill="rgb(218,169,44)" rx="2" ry="2" />
|
|
<text x="386.21" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="679.9" y="309" width="0.2" height="15.0" fill="rgb(220,177,21)" rx="2" ry="2" />
|
|
<text x="682.94" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (7 samples, 0.04%)</title><rect x="350.5" y="309" width="0.4" height="15.0" fill="rgb(212,40,19)" rx="2" ry="2" />
|
|
<text x="353.52" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (16 samples, 0.08%)</title><rect x="288.9" y="581" width="0.9" height="15.0" fill="rgb(213,129,4)" rx="2" ry="2" />
|
|
<text x="291.90" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (2 samples, 0.01%)</title><rect x="480.0" y="453" width="0.1" height="15.0" fill="rgb(205,173,8)" rx="2" ry="2" />
|
|
<text x="482.99" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="480.7" y="293" width="0.1" height="15.0" fill="rgb(230,82,29)" rx="2" ry="2" />
|
|
<text x="483.70" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="362.5" y="293" width="0.1" height="15.0" fill="rgb(248,94,26)" rx="2" ry="2" />
|
|
<text x="365.50" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="350.0" y="261" width="0.2" height="15.0" fill="rgb(235,50,25)" rx="2" ry="2" />
|
|
<text x="353.04" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (24 samples, 0.12%)</title><rect x="298.1" y="389" width="1.4" height="15.0" fill="rgb(225,80,51)" rx="2" ry="2" />
|
|
<text x="301.05" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (28 samples, 0.14%)</title><rect x="828.6" y="485" width="1.6" height="15.0" fill="rgb(233,172,51)" rx="2" ry="2" />
|
|
<text x="831.59" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_session_attributes (2 samples, 0.01%)</title><rect x="363.2" y="293" width="0.1" height="15.0" fill="rgb(253,228,14)" rx="2" ry="2" />
|
|
<text x="366.20" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (3,866 samples, 19.33%)</title><rect x="490.8" y="485" width="228.1" height="15.0" fill="rgb(235,35,28)" rx="2" ry="2" />
|
|
<text x="493.79" y="495.5" >eth_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="821.3" y="357" width="0.2" height="15.0" fill="rgb(209,58,24)" rx="2" ry="2" />
|
|
<text x="824.28" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (55 samples, 0.28%)</title><rect x="380.7" y="565" width="3.2" height="15.0" fill="rgb(248,213,3)" rx="2" ry="2" />
|
|
<text x="383.67" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_no_init (2 samples, 0.01%)</title><rect x="581.0" y="245" width="0.1" height="15.0" fill="rgb(209,9,19)" rx="2" ry="2" />
|
|
<text x="583.97" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hack_digit.13666 (3 samples, 0.02%)</title><rect x="778.7" y="325" width="0.2" height="15.0" fill="rgb(247,202,31)" rx="2" ry="2" />
|
|
<text x="781.73" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (23 samples, 0.12%)</title><rect x="299.5" y="325" width="1.3" height="15.0" fill="rgb(222,87,9)" rx="2" ry="2" />
|
|
<text x="302.47" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (5 samples, 0.03%)</title><rect x="368.0" y="277" width="0.3" height="15.0" fill="rgb(233,49,21)" rx="2" ry="2" />
|
|
<text x="370.98" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (2 samples, 0.01%)</title><rect x="10.7" y="613" width="0.1" height="15.0" fill="rgb(221,52,45)" rx="2" ry="2" />
|
|
<text x="13.71" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (2 samples, 0.01%)</title><rect x="680.4" y="373" width="0.1" height="15.0" fill="rgb(241,23,18)" rx="2" ry="2" />
|
|
<text x="683.41" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_sscanf (7 samples, 0.04%)</title><rect x="348.4" y="325" width="0.5" height="15.0" fill="rgb(218,190,17)" rx="2" ry="2" />
|
|
<text x="351.45" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (11 samples, 0.06%)</title><rect x="380.9" y="181" width="0.7" height="15.0" fill="rgb(212,0,52)" rx="2" ry="2" />
|
|
<text x="383.91" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="381.8" y="165" width="0.5" height="15.0" fill="rgb(254,146,11)" rx="2" ry="2" />
|
|
<text x="384.79" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.5] (317 samples, 1.59%)</title><rect x="388.2" y="581" width="18.7" height="15.0" fill="rgb(244,17,11)" rx="2" ry="2" />
|
|
<text x="391.17" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (1,086 samples, 5.43%)</title><rect x="514.3" y="405" width="64.1" height="15.0" fill="rgb(228,214,54)" rx="2" ry="2" />
|
|
<text x="517.28" y="415.5" >stream_..</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="821.9" y="229" width="0.2" height="15.0" fill="rgb(209,161,3)" rx="2" ry="2" />
|
|
<text x="824.92" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="510.4" y="325" width="0.4" height="15.0" fill="rgb(229,166,50)" rx="2" ry="2" />
|
|
<text x="513.45" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (57 samples, 0.29%)</title><rect x="830.5" y="597" width="3.4" height="15.0" fill="rgb(216,161,9)" rx="2" ry="2" />
|
|
<text x="833.54" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="837.3" y="357" width="0.2" height="15.0" fill="rgb(241,11,17)" rx="2" ry="2" />
|
|
<text x="840.33" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (7 samples, 0.04%)</title><rect x="835.4" y="581" width="0.4" height="15.0" fill="rgb(225,192,12)" rx="2" ry="2" />
|
|
<text x="838.38" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="614.3" y="261" width="0.1" height="15.0" fill="rgb(254,115,32)" rx="2" ry="2" />
|
|
<text x="617.31" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="702.4" y="293" width="0.1" height="15.0" fill="rgb(216,173,35)" rx="2" ry="2" />
|
|
<text x="705.36" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (18 samples, 0.09%)</title><rect x="304.8" y="293" width="1.1" height="15.0" fill="rgb(238,72,28)" rx="2" ry="2" />
|
|
<text x="307.84" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (9 samples, 0.05%)</title><rect x="648.4" y="293" width="0.6" height="15.0" fill="rgb(218,213,27)" rx="2" ry="2" />
|
|
<text x="651.42" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (172 samples, 0.86%)</title><rect x="304.8" y="389" width="10.1" height="15.0" fill="rgb(228,197,14)" rx="2" ry="2" />
|
|
<text x="307.78" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="376.2" y="325" width="0.4" height="15.0" fill="rgb(219,147,22)" rx="2" ry="2" />
|
|
<text x="379.19" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (3 samples, 0.02%)</title><rect x="657.0" y="325" width="0.2" height="15.0" fill="rgb(235,66,26)" rx="2" ry="2" />
|
|
<text x="659.98" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (30 samples, 0.15%)</title><rect x="361.7" y="405" width="1.8" height="15.0" fill="rgb(237,198,40)" rx="2" ry="2" />
|
|
<text x="364.73" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (25 samples, 0.13%)</title><rect x="840.6" y="469" width="1.4" height="15.0" fill="rgb(232,218,0)" rx="2" ry="2" />
|
|
<text x="843.57" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (29 samples, 0.15%)</title><rect x="380.7" y="373" width="1.7" height="15.0" fill="rgb(238,79,15)" rx="2" ry="2" />
|
|
<text x="383.67" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_create (3 samples, 0.02%)</title><rect x="520.2" y="309" width="0.2" height="15.0" fill="rgb(243,63,7)" rx="2" ry="2" />
|
|
<text x="523.24" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_integer (5 samples, 0.03%)</title><rect x="377.8" y="357" width="0.3" height="15.0" fill="rgb(230,143,6)" rx="2" ry="2" />
|
|
<text x="380.78" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (18 samples, 0.09%)</title><rect x="512.6" y="421" width="1.1" height="15.0" fill="rgb(239,6,43)" rx="2" ry="2" />
|
|
<text x="515.63" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (24 samples, 0.12%)</title><rect x="298.1" y="373" width="1.4" height="15.0" fill="rgb(242,94,49)" rx="2" ry="2" />
|
|
<text x="301.05" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (42 samples, 0.21%)</title><rect x="824.0" y="357" width="2.5" height="15.0" fill="rgb(229,153,52)" rx="2" ry="2" />
|
|
<text x="826.99" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="828.2" y="469" width="0.2" height="15.0" fill="rgb(205,19,54)" rx="2" ry="2" />
|
|
<text x="831.24" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (34 samples, 0.17%)</title><rect x="701.6" y="357" width="2.0" height="15.0" fill="rgb(248,106,33)" rx="2" ry="2" />
|
|
<text x="704.59" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (52 samples, 0.26%)</title><rect x="824.0" y="549" width="3.1" height="15.0" fill="rgb(227,154,17)" rx="2" ry="2" />
|
|
<text x="826.99" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>append_common_field (6 samples, 0.03%)</title><rect x="482.1" y="341" width="0.3" height="15.0" fill="rgb(208,121,25)" rx="2" ry="2" />
|
|
<text x="485.06" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_report_identify_result (9 samples, 0.05%)</title><rect x="836.1" y="309" width="0.5" height="15.0" fill="rgb(243,196,46)" rx="2" ry="2" />
|
|
<text x="839.09" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_nanosleep (50 samples, 0.25%)</title><rect x="782.6" y="517" width="2.9" height="15.0" fill="rgb(251,123,21)" rx="2" ry="2" />
|
|
<text x="785.56" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (52 samples, 0.26%)</title><rect x="824.0" y="581" width="3.1" height="15.0" fill="rgb(244,97,40)" rx="2" ry="2" />
|
|
<text x="826.99" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (30 samples, 0.15%)</title><rect x="351.0" y="341" width="1.8" height="15.0" fill="rgb(251,180,5)" rx="2" ry="2" />
|
|
<text x="353.99" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (19 samples, 0.10%)</title><rect x="287.3" y="549" width="1.1" height="15.0" fill="rgb(206,80,10)" rx="2" ry="2" />
|
|
<text x="290.25" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (33 samples, 0.17%)</title><rect x="703.7" y="373" width="1.9" height="15.0" fill="rgb(245,24,42)" rx="2" ry="2" />
|
|
<text x="706.66" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="821.7" y="357" width="0.4" height="15.0" fill="rgb(228,221,4)" rx="2" ry="2" />
|
|
<text x="824.75" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_sse2 (2 samples, 0.01%)</title><rect x="287.9" y="533" width="0.1" height="15.0" fill="rgb(231,14,34)" rx="2" ry="2" />
|
|
<text x="290.90" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_fqdn_plugin_table_get_ex_data (2 samples, 0.01%)</title><rect x="381.7" y="165" width="0.1" height="15.0" fill="rgb(219,189,35)" rx="2" ry="2" />
|
|
<text x="384.67" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="578.1" y="357" width="0.2" height="15.0" fill="rgb(210,4,28)" rx="2" ry="2" />
|
|
<text x="581.14" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="368.5" y="245" width="0.1" height="15.0" fill="rgb(252,69,9)" rx="2" ry="2" />
|
|
<text x="371.51" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (6 samples, 0.03%)</title><rect x="364.1" y="261" width="0.4" height="15.0" fill="rgb(228,59,27)" rx="2" ry="2" />
|
|
<text x="367.15" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_itoa_word (2 samples, 0.01%)</title><rect x="382.8" y="277" width="0.1" height="15.0" fill="rgb(208,8,22)" rx="2" ry="2" />
|
|
<text x="385.80" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_report_identify_result (3 samples, 0.02%)</title><rect x="838.4" y="325" width="0.2" height="15.0" fill="rgb(230,165,45)" rx="2" ry="2" />
|
|
<text x="841.39" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (6 samples, 0.03%)</title><rect x="358.7" y="357" width="0.3" height="15.0" fill="rgb(219,57,43)" rx="2" ry="2" />
|
|
<text x="361.66" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="302.4" y="277" width="0.1" height="15.0" fill="rgb(217,157,20)" rx="2" ry="2" />
|
|
<text x="305.36" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="568.2" y="245" width="0.1" height="15.0" fill="rgb(242,114,22)" rx="2" ry="2" />
|
|
<text x="571.22" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>round_and_return (3 samples, 0.02%)</title><rect x="778.3" y="325" width="0.1" height="15.0" fill="rgb(212,25,35)" rx="2" ry="2" />
|
|
<text x="781.25" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ec_GFp_mont_group_set_curve (2 samples, 0.01%)</title><rect x="823.3" y="213" width="0.2" height="15.0" fill="rgb(222,202,3)" rx="2" ry="2" />
|
|
<text x="826.34" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BIO_vsnprintf (2 samples, 0.01%)</title><rect x="352.0" y="293" width="0.2" height="15.0" fill="rgb(243,223,15)" rx="2" ry="2" />
|
|
<text x="355.05" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (3 samples, 0.02%)</title><rect x="467.7" y="277" width="0.2" height="15.0" fill="rgb(225,221,2)" rx="2" ry="2" />
|
|
<text x="470.72" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (172 samples, 0.86%)</title><rect x="304.8" y="405" width="10.1" height="15.0" fill="rgb(214,185,25)" rx="2" ry="2" />
|
|
<text x="307.78" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="681.2" y="261" width="0.2" height="15.0" fill="rgb(234,140,27)" rx="2" ry="2" />
|
|
<text x="684.17" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (55 samples, 0.28%)</title><rect x="827.1" y="629" width="3.2" height="15.0" fill="rgb(232,126,32)" rx="2" ry="2" />
|
|
<text x="830.06" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_write (2 samples, 0.01%)</title><rect x="674.2" y="165" width="0.1" height="15.0" fill="rgb(243,210,24)" rx="2" ry="2" />
|
|
<text x="677.15" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (14 samples, 0.07%)</title><rect x="285.1" y="581" width="0.9" height="15.0" fill="rgb(234,118,11)" rx="2" ry="2" />
|
|
<text x="288.13" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="828.6" y="213" width="0.4" height="15.0" fill="rgb(224,173,16)" rx="2" ry="2" />
|
|
<text x="831.59" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="840.8" y="373" width="0.2" height="15.0" fill="rgb(239,9,2)" rx="2" ry="2" />
|
|
<text x="843.81" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (2 samples, 0.01%)</title><rect x="304.6" y="549" width="0.1" height="15.0" fill="rgb(205,150,42)" rx="2" ry="2" />
|
|
<text x="307.60" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="821.6" y="309" width="0.1" height="15.0" fill="rgb(234,159,20)" rx="2" ry="2" />
|
|
<text x="824.63" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (44 samples, 0.22%)</title><rect x="824.0" y="485" width="2.6" height="15.0" fill="rgb(216,199,36)" rx="2" ry="2" />
|
|
<text x="826.99" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="567.6" y="341" width="0.7" height="15.0" fill="rgb(229,88,18)" rx="2" ry="2" />
|
|
<text x="570.63" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="829.2" y="101" width="0.6" height="15.0" fill="rgb(248,38,10)" rx="2" ry="2" />
|
|
<text x="832.18" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (3 samples, 0.02%)</title><rect x="304.1" y="293" width="0.2" height="15.0" fill="rgb(227,190,54)" rx="2" ry="2" />
|
|
<text x="307.13" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (606 samples, 3.03%)</title><rect x="638.6" y="405" width="35.8" height="15.0" fill="rgb(236,148,52)" rx="2" ry="2" />
|
|
<text x="641.63" y="415.5" >cal..</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_tunnel_id (3 samples, 0.02%)</title><rect x="831.8" y="517" width="0.2" height="15.0" fill="rgb(219,133,8)" rx="2" ry="2" />
|
|
<text x="834.84" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="824.6" y="165" width="0.2" height="15.0" fill="rgb(227,40,26)" rx="2" ry="2" />
|
|
<text x="827.64" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (25 samples, 0.13%)</title><rect x="302.8" y="469" width="1.5" height="15.0" fill="rgb(237,136,6)" rx="2" ry="2" />
|
|
<text x="305.83" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="357.1" y="309" width="0.1" height="15.0" fill="rgb(226,219,17)" rx="2" ry="2" />
|
|
<text x="360.07" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (3 samples, 0.02%)</title><rect x="481.8" y="277" width="0.2" height="15.0" fill="rgb(221,151,45)" rx="2" ry="2" />
|
|
<text x="484.82" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.02%)</title><rect x="561.6" y="325" width="0.1" height="15.0" fill="rgb(231,142,10)" rx="2" ry="2" />
|
|
<text x="564.55" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (19 samples, 0.10%)</title><rect x="674.6" y="421" width="1.1" height="15.0" fill="rgb(248,165,4)" rx="2" ry="2" />
|
|
<text x="677.62" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="361.6" y="341" width="0.1" height="15.0" fill="rgb(252,167,31)" rx="2" ry="2" />
|
|
<text x="364.55" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>new_sync_write (7 samples, 0.04%)</title><rect x="572.5" y="85" width="0.4" height="15.0" fill="rgb(238,146,11)" rx="2" ry="2" />
|
|
<text x="575.47" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="836.6" y="277" width="0.3" height="15.0" fill="rgb(240,19,18)" rx="2" ry="2" />
|
|
<text x="839.62" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_app_id_get_by_signature_id (2 samples, 0.01%)</title><rect x="827.1" y="325" width="0.1" height="15.0" fill="rgb(237,171,15)" rx="2" ry="2" />
|
|
<text x="830.12" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (24 samples, 0.12%)</title><rect x="364.5" y="389" width="1.4" height="15.0" fill="rgb(234,174,34)" rx="2" ry="2" />
|
|
<text x="367.50" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (3 samples, 0.02%)</title><rect x="374.9" y="261" width="0.2" height="15.0" fill="rgb(220,44,7)" rx="2" ry="2" />
|
|
<text x="377.89" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (116 samples, 0.58%)</title><rect x="307.6" y="245" width="6.9" height="15.0" fill="rgb(217,1,43)" rx="2" ry="2" />
|
|
<text x="310.61" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (3 samples, 0.02%)</title><rect x="674.9" y="325" width="0.1" height="15.0" fill="rgb(234,188,6)" rx="2" ry="2" />
|
|
<text x="677.86" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="571.3" y="277" width="0.1" height="15.0" fill="rgb(210,180,37)" rx="2" ry="2" />
|
|
<text x="574.29" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_cancel (3 samples, 0.02%)</title><rect x="614.1" y="277" width="0.2" height="15.0" fill="rgb(251,210,45)" rx="2" ry="2" />
|
|
<text x="617.13" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_partitioner (2 samples, 0.01%)</title><rect x="482.6" y="293" width="0.1" height="15.0" fill="rgb(253,9,54)" rx="2" ry="2" />
|
|
<text x="485.59" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (5 samples, 0.03%)</title><rect x="361.1" y="357" width="0.3" height="15.0" fill="rgb(239,80,47)" rx="2" ry="2" />
|
|
<text x="364.14" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="302.4" y="293" width="0.1" height="15.0" fill="rgb(249,70,52)" rx="2" ry="2" />
|
|
<text x="305.36" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="361.4" y="405" width="0.3" height="15.0" fill="rgb(231,70,16)" rx="2" ry="2" />
|
|
<text x="364.43" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (5 samples, 0.03%)</title><rect x="359.1" y="325" width="0.3" height="15.0" fill="rgb(238,129,30)" rx="2" ry="2" />
|
|
<text x="362.07" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (5 samples, 0.03%)</title><rect x="608.6" y="325" width="0.3" height="15.0" fill="rgb(241,162,44)" rx="2" ry="2" />
|
|
<text x="611.65" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_copy (2 samples, 0.01%)</title><rect x="822.2" y="245" width="0.1" height="15.0" fill="rgb(221,109,22)" rx="2" ry="2" />
|
|
<text x="825.22" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (8 samples, 0.04%)</title><rect x="383.4" y="325" width="0.5" height="15.0" fill="rgb(243,92,0)" rx="2" ry="2" />
|
|
<text x="386.45" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (14 samples, 0.07%)</title><rect x="702.1" y="341" width="0.9" height="15.0" fill="rgb(254,216,4)" rx="2" ry="2" />
|
|
<text x="705.13" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>layer_addr_ntop_r (2 samples, 0.01%)</title><rect x="823.8" y="421" width="0.1" height="15.0" fill="rgb(237,59,11)" rx="2" ry="2" />
|
|
<text x="826.75" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_report_identify_result (19 samples, 0.10%)</title><rect x="304.8" y="341" width="1.1" height="15.0" fill="rgb(251,37,13)" rx="2" ry="2" />
|
|
<text x="307.78" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="383.1" y="261" width="0.1" height="15.0" fill="rgb(207,1,20)" rx="2" ry="2" />
|
|
<text x="386.09" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="380.2" y="469" width="0.4" height="15.0" fill="rgb(254,51,54)" rx="2" ry="2" />
|
|
<text x="383.20" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memchr (109 samples, 0.55%)</title><rect x="342.0" y="181" width="6.4" height="15.0" fill="rgb(218,183,32)" rx="2" ry="2" />
|
|
<text x="345.02" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="838.7" y="453" width="0.2" height="15.0" fill="rgb(238,27,21)" rx="2" ry="2" />
|
|
<text x="841.74" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (568 samples, 2.84%)</title><rect x="314.9" y="389" width="33.5" height="15.0" fill="rgb(250,102,9)" rx="2" ry="2" />
|
|
<text x="317.93" y="399.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="510.4" y="341" width="0.4" height="15.0" fill="rgb(228,68,38)" rx="2" ry="2" />
|
|
<text x="513.45" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="821.7" y="325" width="0.4" height="15.0" fill="rgb(230,185,40)" rx="2" ry="2" />
|
|
<text x="824.75" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (6 samples, 0.03%)</title><rect x="836.9" y="341" width="0.4" height="15.0" fill="rgb(253,90,12)" rx="2" ry="2" />
|
|
<text x="839.91" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_add (3 samples, 0.02%)</title><rect x="590.1" y="405" width="0.1" height="15.0" fill="rgb(241,173,18)" rx="2" ry="2" />
|
|
<text x="593.06" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="368.5" y="229" width="0.1" height="15.0" fill="rgb(223,113,13)" rx="2" ry="2" />
|
|
<text x="371.51" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (15 samples, 0.08%)</title><rect x="827.1" y="517" width="0.9" height="15.0" fill="rgb(245,134,9)" rx="2" ry="2" />
|
|
<text x="830.12" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (16 samples, 0.08%)</title><rect x="525.1" y="277" width="1.0" height="15.0" fill="rgb(208,54,9)" rx="2" ry="2" />
|
|
<text x="528.14" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="840.4" y="373" width="0.1" height="15.0" fill="rgb(226,116,52)" rx="2" ry="2" />
|
|
<text x="843.40" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (18 samples, 0.09%)</title><rect x="841.0" y="341" width="1.0" height="15.0" fill="rgb(209,194,41)" rx="2" ry="2" />
|
|
<text x="843.99" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_ids (14 samples, 0.07%)</title><rect x="824.8" y="213" width="0.8" height="15.0" fill="rgb(220,203,34)" rx="2" ry="2" />
|
|
<text x="827.76" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="822.6" y="213" width="0.2" height="15.0" fill="rgb(237,218,36)" rx="2" ry="2" />
|
|
<text x="825.63" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="377.2" y="149" width="0.2" height="15.0" fill="rgb(249,136,49)" rx="2" ry="2" />
|
|
<text x="380.25" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (3 samples, 0.02%)</title><rect x="828.2" y="517" width="0.2" height="15.0" fill="rgb(249,120,22)" rx="2" ry="2" />
|
|
<text x="831.24" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddNumberToObject (2 samples, 0.01%)</title><rect x="681.8" y="293" width="0.1" height="15.0" fill="rgb(237,224,32)" rx="2" ry="2" />
|
|
<text x="684.82" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (2 samples, 0.01%)</title><rect x="300.7" y="213" width="0.1" height="15.0" fill="rgb(209,164,46)" rx="2" ry="2" />
|
|
<text x="303.71" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="304.6" y="421" width="0.1" height="15.0" fill="rgb(247,94,17)" rx="2" ry="2" />
|
|
<text x="307.60" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (106 samples, 0.53%)</title><rect x="298.1" y="565" width="6.2" height="15.0" fill="rgb(227,60,44)" rx="2" ry="2" />
|
|
<text x="301.05" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (10 samples, 0.05%)</title><rect x="367.7" y="437" width="0.6" height="15.0" fill="rgb(212,118,38)" rx="2" ry="2" />
|
|
<text x="370.69" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (3 samples, 0.02%)</title><rect x="367.3" y="373" width="0.2" height="15.0" fill="rgb(253,43,52)" rx="2" ry="2" />
|
|
<text x="370.33" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="511.5" y="373" width="0.2" height="15.0" fill="rgb(209,209,10)" rx="2" ry="2" />
|
|
<text x="514.51" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="700.2" y="181" width="0.1" height="15.0" fill="rgb(242,36,18)" rx="2" ry="2" />
|
|
<text x="703.18" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="582.0" y="277" width="0.1" height="15.0" fill="rgb(228,115,4)" rx="2" ry="2" />
|
|
<text x="584.97" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (3 samples, 0.02%)</title><rect x="560.9" y="325" width="0.2" height="15.0" fill="rgb(205,147,16)" rx="2" ry="2" />
|
|
<text x="563.90" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="829.1" y="277" width="0.7" height="15.0" fill="rgb(249,196,32)" rx="2" ry="2" />
|
|
<text x="832.07" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (5 samples, 0.03%)</title><rect x="608.2" y="373" width="0.3" height="15.0" fill="rgb(222,221,8)" rx="2" ry="2" />
|
|
<text x="611.17" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="840.4" y="325" width="0.1" height="15.0" fill="rgb(240,168,46)" rx="2" ry="2" />
|
|
<text x="843.40" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (3 samples, 0.02%)</title><rect x="837.8" y="453" width="0.2" height="15.0" fill="rgb(245,47,54)" rx="2" ry="2" />
|
|
<text x="840.80" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="613.4" y="261" width="0.1" height="15.0" fill="rgb(239,106,54)" rx="2" ry="2" />
|
|
<text x="616.43" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (47 samples, 0.24%)</title><rect x="835.9" y="501" width="2.7" height="15.0" fill="rgb(241,171,36)" rx="2" ry="2" />
|
|
<text x="838.85" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="354.4" y="277" width="0.1" height="15.0" fill="rgb(225,115,19)" rx="2" ry="2" />
|
|
<text x="357.35" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_ids (2 samples, 0.01%)</title><rect x="831.0" y="517" width="0.1" height="15.0" fill="rgb(243,226,6)" rx="2" ry="2" />
|
|
<text x="833.95" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (9 samples, 0.05%)</title><rect x="302.8" y="405" width="0.6" height="15.0" fill="rgb(226,141,54)" rx="2" ry="2" />
|
|
<text x="305.83" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (5 samples, 0.03%)</title><rect x="826.7" y="389" width="0.3" height="15.0" fill="rgb(207,185,32)" rx="2" ry="2" />
|
|
<text x="829.71" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="286.7" y="565" width="0.1" height="15.0" fill="rgb(239,45,41)" rx="2" ry="2" />
|
|
<text x="289.72" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (1,285 samples, 6.43%)</title><rect x="304.3" y="597" width="75.8" height="15.0" fill="rgb(208,224,4)" rx="2" ry="2" />
|
|
<text x="307.31" y="607.5" >eth_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>stream_make_jhash (9 samples, 0.05%)</title><rect x="604.4" y="421" width="0.5" height="15.0" fill="rgb(234,195,4)" rx="2" ry="2" />
|
|
<text x="607.40" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.5] (389 samples, 1.95%)</title><rect x="383.9" y="597" width="23.0" height="15.0" fill="rgb(205,173,7)" rx="2" ry="2" />
|
|
<text x="386.92" y="607.5" >[..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="681.8" y="261" width="0.1" height="15.0" fill="rgb(214,196,51)" rx="2" ry="2" />
|
|
<text x="684.82" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (5 samples, 0.03%)</title><rect x="718.2" y="405" width="0.3" height="15.0" fill="rgb(207,205,16)" rx="2" ry="2" />
|
|
<text x="721.24" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_integer (3 samples, 0.02%)</title><rect x="356.5" y="341" width="0.2" height="15.0" fill="rgb(219,25,4)" rx="2" ry="2" />
|
|
<text x="359.48" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (5 samples, 0.03%)</title><rect x="822.3" y="261" width="0.3" height="15.0" fill="rgb(217,141,28)" rx="2" ry="2" />
|
|
<text x="825.34" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.02%)</title><rect x="685.2" y="373" width="0.2" height="15.0" fill="rgb(240,89,17)" rx="2" ry="2" />
|
|
<text x="688.19" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.03%)</title><rect x="776.9" y="437" width="0.3" height="15.0" fill="rgb(248,145,23)" rx="2" ry="2" />
|
|
<text x="779.90" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_UDP_PACKET_ENTRY (56 samples, 0.28%)</title><rect x="694.6" y="373" width="3.3" height="15.0" fill="rgb(233,93,7)" rx="2" ry="2" />
|
|
<text x="697.57" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (4 samples, 0.02%)</title><rect x="607.0" y="389" width="0.2" height="15.0" fill="rgb(240,5,23)" rx="2" ry="2" />
|
|
<text x="609.99" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (5 samples, 0.03%)</title><rect x="304.3" y="373" width="0.3" height="15.0" fill="rgb(205,203,38)" rx="2" ry="2" />
|
|
<text x="307.31" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="512.3" y="405" width="0.1" height="15.0" fill="rgb(225,220,48)" rx="2" ry="2" />
|
|
<text x="515.27" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (1,011 samples, 5.06%)</title><rect x="518.2" y="373" width="59.7" height="15.0" fill="rgb(227,187,30)" rx="2" ry="2" />
|
|
<text x="521.24" y="383.5" >plugin..</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="839.3" y="613" width="0.2" height="15.0" fill="rgb(215,32,33)" rx="2" ry="2" />
|
|
<text x="842.28" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="292.2" y="517" width="0.2" height="15.0" fill="rgb(241,112,13)" rx="2" ry="2" />
|
|
<text x="295.21" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>raw_ip_frag_list_stream_attach (4 samples, 0.02%)</title><rect x="630.9" y="421" width="0.2" height="15.0" fill="rgb(217,17,1)" rx="2" ry="2" />
|
|
<text x="633.89" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="284.4" y="469" width="0.1" height="15.0" fill="rgb(235,227,9)" rx="2" ry="2" />
|
|
<text x="287.36" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_destroy_per_stream (13 samples, 0.07%)</title><rect x="607.7" y="389" width="0.8" height="15.0" fill="rgb(209,178,32)" rx="2" ry="2" />
|
|
<text x="610.70" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (39 samples, 0.20%)</title><rect x="520.8" y="293" width="2.3" height="15.0" fill="rgb(231,85,49)" rx="2" ry="2" />
|
|
<text x="523.77" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="779.8" y="373" width="0.2" height="15.0" fill="rgb(249,194,9)" rx="2" ry="2" />
|
|
<text x="782.85" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="358.9" y="309" width="0.1" height="15.0" fill="rgb(246,86,54)" rx="2" ry="2" />
|
|
<text x="361.90" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="303.4" y="357" width="0.6" height="15.0" fill="rgb(236,46,4)" rx="2" ry="2" />
|
|
<text x="306.36" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="828.4" y="373" width="0.1" height="15.0" fill="rgb(217,0,40)" rx="2" ry="2" />
|
|
<text x="831.42" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="581.6" y="293" width="0.2" height="15.0" fill="rgb(231,178,41)" rx="2" ry="2" />
|
|
<text x="584.62" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="674.7" y="325" width="0.2" height="15.0" fill="rgb(224,60,22)" rx="2" ry="2" />
|
|
<text x="677.74" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (7 samples, 0.04%)</title><rect x="826.1" y="229" width="0.4" height="15.0" fill="rgb(220,39,21)" rx="2" ry="2" />
|
|
<text x="829.06" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_dynamic_table_row_metric_values_incrby (2 samples, 0.01%)</title><rect x="481.4" y="341" width="0.1" height="15.0" fill="rgb(221,36,49)" rx="2" ry="2" />
|
|
<text x="484.41" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_add (39 samples, 0.20%)</title><rect x="628.2" y="389" width="2.3" height="15.0" fill="rgb(234,139,25)" rx="2" ry="2" />
|
|
<text x="631.24" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_ids (5 samples, 0.03%)</title><rect x="319.8" y="181" width="0.3" height="15.0" fill="rgb(208,89,22)" rx="2" ry="2" />
|
|
<text x="322.83" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_ipv4 (21 samples, 0.11%)</title><rect x="695.9" y="325" width="1.2" height="15.0" fill="rgb(215,63,3)" rx="2" ry="2" />
|
|
<text x="698.87" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_thread (7,002 samples, 35.02%)</title><rect x="407.5" y="613" width="413.2" height="15.0" fill="rgb(236,106,34)" rx="2" ry="2" />
|
|
<text x="410.46" y="623.5" >start_thread</text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___printf_fp_l (4 samples, 0.02%)</title><rect x="368.0" y="245" width="0.2" height="15.0" fill="rgb(254,215,25)" rx="2" ry="2" />
|
|
<text x="370.98" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (87 samples, 0.44%)</title><rect x="309.1" y="229" width="5.2" height="15.0" fill="rgb(219,159,6)" rx="2" ry="2" />
|
|
<text x="312.15" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (108 samples, 0.54%)</title><rect x="297.9" y="597" width="6.4" height="15.0" fill="rgb(232,126,38)" rx="2" ry="2" />
|
|
<text x="300.93" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (2 samples, 0.01%)</title><rect x="827.1" y="357" width="0.1" height="15.0" fill="rgb(241,209,33)" rx="2" ry="2" />
|
|
<text x="830.12" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_app_name_by_id (2 samples, 0.01%)</title><rect x="362.8" y="245" width="0.2" height="15.0" fill="rgb(247,142,41)" rx="2" ry="2" />
|
|
<text x="365.85" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="715.5" y="373" width="0.1" height="15.0" fill="rgb(235,68,54)" rx="2" ry="2" />
|
|
<text x="718.52" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="838.7" y="149" width="0.2" height="15.0" fill="rgb(249,223,39)" rx="2" ry="2" />
|
|
<text x="841.74" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>QUIC_ENTRY (40 samples, 0.20%)</title><rect x="698.2" y="373" width="2.4" height="15.0" fill="rgb(229,193,8)" rx="2" ry="2" />
|
|
<text x="701.23" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (4 samples, 0.02%)</title><rect x="680.1" y="405" width="0.2" height="15.0" fill="rgb(214,99,37)" rx="2" ry="2" />
|
|
<text x="683.05" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_AddNumberToObject (3 samples, 0.02%)</title><rect x="675.1" y="325" width="0.2" height="15.0" fill="rgb(212,193,28)" rx="2" ry="2" />
|
|
<text x="678.10" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (4,651 samples, 23.26%)</title><rect x="444.9" y="517" width="274.5" height="15.0" fill="rgb(225,223,34)" rx="2" ry="2" />
|
|
<text x="447.88" y="527.5" >dealipv4udppkt</text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_TCP_PACKET_ENTRY (2 samples, 0.01%)</title><rect x="776.7" y="469" width="0.1" height="15.0" fill="rgb(242,200,50)" rx="2" ry="2" />
|
|
<text x="779.72" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="361.6" y="325" width="0.1" height="15.0" fill="rgb(232,87,31)" rx="2" ry="2" />
|
|
<text x="364.55" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (115 samples, 0.58%)</title><rect x="368.3" y="405" width="6.8" height="15.0" fill="rgb(211,37,39)" rx="2" ry="2" />
|
|
<text x="371.34" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="353.2" y="373" width="0.1" height="15.0" fill="rgb(234,65,7)" rx="2" ry="2" />
|
|
<text x="356.23" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (16 samples, 0.08%)</title><rect x="778.2" y="469" width="0.9" height="15.0" fill="rgb(231,103,23)" rx="2" ry="2" />
|
|
<text x="781.20" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ja3_md5sum (3 samples, 0.02%)</title><rect x="382.4" y="357" width="0.2" height="15.0" fill="rgb(210,110,16)" rx="2" ry="2" />
|
|
<text x="385.44" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (5 samples, 0.03%)</title><rect x="568.0" y="293" width="0.3" height="15.0" fill="rgb(208,64,47)" rx="2" ry="2" />
|
|
<text x="571.04" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_integer (3 samples, 0.02%)</title><rect x="377.9" y="341" width="0.2" height="15.0" fill="rgb(222,209,28)" rx="2" ry="2" />
|
|
<text x="380.90" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="681.8" y="277" width="0.1" height="15.0" fill="rgb(208,36,13)" rx="2" ry="2" />
|
|
<text x="684.82" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (60 samples, 0.30%)</title><rect x="776.5" y="517" width="3.5" height="15.0" fill="rgb(221,92,43)" rx="2" ry="2" />
|
|
<text x="779.48" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="584.6" y="309" width="0.4" height="15.0" fill="rgb(228,162,48)" rx="2" ry="2" />
|
|
<text x="587.63" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_toppar_broker (2 samples, 0.01%)</title><rect x="610.9" y="181" width="0.2" height="15.0" fill="rgb(217,101,54)" rx="2" ry="2" />
|
|
<text x="613.95" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (24 samples, 0.12%)</title><rect x="315.8" y="309" width="1.4" height="15.0" fill="rgb(228,21,8)" rx="2" ry="2" />
|
|
<text x="318.76" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="376.2" y="309" width="0.3" height="15.0" fill="rgb(230,181,44)" rx="2" ry="2" />
|
|
<text x="379.19" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (27 samples, 0.14%)</title><rect x="832.3" y="549" width="1.5" height="15.0" fill="rgb(221,14,19)" rx="2" ry="2" />
|
|
<text x="835.25" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="821.3" y="261" width="0.2" height="15.0" fill="rgb(214,144,33)" rx="2" ry="2" />
|
|
<text x="824.33" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strncasecmp_l_avx (2 samples, 0.01%)</title><rect x="557.6" y="261" width="0.1" height="15.0" fill="rgb(210,21,49)" rx="2" ry="2" />
|
|
<text x="560.60" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_integer (2 samples, 0.01%)</title><rect x="368.5" y="261" width="0.1" height="15.0" fill="rgb(230,65,23)" rx="2" ry="2" />
|
|
<text x="371.51" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="821.6" y="405" width="0.1" height="15.0" fill="rgb(220,145,4)" rx="2" ry="2" />
|
|
<text x="824.63" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="828.6" y="309" width="0.4" height="15.0" fill="rgb(248,199,53)" rx="2" ry="2" />
|
|
<text x="831.59" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_secondary (5,895 samples, 29.48%)</title><rect x="842.1" y="613" width="347.9" height="15.0" fill="rgb(253,229,1)" rx="2" ry="2" />
|
|
<text x="845.11" y="623.5" >start_secondary</text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (14 samples, 0.07%)</title><rect x="454.6" y="469" width="0.8" height="15.0" fill="rgb(229,221,9)" rx="2" ry="2" />
|
|
<text x="457.56" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ssl_ja3_fingerprint_generate (25 samples, 0.13%)</title><rect x="838.9" y="629" width="1.5" height="15.0" fill="rgb(250,144,6)" rx="2" ry="2" />
|
|
<text x="841.92" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_plug_entry (2 samples, 0.01%)</title><rect x="821.6" y="389" width="0.1" height="15.0" fill="rgb(239,155,48)" rx="2" ry="2" />
|
|
<text x="824.63" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (131 samples, 0.66%)</title><rect x="334.2" y="197" width="7.7" height="15.0" fill="rgb(251,130,12)" rx="2" ry="2" />
|
|
<text x="337.17" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="821.3" y="293" width="0.2" height="15.0" fill="rgb(212,99,48)" rx="2" ry="2" />
|
|
<text x="824.28" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (9 samples, 0.05%)</title><rect x="834.7" y="613" width="0.6" height="15.0" fill="rgb(232,223,4)" rx="2" ry="2" />
|
|
<text x="837.73" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="376.7" y="373" width="0.7" height="15.0" fill="rgb(230,98,38)" rx="2" ry="2" />
|
|
<text x="379.66" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (44 samples, 0.22%)</title><rect x="608.6" y="341" width="2.6" height="15.0" fill="rgb(238,178,35)" rx="2" ry="2" />
|
|
<text x="611.65" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (10 samples, 0.05%)</title><rect x="829.2" y="245" width="0.6" height="15.0" fill="rgb(212,12,39)" rx="2" ry="2" />
|
|
<text x="832.18" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MurmurHash3_x64_128 (10 samples, 0.05%)</title><rect x="627.2" y="373" width="0.6" height="15.0" fill="rgb(236,155,16)" rx="2" ry="2" />
|
|
<text x="630.24" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="826.6" y="501" width="0.1" height="15.0" fill="rgb(238,136,16)" rx="2" ry="2" />
|
|
<text x="829.59" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (6 samples, 0.03%)</title><rect x="363.5" y="309" width="0.4" height="15.0" fill="rgb(228,217,19)" rx="2" ry="2" />
|
|
<text x="366.50" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="838.6" y="501" width="0.1" height="15.0" fill="rgb(224,27,36)" rx="2" ry="2" />
|
|
<text x="841.63" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="838.7" y="341" width="0.2" height="15.0" fill="rgb(218,213,12)" rx="2" ry="2" />
|
|
<text x="841.74" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (12 samples, 0.06%)</title><rect x="298.8" y="277" width="0.7" height="15.0" fill="rgb(209,170,40)" rx="2" ry="2" />
|
|
<text x="301.76" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (57 samples, 0.29%)</title><rect x="776.7" y="485" width="3.3" height="15.0" fill="rgb(232,15,33)" rx="2" ry="2" />
|
|
<text x="779.66" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (10 samples, 0.05%)</title><rect x="700.0" y="341" width="0.6" height="15.0" fill="rgb(210,157,9)" rx="2" ry="2" />
|
|
<text x="703.00" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="376.8" y="229" width="0.2" height="15.0" fill="rgb(228,207,35)" rx="2" ry="2" />
|
|
<text x="379.84" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (4 samples, 0.02%)</title><rect x="481.8" y="341" width="0.2" height="15.0" fill="rgb(205,227,37)" rx="2" ry="2" />
|
|
<text x="484.76" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_app_id_policy (2 samples, 0.01%)</title><rect x="368.5" y="293" width="0.1" height="15.0" fill="rgb(215,51,38)" rx="2" ry="2" />
|
|
<text x="371.51" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="675.1" y="293" width="0.1" height="15.0" fill="rgb(249,113,32)" rx="2" ry="2" />
|
|
<text x="678.10" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="827.5" y="277" width="0.5" height="15.0" fill="rgb(244,176,27)" rx="2" ry="2" />
|
|
<text x="830.53" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (5 samples, 0.03%)</title><rect x="303.7" y="293" width="0.3" height="15.0" fill="rgb(250,17,12)" rx="2" ry="2" />
|
|
<text x="306.66" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="568.2" y="277" width="0.1" height="15.0" fill="rgb(241,4,51)" rx="2" ry="2" />
|
|
<text x="571.22" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (2 samples, 0.01%)</title><rect x="479.9" y="453" width="0.1" height="15.0" fill="rgb(234,163,2)" rx="2" ry="2" />
|
|
<text x="482.88" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (6 samples, 0.03%)</title><rect x="693.9" y="277" width="0.4" height="15.0" fill="rgb(218,35,48)" rx="2" ry="2" />
|
|
<text x="696.92" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (5 samples, 0.03%)</title><rect x="304.3" y="533" width="0.3" height="15.0" fill="rgb(234,93,6)" rx="2" ry="2" />
|
|
<text x="307.31" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (8 samples, 0.04%)</title><rect x="383.4" y="485" width="0.5" height="15.0" fill="rgb(229,112,16)" rx="2" ry="2" />
|
|
<text x="386.45" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (4 samples, 0.02%)</title><rect x="454.3" y="469" width="0.3" height="15.0" fill="rgb(240,183,20)" rx="2" ry="2" />
|
|
<text x="457.32" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (6 samples, 0.03%)</title><rect x="821.7" y="341" width="0.4" height="15.0" fill="rgb(228,50,3)" rx="2" ry="2" />
|
|
<text x="824.75" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="512.9" y="373" width="0.5" height="15.0" fill="rgb(228,195,38)" rx="2" ry="2" />
|
|
<text x="515.92" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (8 samples, 0.04%)</title><rect x="383.4" y="421" width="0.5" height="15.0" fill="rgb(254,170,22)" rx="2" ry="2" />
|
|
<text x="386.45" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (2 samples, 0.01%)</title><rect x="585.8" y="325" width="0.1" height="15.0" fill="rgb(250,77,0)" rx="2" ry="2" />
|
|
<text x="588.81" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>send_event_log (4 samples, 0.02%)</title><rect x="833.5" y="469" width="0.2" height="15.0" fill="rgb(212,27,54)" rx="2" ry="2" />
|
|
<text x="836.49" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kfree (2 samples, 0.01%)</title><rect x="785.8" y="501" width="0.1" height="15.0" fill="rgb(214,149,27)" rx="2" ry="2" />
|
|
<text x="788.81" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ipv4_address (2 samples, 0.01%)</title><rect x="838.6" y="405" width="0.1" height="15.0" fill="rgb(216,105,44)" rx="2" ry="2" />
|
|
<text x="841.63" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (40 samples, 0.20%)</title><rect x="376.7" y="421" width="2.3" height="15.0" fill="rgb(210,72,13)" rx="2" ry="2" />
|
|
<text x="379.66" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="679.8" y="357" width="0.1" height="15.0" fill="rgb(225,201,27)" rx="2" ry="2" />
|
|
<text x="682.82" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="828.1" y="341" width="0.1" height="15.0" fill="rgb(249,69,14)" rx="2" ry="2" />
|
|
<text x="831.12" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (8 samples, 0.04%)</title><rect x="383.4" y="501" width="0.5" height="15.0" fill="rgb(209,30,6)" rx="2" ry="2" />
|
|
<text x="386.45" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="840.8" y="341" width="0.2" height="15.0" fill="rgb(246,150,45)" rx="2" ry="2" />
|
|
<text x="843.81" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="607.9" y="373" width="0.2" height="15.0" fill="rgb(220,151,26)" rx="2" ry="2" />
|
|
<text x="610.94" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (8 samples, 0.04%)</title><rect x="383.4" y="341" width="0.5" height="15.0" fill="rgb(254,91,1)" rx="2" ry="2" />
|
|
<text x="386.45" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="467.1" y="309" width="0.1" height="15.0" fill="rgb(240,210,23)" rx="2" ry="2" />
|
|
<text x="470.07" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (29 samples, 0.15%)</title><rect x="840.4" y="597" width="1.7" height="15.0" fill="rgb(210,184,4)" rx="2" ry="2" />
|
|
<text x="843.40" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (4 samples, 0.02%)</title><rect x="379.9" y="389" width="0.2" height="15.0" fill="rgb(224,116,43)" rx="2" ry="2" />
|
|
<text x="382.90" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (101 samples, 0.51%)</title><rect x="369.2" y="293" width="5.9" height="15.0" fill="rgb(247,121,13)" rx="2" ry="2" />
|
|
<text x="372.16" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithContentLength (2 samples, 0.01%)</title><rect x="315.6" y="325" width="0.1" height="15.0" fill="rgb(239,21,49)" rx="2" ry="2" />
|
|
<text x="318.58" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (6 samples, 0.03%)</title><rect x="300.5" y="293" width="0.3" height="15.0" fill="rgb(205,191,34)" rx="2" ry="2" />
|
|
<text x="303.47" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (2 samples, 0.01%)</title><rect x="679.9" y="389" width="0.2" height="15.0" fill="rgb(233,113,38)" rx="2" ry="2" />
|
|
<text x="682.94" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="651.1" y="277" width="0.2" height="15.0" fill="rgb(205,218,49)" rx="2" ry="2" />
|
|
<text x="654.14" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="825.6" y="229" width="0.5" height="15.0" fill="rgb(235,100,18)" rx="2" ry="2" />
|
|
<text x="828.58" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (8 samples, 0.04%)</title><rect x="511.5" y="405" width="0.5" height="15.0" fill="rgb(209,160,19)" rx="2" ry="2" />
|
|
<text x="514.51" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (10 samples, 0.05%)</title><rect x="839.8" y="581" width="0.6" height="15.0" fill="rgb(251,46,33)" rx="2" ry="2" />
|
|
<text x="842.81" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="708.7" y="325" width="0.2" height="15.0" fill="rgb(206,109,13)" rx="2" ry="2" />
|
|
<text x="711.68" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (120 samples, 0.60%)</title><rect x="461.5" y="469" width="7.1" height="15.0" fill="rgb(222,40,42)" rx="2" ry="2" />
|
|
<text x="464.52" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="828.6" y="293" width="0.4" height="15.0" fill="rgb(214,181,14)" rx="2" ry="2" />
|
|
<text x="831.59" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (5 samples, 0.03%)</title><rect x="303.1" y="357" width="0.3" height="15.0" fill="rgb(228,32,49)" rx="2" ry="2" />
|
|
<text x="306.07" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (52 samples, 0.26%)</title><rect x="700.6" y="373" width="3.1" height="15.0" fill="rgb(239,77,34)" rx="2" ry="2" />
|
|
<text x="703.59" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (5 samples, 0.03%)</title><rect x="830.0" y="373" width="0.2" height="15.0" fill="rgb(219,71,0)" rx="2" ry="2" />
|
|
<text x="832.95" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_pop_free (3 samples, 0.02%)</title><rect x="841.5" y="229" width="0.2" height="15.0" fill="rgb(242,48,22)" rx="2" ry="2" />
|
|
<text x="844.52" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (29 samples, 0.15%)</title><rect x="290.8" y="581" width="1.7" height="15.0" fill="rgb(239,208,23)" rx="2" ry="2" />
|
|
<text x="293.79" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="296.8" y="581" width="0.1" height="15.0" fill="rgb(214,225,29)" rx="2" ry="2" />
|
|
<text x="299.75" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (2 samples, 0.01%)</title><rect x="568.6" y="357" width="0.1" height="15.0" fill="rgb(224,214,46)" rx="2" ry="2" />
|
|
<text x="571.57" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SESSION_MARKER_RECORD_TCP_ENTRY (8 samples, 0.04%)</title><rect x="361.7" y="373" width="0.5" height="15.0" fill="rgb(251,195,1)" rx="2" ry="2" />
|
|
<text x="364.73" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="821.6" y="293" width="0.1" height="15.0" fill="rgb(217,204,50)" rx="2" ry="2" />
|
|
<text x="824.63" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="831.7" y="485" width="0.1" height="15.0" fill="rgb(244,160,35)" rx="2" ry="2" />
|
|
<text x="834.72" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (3 samples, 0.02%)</title><rect x="605.9" y="373" width="0.1" height="15.0" fill="rgb(222,229,52)" rx="2" ry="2" />
|
|
<text x="608.87" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="837.9" y="341" width="0.1" height="15.0" fill="rgb(219,72,32)" rx="2" ry="2" />
|
|
<text x="840.86" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_record_udp_entry (4 samples, 0.02%)</title><rect x="379.9" y="421" width="0.2" height="15.0" fill="rgb(237,48,33)" rx="2" ry="2" />
|
|
<text x="382.90" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.02%)</title><rect x="837.8" y="357" width="0.2" height="15.0" fill="rgb(221,93,0)" rx="2" ry="2" />
|
|
<text x="840.80" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (21 samples, 0.11%)</title><rect x="315.9" y="197" width="1.3" height="15.0" fill="rgb(243,222,46)" rx="2" ry="2" />
|
|
<text x="318.93" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="840.9" y="309" width="0.1" height="15.0" fill="rgb(221,200,40)" rx="2" ry="2" />
|
|
<text x="843.87" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (7 samples, 0.04%)</title><rect x="836.9" y="373" width="0.4" height="15.0" fill="rgb(210,212,27)" rx="2" ry="2" />
|
|
<text x="839.86" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="821.8" y="277" width="0.1" height="15.0" fill="rgb(244,78,19)" rx="2" ry="2" />
|
|
<text x="824.81" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_write (9 samples, 0.05%)</title><rect x="572.4" y="149" width="0.5" height="15.0" fill="rgb(239,122,13)" rx="2" ry="2" />
|
|
<text x="575.35" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="468.4" y="373" width="0.1" height="15.0" fill="rgb(227,196,51)" rx="2" ry="2" />
|
|
<text x="471.43" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (13 samples, 0.07%)</title><rect x="458.5" y="469" width="0.8" height="15.0" fill="rgb(213,205,26)" rx="2" ry="2" />
|
|
<text x="461.51" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_identify_tunnel_inner_pkt (4 samples, 0.02%)</title><rect x="721.4" y="517" width="0.2" height="15.0" fill="rgb(245,182,53)" rx="2" ry="2" />
|
|
<text x="724.36" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (21 samples, 0.11%)</title><rect x="359.8" y="293" width="1.3" height="15.0" fill="rgb(247,146,14)" rx="2" ry="2" />
|
|
<text x="362.84" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="609.8" y="261" width="0.1" height="15.0" fill="rgb(254,118,46)" rx="2" ry="2" />
|
|
<text x="612.83" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (4 samples, 0.02%)</title><rect x="821.3" y="389" width="0.2" height="15.0" fill="rgb(219,165,1)" rx="2" ry="2" />
|
|
<text x="824.28" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (9 samples, 0.05%)</title><rect x="366.4" y="325" width="0.5" height="15.0" fill="rgb(239,99,35)" rx="2" ry="2" />
|
|
<text x="369.39" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (3 samples, 0.02%)</title><rect x="525.6" y="197" width="0.2" height="15.0" fill="rgb(233,115,36)" rx="2" ry="2" />
|
|
<text x="528.61" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (25 samples, 0.13%)</title><rect x="840.6" y="485" width="1.4" height="15.0" fill="rgb(237,108,41)" rx="2" ry="2" />
|
|
<text x="843.57" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (106 samples, 0.53%)</title><rect x="368.9" y="373" width="6.2" height="15.0" fill="rgb(226,92,30)" rx="2" ry="2" />
|
|
<text x="371.87" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="356.5" y="309" width="0.2" height="15.0" fill="rgb(239,191,24)" rx="2" ry="2" />
|
|
<text x="359.48" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (8 samples, 0.04%)</title><rect x="361.7" y="325" width="0.5" height="15.0" fill="rgb(250,174,2)" rx="2" ry="2" />
|
|
<text x="364.73" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.03%)</title><rect x="355.6" y="357" width="0.3" height="15.0" fill="rgb(241,160,54)" rx="2" ry="2" />
|
|
<text x="358.65" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (35 samples, 0.18%)</title><rect x="509.4" y="421" width="2.1" height="15.0" fill="rgb(250,99,44)" rx="2" ry="2" />
|
|
<text x="512.44" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="292.5" y="597" width="0.6" height="15.0" fill="rgb(232,156,53)" rx="2" ry="2" />
|
|
<text x="295.50" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (8 samples, 0.04%)</title><rect x="380.1" y="597" width="0.5" height="15.0" fill="rgb(240,219,6)" rx="2" ry="2" />
|
|
<text x="383.14" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (10 samples, 0.05%)</title><rect x="367.7" y="405" width="0.6" height="15.0" fill="rgb(221,121,11)" rx="2" ry="2" />
|
|
<text x="370.69" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (52 samples, 0.26%)</title><rect x="679.3" y="437" width="3.1" height="15.0" fill="rgb(239,38,24)" rx="2" ry="2" />
|
|
<text x="682.29" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.02%)</title><rect x="463.8" y="437" width="0.1" height="15.0" fill="rgb(246,72,46)" rx="2" ry="2" />
|
|
<text x="466.76" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="303.5" y="277" width="0.2" height="15.0" fill="rgb(216,61,27)" rx="2" ry="2" />
|
|
<text x="306.54" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (5 samples, 0.03%)</title><rect x="304.3" y="469" width="0.3" height="15.0" fill="rgb(214,209,45)" rx="2" ry="2" />
|
|
<text x="307.31" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_url_decode (109 samples, 0.55%)</title><rect x="342.0" y="197" width="6.4" height="15.0" fill="rgb(223,41,29)" rx="2" ry="2" />
|
|
<text x="345.02" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_dynamic_table_row_metric_values_incrby (3 samples, 0.02%)</title><rect x="367.7" y="325" width="0.2" height="15.0" fill="rgb(250,0,20)" rx="2" ry="2" />
|
|
<text x="370.75" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="651.1" y="293" width="0.2" height="15.0" fill="rgb(228,106,44)" rx="2" ry="2" />
|
|
<text x="654.14" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_add_stream (10 samples, 0.05%)</title><rect x="456.7" y="485" width="0.6" height="15.0" fill="rgb(243,64,17)" rx="2" ry="2" />
|
|
<text x="459.74" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (5 samples, 0.03%)</title><rect x="608.2" y="357" width="0.3" height="15.0" fill="rgb(209,122,2)" rx="2" ry="2" />
|
|
<text x="611.17" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (1,278 samples, 6.39%)</title><rect x="304.7" y="549" width="75.4" height="15.0" fill="rgb(216,228,50)" rx="2" ry="2" />
|
|
<text x="307.72" y="559.5" >vxlan_en..</text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (5 samples, 0.03%)</title><rect x="584.2" y="341" width="0.3" height="15.0" fill="rgb(237,221,44)" rx="2" ry="2" />
|
|
<text x="587.21" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log_level_enabled (4 samples, 0.02%)</title><rect x="652.1" y="373" width="0.2" height="15.0" fill="rgb(248,209,16)" rx="2" ry="2" />
|
|
<text x="655.08" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="823.6" y="405" width="0.1" height="15.0" fill="rgb(250,201,48)" rx="2" ry="2" />
|
|
<text x="826.58" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>____strtod_l_internal (5 samples, 0.03%)</title><rect x="359.5" y="277" width="0.3" height="15.0" fill="rgb(222,61,1)" rx="2" ry="2" />
|
|
<text x="362.54" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="304.6" y="405" width="0.1" height="15.0" fill="rgb(233,11,44)" rx="2" ry="2" />
|
|
<text x="307.60" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (47 samples, 0.24%)</title><rect x="608.5" y="373" width="2.7" height="15.0" fill="rgb(237,77,22)" rx="2" ry="2" />
|
|
<text x="611.47" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (6 samples, 0.03%)</title><rect x="366.9" y="357" width="0.4" height="15.0" fill="rgb(224,5,4)" rx="2" ry="2" />
|
|
<text x="369.92" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_ipport_union_addr (2 samples, 0.01%)</title><rect x="679.6" y="421" width="0.1" height="15.0" fill="rgb(206,26,32)" rx="2" ry="2" />
|
|
<text x="682.58" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (15 samples, 0.08%)</title><rect x="467.4" y="389" width="0.9" height="15.0" fill="rgb(206,142,16)" rx="2" ry="2" />
|
|
<text x="470.42" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="561.6" y="261" width="0.1" height="15.0" fill="rgb(241,73,28)" rx="2" ry="2" />
|
|
<text x="564.61" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_worker_process (172 samples, 0.86%)</title><rect x="304.8" y="373" width="10.1" height="15.0" fill="rgb(230,152,31)" rx="2" ry="2" />
|
|
<text x="307.78" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="507.7" y="405" width="0.2" height="15.0" fill="rgb(215,2,13)" rx="2" ry="2" />
|
|
<text x="510.67" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (4 samples, 0.02%)</title><rect x="356.8" y="325" width="0.2" height="15.0" fill="rgb(210,38,41)" rx="2" ry="2" />
|
|
<text x="359.77" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (3 samples, 0.02%)</title><rect x="363.7" y="293" width="0.2" height="15.0" fill="rgb(214,9,12)" rx="2" ry="2" />
|
|
<text x="366.68" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (2 samples, 0.01%)</title><rect x="486.5" y="469" width="0.1" height="15.0" fill="rgb(247,159,13)" rx="2" ry="2" />
|
|
<text x="489.49" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (9 samples, 0.05%)</title><rect x="319.1" y="165" width="0.6" height="15.0" fill="rgb(239,15,1)" rx="2" ry="2" />
|
|
<text x="322.12" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (4 samples, 0.02%)</title><rect x="838.4" y="453" width="0.2" height="15.0" fill="rgb(247,167,16)" rx="2" ry="2" />
|
|
<text x="841.39" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (3 samples, 0.02%)</title><rect x="694.3" y="277" width="0.2" height="15.0" fill="rgb(238,228,30)" rx="2" ry="2" />
|
|
<text x="697.28" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_marsio_28 (14,099 samples, 70.51%)</title><rect x="10.1" y="645" width="832.0" height="15.0" fill="rgb(213,222,53)" rx="2" ry="2" />
|
|
<text x="13.06" y="655.5" >sapp_marsio_28</text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="300.2" y="149" width="0.2" height="15.0" fill="rgb(245,219,48)" rx="2" ry="2" />
|
|
<text x="303.23" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (13 samples, 0.07%)</title><rect x="583.0" y="341" width="0.8" height="15.0" fill="rgb(207,33,35)" rx="2" ry="2" />
|
|
<text x="586.03" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (24 samples, 0.12%)</title><rect x="822.1" y="325" width="1.4" height="15.0" fill="rgb(230,136,28)" rx="2" ry="2" />
|
|
<text x="825.10" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (31 samples, 0.16%)</title><rect x="713.3" y="357" width="1.9" height="15.0" fill="rgb(251,104,3)" rx="2" ry="2" />
|
|
<text x="716.34" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_integer (9 samples, 0.05%)</title><rect x="304.9" y="261" width="0.5" height="15.0" fill="rgb(225,203,46)" rx="2" ry="2" />
|
|
<text x="307.90" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_madvise (2 samples, 0.01%)</title><rect x="300.2" y="133" width="0.2" height="15.0" fill="rgb(227,229,20)" rx="2" ry="2" />
|
|
<text x="303.23" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strcmp_sse42 (5 samples, 0.03%)</title><rect x="692.3" y="261" width="0.3" height="15.0" fill="rgb(236,97,17)" rx="2" ry="2" />
|
|
<text x="695.27" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (11 samples, 0.06%)</title><rect x="455.8" y="453" width="0.6" height="15.0" fill="rgb(210,151,36)" rx="2" ry="2" />
|
|
<text x="458.80" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="838.4" y="405" width="0.2" height="15.0" fill="rgb(245,188,49)" rx="2" ry="2" />
|
|
<text x="841.39" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>int_bn_mod_inverse (2 samples, 0.01%)</title><rect x="823.3" y="165" width="0.2" height="15.0" fill="rgb(234,153,18)" rx="2" ry="2" />
|
|
<text x="826.34" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_stream_trace_id (2 samples, 0.01%)</title><rect x="355.5" y="325" width="0.1" height="15.0" fill="rgb(232,180,12)" rx="2" ry="2" />
|
|
<text x="358.53" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (28 samples, 0.14%)</title><rect x="840.4" y="501" width="1.6" height="15.0" fill="rgb(249,118,47)" rx="2" ry="2" />
|
|
<text x="843.40" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (49 samples, 0.25%)</title><rect x="465.7" y="437" width="2.8" height="15.0" fill="rgb(225,102,42)" rx="2" ry="2" />
|
|
<text x="468.65" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (18 samples, 0.09%)</title><rect x="362.3" y="341" width="1.1" height="15.0" fill="rgb(226,48,27)" rx="2" ry="2" />
|
|
<text x="365.32" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (17 samples, 0.09%)</title><rect x="365.9" y="357" width="1.0" height="15.0" fill="rgb(232,62,8)" rx="2" ry="2" />
|
|
<text x="368.92" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="523.1" y="261" width="0.2" height="15.0" fill="rgb(217,28,9)" rx="2" ry="2" />
|
|
<text x="526.13" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (6 samples, 0.03%)</title><rect x="350.0" y="325" width="0.4" height="15.0" fill="rgb(251,228,26)" rx="2" ry="2" />
|
|
<text x="353.04" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (20 samples, 0.10%)</title><rect x="827.1" y="581" width="1.1" height="15.0" fill="rgb(253,180,50)" rx="2" ry="2" />
|
|
<text x="830.06" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>round_and_return (2 samples, 0.01%)</title><rect x="379.1" y="277" width="0.1" height="15.0" fill="rgb(254,189,18)" rx="2" ry="2" />
|
|
<text x="382.08" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_report_identify_result (7 samples, 0.04%)</title><rect x="523.1" y="293" width="0.4" height="15.0" fill="rgb(237,77,13)" rx="2" ry="2" />
|
|
<text x="526.07" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_create (4 samples, 0.02%)</title><rect x="512.2" y="421" width="0.2" height="15.0" fill="rgb(235,102,4)" rx="2" ry="2" />
|
|
<text x="515.16" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (6 samples, 0.03%)</title><rect x="367.9" y="373" width="0.4" height="15.0" fill="rgb(237,191,44)" rx="2" ry="2" />
|
|
<text x="370.92" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="353.2" y="389" width="0.1" height="15.0" fill="rgb(237,201,19)" rx="2" ry="2" />
|
|
<text x="356.23" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (14 samples, 0.07%)</title><rect x="357.7" y="325" width="0.8" height="15.0" fill="rgb(236,139,26)" rx="2" ry="2" />
|
|
<text x="360.71" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="822.6" y="197" width="0.2" height="15.0" fill="rgb(216,13,35)" rx="2" ry="2" />
|
|
<text x="825.63" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (23 samples, 0.12%)</title><rect x="299.5" y="309" width="1.3" height="15.0" fill="rgb(229,169,22)" rx="2" ry="2" />
|
|
<text x="302.47" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>conn_telemetry_tcpall_entry (6 samples, 0.03%)</title><rect x="583.8" y="357" width="0.4" height="15.0" fill="rgb(218,54,49)" rx="2" ry="2" />
|
|
<text x="586.80" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="827.6" y="261" width="0.3" height="15.0" fill="rgb(229,4,5)" rx="2" ry="2" />
|
|
<text x="830.59" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_ip_plugin_table_get_ex_data (14 samples, 0.07%)</title><rect x="357.7" y="341" width="0.8" height="15.0" fill="rgb(209,50,20)" rx="2" ry="2" />
|
|
<text x="360.71" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (12 samples, 0.06%)</title><rect x="829.1" y="421" width="0.7" height="15.0" fill="rgb(246,185,21)" rx="2" ry="2" />
|
|
<text x="832.07" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="509.7" y="309" width="0.4" height="15.0" fill="rgb(235,221,29)" rx="2" ry="2" />
|
|
<text x="512.68" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_hit_path_list (24 samples, 0.12%)</title><rect x="692.2" y="325" width="1.4" height="15.0" fill="rgb(217,152,7)" rx="2" ry="2" />
|
|
<text x="695.21" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="614.5" y="245" width="0.1" height="15.0" fill="rgb(211,43,15)" rx="2" ry="2" />
|
|
<text x="617.49" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="582.7" y="261" width="0.2" height="15.0" fill="rgb(219,121,47)" rx="2" ry="2" />
|
|
<text x="585.68" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (28 samples, 0.14%)</title><rect x="836.1" y="389" width="1.6" height="15.0" fill="rgb(208,192,49)" rx="2" ry="2" />
|
|
<text x="839.09" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_set_scan_district (3 samples, 0.02%)</title><rect x="355.7" y="325" width="0.2" height="15.0" fill="rgb(233,94,38)" rx="2" ry="2" />
|
|
<text x="358.71" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ksys_write (9 samples, 0.05%)</title><rect x="572.4" y="133" width="0.5" height="15.0" fill="rgb(225,179,18)" rx="2" ry="2" />
|
|
<text x="575.35" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (18 samples, 0.09%)</title><rect x="841.0" y="405" width="1.0" height="15.0" fill="rgb(224,90,35)" rx="2" ry="2" />
|
|
<text x="843.99" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="381.4" y="117" width="0.1" height="15.0" fill="rgb(237,206,18)" rx="2" ry="2" />
|
|
<text x="384.38" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (49 samples, 0.25%)</title><rect x="465.7" y="453" width="2.8" height="15.0" fill="rgb(231,96,1)" rx="2" ry="2" />
|
|
<text x="468.65" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new (7 samples, 0.04%)</title><rect x="610.7" y="245" width="0.4" height="15.0" fill="rgb(226,212,14)" rx="2" ry="2" />
|
|
<text x="613.71" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (5 samples, 0.03%)</title><rect x="351.7" y="245" width="0.3" height="15.0" fill="rgb(240,167,13)" rx="2" ry="2" />
|
|
<text x="354.70" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (3 samples, 0.02%)</title><rect x="367.3" y="341" width="0.2" height="15.0" fill="rgb(207,169,51)" rx="2" ry="2" />
|
|
<text x="370.33" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (6 samples, 0.03%)</title><rect x="838.0" y="389" width="0.3" height="15.0" fill="rgb(240,223,1)" rx="2" ry="2" />
|
|
<text x="840.98" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (6 samples, 0.03%)</title><rect x="838.0" y="405" width="0.3" height="15.0" fill="rgb(246,61,3)" rx="2" ry="2" />
|
|
<text x="840.98" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>append_common_field (2 samples, 0.01%)</title><rect x="828.4" y="437" width="0.1" height="15.0" fill="rgb(242,181,13)" rx="2" ry="2" />
|
|
<text x="831.42" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (23 samples, 0.12%)</title><rect x="355.6" y="389" width="1.4" height="15.0" fill="rgb(250,137,28)" rx="2" ry="2" />
|
|
<text x="358.65" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (3 samples, 0.02%)</title><rect x="481.0" y="357" width="0.2" height="15.0" fill="rgb(251,204,51)" rx="2" ry="2" />
|
|
<text x="484.00" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (6 samples, 0.03%)</title><rect x="367.9" y="357" width="0.4" height="15.0" fill="rgb(230,149,32)" rx="2" ry="2" />
|
|
<text x="370.92" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (6 samples, 0.03%)</title><rect x="305.1" y="197" width="0.3" height="15.0" fill="rgb(252,34,49)" rx="2" ry="2" />
|
|
<text x="308.07" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (5 samples, 0.03%)</title><rect x="830.0" y="341" width="0.2" height="15.0" fill="rgb(249,199,32)" rx="2" ry="2" />
|
|
<text x="832.95" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (3 samples, 0.02%)</title><rect x="367.7" y="373" width="0.2" height="15.0" fill="rgb(253,228,8)" rx="2" ry="2" />
|
|
<text x="370.75" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.03%)</title><rect x="508.1" y="357" width="0.3" height="15.0" fill="rgb(249,47,34)" rx="2" ry="2" />
|
|
<text x="511.08" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_certificate_detail (5 samples, 0.03%)</title><rect x="830.0" y="405" width="0.2" height="15.0" fill="rgb(240,54,49)" rx="2" ry="2" />
|
|
<text x="832.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (4,529 samples, 22.65%)</title><rect x="25.2" y="597" width="267.3" height="15.0" fill="rgb(206,209,20)" rx="2" ry="2" />
|
|
<text x="28.23" y="607.5" >[libmaat4.so.4.0]</text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="287.0" y="549" width="0.2" height="15.0" fill="rgb(228,154,9)" rx="2" ry="2" />
|
|
<text x="290.02" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (12 samples, 0.06%)</title><rect x="298.8" y="341" width="0.7" height="15.0" fill="rgb(207,147,7)" rx="2" ry="2" />
|
|
<text x="301.76" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="700.2" y="213" width="0.1" height="15.0" fill="rgb(248,103,35)" rx="2" ry="2" />
|
|
<text x="703.18" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (4 samples, 0.02%)</title><rect x="523.9" y="245" width="0.2" height="15.0" fill="rgb(215,173,43)" rx="2" ry="2" />
|
|
<text x="526.90" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (3 samples, 0.02%)</title><rect x="611.6" y="277" width="0.2" height="15.0" fill="rgb(221,161,7)" rx="2" ry="2" />
|
|
<text x="614.60" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="650.5" y="309" width="0.2" height="15.0" fill="rgb(248,203,44)" rx="2" ry="2" />
|
|
<text x="653.55" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>capture_packet_scan_proto_addr (140 samples, 0.70%)</title><rect x="643.8" y="341" width="8.2" height="15.0" fill="rgb(210,229,47)" rx="2" ry="2" />
|
|
<text x="646.76" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="674.2" y="197" width="0.1" height="15.0" fill="rgb(211,80,31)" rx="2" ry="2" />
|
|
<text x="677.15" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (3 samples, 0.02%)</title><rect x="463.9" y="437" width="0.2" height="15.0" fill="rgb(223,40,42)" rx="2" ry="2" />
|
|
<text x="466.94" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="302.0" y="293" width="0.2" height="15.0" fill="rgb(220,42,12)" rx="2" ry="2" />
|
|
<text x="305.01" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (3 samples, 0.02%)</title><rect x="581.6" y="277" width="0.2" height="15.0" fill="rgb(251,116,51)" rx="2" ry="2" />
|
|
<text x="584.62" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="367.5" y="341" width="0.2" height="15.0" fill="rgb(232,69,24)" rx="2" ry="2" />
|
|
<text x="370.51" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="838.7" y="245" width="0.2" height="15.0" fill="rgb(245,116,28)" rx="2" ry="2" />
|
|
<text x="841.74" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_version (4 samples, 0.02%)</title><rect x="563.3" y="325" width="0.3" height="15.0" fill="rgb(243,31,50)" rx="2" ry="2" />
|
|
<text x="566.32" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_send_burst_flush (223 samples, 1.12%)</title><rect x="760.4" y="581" width="13.2" height="15.0" fill="rgb(254,38,21)" rx="2" ry="2" />
|
|
<text x="763.43" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.03%)</title><rect x="353.9" y="309" width="0.3" height="15.0" fill="rgb(251,65,47)" rx="2" ry="2" />
|
|
<text x="356.88" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (29 samples, 0.15%)</title><rect x="840.4" y="613" width="1.7" height="15.0" fill="rgb(210,152,33)" rx="2" ry="2" />
|
|
<text x="843.40" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (2 samples, 0.01%)</title><rect x="572.9" y="309" width="0.2" height="15.0" fill="rgb(250,201,21)" rx="2" ry="2" />
|
|
<text x="575.94" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (3 samples, 0.02%)</title><rect x="828.4" y="597" width="0.2" height="15.0" fill="rgb(213,97,50)" rx="2" ry="2" />
|
|
<text x="831.42" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_l7_protocol_id2name (3 samples, 0.02%)</title><rect x="702.7" y="325" width="0.2" height="15.0" fill="rgb(251,34,16)" rx="2" ry="2" />
|
|
<text x="705.72" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (13 samples, 0.07%)</title><rect x="348.9" y="309" width="0.7" height="15.0" fill="rgb(236,171,50)" rx="2" ry="2" />
|
|
<text x="351.86" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="296.8" y="533" width="0.1" height="15.0" fill="rgb(207,189,40)" rx="2" ry="2" />
|
|
<text x="299.75" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="611.1" y="325" width="0.1" height="15.0" fill="rgb(216,142,42)" rx="2" ry="2" />
|
|
<text x="614.12" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (7 samples, 0.04%)</title><rect x="523.8" y="293" width="0.4" height="15.0" fill="rgb(242,27,7)" rx="2" ry="2" />
|
|
<text x="526.78" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (7 samples, 0.04%)</title><rect x="465.7" y="389" width="0.4" height="15.0" fill="rgb(210,95,5)" rx="2" ry="2" />
|
|
<text x="468.65" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (5 samples, 0.03%)</title><rect x="822.3" y="229" width="0.3" height="15.0" fill="rgb(205,161,41)" rx="2" ry="2" />
|
|
<text x="825.34" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (8 samples, 0.04%)</title><rect x="383.4" y="309" width="0.5" height="15.0" fill="rgb(217,147,6)" rx="2" ry="2" />
|
|
<text x="386.45" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="776.0" y="517" width="0.1" height="15.0" fill="rgb(230,107,14)" rx="2" ry="2" />
|
|
<text x="779.01" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (60 samples, 0.30%)</title><rect x="580.3" y="357" width="3.5" height="15.0" fill="rgb(216,77,50)" rx="2" ry="2" />
|
|
<text x="583.26" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>c2i_ASN1_OBJECT (2 samples, 0.01%)</title><rect x="10.7" y="261" width="0.1" height="15.0" fill="rgb(219,8,35)" rx="2" ry="2" />
|
|
<text x="13.71" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="353.2" y="405" width="0.1" height="15.0" fill="rgb(218,192,54)" rx="2" ry="2" />
|
|
<text x="356.23" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (11 samples, 0.06%)</title><rect x="777.3" y="405" width="0.6" height="15.0" fill="rgb(220,173,19)" rx="2" ry="2" />
|
|
<text x="780.25" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (35 samples, 0.18%)</title><rect x="586.5" y="309" width="2.1" height="15.0" fill="rgb(240,197,40)" rx="2" ry="2" />
|
|
<text x="589.52" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (4 samples, 0.02%)</title><rect x="582.7" y="325" width="0.2" height="15.0" fill="rgb(254,7,19)" rx="2" ry="2" />
|
|
<text x="585.68" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="708.7" y="277" width="0.2" height="15.0" fill="rgb(221,51,6)" rx="2" ry="2" />
|
|
<text x="711.68" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="825.9" y="133" width="0.1" height="15.0" fill="rgb(246,68,1)" rx="2" ry="2" />
|
|
<text x="828.88" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_copy (2 samples, 0.01%)</title><rect x="841.2" y="229" width="0.1" height="15.0" fill="rgb(219,187,40)" rx="2" ry="2" />
|
|
<text x="844.16" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="715.5" y="357" width="0.1" height="15.0" fill="rgb(208,35,38)" rx="2" ry="2" />
|
|
<text x="718.52" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="827.5" y="309" width="0.5" height="15.0" fill="rgb(243,36,24)" rx="2" ry="2" />
|
|
<text x="830.53" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.07%)</title><rect x="320.2" y="197" width="0.7" height="15.0" fill="rgb(241,92,25)" rx="2" ry="2" />
|
|
<text x="323.18" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="840.9" y="325" width="0.1" height="15.0" fill="rgb(239,86,19)" rx="2" ry="2" />
|
|
<text x="843.87" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_template_free (3 samples, 0.02%)</title><rect x="351.8" y="229" width="0.2" height="15.0" fill="rgb(216,45,14)" rx="2" ry="2" />
|
|
<text x="354.81" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="824.5" y="133" width="0.1" height="15.0" fill="rgb(251,179,23)" rx="2" ry="2" />
|
|
<text x="827.46" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (888 samples, 4.44%)</title><rect x="304.8" y="453" width="52.4" height="15.0" fill="rgb(213,108,31)" rx="2" ry="2" />
|
|
<text x="307.78" y="463.5" >strea..</text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (11 samples, 0.06%)</title><rect x="314.9" y="373" width="0.7" height="15.0" fill="rgb(205,146,53)" rx="2" ry="2" />
|
|
<text x="317.93" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (13 samples, 0.07%)</title><rect x="839.6" y="597" width="0.8" height="15.0" fill="rgb(226,116,17)" rx="2" ry="2" />
|
|
<text x="842.63" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="303.4" y="373" width="0.6" height="15.0" fill="rgb(249,58,49)" rx="2" ry="2" />
|
|
<text x="306.36" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (3 samples, 0.02%)</title><rect x="304.0" y="405" width="0.1" height="15.0" fill="rgb(212,14,13)" rx="2" ry="2" />
|
|
<text x="306.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_ip_entry (18 samples, 0.09%)</title><rect x="717.5" y="421" width="1.0" height="15.0" fill="rgb(224,104,51)" rx="2" ry="2" />
|
|
<text x="720.47" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_positioningACompleteLine (6 samples, 0.03%)</title><rect x="559.0" y="293" width="0.3" height="15.0" fill="rgb(234,145,31)" rx="2" ry="2" />
|
|
<text x="561.96" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (56 samples, 0.28%)</title><rect x="624.5" y="389" width="3.3" height="15.0" fill="rgb(248,157,9)" rx="2" ry="2" />
|
|
<text x="627.52" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (106 samples, 0.53%)</title><rect x="298.1" y="517" width="6.2" height="15.0" fill="rgb(207,140,36)" rx="2" ry="2" />
|
|
<text x="301.05" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="700.1" y="229" width="0.2" height="15.0" fill="rgb(217,206,20)" rx="2" ry="2" />
|
|
<text x="703.12" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (2 samples, 0.01%)</title><rect x="714.2" y="293" width="0.1" height="15.0" fill="rgb(250,84,13)" rx="2" ry="2" />
|
|
<text x="717.16" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (11 samples, 0.06%)</title><rect x="380.9" y="149" width="0.7" height="15.0" fill="rgb(211,28,11)" rx="2" ry="2" />
|
|
<text x="383.91" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_destroy (3 samples, 0.02%)</title><rect x="681.0" y="293" width="0.2" height="15.0" fill="rgb(211,52,16)" rx="2" ry="2" />
|
|
<text x="684.00" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="838.7" y="389" width="0.2" height="15.0" fill="rgb(213,210,13)" rx="2" ry="2" />
|
|
<text x="841.74" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="368.5" y="197" width="0.1" height="15.0" fill="rgb(210,40,23)" rx="2" ry="2" />
|
|
<text x="371.51" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssh.so] (11 samples, 0.06%)</title><rect x="561.4" y="341" width="0.6" height="15.0" fill="rgb(210,78,7)" rx="2" ry="2" />
|
|
<text x="564.37" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>first_data_process (2 samples, 0.01%)</title><rect x="672.1" y="357" width="0.1" height="15.0" fill="rgb(211,30,35)" rx="2" ry="2" />
|
|
<text x="675.09" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (15 samples, 0.08%)</title><rect x="379.0" y="421" width="0.9" height="15.0" fill="rgb(228,229,24)" rx="2" ry="2" />
|
|
<text x="382.02" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>calloc (14 samples, 0.07%)</title><rect x="589.1" y="373" width="0.8" height="15.0" fill="rgb(222,150,34)" rx="2" ry="2" />
|
|
<text x="592.11" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (2 samples, 0.01%)</title><rect x="777.0" y="421" width="0.1" height="15.0" fill="rgb(238,182,21)" rx="2" ry="2" />
|
|
<text x="780.01" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (29 samples, 0.15%)</title><rect x="828.6" y="581" width="1.7" height="15.0" fill="rgb(215,201,54)" rx="2" ry="2" />
|
|
<text x="831.59" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (2 samples, 0.01%)</title><rect x="679.8" y="373" width="0.1" height="15.0" fill="rgb(254,220,10)" rx="2" ry="2" />
|
|
<text x="682.82" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (7 samples, 0.04%)</title><rect x="486.6" y="469" width="0.4" height="15.0" fill="rgb(216,68,22)" rx="2" ry="2" />
|
|
<text x="489.60" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (3 samples, 0.02%)</title><rect x="302.4" y="341" width="0.1" height="15.0" fill="rgb(253,52,49)" rx="2" ry="2" />
|
|
<text x="305.36" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="682.1" y="309" width="0.1" height="15.0" fill="rgb(221,53,21)" rx="2" ry="2" />
|
|
<text x="685.06" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_set_application_metrics (6 samples, 0.03%)</title><rect x="481.2" y="357" width="0.3" height="15.0" fill="rgb(235,127,46)" rx="2" ry="2" />
|
|
<text x="484.17" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (5 samples, 0.03%)</title><rect x="382.6" y="309" width="0.3" height="15.0" fill="rgb(206,133,50)" rx="2" ry="2" />
|
|
<text x="385.62" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (4 samples, 0.02%)</title><rect x="835.9" y="405" width="0.2" height="15.0" fill="rgb(207,22,29)" rx="2" ry="2" />
|
|
<text x="838.85" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (12 samples, 0.06%)</title><rect x="482.0" y="357" width="0.7" height="15.0" fill="rgb(228,186,38)" rx="2" ry="2" />
|
|
<text x="485.00" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="822.2" y="181" width="0.1" height="15.0" fill="rgb(244,17,27)" rx="2" ry="2" />
|
|
<text x="825.22" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (110 samples, 0.55%)</title><rect x="519.7" y="341" width="6.4" height="15.0" fill="rgb(225,135,30)" rx="2" ry="2" />
|
|
<text x="522.65" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (10 samples, 0.05%)</title><rect x="704.3" y="341" width="0.6" height="15.0" fill="rgb(247,30,48)" rx="2" ry="2" />
|
|
<text x="707.31" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_type_new (2 samples, 0.01%)</title><rect x="838.7" y="229" width="0.2" height="15.0" fill="rgb(228,95,41)" rx="2" ry="2" />
|
|
<text x="841.74" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (4 samples, 0.02%)</title><rect x="358.8" y="325" width="0.2" height="15.0" fill="rgb(223,37,35)" rx="2" ry="2" />
|
|
<text x="361.78" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (47 samples, 0.24%)</title><rect x="835.9" y="581" width="2.7" height="15.0" fill="rgb(236,25,5)" rx="2" ry="2" />
|
|
<text x="838.85" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (10 samples, 0.05%)</title><rect x="367.7" y="389" width="0.6" height="15.0" fill="rgb(217,127,6)" rx="2" ry="2" />
|
|
<text x="370.69" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (3 samples, 0.02%)</title><rect x="613.7" y="309" width="0.1" height="15.0" fill="rgb(222,16,38)" rx="2" ry="2" />
|
|
<text x="616.66" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (5 samples, 0.03%)</title><rect x="304.3" y="421" width="0.3" height="15.0" fill="rgb(235,35,6)" rx="2" ry="2" />
|
|
<text x="307.31" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (1,278 samples, 6.39%)</title><rect x="304.7" y="533" width="75.4" height="15.0" fill="rgb(238,224,30)" rx="2" ry="2" />
|
|
<text x="307.72" y="543.5" >eth_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="679.9" y="373" width="0.2" height="15.0" fill="rgb(234,142,54)" rx="2" ry="2" />
|
|
<text x="682.94" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cpu_startup_entry (5,895 samples, 29.48%)</title><rect x="842.1" y="597" width="347.9" height="15.0" fill="rgb(234,201,12)" rx="2" ry="2" />
|
|
<text x="845.11" y="607.5" >cpu_startup_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>EC_GROUP_set_generator (7 samples, 0.04%)</title><rect x="822.9" y="213" width="0.4" height="15.0" fill="rgb(234,155,39)" rx="2" ry="2" />
|
|
<text x="825.93" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_plug_entry (6 samples, 0.03%)</title><rect x="380.2" y="421" width="0.4" height="15.0" fill="rgb(215,188,35)" rx="2" ry="2" />
|
|
<text x="383.20" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rcu_idle_exit (2 samples, 0.01%)</title><rect x="1182.4" y="565" width="0.1" height="15.0" fill="rgb(246,31,15)" rx="2" ry="2" />
|
|
<text x="1185.39" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="285.2" y="549" width="0.8" height="15.0" fill="rgb(228,144,45)" rx="2" ry="2" />
|
|
<text x="288.24" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="463.6" y="437" width="0.2" height="15.0" fill="rgb(211,108,19)" rx="2" ry="2" />
|
|
<text x="466.59" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (8 samples, 0.04%)</title><rect x="510.9" y="373" width="0.5" height="15.0" fill="rgb(214,142,41)" rx="2" ry="2" />
|
|
<text x="513.92" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="378.9" y="325" width="0.1" height="15.0" fill="rgb(217,75,46)" rx="2" ry="2" />
|
|
<text x="381.90" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (73 samples, 0.37%)</title><rect x="568.8" y="341" width="4.3" height="15.0" fill="rgb(246,223,50)" rx="2" ry="2" />
|
|
<text x="571.81" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (106 samples, 0.53%)</title><rect x="368.9" y="325" width="6.2" height="15.0" fill="rgb(205,48,1)" rx="2" ry="2" />
|
|
<text x="371.87" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="825.6" y="149" width="0.5" height="15.0" fill="rgb(220,91,10)" rx="2" ry="2" />
|
|
<text x="828.64" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (19 samples, 0.10%)</title><rect x="580.7" y="325" width="1.1" height="15.0" fill="rgb(218,28,36)" rx="2" ry="2" />
|
|
<text x="583.67" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libkni.so] (3 samples, 0.02%)</title><rect x="613.8" y="309" width="0.2" height="15.0" fill="rgb(211,201,23)" rx="2" ry="2" />
|
|
<text x="616.84" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (10 samples, 0.05%)</title><rect x="315.0" y="325" width="0.6" height="15.0" fill="rgb(229,187,49)" rx="2" ry="2" />
|
|
<text x="317.99" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="373" width="0.1" height="15.0" fill="rgb(254,104,19)" rx="2" ry="2" />
|
|
<text x="13.71" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (7 samples, 0.04%)</title><rect x="349.6" y="357" width="0.4" height="15.0" fill="rgb(234,183,12)" rx="2" ry="2" />
|
|
<text x="352.63" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="480.8" y="373" width="0.7" height="15.0" fill="rgb(248,14,45)" rx="2" ry="2" />
|
|
<text x="483.82" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.02%)</title><rect x="561.6" y="293" width="0.1" height="15.0" fill="rgb(232,53,36)" rx="2" ry="2" />
|
|
<text x="564.55" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (157 samples, 0.79%)</title><rect x="605.5" y="405" width="9.3" height="15.0" fill="rgb(215,153,41)" rx="2" ry="2" />
|
|
<text x="608.52" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="381.7" y="149" width="0.1" height="15.0" fill="rgb(222,164,47)" rx="2" ry="2" />
|
|
<text x="384.67" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (20 samples, 0.10%)</title><rect x="348.4" y="357" width="1.2" height="15.0" fill="rgb(237,6,15)" rx="2" ry="2" />
|
|
<text x="351.45" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="301.1" y="325" width="0.1" height="15.0" fill="rgb(219,122,11)" rx="2" ry="2" />
|
|
<text x="304.12" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (4 samples, 0.02%)</title><rect x="361.4" y="421" width="0.3" height="15.0" fill="rgb(231,215,22)" rx="2" ry="2" />
|
|
<text x="364.43" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="365.7" y="341" width="0.2" height="15.0" fill="rgb(253,207,21)" rx="2" ry="2" />
|
|
<text x="368.74" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="380.7" y="181" width="0.2" height="15.0" fill="rgb(207,158,22)" rx="2" ry="2" />
|
|
<text x="383.73" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (40 samples, 0.20%)</title><rect x="480.3" y="421" width="2.4" height="15.0" fill="rgb(211,198,41)" rx="2" ry="2" />
|
|
<text x="483.35" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (4 samples, 0.02%)</title><rect x="481.2" y="325" width="0.2" height="15.0" fill="rgb(249,118,24)" rx="2" ry="2" />
|
|
<text x="484.17" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_usleep (100 samples, 0.50%)</title><rect x="780.4" y="581" width="5.9" height="15.0" fill="rgb(235,11,3)" rx="2" ry="2" />
|
|
<text x="783.44" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (14 samples, 0.07%)</title><rect x="692.3" y="293" width="0.8" height="15.0" fill="rgb(217,125,52)" rx="2" ry="2" />
|
|
<text x="695.27" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (14 samples, 0.07%)</title><rect x="656.1" y="293" width="0.8" height="15.0" fill="rgb(243,217,35)" rx="2" ry="2" />
|
|
<text x="659.09" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="509.7" y="293" width="0.4" height="15.0" fill="rgb(236,68,39)" rx="2" ry="2" />
|
|
<text x="512.68" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_plug_entry (4 samples, 0.02%)</title><rect x="840.6" y="373" width="0.2" height="15.0" fill="rgb(219,162,1)" rx="2" ry="2" />
|
|
<text x="843.57" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (27 samples, 0.14%)</title><rect x="683.4" y="405" width="1.6" height="15.0" fill="rgb(230,48,2)" rx="2" ry="2" />
|
|
<text x="686.42" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_new (4 samples, 0.02%)</title><rect x="841.3" y="229" width="0.2" height="15.0" fill="rgb(209,199,11)" rx="2" ry="2" />
|
|
<text x="844.28" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_mod_inverse (3 samples, 0.02%)</title><rect x="823.2" y="181" width="0.1" height="15.0" fill="rgb(230,190,46)" rx="2" ry="2" />
|
|
<text x="826.16" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="682.1" y="277" width="0.1" height="15.0" fill="rgb(243,146,52)" rx="2" ry="2" />
|
|
<text x="685.06" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_obj2txt (2 samples, 0.01%)</title><rect x="352.0" y="325" width="0.2" height="15.0" fill="rgb(243,154,24)" rx="2" ry="2" />
|
|
<text x="355.05" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (17 samples, 0.09%)</title><rect x="669.3" y="341" width="1.0" height="15.0" fill="rgb(250,111,23)" rx="2" ry="2" />
|
|
<text x="672.31" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OPENSSL_sk_pop_free (3 samples, 0.02%)</title><rect x="841.5" y="245" width="0.2" height="15.0" fill="rgb(218,52,36)" rx="2" ry="2" />
|
|
<text x="844.52" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (5 samples, 0.03%)</title><rect x="368.0" y="261" width="0.3" height="15.0" fill="rgb(224,141,8)" rx="2" ry="2" />
|
|
<text x="370.98" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (24 samples, 0.12%)</title><rect x="822.1" y="373" width="1.4" height="15.0" fill="rgb(209,73,44)" rx="2" ry="2" />
|
|
<text x="825.10" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_get_vlan_id_from_mbuff (6 samples, 0.03%)</title><rect x="723.1" y="533" width="0.4" height="15.0" fill="rgb(227,189,26)" rx="2" ry="2" />
|
|
<text x="726.13" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="708.6" y="341" width="0.1" height="15.0" fill="rgb(209,206,52)" rx="2" ry="2" />
|
|
<text x="711.56" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (40 samples, 0.20%)</title><rect x="480.3" y="437" width="2.4" height="15.0" fill="rgb(243,145,33)" rx="2" ry="2" />
|
|
<text x="483.35" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (4 samples, 0.02%)</title><rect x="827.3" y="421" width="0.2" height="15.0" fill="rgb(217,108,15)" rx="2" ry="2" />
|
|
<text x="830.30" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (4 samples, 0.02%)</title><rect x="838.4" y="373" width="0.2" height="15.0" fill="rgb(253,121,51)" rx="2" ry="2" />
|
|
<text x="841.39" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (23 samples, 0.12%)</title><rect x="830.7" y="549" width="1.3" height="15.0" fill="rgb(208,167,34)" rx="2" ry="2" />
|
|
<text x="833.66" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_qmdpi_ctx_init (7 samples, 0.04%)</title><rect x="691.8" y="341" width="0.4" height="15.0" fill="rgb(214,48,29)" rx="2" ry="2" />
|
|
<text x="694.80" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (13 samples, 0.07%)</title><rect x="462.5" y="453" width="0.8" height="15.0" fill="rgb(222,98,20)" rx="2" ry="2" />
|
|
<text x="465.53" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="829.1" y="197" width="0.1" height="15.0" fill="rgb(212,70,43)" rx="2" ry="2" />
|
|
<text x="832.07" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (9 samples, 0.05%)</title><rect x="836.1" y="277" width="0.5" height="15.0" fill="rgb(252,82,9)" rx="2" ry="2" />
|
|
<text x="839.09" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (3 samples, 0.02%)</title><rect x="519.8" y="293" width="0.1" height="15.0" fill="rgb(232,151,10)" rx="2" ry="2" />
|
|
<text x="522.77" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (3 samples, 0.02%)</title><rect x="297.6" y="565" width="0.2" height="15.0" fill="rgb(217,90,47)" rx="2" ry="2" />
|
|
<text x="300.64" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_flow_offload (7 samples, 0.04%)</title><rect x="523.8" y="309" width="0.4" height="15.0" fill="rgb(213,41,43)" rx="2" ry="2" />
|
|
<text x="526.78" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="837.9" y="325" width="0.1" height="15.0" fill="rgb(223,24,23)" rx="2" ry="2" />
|
|
<text x="840.86" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (7 samples, 0.04%)</title><rect x="376.2" y="373" width="0.4" height="15.0" fill="rgb(240,168,16)" rx="2" ry="2" />
|
|
<text x="379.19" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (5 samples, 0.03%)</title><rect x="777.9" y="405" width="0.3" height="15.0" fill="rgb(246,138,38)" rx="2" ry="2" />
|
|
<text x="780.90" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (5 samples, 0.03%)</title><rect x="295.8" y="597" width="0.3" height="15.0" fill="rgb(223,83,29)" rx="2" ry="2" />
|
|
<text x="298.81" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (3 samples, 0.02%)</title><rect x="828.4" y="581" width="0.2" height="15.0" fill="rgb(238,41,22)" rx="2" ry="2" />
|
|
<text x="831.42" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (5 samples, 0.03%)</title><rect x="361.1" y="373" width="0.3" height="15.0" fill="rgb(213,193,4)" rx="2" ry="2" />
|
|
<text x="364.14" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_stat_application_metrics_count_set (2 samples, 0.01%)</title><rect x="674.9" y="309" width="0.1" height="15.0" fill="rgb(208,217,19)" rx="2" ry="2" />
|
|
<text x="677.92" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_qmdpi_ctx_init (3 samples, 0.02%)</title><rect x="520.2" y="325" width="0.2" height="15.0" fill="rgb(248,0,1)" rx="2" ry="2" />
|
|
<text x="523.24" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>srt_attribute_set_ip_asn (4 samples, 0.02%)</title><rect x="357.4" y="357" width="0.3" height="15.0" fill="rgb(254,39,8)" rx="2" ry="2" />
|
|
<text x="360.42" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (15 samples, 0.08%)</title><rect x="379.0" y="405" width="0.9" height="15.0" fill="rgb(220,122,10)" rx="2" ry="2" />
|
|
<text x="382.02" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (24 samples, 0.12%)</title><rect x="299.5" y="341" width="1.4" height="15.0" fill="rgb(210,195,7)" rx="2" ry="2" />
|
|
<text x="302.47" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (11 samples, 0.06%)</title><rect x="568.8" y="309" width="0.7" height="15.0" fill="rgb(226,212,32)" rx="2" ry="2" />
|
|
<text x="571.81" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="466.4" y="325" width="0.1" height="15.0" fill="rgb(245,137,52)" rx="2" ry="2" />
|
|
<text x="469.42" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (4 samples, 0.02%)</title><rect x="606.8" y="373" width="0.2" height="15.0" fill="rgb(223,167,14)" rx="2" ry="2" />
|
|
<text x="609.76" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (2 samples, 0.01%)</title><rect x="406.9" y="517" width="0.1" height="15.0" fill="rgb(206,49,47)" rx="2" ry="2" />
|
|
<text x="409.87" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_init_sleeper (4 samples, 0.02%)</title><rect x="785.3" y="485" width="0.2" height="15.0" fill="rgb(253,22,31)" rx="2" ry="2" />
|
|
<text x="788.28" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (7 samples, 0.04%)</title><rect x="828.6" y="453" width="0.4" height="15.0" fill="rgb(207,167,13)" rx="2" ry="2" />
|
|
<text x="831.59" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_polling_inject_context (2 samples, 0.01%)</title><rect x="715.8" y="405" width="0.1" height="15.0" fill="rgb(254,11,36)" rx="2" ry="2" />
|
|
<text x="718.82" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (4 samples, 0.02%)</title><rect x="567.0" y="293" width="0.3" height="15.0" fill="rgb(236,108,42)" rx="2" ry="2" />
|
|
<text x="570.04" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_nanosleep (42 samples, 0.21%)</title><rect x="783.0" y="501" width="2.5" height="15.0" fill="rgb(230,113,54)" rx="2" ry="2" />
|
|
<text x="786.03" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="376.8" y="245" width="0.2" height="15.0" fill="rgb(244,86,27)" rx="2" ry="2" />
|
|
<text x="379.84" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="828.0" y="373" width="0.2" height="15.0" fill="rgb(252,100,4)" rx="2" ry="2" />
|
|
<text x="831.00" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (2 samples, 0.01%)</title><rect x="361.4" y="357" width="0.2" height="15.0" fill="rgb(253,227,2)" rx="2" ry="2" />
|
|
<text x="364.43" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="779.6" y="357" width="0.1" height="15.0" fill="rgb(229,222,35)" rx="2" ry="2" />
|
|
<text x="782.61" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (3 samples, 0.02%)</title><rect x="837.8" y="421" width="0.2" height="15.0" fill="rgb(239,83,50)" rx="2" ry="2" />
|
|
<text x="840.80" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="665.7" y="341" width="0.1" height="15.0" fill="rgb(210,185,25)" rx="2" ry="2" />
|
|
<text x="668.65" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (17 samples, 0.09%)</title><rect x="363.5" y="421" width="1.0" height="15.0" fill="rgb(207,219,48)" rx="2" ry="2" />
|
|
<text x="366.50" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (12 samples, 0.06%)</title><rect x="298.8" y="293" width="0.7" height="15.0" fill="rgb(228,227,51)" rx="2" ry="2" />
|
|
<text x="301.76" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (52 samples, 0.26%)</title><rect x="371.4" y="245" width="3.1" height="15.0" fill="rgb(249,19,21)" rx="2" ry="2" />
|
|
<text x="374.41" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (3 samples, 0.02%)</title><rect x="374.6" y="261" width="0.2" height="15.0" fill="rgb(247,10,0)" rx="2" ry="2" />
|
|
<text x="377.59" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (22 samples, 0.11%)</title><rect x="300.9" y="389" width="1.3" height="15.0" fill="rgb(224,156,21)" rx="2" ry="2" />
|
|
<text x="303.88" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="649.4" y="309" width="0.1" height="15.0" fill="rgb(210,35,49)" rx="2" ry="2" />
|
|
<text x="652.37" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (4 samples, 0.02%)</title><rect x="779.3" y="437" width="0.2" height="15.0" fill="rgb(243,173,13)" rx="2" ry="2" />
|
|
<text x="782.26" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (3 samples, 0.02%)</title><rect x="703.1" y="325" width="0.1" height="15.0" fill="rgb(252,224,38)" rx="2" ry="2" />
|
|
<text x="706.07" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (1,087 samples, 5.44%)</title><rect x="514.2" y="421" width="64.2" height="15.0" fill="rgb(221,55,26)" rx="2" ry="2" />
|
|
<text x="517.22" y="431.5" >stream_..</text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (7 samples, 0.04%)</title><rect x="313.9" y="213" width="0.4" height="15.0" fill="rgb(233,112,31)" rx="2" ry="2" />
|
|
<text x="316.87" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="480.9" y="341" width="0.1" height="15.0" fill="rgb(235,95,11)" rx="2" ry="2" />
|
|
<text x="483.88" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,401 samples, 7.01%)</title><rect x="297.9" y="613" width="82.7" height="15.0" fill="rgb(224,139,9)" rx="2" ry="2" />
|
|
<text x="300.93" y="623.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="300.5" y="229" width="0.3" height="15.0" fill="rgb(225,220,47)" rx="2" ry="2" />
|
|
<text x="303.47" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>append_common_field (4 samples, 0.02%)</title><rect x="383.2" y="341" width="0.2" height="15.0" fill="rgb(236,184,18)" rx="2" ry="2" />
|
|
<text x="386.21" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>capture_packet_scan_proto_addr (5 samples, 0.03%)</title><rect x="578.8" y="325" width="0.3" height="15.0" fill="rgb(250,73,42)" rx="2" ry="2" />
|
|
<text x="581.84" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="514.1" y="357" width="0.1" height="15.0" fill="rgb(245,151,50)" rx="2" ry="2" />
|
|
<text x="517.10" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_integer (2 samples, 0.01%)</title><rect x="827.3" y="325" width="0.1" height="15.0" fill="rgb(245,36,22)" rx="2" ry="2" />
|
|
<text x="830.30" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (11 samples, 0.06%)</title><rect x="838.0" y="469" width="0.6" height="15.0" fill="rgb(232,91,53)" rx="2" ry="2" />
|
|
<text x="840.98" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="828.2" y="485" width="0.2" height="15.0" fill="rgb(230,224,50)" rx="2" ry="2" />
|
|
<text x="831.24" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (24 samples, 0.12%)</title><rect x="315.8" y="245" width="1.4" height="15.0" fill="rgb(221,102,39)" rx="2" ry="2" />
|
|
<text x="318.76" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="382.3" y="181" width="0.1" height="15.0" fill="rgb(243,156,21)" rx="2" ry="2" />
|
|
<text x="385.27" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (8 samples, 0.04%)</title><rect x="829.8" y="437" width="0.4" height="15.0" fill="rgb(250,35,54)" rx="2" ry="2" />
|
|
<text x="832.77" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (13 samples, 0.07%)</title><rect x="831.2" y="533" width="0.8" height="15.0" fill="rgb(234,93,26)" rx="2" ry="2" />
|
|
<text x="834.25" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (10 samples, 0.05%)</title><rect x="303.4" y="405" width="0.6" height="15.0" fill="rgb(237,150,45)" rx="2" ry="2" />
|
|
<text x="306.36" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_dynamic_table_row_metric_values_incrby (5 samples, 0.03%)</title><rect x="777.9" y="421" width="0.3" height="15.0" fill="rgb(212,204,8)" rx="2" ry="2" />
|
|
<text x="780.90" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (36 samples, 0.18%)</title><rect x="821.6" y="469" width="2.2" height="15.0" fill="rgb(236,132,21)" rx="2" ry="2" />
|
|
<text x="824.63" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (3 samples, 0.02%)</title><rect x="608.7" y="229" width="0.2" height="15.0" fill="rgb(222,30,22)" rx="2" ry="2" />
|
|
<text x="611.70" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="825.6" y="197" width="0.5" height="15.0" fill="rgb(219,161,18)" rx="2" ry="2" />
|
|
<text x="828.58" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (5 samples, 0.03%)</title><rect x="681.4" y="325" width="0.2" height="15.0" fill="rgb(211,189,14)" rx="2" ry="2" />
|
|
<text x="684.35" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="286.0" y="581" width="0.1" height="15.0" fill="rgb(225,51,4)" rx="2" ry="2" />
|
|
<text x="288.95" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_record (80 samples, 0.40%)</title><rect x="665.9" y="357" width="4.7" height="15.0" fill="rgb(251,129,53)" rx="2" ry="2" />
|
|
<text x="668.89" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (2 samples, 0.01%)</title><rect x="832.1" y="549" width="0.1" height="15.0" fill="rgb(210,219,14)" rx="2" ry="2" />
|
|
<text x="835.08" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (6 samples, 0.03%)</title><rect x="302.2" y="389" width="0.3" height="15.0" fill="rgb(208,135,20)" rx="2" ry="2" />
|
|
<text x="305.18" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="460.1" y="453" width="0.1" height="15.0" fill="rgb(243,209,1)" rx="2" ry="2" />
|
|
<text x="463.11" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (5 samples, 0.03%)</title><rect x="374.8" y="277" width="0.3" height="15.0" fill="rgb(224,178,49)" rx="2" ry="2" />
|
|
<text x="377.77" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (153 samples, 0.77%)</title><rect x="305.9" y="341" width="9.0" height="15.0" fill="rgb(253,161,29)" rx="2" ry="2" />
|
|
<text x="308.90" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="779.6" y="341" width="0.1" height="15.0" fill="rgb(234,110,46)" rx="2" ry="2" />
|
|
<text x="782.61" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="828.7" y="165" width="0.3" height="15.0" fill="rgb(241,3,22)" rx="2" ry="2" />
|
|
<text x="831.71" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (3 samples, 0.02%)</title><rect x="608.7" y="261" width="0.2" height="15.0" fill="rgb(213,189,44)" rx="2" ry="2" />
|
|
<text x="611.70" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="708.0" y="277" width="0.2" height="15.0" fill="rgb(246,91,11)" rx="2" ry="2" />
|
|
<text x="710.97" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (5 samples, 0.03%)</title><rect x="298.3" y="245" width="0.3" height="15.0" fill="rgb(241,180,11)" rx="2" ry="2" />
|
|
<text x="301.29" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_get (2 samples, 0.01%)</title><rect x="479.7" y="469" width="0.1" height="15.0" fill="rgb(233,13,46)" rx="2" ry="2" />
|
|
<text x="482.70" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ftp.so] (2 samples, 0.01%)</title><rect x="353.1" y="357" width="0.1" height="15.0" fill="rgb(237,48,53)" rx="2" ry="2" />
|
|
<text x="356.11" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (5 samples, 0.03%)</title><rect x="304.3" y="501" width="0.3" height="15.0" fill="rgb(249,215,16)" rx="2" ry="2" />
|
|
<text x="307.31" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (9 samples, 0.05%)</title><rect x="651.3" y="293" width="0.5" height="15.0" fill="rgb(235,71,31)" rx="2" ry="2" />
|
|
<text x="654.25" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (5 samples, 0.03%)</title><rect x="692.3" y="277" width="0.3" height="15.0" fill="rgb(215,5,15)" rx="2" ry="2" />
|
|
<text x="695.27" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (151 samples, 0.76%)</title><rect x="306.0" y="293" width="8.9" height="15.0" fill="rgb(219,83,8)" rx="2" ry="2" />
|
|
<text x="309.02" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_item_embed_free (9 samples, 0.05%)</title><rect x="351.5" y="309" width="0.5" height="15.0" fill="rgb(250,15,29)" rx="2" ry="2" />
|
|
<text x="354.46" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (8 samples, 0.04%)</title><rect x="383.4" y="261" width="0.5" height="15.0" fill="rgb(215,220,31)" rx="2" ry="2" />
|
|
<text x="386.45" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="838.6" y="325" width="0.1" height="15.0" fill="rgb(224,50,48)" rx="2" ry="2" />
|
|
<text x="841.63" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (7 samples, 0.04%)</title><rect x="350.5" y="293" width="0.4" height="15.0" fill="rgb(213,76,52)" rx="2" ry="2" />
|
|
<text x="353.52" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (19 samples, 0.10%)</title><rect x="610.0" y="293" width="1.1" height="15.0" fill="rgb(253,188,43)" rx="2" ry="2" />
|
|
<text x="613.00" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.03%)</title><rect x="674.7" y="341" width="0.3" height="15.0" fill="rgb(243,148,13)" rx="2" ry="2" />
|
|
<text x="677.74" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (4 samples, 0.02%)</title><rect x="302.5" y="453" width="0.3" height="15.0" fill="rgb(228,25,23)" rx="2" ry="2" />
|
|
<text x="305.54" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (8 samples, 0.04%)</title><rect x="467.5" y="357" width="0.5" height="15.0" fill="rgb(225,210,7)" rx="2" ry="2" />
|
|
<text x="470.54" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (3 samples, 0.02%)</title><rect x="838.4" y="309" width="0.2" height="15.0" fill="rgb(227,225,13)" rx="2" ry="2" />
|
|
<text x="841.39" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (2 samples, 0.01%)</title><rect x="356.7" y="357" width="0.1" height="15.0" fill="rgb(221,120,4)" rx="2" ry="2" />
|
|
<text x="359.65" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="299.8" y="213" width="0.6" height="15.0" fill="rgb(237,46,13)" rx="2" ry="2" />
|
|
<text x="302.82" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_stat_application_metrics_count_set (2 samples, 0.01%)</title><rect x="659.9" y="325" width="0.1" height="15.0" fill="rgb(208,141,6)" rx="2" ry="2" />
|
|
<text x="662.87" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clone (7,002 samples, 35.02%)</title><rect x="407.5" y="629" width="413.2" height="15.0" fill="rgb(245,3,18)" rx="2" ry="2" />
|
|
<text x="410.46" y="639.5" >__clone</text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="351.3" y="293" width="0.2" height="15.0" fill="rgb(224,90,38)" rx="2" ry="2" />
|
|
<text x="354.34" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (5 samples, 0.03%)</title><rect x="821.3" y="405" width="0.3" height="15.0" fill="rgb(224,90,35)" rx="2" ry="2" />
|
|
<text x="824.28" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="829.8" y="341" width="0.2" height="15.0" fill="rgb(209,218,48)" rx="2" ry="2" />
|
|
<text x="832.77" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (6 samples, 0.03%)</title><rect x="685.0" y="405" width="0.4" height="15.0" fill="rgb(207,83,0)" rx="2" ry="2" />
|
|
<text x="688.01" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (2 samples, 0.01%)</title><rect x="700.0" y="293" width="0.1" height="15.0" fill="rgb(211,183,2)" rx="2" ry="2" />
|
|
<text x="703.00" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="644.8" y="325" width="0.1" height="15.0" fill="rgb(211,83,50)" rx="2" ry="2" />
|
|
<text x="647.82" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (169 samples, 0.85%)</title><rect x="605.2" y="421" width="10.0" height="15.0" fill="rgb(231,105,50)" rx="2" ry="2" />
|
|
<text x="608.22" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="459.8" y="405" width="0.1" height="15.0" fill="rgb(248,96,30)" rx="2" ry="2" />
|
|
<text x="462.75" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="775.5" y="517" width="0.2" height="15.0" fill="rgb(207,219,31)" rx="2" ry="2" />
|
|
<text x="778.54" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="680.1" y="373" width="0.2" height="15.0" fill="rgb(242,65,13)" rx="2" ry="2" />
|
|
<text x="683.11" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (13 samples, 0.07%)</title><rect x="714.3" y="325" width="0.7" height="15.0" fill="rgb(206,109,15)" rx="2" ry="2" />
|
|
<text x="717.28" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_dynamic_table_row_metric_values_incrby (6 samples, 0.03%)</title><rect x="363.5" y="325" width="0.4" height="15.0" fill="rgb(218,118,27)" rx="2" ry="2" />
|
|
<text x="366.50" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_ipport_union_addr (2 samples, 0.01%)</title><rect x="509.3" y="421" width="0.1" height="15.0" fill="rgb(244,155,52)" rx="2" ry="2" />
|
|
<text x="512.32" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_add (22 samples, 0.11%)</title><rect x="482.7" y="485" width="1.3" height="15.0" fill="rgb(216,144,45)" rx="2" ry="2" />
|
|
<text x="485.71" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_field_parser (6 samples, 0.03%)</title><rect x="301.5" y="341" width="0.3" height="15.0" fill="rgb(228,115,30)" rx="2" ry="2" />
|
|
<text x="304.47" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_dl_io_get1_rawpkt_meta (11 samples, 0.06%)</title><rect x="459.3" y="469" width="0.6" height="15.0" fill="rgb(236,31,22)" rx="2" ry="2" />
|
|
<text x="462.28" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (211 samples, 1.06%)</title><rect x="321.7" y="197" width="12.5" height="15.0" fill="rgb(214,171,10)" rx="2" ry="2" />
|
|
<text x="324.72" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="359.2" y="309" width="0.2" height="15.0" fill="rgb(232,146,19)" rx="2" ry="2" />
|
|
<text x="362.25" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (6 samples, 0.03%)</title><rect x="586.2" y="309" width="0.3" height="15.0" fill="rgb(233,208,32)" rx="2" ry="2" />
|
|
<text x="589.16" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="520.0" y="325" width="0.1" height="15.0" fill="rgb(210,164,13)" rx="2" ry="2" />
|
|
<text x="523.01" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[capture_packet_plug.so] (6 samples, 0.03%)</title><rect x="640.3" y="357" width="0.4" height="15.0" fill="rgb(215,126,45)" rx="2" ry="2" />
|
|
<text x="643.34" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (5 samples, 0.03%)</title><rect x="838.6" y="629" width="0.3" height="15.0" fill="rgb(247,65,36)" rx="2" ry="2" />
|
|
<text x="841.63" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_check (28 samples, 0.14%)</title><rect x="686.4" y="405" width="1.7" height="15.0" fill="rgb(237,154,25)" rx="2" ry="2" />
|
|
<text x="689.43" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___printf_fp_l (4 samples, 0.02%)</title><rect x="304.4" y="309" width="0.2" height="15.0" fill="rgb(249,165,48)" rx="2" ry="2" />
|
|
<text x="307.37" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (8 samples, 0.04%)</title><rect x="526.7" y="277" width="0.5" height="15.0" fill="rgb(245,144,16)" rx="2" ry="2" />
|
|
<text x="529.73" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_dl_io_get1_rawpkt_meta (2 samples, 0.01%)</title><rect x="488.4" y="485" width="0.1" height="15.0" fill="rgb(228,118,25)" rx="2" ry="2" />
|
|
<text x="491.37" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (557 samples, 2.79%)</title><rect x="315.6" y="357" width="32.8" height="15.0" fill="rgb(216,51,13)" rx="2" ry="2" />
|
|
<text x="318.58" y="367.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>app_worker_process (2 samples, 0.01%)</title><rect x="361.4" y="325" width="0.2" height="15.0" fill="rgb(213,210,19)" rx="2" ry="2" />
|
|
<text x="364.43" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (10 samples, 0.05%)</title><rect x="613.2" y="325" width="0.6" height="15.0" fill="rgb(242,151,10)" rx="2" ry="2" />
|
|
<text x="616.25" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (2 samples, 0.01%)</title><rect x="824.6" y="213" width="0.2" height="15.0" fill="rgb(206,13,26)" rx="2" ry="2" />
|
|
<text x="827.64" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (48 samples, 0.24%)</title><rect x="364.5" y="485" width="2.8" height="15.0" fill="rgb(205,162,52)" rx="2" ry="2" />
|
|
<text x="367.50" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="351.6" y="245" width="0.1" height="15.0" fill="rgb(241,207,26)" rx="2" ry="2" />
|
|
<text x="354.58" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (5 samples, 0.03%)</title><rect x="382.9" y="293" width="0.3" height="15.0" fill="rgb(232,23,25)" rx="2" ry="2" />
|
|
<text x="385.91" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (7 samples, 0.04%)</title><rect x="828.6" y="325" width="0.4" height="15.0" fill="rgb(219,58,35)" rx="2" ry="2" />
|
|
<text x="831.59" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x509_parse_certificate_detail (18 samples, 0.09%)</title><rect x="841.0" y="421" width="1.0" height="15.0" fill="rgb(250,40,13)" rx="2" ry="2" />
|
|
<text x="843.99" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (13 samples, 0.07%)</title><rect x="365.0" y="341" width="0.7" height="15.0" fill="rgb(227,57,18)" rx="2" ry="2" />
|
|
<text x="367.97" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="699.9" y="309" width="0.1" height="15.0" fill="rgb(244,59,49)" rx="2" ry="2" />
|
|
<text x="702.88" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (4,252 samples, 21.27%)</title><rect x="34.2" y="581" width="250.9" height="15.0" fill="rgb(211,138,23)" rx="2" ry="2" />
|
|
<text x="37.20" y="591.5" >[libmaat4.so.4.0]</text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="693.6" y="277" width="0.1" height="15.0" fill="rgb(211,186,4)" rx="2" ry="2" />
|
|
<text x="696.63" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="840.4" y="293" width="0.1" height="15.0" fill="rgb(248,180,25)" rx="2" ry="2" />
|
|
<text x="843.40" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (3 samples, 0.02%)</title><rect x="828.2" y="453" width="0.2" height="15.0" fill="rgb(234,98,42)" rx="2" ry="2" />
|
|
<text x="831.24" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (55 samples, 0.28%)</title><rect x="380.7" y="533" width="3.2" height="15.0" fill="rgb(253,41,8)" rx="2" ry="2" />
|
|
<text x="383.67" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="830.0" y="277" width="0.2" height="15.0" fill="rgb(241,226,18)" rx="2" ry="2" />
|
|
<text x="832.95" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (7 samples, 0.04%)</title><rect x="305.0" y="213" width="0.4" height="15.0" fill="rgb(205,57,8)" rx="2" ry="2" />
|
|
<text x="308.01" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="406.9" y="549" width="0.1" height="15.0" fill="rgb(229,4,17)" rx="2" ry="2" />
|
|
<text x="409.87" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="304.1" y="341" width="0.2" height="15.0" fill="rgb(237,151,15)" rx="2" ry="2" />
|
|
<text x="307.13" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_payload (29 samples, 0.15%)</title><rect x="571.2" y="293" width="1.7" height="15.0" fill="rgb(212,62,42)" rx="2" ry="2" />
|
|
<text x="574.23" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (47 samples, 0.24%)</title><rect x="608.5" y="389" width="2.7" height="15.0" fill="rgb(231,203,45)" rx="2" ry="2" />
|
|
<text x="611.47" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (10 samples, 0.05%)</title><rect x="315.0" y="309" width="0.6" height="15.0" fill="rgb(242,182,1)" rx="2" ry="2" />
|
|
<text x="317.99" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (90 samples, 0.45%)</title><rect x="369.5" y="277" width="5.3" height="15.0" fill="rgb(234,128,35)" rx="2" ry="2" />
|
|
<text x="372.46" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (5 samples, 0.03%)</title><rect x="361.1" y="389" width="0.3" height="15.0" fill="rgb(254,112,46)" rx="2" ry="2" />
|
|
<text x="364.14" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (7 samples, 0.04%)</title><rect x="693.2" y="293" width="0.4" height="15.0" fill="rgb(229,155,23)" rx="2" ry="2" />
|
|
<text x="696.15" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (4 samples, 0.02%)</title><rect x="466.7" y="341" width="0.2" height="15.0" fill="rgb(234,201,35)" rx="2" ry="2" />
|
|
<text x="469.66" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="383.3" y="245" width="0.1" height="15.0" fill="rgb(227,194,49)" rx="2" ry="2" />
|
|
<text x="386.33" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="838.7" y="437" width="0.2" height="15.0" fill="rgb(247,131,47)" rx="2" ry="2" />
|
|
<text x="841.74" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_add (21 samples, 0.11%)</title><rect x="616.6" y="389" width="1.2" height="15.0" fill="rgb(236,2,28)" rx="2" ry="2" />
|
|
<text x="619.55" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qm_malloc_default (2 samples, 0.01%)</title><rect x="313.3" y="181" width="0.1" height="15.0" fill="rgb(241,93,31)" rx="2" ry="2" />
|
|
<text x="316.28" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="675.1" y="309" width="0.1" height="15.0" fill="rgb(206,99,21)" rx="2" ry="2" />
|
|
<text x="678.10" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (15 samples, 0.08%)</title><rect x="486.2" y="501" width="0.9" height="15.0" fill="rgb(253,71,31)" rx="2" ry="2" />
|
|
<text x="489.25" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (8 samples, 0.04%)</title><rect x="380.1" y="549" width="0.5" height="15.0" fill="rgb(228,105,12)" rx="2" ry="2" />
|
|
<text x="383.14" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (414 samples, 2.07%)</title><rect x="690.8" y="405" width="24.4" height="15.0" fill="rgb(207,185,50)" rx="2" ry="2" />
|
|
<text x="693.79" y="415.5" >c..</text>
|
|
</g>
|
|
<g >
|
|
<title>layer_addr_ntop_r (4 samples, 0.02%)</title><rect x="828.0" y="437" width="0.2" height="15.0" fill="rgb(213,76,29)" rx="2" ry="2" />
|
|
<text x="831.00" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="293.2" y="597" width="0.1" height="15.0" fill="rgb(222,134,8)" rx="2" ry="2" />
|
|
<text x="296.21" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (10 samples, 0.05%)</title><rect x="367.7" y="453" width="0.6" height="15.0" fill="rgb(230,14,15)" rx="2" ry="2" />
|
|
<text x="370.69" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="835.9" y="229" width="0.1" height="15.0" fill="rgb(252,172,13)" rx="2" ry="2" />
|
|
<text x="838.85" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (17 samples, 0.09%)</title><rect x="365.9" y="389" width="1.0" height="15.0" fill="rgb(218,82,5)" rx="2" ry="2" />
|
|
<text x="368.92" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_udp_entry (31 samples, 0.16%)</title><rect x="713.3" y="373" width="1.9" height="15.0" fill="rgb(244,11,46)" rx="2" ry="2" />
|
|
<text x="716.34" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (20 samples, 0.10%)</title><rect x="827.1" y="549" width="1.1" height="15.0" fill="rgb(235,193,53)" rx="2" ry="2" />
|
|
<text x="830.06" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="826.1" y="213" width="0.4" height="15.0" fill="rgb(213,94,6)" rx="2" ry="2" />
|
|
<text x="829.06" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (106 samples, 0.53%)</title><rect x="298.1" y="581" width="6.2" height="15.0" fill="rgb(253,166,1)" rx="2" ry="2" />
|
|
<text x="301.05" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (4 samples, 0.02%)</title><rect x="715.8" y="437" width="0.2" height="15.0" fill="rgb(219,62,35)" rx="2" ry="2" />
|
|
<text x="718.76" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsscanf (3 samples, 0.02%)</title><rect x="302.2" y="293" width="0.2" height="15.0" fill="rgb(216,5,22)" rx="2" ry="2" />
|
|
<text x="305.18" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (10 samples, 0.05%)</title><rect x="315.0" y="293" width="0.6" height="15.0" fill="rgb(243,91,31)" rx="2" ry="2" />
|
|
<text x="317.99" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (3 samples, 0.02%)</title><rect x="827.1" y="437" width="0.2" height="15.0" fill="rgb(219,34,17)" rx="2" ry="2" />
|
|
<text x="830.12" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="561.8" y="309" width="0.1" height="15.0" fill="rgb(230,19,15)" rx="2" ry="2" />
|
|
<text x="564.79" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (48 samples, 0.24%)</title><rect x="364.5" y="453" width="2.8" height="15.0" fill="rgb(223,51,13)" rx="2" ry="2" />
|
|
<text x="367.50" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (8 samples, 0.04%)</title><rect x="383.4" y="229" width="0.5" height="15.0" fill="rgb(242,196,32)" rx="2" ry="2" />
|
|
<text x="386.45" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new00 (2 samples, 0.01%)</title><rect x="610.8" y="213" width="0.1" height="15.0" fill="rgb(206,151,53)" rx="2" ry="2" />
|
|
<text x="613.77" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (174 samples, 0.87%)</title><rect x="660.8" y="373" width="10.2" height="15.0" fill="rgb(248,23,41)" rx="2" ry="2" />
|
|
<text x="663.76" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (11 samples, 0.06%)</title><rect x="824.0" y="149" width="0.6" height="15.0" fill="rgb(216,74,5)" rx="2" ry="2" />
|
|
<text x="826.99" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (15 samples, 0.08%)</title><rect x="299.5" y="229" width="0.9" height="15.0" fill="rgb(249,176,47)" rx="2" ry="2" />
|
|
<text x="302.53" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="321.2" y="165" width="0.2" height="15.0" fill="rgb(219,109,27)" rx="2" ry="2" />
|
|
<text x="324.24" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (93 samples, 0.47%)</title><rect x="821.6" y="629" width="5.5" height="15.0" fill="rgb(239,190,0)" rx="2" ry="2" />
|
|
<text x="824.57" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findLineEnd_CR (2 samples, 0.01%)</title><rect x="559.1" y="261" width="0.2" height="15.0" fill="rgb(213,91,19)" rx="2" ry="2" />
|
|
<text x="562.13" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new0 (7 samples, 0.04%)</title><rect x="571.6" y="261" width="0.4" height="15.0" fill="rgb(225,92,17)" rx="2" ry="2" />
|
|
<text x="574.58" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="828.4" y="469" width="0.2" height="15.0" fill="rgb(218,51,21)" rx="2" ry="2" />
|
|
<text x="831.42" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (43 samples, 0.22%)</title><rect x="640.7" y="357" width="2.5" height="15.0" fill="rgb(206,72,36)" rx="2" ry="2" />
|
|
<text x="643.69" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="699.9" y="325" width="0.1" height="15.0" fill="rgb(246,109,4)" rx="2" ry="2" />
|
|
<text x="702.88" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (45 samples, 0.23%)</title><rect x="608.6" y="357" width="2.6" height="15.0" fill="rgb(228,121,13)" rx="2" ry="2" />
|
|
<text x="611.59" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (8 samples, 0.04%)</title><rect x="827.5" y="405" width="0.5" height="15.0" fill="rgb(250,97,42)" rx="2" ry="2" />
|
|
<text x="830.53" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (8 samples, 0.04%)</title><rect x="383.4" y="469" width="0.5" height="15.0" fill="rgb(230,12,41)" rx="2" ry="2" />
|
|
<text x="386.45" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="838.4" y="261" width="0.2" height="15.0" fill="rgb(242,224,44)" rx="2" ry="2" />
|
|
<text x="841.45" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>append_common_field (4 samples, 0.02%)</title><rect x="828.0" y="469" width="0.2" height="15.0" fill="rgb(207,35,54)" rx="2" ry="2" />
|
|
<text x="831.00" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="836.0" y="293" width="0.1" height="15.0" fill="rgb(226,91,15)" rx="2" ry="2" />
|
|
<text x="838.97" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (3 samples, 0.02%)</title><rect x="613.4" y="293" width="0.1" height="15.0" fill="rgb(244,179,37)" rx="2" ry="2" />
|
|
<text x="616.37" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.03%)</title><rect x="382.9" y="325" width="0.3" height="15.0" fill="rgb(237,158,28)" rx="2" ry="2" />
|
|
<text x="385.91" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (8 samples, 0.04%)</title><rect x="609.5" y="293" width="0.5" height="15.0" fill="rgb(243,219,16)" rx="2" ry="2" />
|
|
<text x="612.53" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_new (30 samples, 0.15%)</title><rect x="650.2" y="325" width="1.8" height="15.0" fill="rgb(246,217,18)" rx="2" ry="2" />
|
|
<text x="653.19" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="838.7" y="197" width="0.2" height="15.0" fill="rgb(236,183,11)" rx="2" ry="2" />
|
|
<text x="841.74" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (4 samples, 0.02%)</title><rect x="382.4" y="421" width="0.2" height="15.0" fill="rgb(242,169,38)" rx="2" ry="2" />
|
|
<text x="385.38" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="826.1" y="197" width="0.4" height="15.0" fill="rgb(214,115,1)" rx="2" ry="2" />
|
|
<text x="829.06" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (3 samples, 0.02%)</title><rect x="560.6" y="309" width="0.2" height="15.0" fill="rgb(229,133,51)" rx="2" ry="2" />
|
|
<text x="563.61" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vfs_write (2 samples, 0.01%)</title><rect x="674.2" y="117" width="0.1" height="15.0" fill="rgb(209,38,49)" rx="2" ry="2" />
|
|
<text x="677.15" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="482.1" y="309" width="0.1" height="15.0" fill="rgb(210,87,26)" rx="2" ry="2" />
|
|
<text x="485.12" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (3 samples, 0.02%)</title><rect x="464.6" y="437" width="0.2" height="15.0" fill="rgb(239,79,4)" rx="2" ry="2" />
|
|
<text x="467.59" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="822.5" y="213" width="0.1" height="15.0" fill="rgb(232,144,2)" rx="2" ry="2" />
|
|
<text x="825.52" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_add_struct (2 samples, 0.01%)</title><rect x="457.9" y="485" width="0.1" height="15.0" fill="rgb(254,61,27)" rx="2" ry="2" />
|
|
<text x="460.92" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (2 samples, 0.01%)</title><rect x="511.4" y="405" width="0.1" height="15.0" fill="rgb(233,77,7)" rx="2" ry="2" />
|
|
<text x="514.39" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="821.9" y="293" width="0.2" height="15.0" fill="rgb(236,151,37)" rx="2" ry="2" />
|
|
<text x="824.92" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="649.2" y="309" width="0.1" height="15.0" fill="rgb(208,167,18)" rx="2" ry="2" />
|
|
<text x="652.19" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="708.3" y="325" width="0.1" height="15.0" fill="rgb(245,136,35)" rx="2" ry="2" />
|
|
<text x="711.32" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hack_digit.13666 (2 samples, 0.01%)</title><rect x="362.1" y="229" width="0.1" height="15.0" fill="rgb(219,12,18)" rx="2" ry="2" />
|
|
<text x="365.08" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[dns.so] (3 samples, 0.02%)</title><rect x="681.2" y="309" width="0.2" height="15.0" fill="rgb(241,108,25)" rx="2" ry="2" />
|
|
<text x="684.17" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_calloc (3 samples, 0.02%)</title><rect x="512.5" y="421" width="0.1" height="15.0" fill="rgb(220,67,49)" rx="2" ry="2" />
|
|
<text x="515.45" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset_sse2 (2 samples, 0.01%)</title><rect x="582.9" y="325" width="0.1" height="15.0" fill="rgb(213,214,11)" rx="2" ry="2" />
|
|
<text x="585.92" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>send_log_by_type (2 samples, 0.01%)</title><rect x="837.4" y="325" width="0.1" height="15.0" fill="rgb(225,123,10)" rx="2" ry="2" />
|
|
<text x="840.39" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MD5_Update (2 samples, 0.01%)</title><rect x="382.5" y="341" width="0.1" height="15.0" fill="rgb(210,30,24)" rx="2" ry="2" />
|
|
<text x="385.50" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="302.0" y="341" width="0.2" height="15.0" fill="rgb(232,83,0)" rx="2" ry="2" />
|
|
<text x="305.01" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__tls_get_addr (8 samples, 0.04%)</title><rect x="760.0" y="549" width="0.4" height="15.0" fill="rgb(237,199,28)" rx="2" ry="2" />
|
|
<text x="762.96" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (9 samples, 0.05%)</title><rect x="442.6" y="533" width="0.6" height="15.0" fill="rgb(215,4,27)" rx="2" ry="2" />
|
|
<text x="445.64" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="569.3" y="293" width="0.2" height="15.0" fill="rgb(226,80,16)" rx="2" ry="2" />
|
|
<text x="572.34" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithHost (515 samples, 2.58%)</title><rect x="528.4" y="277" width="30.4" height="15.0" fill="rgb(208,109,38)" rx="2" ry="2" />
|
|
<text x="531.39" y="287.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (7 samples, 0.04%)</title><rect x="607.3" y="389" width="0.4" height="15.0" fill="rgb(233,192,20)" rx="2" ry="2" />
|
|
<text x="610.29" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="821.7" y="389" width="0.4" height="15.0" fill="rgb(210,102,14)" rx="2" ry="2" />
|
|
<text x="824.75" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_ids (4 samples, 0.02%)</title><rect x="381.6" y="197" width="0.2" height="15.0" fill="rgb(254,18,11)" rx="2" ry="2" />
|
|
<text x="384.56" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_string (2 samples, 0.01%)</title><rect x="821.8" y="309" width="0.1" height="15.0" fill="rgb(208,143,25)" rx="2" ry="2" />
|
|
<text x="824.81" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (13 samples, 0.07%)</title><rect x="824.8" y="165" width="0.8" height="15.0" fill="rgb(236,196,20)" rx="2" ry="2" />
|
|
<text x="827.82" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (28 samples, 0.14%)</title><rect x="828.6" y="549" width="1.6" height="15.0" fill="rgb(248,116,20)" rx="2" ry="2" />
|
|
<text x="831.59" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="657.2" y="309" width="0.1" height="15.0" fill="rgb(234,19,35)" rx="2" ry="2" />
|
|
<text x="660.16" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (3 samples, 0.02%)</title><rect x="681.0" y="309" width="0.2" height="15.0" fill="rgb(247,58,44)" rx="2" ry="2" />
|
|
<text x="684.00" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (2 samples, 0.01%)</title><rect x="779.3" y="405" width="0.1" height="15.0" fill="rgb(241,201,34)" rx="2" ry="2" />
|
|
<text x="782.26" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (12 samples, 0.06%)</title><rect x="829.1" y="261" width="0.7" height="15.0" fill="rgb(235,141,9)" rx="2" ry="2" />
|
|
<text x="832.07" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (5 samples, 0.03%)</title><rect x="382.6" y="325" width="0.3" height="15.0" fill="rgb(206,111,41)" rx="2" ry="2" />
|
|
<text x="385.62" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_sse2_pminub (5 samples, 0.03%)</title><rect x="365.4" y="325" width="0.3" height="15.0" fill="rgb(242,72,39)" rx="2" ry="2" />
|
|
<text x="368.45" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>session_marker_generate_identify_string_by_notify_ctx (17 samples, 0.09%)</title><rect x="365.9" y="405" width="1.0" height="15.0" fill="rgb(241,79,14)" rx="2" ry="2" />
|
|
<text x="368.92" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (6 samples, 0.03%)</title><rect x="519.2" y="325" width="0.4" height="15.0" fill="rgb(208,120,51)" rx="2" ry="2" />
|
|
<text x="522.24" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="835.9" y="261" width="0.1" height="15.0" fill="rgb(246,221,9)" rx="2" ry="2" />
|
|
<text x="838.85" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="824.6" y="149" width="0.2" height="15.0" fill="rgb(222,132,12)" rx="2" ry="2" />
|
|
<text x="827.64" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (2 samples, 0.01%)</title><rect x="583.2" y="309" width="0.1" height="15.0" fill="rgb(225,130,36)" rx="2" ry="2" />
|
|
<text x="586.21" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (57 samples, 0.29%)</title><rect x="691.2" y="373" width="3.4" height="15.0" fill="rgb(245,7,8)" rx="2" ry="2" />
|
|
<text x="694.21" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (2 samples, 0.01%)</title><rect x="838.6" y="437" width="0.1" height="15.0" fill="rgb(242,163,22)" rx="2" ry="2" />
|
|
<text x="841.63" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (4 samples, 0.02%)</title><rect x="838.4" y="389" width="0.2" height="15.0" fill="rgb(208,13,44)" rx="2" ry="2" />
|
|
<text x="841.39" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (11 samples, 0.06%)</title><rect x="363.9" y="325" width="0.6" height="15.0" fill="rgb(226,39,27)" rx="2" ry="2" />
|
|
<text x="366.85" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="566.2" y="341" width="0.1" height="15.0" fill="rgb(240,130,2)" rx="2" ry="2" />
|
|
<text x="569.16" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (10 samples, 0.05%)</title><rect x="705.6" y="373" width="0.6" height="15.0" fill="rgb(221,40,43)" rx="2" ry="2" />
|
|
<text x="708.61" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (67 samples, 0.34%)</title><rect x="474.5" y="485" width="4.0" height="15.0" fill="rgb(239,161,45)" rx="2" ry="2" />
|
|
<text x="477.51" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>____strtod_l_internal (5 samples, 0.03%)</title><rect x="366.0" y="293" width="0.3" height="15.0" fill="rgb(233,116,18)" rx="2" ry="2" />
|
|
<text x="369.04" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (28 samples, 0.14%)</title><rect x="836.1" y="437" width="1.6" height="15.0" fill="rgb(212,208,34)" rx="2" ry="2" />
|
|
<text x="839.09" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (43 samples, 0.22%)</title><rect x="380.7" y="453" width="2.5" height="15.0" fill="rgb(219,76,20)" rx="2" ry="2" />
|
|
<text x="383.67" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="823.8" y="485" width="0.1" height="15.0" fill="rgb(233,149,8)" rx="2" ry="2" />
|
|
<text x="826.75" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (3 samples, 0.02%)</title><rect x="376.0" y="293" width="0.1" height="15.0" fill="rgb(241,17,34)" rx="2" ry="2" />
|
|
<text x="378.95" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___printf_fp_l (7 samples, 0.04%)</title><rect x="366.4" y="293" width="0.5" height="15.0" fill="rgb(210,154,42)" rx="2" ry="2" />
|
|
<text x="369.45" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="609.0" y="261" width="0.1" height="15.0" fill="rgb(242,65,38)" rx="2" ry="2" />
|
|
<text x="612.00" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_async_data_get (2 samples, 0.01%)</title><rect x="821.2" y="325" width="0.1" height="15.0" fill="rgb(216,112,43)" rx="2" ry="2" />
|
|
<text x="824.16" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="826.7" y="325" width="0.3" height="15.0" fill="rgb(234,78,42)" rx="2" ry="2" />
|
|
<text x="829.71" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (3 samples, 0.02%)</title><rect x="525.9" y="245" width="0.2" height="15.0" fill="rgb(205,29,40)" rx="2" ry="2" />
|
|
<text x="528.91" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (18 samples, 0.09%)</title><rect x="650.7" y="309" width="1.1" height="15.0" fill="rgb(248,42,23)" rx="2" ry="2" />
|
|
<text x="653.72" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (2 samples, 0.01%)</title><rect x="382.3" y="213" width="0.1" height="15.0" fill="rgb(206,215,38)" rx="2" ry="2" />
|
|
<text x="385.27" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (6 samples, 0.03%)</title><rect x="364.1" y="277" width="0.4" height="15.0" fill="rgb(253,52,45)" rx="2" ry="2" />
|
|
<text x="367.15" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="840.6" y="389" width="0.2" height="15.0" fill="rgb(205,215,54)" rx="2" ry="2" />
|
|
<text x="843.57" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="303.1" y="293" width="0.3" height="15.0" fill="rgb(237,30,53)" rx="2" ry="2" />
|
|
<text x="306.07" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (8 samples, 0.04%)</title><rect x="350.5" y="341" width="0.4" height="15.0" fill="rgb(248,174,54)" rx="2" ry="2" />
|
|
<text x="353.46" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fieldstat_dynamic_table_row_metric_values_incrby (5 samples, 0.03%)</title><rect x="466.9" y="341" width="0.3" height="15.0" fill="rgb(225,200,8)" rx="2" ry="2" />
|
|
<text x="469.89" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (3 samples, 0.02%)</title><rect x="526.4" y="325" width="0.2" height="15.0" fill="rgb(212,179,12)" rx="2" ry="2" />
|
|
<text x="529.38" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (153 samples, 0.77%)</title><rect x="305.9" y="309" width="9.0" height="15.0" fill="rgb(224,94,29)" rx="2" ry="2" />
|
|
<text x="308.90" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="302.4" y="325" width="0.1" height="15.0" fill="rgb(234,207,15)" rx="2" ry="2" />
|
|
<text x="305.36" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (9 samples, 0.05%)</title><rect x="283.8" y="469" width="0.6" height="15.0" fill="rgb(246,193,18)" rx="2" ry="2" />
|
|
<text x="286.83" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (6 samples, 0.03%)</title><rect x="558.4" y="213" width="0.3" height="15.0" fill="rgb(253,119,35)" rx="2" ry="2" />
|
|
<text x="561.37" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="829.2" y="149" width="0.6" height="15.0" fill="rgb(234,45,21)" rx="2" ry="2" />
|
|
<text x="832.18" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="511.7" y="373" width="0.3" height="15.0" fill="rgb(235,53,43)" rx="2" ry="2" />
|
|
<text x="514.74" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (4 samples, 0.02%)</title><rect x="697.1" y="325" width="0.2" height="15.0" fill="rgb(236,62,17)" rx="2" ry="2" />
|
|
<text x="700.11" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (7 samples, 0.04%)</title><rect x="835.4" y="597" width="0.4" height="15.0" fill="rgb(243,182,25)" rx="2" ry="2" />
|
|
<text x="838.38" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (42 samples, 0.21%)</title><rect x="573.1" y="357" width="2.5" height="15.0" fill="rgb(212,167,24)" rx="2" ry="2" />
|
|
<text x="576.12" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="838.6" y="341" width="0.1" height="15.0" fill="rgb(226,208,17)" rx="2" ry="2" />
|
|
<text x="841.63" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (7 samples, 0.04%)</title><rect x="722.7" y="533" width="0.4" height="15.0" fill="rgb(234,185,28)" rx="2" ry="2" />
|
|
<text x="725.72" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="610.5" y="229" width="0.2" height="15.0" fill="rgb(237,123,11)" rx="2" ry="2" />
|
|
<text x="613.48" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (3 samples, 0.02%)</title><rect x="465.8" y="293" width="0.2" height="15.0" fill="rgb(240,75,1)" rx="2" ry="2" />
|
|
<text x="468.83" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_send_burst (35 samples, 0.18%)</title><rect x="758.4" y="565" width="2.0" height="15.0" fill="rgb(208,84,7)" rx="2" ry="2" />
|
|
<text x="761.37" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="589.3" y="325" width="0.3" height="15.0" fill="rgb(229,48,32)" rx="2" ry="2" />
|
|
<text x="592.29" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="579.8" y="325" width="0.4" height="15.0" fill="rgb(210,2,34)" rx="2" ry="2" />
|
|
<text x="582.85" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (8 samples, 0.04%)</title><rect x="383.4" y="453" width="0.5" height="15.0" fill="rgb(214,93,30)" rx="2" ry="2" />
|
|
<text x="386.45" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ipv4_address (6 samples, 0.03%)</title><rect x="359.0" y="357" width="0.4" height="15.0" fill="rgb(211,137,5)" rx="2" ry="2" />
|
|
<text x="362.01" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hack_digit.13666 (2 samples, 0.01%)</title><rect x="304.5" y="293" width="0.1" height="15.0" fill="rgb(249,149,2)" rx="2" ry="2" />
|
|
<text x="307.48" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_scan_integer (2 samples, 0.01%)</title><rect x="821.6" y="325" width="0.1" height="15.0" fill="rgb(246,200,15)" rx="2" ry="2" />
|
|
<text x="824.63" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (106 samples, 0.53%)</title><rect x="298.1" y="549" width="6.2" height="15.0" fill="rgb(206,130,19)" rx="2" ry="2" />
|
|
<text x="301.05" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (29 samples, 0.15%)</title><rect x="359.4" y="357" width="1.7" height="15.0" fill="rgb(248,167,35)" rx="2" ry="2" />
|
|
<text x="362.37" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="285.2" y="565" width="0.8" height="15.0" fill="rgb(228,15,39)" rx="2" ry="2" />
|
|
<text x="288.24" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (3 samples, 0.02%)</title><rect x="828.2" y="581" width="0.2" height="15.0" fill="rgb(253,60,14)" rx="2" ry="2" />
|
|
<text x="831.24" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (18 samples, 0.09%)</title><rect x="466.2" y="373" width="1.0" height="15.0" fill="rgb(248,93,5)" rx="2" ry="2" />
|
|
<text x="469.18" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mpn_extract_double (2 samples, 0.01%)</title><rect x="379.6" y="277" width="0.1" height="15.0" fill="rgb(231,124,17)" rx="2" ry="2" />
|
|
<text x="382.61" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_del (5 samples, 0.03%)</title><rect x="685.6" y="405" width="0.3" height="15.0" fill="rgb(245,148,25)" rx="2" ry="2" />
|
|
<text x="688.60" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (4 samples, 0.02%)</title><rect x="840.6" y="357" width="0.2" height="15.0" fill="rgb(219,217,1)" rx="2" ry="2" />
|
|
<text x="843.57" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_jump_layer.so] (3 samples, 0.02%)</title><rect x="653.9" y="341" width="0.2" height="15.0" fill="rgb(229,25,44)" rx="2" ry="2" />
|
|
<text x="656.91" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (10 samples, 0.05%)</title><rect x="315.0" y="245" width="0.6" height="15.0" fill="rgb(209,161,9)" rx="2" ry="2" />
|
|
<text x="317.99" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (8 samples, 0.04%)</title><rect x="829.8" y="453" width="0.4" height="15.0" fill="rgb(241,0,52)" rx="2" ry="2" />
|
|
<text x="832.77" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="453" width="0.1" height="15.0" fill="rgb(232,16,54)" rx="2" ry="2" />
|
|
<text x="13.71" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="367.3" y="389" width="0.2" height="15.0" fill="rgb(251,160,37)" rx="2" ry="2" />
|
|
<text x="370.33" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="10.7" y="293" width="0.1" height="15.0" fill="rgb(232,69,34)" rx="2" ry="2" />
|
|
<text x="13.71" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>send_log_by_type (2 samples, 0.01%)</title><rect x="833.6" y="453" width="0.1" height="15.0" fill="rgb(209,12,43)" rx="2" ry="2" />
|
|
<text x="836.61" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (2 samples, 0.01%)</title><rect x="826.5" y="405" width="0.1" height="15.0" fill="rgb(217,181,19)" rx="2" ry="2" />
|
|
<text x="829.47" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (26 samples, 0.13%)</title><rect x="286.8" y="565" width="1.6" height="15.0" fill="rgb(208,159,14)" rx="2" ry="2" />
|
|
<text x="289.84" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="840.4" y="309" width="0.1" height="15.0" fill="rgb(225,155,7)" rx="2" ry="2" />
|
|
<text x="843.40" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (23 samples, 0.12%)</title><rect x="822.2" y="293" width="1.3" height="15.0" fill="rgb(205,21,15)" rx="2" ry="2" />
|
|
<text x="825.16" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TCP_ENTRY (5 samples, 0.03%)</title><rect x="352.9" y="405" width="0.3" height="15.0" fill="rgb(254,86,41)" rx="2" ry="2" />
|
|
<text x="355.93" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_vfscanf (7 samples, 0.04%)</title><rect x="348.4" y="293" width="0.5" height="15.0" fill="rgb(223,67,35)" rx="2" ry="2" />
|
|
<text x="351.45" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.04%)</title><rect x="826.1" y="165" width="0.4" height="15.0" fill="rgb(205,103,12)" rx="2" ry="2" />
|
|
<text x="829.06" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_message (15 samples, 0.08%)</title><rect x="827.1" y="501" width="0.9" height="15.0" fill="rgb(211,26,17)" rx="2" ry="2" />
|
|
<text x="830.12" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_thread (47 samples, 0.24%)</title><rect x="835.9" y="629" width="2.7" height="15.0" fill="rgb(237,129,9)" rx="2" ry="2" />
|
|
<text x="838.85" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_calloc (5 samples, 0.03%)</title><rect x="459.6" y="453" width="0.3" height="15.0" fill="rgb(248,111,15)" rx="2" ry="2" />
|
|
<text x="462.63" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (557 samples, 2.79%)</title><rect x="315.6" y="373" width="32.8" height="15.0" fill="rgb(247,62,32)" rx="2" ry="2" />
|
|
<text x="318.58" y="383.5" >ht..</text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (53 samples, 0.27%)</title><rect x="823.9" y="597" width="3.2" height="15.0" fill="rgb(222,62,7)" rx="2" ry="2" />
|
|
<text x="826.93" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (6 samples, 0.03%)</title><rect x="300.5" y="245" width="0.3" height="15.0" fill="rgb(223,154,44)" rx="2" ry="2" />
|
|
<text x="303.47" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="352.0" y="277" width="0.2" height="15.0" fill="rgb(251,108,36)" rx="2" ry="2" />
|
|
<text x="355.05" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_app_properties_policy (4 samples, 0.02%)</title><rect x="355.7" y="341" width="0.2" height="15.0" fill="rgb(231,190,49)" rx="2" ry="2" />
|
|
<text x="358.71" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (13 samples, 0.07%)</title><rect x="829.0" y="453" width="0.8" height="15.0" fill="rgb(239,97,15)" rx="2" ry="2" />
|
|
<text x="832.01" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (12 samples, 0.06%)</title><rect x="829.1" y="293" width="0.7" height="15.0" fill="rgb(235,121,50)" rx="2" ry="2" />
|
|
<text x="832.07" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="569.2" y="293" width="0.1" height="15.0" fill="rgb(244,48,19)" rx="2" ry="2" />
|
|
<text x="572.22" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (11 samples, 0.06%)</title><rect x="610.1" y="261" width="0.6" height="15.0" fill="rgb(206,185,15)" rx="2" ry="2" />
|
|
<text x="613.06" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_add (19 samples, 0.10%)</title><rect x="615.2" y="421" width="1.1" height="15.0" fill="rgb(226,11,45)" rx="2" ry="2" />
|
|
<text x="618.20" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.5] (531 samples, 2.66%)</title><rect x="726.7" y="549" width="31.4" height="15.0" fill="rgb(254,47,5)" rx="2" ry="2" />
|
|
<text x="729.73" y="559.5" >[l..</text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (4 samples, 0.02%)</title><rect x="383.2" y="485" width="0.2" height="15.0" fill="rgb(246,153,37)" rx="2" ry="2" />
|
|
<text x="386.21" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vfprintf_internal (13 samples, 0.07%)</title><rect x="348.9" y="293" width="0.7" height="15.0" fill="rgb(227,78,26)" rx="2" ry="2" />
|
|
<text x="351.86" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (45 samples, 0.23%)</title><rect x="682.4" y="437" width="2.6" height="15.0" fill="rgb(206,183,22)" rx="2" ry="2" />
|
|
<text x="685.36" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (47 samples, 0.24%)</title><rect x="835.9" y="517" width="2.7" height="15.0" fill="rgb(231,7,31)" rx="2" ry="2" />
|
|
<text x="838.85" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="456.0" y="389" width="0.2" height="15.0" fill="rgb(213,98,22)" rx="2" ry="2" />
|
|
<text x="458.97" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_stream (15 samples, 0.08%)</title><rect x="564.1" y="341" width="0.9" height="15.0" fill="rgb(239,134,23)" rx="2" ry="2" />
|
|
<text x="567.15" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (76 samples, 0.38%)</title><rect x="298.1" y="469" width="4.4" height="15.0" fill="rgb(238,151,39)" rx="2" ry="2" />
|
|
<text x="301.05" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (6 samples, 0.03%)</title><rect x="838.0" y="437" width="0.3" height="15.0" fill="rgb(230,136,22)" rx="2" ry="2" />
|
|
<text x="840.98" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (56 samples, 0.28%)</title><rect x="691.3" y="357" width="3.3" height="15.0" fill="rgb(220,194,10)" rx="2" ry="2" />
|
|
<text x="694.27" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (2 samples, 0.01%)</title><rect x="350.0" y="277" width="0.2" height="15.0" fill="rgb(251,150,40)" rx="2" ry="2" />
|
|
<text x="353.04" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (1,285 samples, 6.43%)</title><rect x="304.3" y="581" width="75.8" height="15.0" fill="rgb(219,216,10)" rx="2" ry="2" />
|
|
<text x="307.31" y="591.5" >ipv4_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>[libfieldstat3.so] (4 samples, 0.02%)</title><rect x="378.8" y="357" width="0.2" height="15.0" fill="rgb(243,152,25)" rx="2" ry="2" />
|
|
<text x="381.78" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (9 samples, 0.05%)</title><rect x="822.9" y="245" width="0.6" height="15.0" fill="rgb(217,20,51)" rx="2" ry="2" />
|
|
<text x="825.93" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (12 samples, 0.06%)</title><rect x="778.2" y="437" width="0.7" height="15.0" fill="rgb(215,133,21)" rx="2" ry="2" />
|
|
<text x="781.20" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_create (3 samples, 0.02%)</title><rect x="832.7" y="517" width="0.2" height="15.0" fill="rgb(241,72,12)" rx="2" ry="2" />
|
|
<text x="835.72" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="589.3" y="357" width="0.3" height="15.0" fill="rgb(231,54,5)" rx="2" ry="2" />
|
|
<text x="592.29" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (200 samples, 1.00%)</title><rect x="368.3" y="485" width="11.8" height="15.0" fill="rgb(252,138,11)" rx="2" ry="2" />
|
|
<text x="371.34" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="583.4" y="309" width="0.2" height="15.0" fill="rgb(248,30,34)" rx="2" ry="2" />
|
|
<text x="586.39" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.02%)</title><rect x="693.2" y="261" width="0.2" height="15.0" fill="rgb(227,87,46)" rx="2" ry="2" />
|
|
<text x="696.21" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (18 samples, 0.09%)</title><rect x="375.1" y="357" width="1.1" height="15.0" fill="rgb(253,187,34)" rx="2" ry="2" />
|
|
<text x="378.12" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="520.2" y="293" width="0.2" height="15.0" fill="rgb(224,0,49)" rx="2" ry="2" />
|
|
<text x="523.24" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_flags.so] (29 samples, 0.15%)</title><rect x="359.4" y="405" width="1.7" height="15.0" fill="rgb(213,155,18)" rx="2" ry="2" />
|
|
<text x="362.37" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_timespec64 (7 samples, 0.04%)</title><rect x="782.6" y="501" width="0.4" height="15.0" fill="rgb(227,201,27)" rx="2" ry="2" />
|
|
<text x="785.62" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="468.3" y="373" width="0.1" height="15.0" fill="rgb(224,65,54)" rx="2" ry="2" />
|
|
<text x="471.31" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (10 samples, 0.05%)</title><rect x="382.6" y="389" width="0.6" height="15.0" fill="rgb(223,19,51)" rx="2" ry="2" />
|
|
<text x="385.62" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (3 samples, 0.02%)</title><rect x="834.6" y="613" width="0.1" height="15.0" fill="rgb(249,195,13)" rx="2" ry="2" />
|
|
<text x="837.55" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.03%)</title><rect x="584.7" y="277" width="0.3" height="15.0" fill="rgb(249,82,50)" rx="2" ry="2" />
|
|
<text x="587.74" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="381.8" y="149" width="0.5" height="15.0" fill="rgb(222,83,12)" rx="2" ry="2" />
|
|
<text x="384.79" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (4 samples, 0.02%)</title><rect x="480.6" y="373" width="0.2" height="15.0" fill="rgb(234,119,6)" rx="2" ry="2" />
|
|
<text x="483.58" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (4 samples, 0.02%)</title><rect x="383.2" y="373" width="0.2" height="15.0" fill="rgb(236,148,53)" rx="2" ry="2" />
|
|
<text x="386.21" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (55 samples, 0.28%)</title><rect x="380.7" y="549" width="3.2" height="15.0" fill="rgb(250,66,54)" rx="2" ry="2" />
|
|
<text x="383.67" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_free (2 samples, 0.01%)</title><rect x="611.1" y="309" width="0.1" height="15.0" fill="rgb(252,124,3)" rx="2" ry="2" />
|
|
<text x="614.12" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>maat_state_set_scan_district (3 samples, 0.02%)</title><rect x="368.6" y="277" width="0.2" height="15.0" fill="rgb(246,135,39)" rx="2" ry="2" />
|
|
<text x="371.63" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (5 samples, 0.03%)</title><rect x="459.9" y="469" width="0.3" height="15.0" fill="rgb(246,126,11)" rx="2" ry="2" />
|
|
<text x="462.93" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>c2i_ASN1_OBJECT (2 samples, 0.01%)</title><rect x="827.9" y="261" width="0.1" height="15.0" fill="rgb(217,133,32)" rx="2" ry="2" />
|
|
<text x="830.89" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (24 samples, 0.12%)</title><rect x="299.5" y="357" width="1.4" height="15.0" fill="rgb(221,206,8)" rx="2" ry="2" />
|
|
<text x="302.47" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_del (6 samples, 0.03%)</title><rect x="616.0" y="405" width="0.3" height="15.0" fill="rgb(206,171,43)" rx="2" ry="2" />
|
|
<text x="618.96" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>EC_GROUP_new_by_curve_name (2 samples, 0.01%)</title><rect x="827.7" y="245" width="0.1" height="15.0" fill="rgb(254,223,34)" rx="2" ry="2" />
|
|
<text x="830.71" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="377.0" y="277" width="0.4" height="15.0" fill="rgb(238,135,21)" rx="2" ry="2" />
|
|
<text x="380.01" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (22 samples, 0.11%)</title><rect x="822.2" y="277" width="1.3" height="15.0" fill="rgb(245,190,37)" rx="2" ry="2" />
|
|
<text x="825.22" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>____strtod_l_internal (3 samples, 0.02%)</title><rect x="348.7" y="277" width="0.2" height="15.0" fill="rgb(233,18,2)" rx="2" ry="2" />
|
|
<text x="351.69" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (7 samples, 0.04%)</title><rect x="350.5" y="277" width="0.4" height="15.0" fill="rgb(212,9,11)" rx="2" ry="2" />
|
|
<text x="353.52" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="487.0" y="453" width="0.1" height="15.0" fill="rgb(230,172,34)" rx="2" ry="2" />
|
|
<text x="490.02" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>save_polling_inject_context (32 samples, 0.16%)</title><rect x="458.3" y="485" width="1.9" height="15.0" fill="rgb(252,210,20)" rx="2" ry="2" />
|
|
<text x="461.34" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="354.5" y="309" width="0.1" height="15.0" fill="rgb(233,154,15)" rx="2" ry="2" />
|
|
<text x="357.53" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[firewall.so] (7 samples, 0.04%)</title><rect x="705.7" y="357" width="0.4" height="15.0" fill="rgb(230,176,35)" rx="2" ry="2" />
|
|
<text x="708.67" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (13 samples, 0.07%)</title><rect x="297.0" y="597" width="0.8" height="15.0" fill="rgb(214,85,19)" rx="2" ry="2" />
|
|
<text x="300.05" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (47 samples, 0.24%)</title><rect x="835.9" y="485" width="2.7" height="15.0" fill="rgb(241,165,42)" rx="2" ry="2" />
|
|
<text x="838.85" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sprintf (4 samples, 0.02%)</title><rect x="828.0" y="389" width="0.2" height="15.0" fill="rgb(218,4,52)" rx="2" ry="2" />
|
|
<text x="831.00" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.02%)</title><rect x="680.1" y="357" width="0.2" height="15.0" fill="rgb(240,212,0)" rx="2" ry="2" />
|
|
<text x="683.11" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaat4.so.4.0] (2 samples, 0.01%)</title><rect x="702.4" y="277" width="0.1" height="15.0" fill="rgb(224,210,4)" rx="2" ry="2" />
|
|
<text x="705.36" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (5 samples, 0.03%)</title><rect x="303.1" y="277" width="0.3" height="15.0" fill="rgb(222,16,17)" rx="2" ry="2" />
|
|
<text x="306.07" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (3 samples, 0.02%)</title><rect x="828.2" y="341" width="0.2" height="15.0" fill="rgb(247,218,41)" rx="2" ry="2" />
|
|
<text x="831.24" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (58 samples, 0.29%)</title><rect x="611.3" y="357" width="3.4" height="15.0" fill="rgb(228,41,26)" rx="2" ry="2" />
|
|
<text x="614.30" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[session_record.so] (3 samples, 0.02%)</title><rect x="837.3" y="373" width="0.2" height="15.0" fill="rgb(240,216,9)" rx="2" ry="2" />
|
|
<text x="840.33" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (3 samples, 0.02%)</title><rect x="837.8" y="437" width="0.2" height="15.0" fill="rgb(238,32,22)" rx="2" ry="2" />
|
|
<text x="840.80" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (3 samples, 0.02%)</title><rect x="304.0" y="373" width="0.1" height="15.0" fill="rgb(247,152,0)" rx="2" ry="2" />
|
|
<text x="306.95" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cJSON_Delete (3 samples, 0.02%)</title><rect x="582.4" y="309" width="0.2" height="15.0" fill="rgb(205,46,43)" rx="2" ry="2" />
|
|
<text x="585.44" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_parse_handshake (15 samples, 0.08%)</title><rect x="827.1" y="485" width="0.9" height="15.0" fill="rgb(247,196,26)" rx="2" ry="2" />
|
|
<text x="830.12" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_start_range_ns (17 samples, 0.09%)</title><rect x="783.3" y="469" width="1.0" height="15.0" fill="rgb(250,18,0)" rx="2" ry="2" />
|
|
<text x="786.27" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_sse2 (3 samples, 0.02%)</title><rect x="286.5" y="565" width="0.2" height="15.0" fill="rgb(243,174,54)" rx="2" ry="2" />
|
|
<text x="289.54" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (4 samples, 0.02%)</title><rect x="588.6" y="309" width="0.2" height="15.0" fill="rgb(237,220,53)" rx="2" ry="2" />
|
|
<text x="591.58" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_streamentry (39 samples, 0.20%)</title><rect x="821.6" y="533" width="2.3" height="15.0" fill="rgb(210,85,14)" rx="2" ry="2" />
|
|
<text x="824.57" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcjson.so.1.7.8] (20 samples, 0.10%)</title><rect x="348.4" y="341" width="1.2" height="15.0" fill="rgb(250,156,28)" rx="2" ry="2" />
|
|
<text x="351.45" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (4 samples, 0.02%)</title><rect x="821.3" y="325" width="0.2" height="15.0" fill="rgb(245,167,53)" rx="2" ry="2" />
|
|
<text x="824.28" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.BChVja] (2 samples, 0.01%)</title><rect x="608.8" y="197" width="0.1" height="15.0" fill="rgb(245,229,46)" rx="2" ry="2" />
|
|
<text x="611.76" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[ssl.so] (3 samples, 0.02%)</title><rect x="838.7" y="405" width="0.2" height="15.0" fill="rgb(245,117,38)" rx="2" ry="2" />
|
|
<text x="841.74" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timeouts_get (4 samples, 0.02%)</title><rect x="780.0" y="549" width="0.3" height="15.0" fill="rgb(230,56,3)" rx="2" ry="2" />
|
|
<text x="783.02" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (26 samples, 0.13%)</title><rect x="355.6" y="405" width="1.6" height="15.0" fill="rgb(251,192,32)" rx="2" ry="2" />
|
|
<text x="358.65" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (3 samples, 0.02%)</title><rect x="302.8" y="341" width="0.2" height="15.0" fill="rgb(245,53,23)" rx="2" ry="2" />
|
|
<text x="305.83" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__IO_vsprintf (21 samples, 0.11%)</title><rect x="359.8" y="309" width="1.3" height="15.0" fill="rgb(231,23,51)" rx="2" ry="2" />
|
|
<text x="362.84" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (10 samples, 0.05%)</title><rect x="303.4" y="325" width="0.6" height="15.0" fill="rgb(249,133,7)" rx="2" ry="2" />
|
|
<text x="306.36" y="335.5" ></text>
|
|
</g>
|
|
</g>
|
|
</svg>
|