2109 lines
92 KiB
XML
2109 lines
92 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="582" onload="init(evt)" viewBox="0 0 1200 582" 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="582.0" fill="url(#background)" />
|
|
<text id="title" x="600.00" y="24" >Flame Graph</text>
|
|
<text id="details" x="10.00" y="565" > </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="565" > </text>
|
|
<g id="frames">
|
|
<g >
|
|
<title>sapp_marsio_35 (17,348 samples, 3.03%)</title><rect x="1148.8" y="517" width="35.8" height="15.0" fill="rgb(220,24,35)" rx="2" ry="2" />
|
|
<text x="1151.84" y="527.5" >sap..</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (65 samples, 0.01%)</title><rect x="1178.9" y="213" width="0.2" height="15.0" fill="rgb(205,153,49)" rx="2" ry="2" />
|
|
<text x="1181.92" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (53 samples, 0.01%)</title><rect x="1160.5" y="69" width="0.1" height="15.0" fill="rgb(242,175,22)" rx="2" ry="2" />
|
|
<text x="1163.46" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (108 samples, 0.02%)</title><rect x="1166.0" y="373" width="0.2" height="15.0" fill="rgb(223,10,39)" rx="2" ry="2" />
|
|
<text x="1168.98" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (57 samples, 0.01%)</title><rect x="1157.4" y="453" width="0.1" height="15.0" fill="rgb(223,108,16)" rx="2" ry="2" />
|
|
<text x="1160.43" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_dns_entry (153 samples, 0.03%)</title><rect x="1183.4" y="421" width="0.3" height="15.0" fill="rgb(247,168,41)" rx="2" ry="2" />
|
|
<text x="1186.39" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (211 samples, 0.04%)</title><rect x="1162.0" y="277" width="0.4" height="15.0" fill="rgb(233,64,4)" rx="2" ry="2" />
|
|
<text x="1164.97" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (171 samples, 0.03%)</title><rect x="1183.4" y="453" width="0.3" height="15.0" fill="rgb(234,10,7)" rx="2" ry="2" />
|
|
<text x="1186.35" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (270 samples, 0.05%)</title><rect x="1163.1" y="469" width="0.5" height="15.0" fill="rgb(214,114,5)" rx="2" ry="2" />
|
|
<text x="1166.08" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (1,388 samples, 0.24%)</title><rect x="1159.7" y="373" width="2.9" height="15.0" fill="rgb(243,62,36)" rx="2" ry="2" />
|
|
<text x="1162.71" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_mark_v4 (60 samples, 0.01%)</title><rect x="1172.8" y="277" width="0.2" height="15.0" fill="rgb(206,106,4)" rx="2" ry="2" />
|
|
<text x="1175.84" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (71 samples, 0.01%)</title><rect x="1162.7" y="261" width="0.1" height="15.0" fill="rgb(244,14,24)" rx="2" ry="2" />
|
|
<text x="1165.65" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (259 samples, 0.05%)</title><rect x="1168.1" y="229" width="0.6" height="15.0" fill="rgb(250,204,38)" rx="2" ry="2" />
|
|
<text x="1171.12" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (187 samples, 0.03%)</title><rect x="1162.6" y="325" width="0.4" height="15.0" fill="rgb(222,63,34)" rx="2" ry="2" />
|
|
<text x="1165.59" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (194 samples, 0.03%)</title><rect x="1169.4" y="181" width="0.4" height="15.0" fill="rgb(223,53,45)" rx="2" ry="2" />
|
|
<text x="1172.36" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (127 samples, 0.02%)</title><rect x="1159.8" y="181" width="0.3" height="15.0" fill="rgb(205,223,23)" rx="2" ry="2" />
|
|
<text x="1162.81" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (76 samples, 0.01%)</title><rect x="1175.3" y="245" width="0.2" height="15.0" fill="rgb(253,137,54)" rx="2" ry="2" />
|
|
<text x="1178.34" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (7,305 samples, 1.27%)</title><rect x="1164.5" y="421" width="15.1" height="15.0" fill="rgb(246,223,38)" rx="2" ry="2" />
|
|
<text x="1167.52" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (265 samples, 0.05%)</title><rect x="1169.2" y="197" width="0.6" height="15.0" fill="rgb(207,171,32)" rx="2" ry="2" />
|
|
<text x="1172.21" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (95 samples, 0.02%)</title><rect x="1159.3" y="325" width="0.2" height="15.0" fill="rgb(222,176,49)" rx="2" ry="2" />
|
|
<text x="1162.34" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_tcpall_entry (148 samples, 0.03%)</title><rect x="1170.9" y="229" width="0.3" height="15.0" fill="rgb(214,175,5)" rx="2" ry="2" />
|
|
<text x="1173.88" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (1,588 samples, 0.28%)</title><rect x="1159.7" y="389" width="3.3" height="15.0" fill="rgb(213,3,6)" rx="2" ry="2" />
|
|
<text x="1162.71" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bool_matcher_match (79 samples, 0.01%)</title><rect x="1150.3" y="453" width="0.1" height="15.0" fill="rgb(220,144,36)" rx="2" ry="2" />
|
|
<text x="1153.28" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (133 samples, 0.02%)</title><rect x="1159.8" y="213" width="0.3" height="15.0" fill="rgb(211,95,28)" rx="2" ry="2" />
|
|
<text x="1162.81" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (68 samples, 0.01%)</title><rect x="1162.7" y="197" width="0.1" height="15.0" fill="rgb(217,229,51)" rx="2" ry="2" />
|
|
<text x="1165.65" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (67 samples, 0.01%)</title><rect x="1162.4" y="309" width="0.2" height="15.0" fill="rgb(244,156,31)" rx="2" ry="2" />
|
|
<text x="1165.42" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (131 samples, 0.02%)</title><rect x="1179.7" y="437" width="0.2" height="15.0" fill="rgb(210,1,5)" rx="2" ry="2" />
|
|
<text x="1182.68" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (84 samples, 0.01%)</title><rect x="1177.0" y="309" width="0.2" height="15.0" fill="rgb(221,20,48)" rx="2" ry="2" />
|
|
<text x="1180.04" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (179 samples, 0.03%)</title><rect x="1159.7" y="261" width="0.4" height="15.0" fill="rgb(209,66,34)" rx="2" ry="2" />
|
|
<text x="1162.71" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (93 samples, 0.02%)</title><rect x="1159.3" y="309" width="0.2" height="15.0" fill="rgb(205,8,6)" rx="2" ry="2" />
|
|
<text x="1162.34" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,098 samples, 0.19%)</title><rect x="1159.7" y="341" width="2.3" height="15.0" fill="rgb(250,216,47)" rx="2" ry="2" />
|
|
<text x="1162.71" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (152 samples, 0.03%)</title><rect x="1183.4" y="405" width="0.3" height="15.0" fill="rgb(230,130,41)" rx="2" ry="2" />
|
|
<text x="1186.39" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (107 samples, 0.02%)</title><rect x="1178.8" y="245" width="0.3" height="15.0" fill="rgb(237,220,9)" rx="2" ry="2" />
|
|
<text x="1181.85" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (179 samples, 0.03%)</title><rect x="1159.7" y="245" width="0.4" height="15.0" fill="rgb(248,75,8)" rx="2" ry="2" />
|
|
<text x="1162.71" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cpuidle_enter_state (2,542 samples, 0.44%)</title><rect x="1184.6" y="405" width="5.2" height="15.0" fill="rgb(218,135,20)" rx="2" ry="2" />
|
|
<text x="1187.58" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (103 samples, 0.02%)</title><rect x="1168.4" y="165" width="0.2" height="15.0" fill="rgb(220,225,26)" rx="2" ry="2" />
|
|
<text x="1171.42" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_dns_entry (70 samples, 0.01%)</title><rect x="1183.8" y="421" width="0.1" height="15.0" fill="rgb(247,4,20)" rx="2" ry="2" />
|
|
<text x="1186.79" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (67 samples, 0.01%)</title><rect x="1168.7" y="229" width="0.1" height="15.0" fill="rgb(244,190,47)" rx="2" ry="2" />
|
|
<text x="1171.66" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (226 samples, 0.04%)</title><rect x="1163.2" y="453" width="0.4" height="15.0" fill="rgb(226,119,2)" rx="2" ry="2" />
|
|
<text x="1166.17" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (139 samples, 0.02%)</title><rect x="1160.4" y="277" width="0.3" height="15.0" fill="rgb(251,211,46)" rx="2" ry="2" />
|
|
<text x="1163.42" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (1,591 samples, 0.28%)</title><rect x="1159.7" y="405" width="3.3" height="15.0" fill="rgb(218,16,47)" rx="2" ry="2" />
|
|
<text x="1162.71" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (281 samples, 0.05%)</title><rect x="1161.0" y="181" width="0.6" height="15.0" fill="rgb(247,116,37)" rx="2" ry="2" />
|
|
<text x="1163.99" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (990 samples, 0.17%)</title><rect x="1159.7" y="309" width="2.0" height="15.0" fill="rgb(230,169,45)" rx="2" ry="2" />
|
|
<text x="1162.71" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (63 samples, 0.01%)</title><rect x="1184.2" y="325" width="0.2" height="15.0" fill="rgb(246,189,1)" rx="2" ry="2" />
|
|
<text x="1187.24" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (68 samples, 0.01%)</title><rect x="1162.7" y="149" width="0.1" height="15.0" fill="rgb(214,167,40)" rx="2" ry="2" />
|
|
<text x="1165.65" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseAppData (62 samples, 0.01%)</title><rect x="1169.2" y="181" width="0.2" height="15.0" fill="rgb(251,48,15)" rx="2" ry="2" />
|
|
<text x="1172.23" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (931 samples, 0.16%)</title><rect x="1177.3" y="293" width="2.0" height="15.0" fill="rgb(205,188,8)" rx="2" ry="2" />
|
|
<text x="1180.34" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (134 samples, 0.02%)</title><rect x="1178.5" y="245" width="0.2" height="15.0" fill="rgb(252,141,12)" rx="2" ry="2" />
|
|
<text x="1181.46" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (211 samples, 0.04%)</title><rect x="1162.0" y="261" width="0.4" height="15.0" fill="rgb(249,191,11)" rx="2" ry="2" />
|
|
<text x="1164.97" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_searchstream (463 samples, 0.08%)</title><rect x="1156.1" y="453" width="0.9" height="15.0" fill="rgb(227,205,8)" rx="2" ry="2" />
|
|
<text x="1159.06" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (187 samples, 0.03%)</title><rect x="1162.0" y="197" width="0.4" height="15.0" fill="rgb(206,136,20)" rx="2" ry="2" />
|
|
<text x="1165.02" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (160 samples, 0.03%)</title><rect x="1177.5" y="229" width="0.3" height="15.0" fill="rgb(238,43,35)" rx="2" ry="2" />
|
|
<text x="1180.52" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>process_ipv4_pkt (59 samples, 0.01%)</title><rect x="1179.3" y="325" width="0.1" height="15.0" fill="rgb(240,186,43)" rx="2" ry="2" />
|
|
<text x="1182.27" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::get_mapped_id (57 samples, 0.01%)</title><rect x="1156.8" y="405" width="0.1" height="15.0" fill="rgb(235,28,1)" rx="2" ry="2" />
|
|
<text x="1159.82" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_scan_intval (1,715 samples, 0.30%)</title><rect x="1151.8" y="501" width="3.5" height="15.0" fill="rgb(239,124,6)" rx="2" ry="2" />
|
|
<text x="1154.79" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CIPv4Match::SearchIP (329 samples, 0.06%)</title><rect x="1158.6" y="485" width="0.7" height="15.0" fill="rgb(227,210,0)" rx="2" ry="2" />
|
|
<text x="1161.64" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (62 samples, 0.01%)</title><rect x="1183.1" y="405" width="0.1" height="15.0" fill="rgb(238,186,42)" rx="2" ry="2" />
|
|
<text x="1186.10" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (51 samples, 0.01%)</title><rect x="1171.8" y="261" width="0.1" height="15.0" fill="rgb(228,49,51)" rx="2" ry="2" />
|
|
<text x="1174.79" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (57 samples, 0.01%)</title><rect x="1160.2" y="133" width="0.1" height="15.0" fill="rgb(249,93,35)" rx="2" ry="2" />
|
|
<text x="1163.21" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_POLLING_ENTRY (63 samples, 0.01%)</title><rect x="1181.5" y="437" width="0.2" height="15.0" fill="rgb(205,79,13)" rx="2" ry="2" />
|
|
<text x="1184.54" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (62 samples, 0.01%)</title><rect x="1183.1" y="469" width="0.1" height="15.0" fill="rgb(224,186,24)" rx="2" ry="2" />
|
|
<text x="1186.10" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (250 samples, 0.04%)</title><rect x="1168.1" y="213" width="0.6" height="15.0" fill="rgb(246,180,43)" rx="2" ry="2" />
|
|
<text x="1171.14" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (482 samples, 0.08%)</title><rect x="1160.8" y="277" width="0.9" height="15.0" fill="rgb(207,76,31)" rx="2" ry="2" />
|
|
<text x="1163.76" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (126 samples, 0.02%)</title><rect x="1159.8" y="133" width="0.3" height="15.0" fill="rgb(211,181,0)" rx="2" ry="2" />
|
|
<text x="1162.81" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (1,257 samples, 0.22%)</title><rect x="1168.1" y="245" width="2.6" height="15.0" fill="rgb(238,181,40)" rx="2" ry="2" />
|
|
<text x="1171.11" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (234 samples, 0.04%)</title><rect x="1174.8" y="213" width="0.5" height="15.0" fill="rgb(249,107,14)" rx="2" ry="2" />
|
|
<text x="1177.85" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (57 samples, 0.01%)</title><rect x="1183.5" y="325" width="0.1" height="15.0" fill="rgb(229,130,4)" rx="2" ry="2" />
|
|
<text x="1186.52" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (54 samples, 0.01%)</title><rect x="1159.3" y="229" width="0.2" height="15.0" fill="rgb(253,52,33)" rx="2" ry="2" />
|
|
<text x="1162.34" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (280 samples, 0.05%)</title><rect x="1161.0" y="165" width="0.6" height="15.0" fill="rgb(221,198,53)" rx="2" ry="2" />
|
|
<text x="1163.99" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (92 samples, 0.02%)</title><rect x="1177.7" y="213" width="0.1" height="15.0" fill="rgb(248,182,17)" rx="2" ry="2" />
|
|
<text x="1180.66" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CNaiveIntervalIndex::Find (81 samples, 0.01%)</title><rect x="1159.1" y="469" width="0.1" height="15.0" fill="rgb(241,173,8)" rx="2" ry="2" />
|
|
<text x="1162.07" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (67 samples, 0.01%)</title><rect x="1183.5" y="357" width="0.1" height="15.0" fill="rgb(206,22,11)" rx="2" ry="2" />
|
|
<text x="1186.50" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (1,155 samples, 0.20%)</title><rect x="1174.0" y="277" width="2.4" height="15.0" fill="rgb(230,91,53)" rx="2" ry="2" />
|
|
<text x="1177.04" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (93 samples, 0.02%)</title><rect x="1159.3" y="293" width="0.2" height="15.0" fill="rgb(226,18,49)" rx="2" ry="2" />
|
|
<text x="1162.34" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_udpate (1,173 samples, 0.20%)</title><rect x="1151.9" y="469" width="2.4" height="15.0" fill="rgb(206,229,22)" rx="2" ry="2" />
|
|
<text x="1154.90" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (878 samples, 0.15%)</title><rect x="1177.4" y="277" width="1.8" height="15.0" fill="rgb(228,119,10)" rx="2" ry="2" />
|
|
<text x="1180.42" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (116 samples, 0.02%)</title><rect x="1159.3" y="357" width="0.3" height="15.0" fill="rgb(224,2,20)" rx="2" ry="2" />
|
|
<text x="1162.34" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (49 samples, 0.01%)</title><rect x="1177.8" y="261" width="0.1" height="15.0" fill="rgb(225,84,33)" rx="2" ry="2" />
|
|
<text x="1180.85" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (115 samples, 0.02%)</title><rect x="1175.0" y="181" width="0.2" height="15.0" fill="rgb(209,22,15)" rx="2" ry="2" />
|
|
<text x="1177.99" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (358 samples, 0.06%)</title><rect x="1170.8" y="245" width="0.7" height="15.0" fill="rgb(205,163,4)" rx="2" ry="2" />
|
|
<text x="1173.75" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (56 samples, 0.01%)</title><rect x="1178.9" y="181" width="0.2" height="15.0" fill="rgb(244,207,17)" rx="2" ry="2" />
|
|
<text x="1181.94" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (123 samples, 0.02%)</title><rect x="1162.0" y="181" width="0.3" height="15.0" fill="rgb(234,168,38)" rx="2" ry="2" />
|
|
<text x="1165.05" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_recv_burst (173 samples, 0.03%)</title><rect x="1180.2" y="437" width="0.3" height="15.0" fill="rgb(246,138,18)" rx="2" ry="2" />
|
|
<text x="1183.18" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (156 samples, 0.03%)</title><rect x="1176.7" y="277" width="0.3" height="15.0" fill="rgb(241,65,42)" rx="2" ry="2" />
|
|
<text x="1179.71" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (73 samples, 0.01%)</title><rect x="1182.9" y="389" width="0.1" height="15.0" fill="rgb(221,201,1)" rx="2" ry="2" />
|
|
<text x="1185.88" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (53 samples, 0.01%)</title><rect x="1184.5" y="437" width="0.1" height="15.0" fill="rgb(242,10,38)" rx="2" ry="2" />
|
|
<text x="1187.46" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::get_mapped_id (125 samples, 0.02%)</title><rect x="1151.5" y="421" width="0.3" height="15.0" fill="rgb(239,168,26)" rx="2" ry="2" />
|
|
<text x="1154.52" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (336 samples, 0.06%)</title><rect x="1160.9" y="213" width="0.7" height="15.0" fill="rgb(229,219,54)" rx="2" ry="2" />
|
|
<text x="1163.88" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (101 samples, 0.02%)</title><rect x="1184.2" y="453" width="0.2" height="15.0" fill="rgb(230,65,30)" rx="2" ry="2" />
|
|
<text x="1187.24" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (52 samples, 0.01%)</title><rect x="1182.7" y="469" width="0.1" height="15.0" fill="rgb(228,156,34)" rx="2" ry="2" />
|
|
<text x="1185.66" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>schedule_idle (88 samples, 0.02%)</title><rect x="1189.8" y="437" width="0.2" height="15.0" fill="rgb(252,114,22)" rx="2" ry="2" />
|
|
<text x="1192.81" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (120 samples, 0.02%)</title><rect x="1159.8" y="117" width="0.3" height="15.0" fill="rgb(237,120,15)" rx="2" ry="2" />
|
|
<text x="1162.82" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (55 samples, 0.01%)</title><rect x="1184.5" y="485" width="0.1" height="15.0" fill="rgb(226,191,28)" rx="2" ry="2" />
|
|
<text x="1187.46" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (1,591 samples, 0.28%)</title><rect x="1159.7" y="421" width="3.3" height="15.0" fill="rgb(221,48,15)" rx="2" ry="2" />
|
|
<text x="1162.71" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_thread (9,145 samples, 1.60%)</title><rect x="1163.8" y="485" width="18.8" height="15.0" fill="rgb(237,78,23)" rx="2" ry="2" />
|
|
<text x="1166.81" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_mark_tcp (292 samples, 0.05%)</title><rect x="1173.4" y="293" width="0.6" height="15.0" fill="rgb(242,91,35)" rx="2" ry="2" />
|
|
<text x="1176.37" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_computeresult (249 samples, 0.04%)</title><rect x="1156.5" y="437" width="0.5" height="15.0" fill="rgb(231,119,14)" rx="2" ry="2" />
|
|
<text x="1159.50" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (58 samples, 0.01%)</title><rect x="1166.1" y="229" width="0.1" height="15.0" fill="rgb(215,164,38)" rx="2" ry="2" />
|
|
<text x="1169.07" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (187 samples, 0.03%)</title><rect x="1162.6" y="341" width="0.4" height="15.0" fill="rgb(233,172,46)" rx="2" ry="2" />
|
|
<text x="1165.59" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (57 samples, 0.01%)</title><rect x="1183.5" y="309" width="0.1" height="15.0" fill="rgb(229,62,6)" rx="2" ry="2" />
|
|
<text x="1186.52" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (57 samples, 0.01%)</title><rect x="1161.6" y="197" width="0.1" height="15.0" fill="rgb(238,177,18)" rx="2" ry="2" />
|
|
<text x="1164.62" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>region_compile (1,355 samples, 0.24%)</title><rect x="1151.9" y="485" width="2.8" height="15.0" fill="rgb(238,217,49)" rx="2" ry="2" />
|
|
<text x="1154.87" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (112 samples, 0.02%)</title><rect x="1183.1" y="501" width="0.2" height="15.0" fill="rgb(215,109,52)" rx="2" ry="2" />
|
|
<text x="1186.10" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__st_pkt_proc_context_check_timeout (55 samples, 0.01%)</title><rect x="1181.8" y="437" width="0.1" height="15.0" fill="rgb(250,176,44)" rx="2" ry="2" />
|
|
<text x="1184.79" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_add (289 samples, 0.05%)</title><rect x="1173.4" y="261" width="0.6" height="15.0" fill="rgb(230,159,38)" rx="2" ry="2" />
|
|
<text x="1176.38" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (72 samples, 0.01%)</title><rect x="1169.9" y="197" width="0.1" height="15.0" fill="rgb(231,46,38)" rx="2" ry="2" />
|
|
<text x="1172.86" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (301 samples, 0.05%)</title><rect x="1169.1" y="213" width="0.7" height="15.0" fill="rgb(238,74,31)" rx="2" ry="2" />
|
|
<text x="1172.15" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>event_base_loop (113 samples, 0.02%)</title><rect x="1181.9" y="437" width="0.2" height="15.0" fill="rgb(240,127,54)" rx="2" ry="2" />
|
|
<text x="1184.90" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clone (9,145 samples, 1.60%)</title><rect x="1163.8" y="501" width="18.8" height="15.0" fill="rgb(237,129,41)" rx="2" ry="2" />
|
|
<text x="1166.81" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (98 samples, 0.02%)</title><rect x="1157.6" y="453" width="0.2" height="15.0" fill="rgb(240,226,53)" rx="2" ry="2" />
|
|
<text x="1160.58" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (1,326 samples, 0.23%)</title><rect x="1176.5" y="325" width="2.8" height="15.0" fill="rgb(223,136,26)" rx="2" ry="2" />
|
|
<text x="1179.54" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_ctrlzone (113 samples, 0.02%)</title><rect x="1179.9" y="437" width="0.3" height="15.0" fill="rgb(243,218,28)" rx="2" ry="2" />
|
|
<text x="1182.95" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (73 samples, 0.01%)</title><rect x="1162.8" y="293" width="0.2" height="15.0" fill="rgb(254,197,24)" rx="2" ry="2" />
|
|
<text x="1165.80" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (100 samples, 0.02%)</title><rect x="1160.1" y="261" width="0.2" height="15.0" fill="rgb(245,22,47)" rx="2" ry="2" />
|
|
<text x="1163.13" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (97 samples, 0.02%)</title><rect x="1182.9" y="453" width="0.2" height="15.0" fill="rgb(248,210,7)" rx="2" ry="2" />
|
|
<text x="1185.88" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (133 samples, 0.02%)</title><rect x="1178.5" y="229" width="0.2" height="15.0" fill="rgb(243,102,38)" rx="2" ry="2" />
|
|
<text x="1181.46" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__calloc (83 samples, 0.01%)</title><rect x="1170.9" y="213" width="0.2" height="15.0" fill="rgb(238,215,24)" rx="2" ry="2" />
|
|
<text x="1173.91" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (107 samples, 0.02%)</title><rect x="1161.7" y="309" width="0.3" height="15.0" fill="rgb(237,211,50)" rx="2" ry="2" />
|
|
<text x="1164.75" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify_tcp (289 samples, 0.05%)</title><rect x="1172.8" y="293" width="0.6" height="15.0" fill="rgb(209,140,31)" rx="2" ry="2" />
|
|
<text x="1175.77" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_check (191 samples, 0.03%)</title><rect x="1173.0" y="261" width="0.4" height="15.0" fill="rgb(207,147,49)" rx="2" ry="2" />
|
|
<text x="1175.98" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (62 samples, 0.01%)</title><rect x="1183.1" y="437" width="0.1" height="15.0" fill="rgb(217,182,15)" rx="2" ry="2" />
|
|
<text x="1186.10" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (54 samples, 0.01%)</title><rect x="1159.3" y="213" width="0.2" height="15.0" fill="rgb(217,71,22)" rx="2" ry="2" />
|
|
<text x="1162.34" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (97 samples, 0.02%)</title><rect x="1182.9" y="437" width="0.2" height="15.0" fill="rgb(245,56,51)" rx="2" ry="2" />
|
|
<text x="1185.88" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::find_matched_result (113 samples, 0.02%)</title><rect x="1154.9" y="421" width="0.2" height="15.0" fill="rgb(221,200,11)" rx="2" ry="2" />
|
|
<text x="1157.86" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (54 samples, 0.01%)</title><rect x="1159.3" y="261" width="0.2" height="15.0" fill="rgb(219,154,26)" rx="2" ry="2" />
|
|
<text x="1162.34" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (101 samples, 0.02%)</title><rect x="1184.2" y="469" width="0.2" height="15.0" fill="rgb(216,51,37)" rx="2" ry="2" />
|
|
<text x="1187.24" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (107 samples, 0.02%)</title><rect x="1182.9" y="469" width="0.2" height="15.0" fill="rgb(242,154,6)" rx="2" ry="2" />
|
|
<text x="1185.86" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libpthread-2.17.so] (101 samples, 0.02%)</title><rect x="1181.2" y="437" width="0.2" height="15.0" fill="rgb(214,9,5)" rx="2" ry="2" />
|
|
<text x="1184.21" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_add (60 samples, 0.01%)</title><rect x="1172.8" y="245" width="0.2" height="15.0" fill="rgb(235,88,51)" rx="2" ry="2" />
|
|
<text x="1175.84" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_recv_burst (183 samples, 0.03%)</title><rect x="1182.3" y="421" width="0.3" height="15.0" fill="rgb(248,110,29)" rx="2" ry="2" />
|
|
<text x="1185.27" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (68 samples, 0.01%)</title><rect x="1162.7" y="229" width="0.1" height="15.0" fill="rgb(250,74,48)" rx="2" ry="2" />
|
|
<text x="1165.65" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (1,599 samples, 0.28%)</title><rect x="1159.7" y="469" width="3.3" height="15.0" fill="rgb(229,92,47)" rx="2" ry="2" />
|
|
<text x="1162.69" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_idle (2,637 samples, 0.46%)</title><rect x="1184.6" y="453" width="5.4" height="15.0" fill="rgb(250,43,21)" rx="2" ry="2" />
|
|
<text x="1187.57" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (1,599 samples, 0.28%)</title><rect x="1159.7" y="453" width="3.3" height="15.0" fill="rgb(213,49,40)" rx="2" ry="2" />
|
|
<text x="1162.69" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (50 samples, 0.01%)</title><rect x="1168.9" y="197" width="0.1" height="15.0" fill="rgb(228,180,24)" rx="2" ry="2" />
|
|
<text x="1171.86" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>swapper (2,637 samples, 0.46%)</title><rect x="1184.6" y="517" width="5.4" height="15.0" fill="rgb(227,41,47)" rx="2" ry="2" />
|
|
<text x="1187.57" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (60 samples, 0.01%)</title><rect x="1178.9" y="197" width="0.2" height="15.0" fill="rgb(230,26,40)" rx="2" ry="2" />
|
|
<text x="1181.93" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (389 samples, 0.07%)</title><rect x="1170.7" y="261" width="0.8" height="15.0" fill="rgb(210,189,53)" rx="2" ry="2" />
|
|
<text x="1173.74" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (50 samples, 0.01%)</title><rect x="1183.2" y="485" width="0.1" height="15.0" fill="rgb(238,206,43)" rx="2" ry="2" />
|
|
<text x="1186.22" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (209 samples, 0.04%)</title><rect x="1168.2" y="197" width="0.4" height="15.0" fill="rgb(253,79,52)" rx="2" ry="2" />
|
|
<text x="1171.20" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (6,122 samples, 1.07%)</title><rect x="1166.8" y="341" width="12.6" height="15.0" fill="rgb(243,69,10)" rx="2" ry="2" />
|
|
<text x="1169.80" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (1,599 samples, 0.28%)</title><rect x="1159.7" y="437" width="3.3" height="15.0" fill="rgb(241,154,26)" rx="2" ry="2" />
|
|
<text x="1162.69" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_new (224 samples, 0.04%)</title><rect x="1157.1" y="469" width="0.4" height="15.0" fill="rgb(242,97,8)" rx="2" ry="2" />
|
|
<text x="1160.09" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (63 samples, 0.01%)</title><rect x="1154.1" y="341" width="0.1" height="15.0" fill="rgb(216,19,45)" rx="2" ry="2" />
|
|
<text x="1157.05" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (234 samples, 0.04%)</title><rect x="1153.7" y="357" width="0.5" height="15.0" fill="rgb(244,43,22)" rx="2" ry="2" />
|
|
<text x="1156.70" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (73 samples, 0.01%)</title><rect x="1162.8" y="309" width="0.2" height="15.0" fill="rgb(230,167,1)" rx="2" ry="2" />
|
|
<text x="1165.80" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (93 samples, 0.02%)</title><rect x="1181.2" y="405" width="0.2" height="15.0" fill="rgb(212,91,53)" rx="2" ry="2" />
|
|
<text x="1184.23" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (81 samples, 0.01%)</title><rect x="1166.0" y="325" width="0.2" height="15.0" fill="rgb(232,188,38)" rx="2" ry="2" />
|
|
<text x="1169.04" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>parse_dns_protocol (330 samples, 0.06%)</title><rect x="1183.3" y="501" width="0.7" height="15.0" fill="rgb(244,91,14)" rx="2" ry="2" />
|
|
<text x="1186.34" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::find_matched_result (284 samples, 0.05%)</title><rect x="1150.9" y="421" width="0.6" height="15.0" fill="rgb(223,156,36)" rx="2" ry="2" />
|
|
<text x="1153.94" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (99 samples, 0.02%)</title><rect x="1184.2" y="389" width="0.2" height="15.0" fill="rgb(250,40,28)" rx="2" ry="2" />
|
|
<text x="1187.24" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_send_burst_flush (69 samples, 0.01%)</title><rect x="1180.6" y="453" width="0.2" height="15.0" fill="rgb(220,198,11)" rx="2" ry="2" />
|
|
<text x="1183.61" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (88 samples, 0.02%)</title><rect x="1154.5" y="437" width="0.2" height="15.0" fill="rgb(214,219,20)" rx="2" ry="2" />
|
|
<text x="1157.47" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (122 samples, 0.02%)</title><rect x="1183.4" y="389" width="0.3" height="15.0" fill="rgb(212,85,0)" rx="2" ry="2" />
|
|
<text x="1186.42" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (53 samples, 0.01%)</title><rect x="1177.7" y="149" width="0.1" height="15.0" fill="rgb(209,41,42)" rx="2" ry="2" />
|
|
<text x="1180.70" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (1,338 samples, 0.23%)</title><rect x="1168.0" y="261" width="2.7" height="15.0" fill="rgb(221,17,42)" rx="2" ry="2" />
|
|
<text x="1170.98" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (93 samples, 0.02%)</title><rect x="1159.3" y="277" width="0.2" height="15.0" fill="rgb(245,96,16)" rx="2" ry="2" />
|
|
<text x="1162.34" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (52 samples, 0.01%)</title><rect x="1182.7" y="453" width="0.1" height="15.0" fill="rgb(251,196,33)" rx="2" ry="2" />
|
|
<text x="1185.66" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (258 samples, 0.05%)</title><rect x="1165.4" y="373" width="0.6" height="15.0" fill="rgb(215,197,6)" rx="2" ry="2" />
|
|
<text x="1168.45" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (93 samples, 0.02%)</title><rect x="1181.2" y="421" width="0.2" height="15.0" fill="rgb(219,15,8)" rx="2" ry="2" />
|
|
<text x="1184.23" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (168 samples, 0.03%)</title><rect x="1172.4" y="261" width="0.4" height="15.0" fill="rgb(222,169,31)" rx="2" ry="2" />
|
|
<text x="1175.43" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (95 samples, 0.02%)</title><rect x="1182.9" y="421" width="0.2" height="15.0" fill="rgb(254,217,17)" rx="2" ry="2" />
|
|
<text x="1185.88" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (99 samples, 0.02%)</title><rect x="1181.0" y="421" width="0.2" height="15.0" fill="rgb(209,201,8)" rx="2" ry="2" />
|
|
<text x="1183.98" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::search_expr (605 samples, 0.11%)</title><rect x="1150.5" y="437" width="1.3" height="15.0" fill="rgb(214,143,41)" rx="2" ry="2" />
|
|
<text x="1153.53" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (68 samples, 0.01%)</title><rect x="1162.7" y="165" width="0.1" height="15.0" fill="rgb(220,30,30)" rx="2" ry="2" />
|
|
<text x="1165.65" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (191 samples, 0.03%)</title><rect x="1177.5" y="245" width="0.3" height="15.0" fill="rgb(230,78,49)" rx="2" ry="2" />
|
|
<text x="1180.45" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (140 samples, 0.02%)</title><rect x="1160.1" y="277" width="0.3" height="15.0" fill="rgb(214,105,41)" rx="2" ry="2" />
|
|
<text x="1163.13" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (70 samples, 0.01%)</title><rect x="1170.6" y="213" width="0.1" height="15.0" fill="rgb(237,54,45)" rx="2" ry="2" />
|
|
<text x="1173.55" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (62 samples, 0.01%)</title><rect x="1177.7" y="165" width="0.1" height="15.0" fill="rgb(244,208,17)" rx="2" ry="2" />
|
|
<text x="1180.68" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAhoCorasick::SearchMem (155 samples, 0.03%)</title><rect x="1149.3" y="469" width="0.3" height="15.0" fill="rgb(214,195,44)" rx="2" ry="2" />
|
|
<text x="1152.27" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4,667 samples, 0.81%)</title><rect x="1166.9" y="309" width="9.6" height="15.0" fill="rgb(234,48,8)" rx="2" ry="2" />
|
|
<text x="1169.93" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (424 samples, 0.07%)</title><rect x="1153.3" y="373" width="0.9" height="15.0" fill="rgb(205,183,5)" rx="2" ry="2" />
|
|
<text x="1156.31" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (53 samples, 0.01%)</title><rect x="1160.5" y="165" width="0.1" height="15.0" fill="rgb(209,116,34)" rx="2" ry="2" />
|
|
<text x="1163.46" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (62 samples, 0.01%)</title><rect x="1183.1" y="421" width="0.1" height="15.0" fill="rgb(240,141,15)" rx="2" ry="2" />
|
|
<text x="1186.10" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (53 samples, 0.01%)</title><rect x="1160.5" y="85" width="0.1" height="15.0" fill="rgb(231,128,15)" rx="2" ry="2" />
|
|
<text x="1163.46" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (4,677 samples, 0.82%)</title><rect x="1166.9" y="325" width="9.6" height="15.0" fill="rgb(248,114,20)" rx="2" ry="2" />
|
|
<text x="1169.91" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_nanosleep (71 samples, 0.01%)</title><rect x="1181.2" y="357" width="0.2" height="15.0" fill="rgb(227,166,13)" rx="2" ry="2" />
|
|
<text x="1184.24" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (559 samples, 0.10%)</title><rect x="1153.0" y="389" width="1.2" height="15.0" fill="rgb(240,175,43)" rx="2" ry="2" />
|
|
<text x="1156.03" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (169 samples, 0.03%)</title><rect x="1183.4" y="437" width="0.3" height="15.0" fill="rgb(235,117,5)" rx="2" ry="2" />
|
|
<text x="1186.36" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,388 samples, 0.24%)</title><rect x="1159.7" y="357" width="2.9" height="15.0" fill="rgb(228,99,53)" rx="2" ry="2" />
|
|
<text x="1162.71" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_nat_linkinfo (68 samples, 0.01%)</title><rect x="1161.6" y="213" width="0.1" height="15.0" fill="rgb(233,162,34)" rx="2" ry="2" />
|
|
<text x="1164.61" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (101 samples, 0.02%)</title><rect x="1184.2" y="405" width="0.2" height="15.0" fill="rgb(254,139,24)" rx="2" ry="2" />
|
|
<text x="1187.24" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_searchstream (313 samples, 0.05%)</title><rect x="1154.7" y="469" width="0.6" height="15.0" fill="rgb(231,162,50)" rx="2" ry="2" />
|
|
<text x="1157.67" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (170 samples, 0.03%)</title><rect x="1159.3" y="405" width="0.4" height="15.0" fill="rgb(211,98,6)" rx="2" ry="2" />
|
|
<text x="1162.34" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (305 samples, 0.05%)</title><rect x="1160.9" y="197" width="0.7" height="15.0" fill="rgb(217,178,1)" rx="2" ry="2" />
|
|
<text x="1163.94" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count (50 samples, 0.01%)</title><rect x="1156.4" y="437" width="0.1" height="15.0" fill="rgb(210,72,8)" rx="2" ry="2" />
|
|
<text x="1159.39" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (53 samples, 0.01%)</title><rect x="1160.5" y="37" width="0.1" height="15.0" fill="rgb(216,141,42)" rx="2" ry="2" />
|
|
<text x="1163.46" y="47.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CIPMaskIndex::Find (91 samples, 0.02%)</title><rect x="1158.9" y="469" width="0.2" height="15.0" fill="rgb(229,34,31)" rx="2" ry="2" />
|
|
<text x="1161.88" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (90 samples, 0.02%)</title><rect x="1166.0" y="341" width="0.2" height="15.0" fill="rgb(215,215,17)" rx="2" ry="2" />
|
|
<text x="1169.02" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (75 samples, 0.01%)</title><rect x="1173.2" y="245" width="0.2" height="15.0" fill="rgb(211,114,54)" rx="2" ry="2" />
|
|
<text x="1176.21" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (53 samples, 0.01%)</title><rect x="1160.5" y="181" width="0.1" height="15.0" fill="rgb(246,124,11)" rx="2" ry="2" />
|
|
<text x="1163.46" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WANGW_POLLING_ENTRY (56 samples, 0.01%)</title><rect x="1181.7" y="437" width="0.1" height="15.0" fill="rgb(227,204,52)" rx="2" ry="2" />
|
|
<text x="1184.67" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (199 samples, 0.03%)</title><rect x="1177.4" y="261" width="0.4" height="15.0" fill="rgb(211,213,37)" rx="2" ry="2" />
|
|
<text x="1180.44" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (54 samples, 0.01%)</title><rect x="1159.3" y="245" width="0.2" height="15.0" fill="rgb(214,220,38)" rx="2" ry="2" />
|
|
<text x="1162.34" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Unrecognized line: ffffffffa20c2Warning: at ./FlameGraph/stackcollapse-perf.pl line 339, <> line (276,477 samples, 48.26%)</title><rect x="10.0" y="517" width="569.4" height="15.0" fill="rgb(224,168,50)" rx="2" ry="2" />
|
|
<text x="13.00" y="527.5" >Unrecognized line: ffffffffa20c2Warning: at ./FlameGraph/stackcollapse-perf.p..</text>
|
|
</g>
|
|
<g >
|
|
<title>grab_mid (358 samples, 0.06%)</title><rect x="1157.0" y="485" width="0.8" height="15.0" fill="rgb(250,93,29)" rx="2" ry="2" />
|
|
<text x="1160.04" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (67 samples, 0.01%)</title><rect x="1162.4" y="325" width="0.2" height="15.0" fill="rgb(250,106,13)" rx="2" ry="2" />
|
|
<text x="1165.42" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (99 samples, 0.02%)</title><rect x="1184.2" y="373" width="0.2" height="15.0" fill="rgb(235,32,16)" rx="2" ry="2" />
|
|
<text x="1187.24" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>poll_idle (140 samples, 0.02%)</title><rect x="1189.5" y="389" width="0.3" height="15.0" fill="rgb(218,14,52)" rx="2" ry="2" />
|
|
<text x="1192.52" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (127 samples, 0.02%)</title><rect x="1159.8" y="197" width="0.3" height="15.0" fill="rgb(208,146,12)" rx="2" ry="2" />
|
|
<text x="1162.81" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>finish_task_switch (88 samples, 0.02%)</title><rect x="1189.8" y="405" width="0.2" height="15.0" fill="rgb(233,96,3)" rx="2" ry="2" />
|
|
<text x="1192.81" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (221 samples, 0.04%)</title><rect x="1162.0" y="325" width="0.4" height="15.0" fill="rgb(231,139,38)" rx="2" ry="2" />
|
|
<text x="1164.97" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (55 samples, 0.01%)</title><rect x="1184.5" y="501" width="0.1" height="15.0" fill="rgb(222,51,33)" rx="2" ry="2" />
|
|
<text x="1187.46" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cpuidle_enter (2,542 samples, 0.44%)</title><rect x="1184.6" y="421" width="5.2" height="15.0" fill="rgb(210,224,15)" rx="2" ry="2" />
|
|
<text x="1187.58" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_realloc (51 samples, 0.01%)</title><rect x="1152.2" y="453" width="0.1" height="15.0" fill="rgb(244,89,48)" rx="2" ry="2" />
|
|
<text x="1155.23" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithApplicationData (53 samples, 0.01%)</title><rect x="1169.2" y="165" width="0.2" height="15.0" fill="rgb(246,41,53)" rx="2" ry="2" />
|
|
<text x="1172.25" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_check (198 samples, 0.03%)</title><rect x="1173.0" y="277" width="0.4" height="15.0" fill="rgb(231,221,21)" rx="2" ry="2" />
|
|
<text x="1175.96" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (98 samples, 0.02%)</title><rect x="1184.2" y="357" width="0.2" height="15.0" fill="rgb(212,170,7)" rx="2" ry="2" />
|
|
<text x="1187.24" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (170 samples, 0.03%)</title><rect x="1159.3" y="437" width="0.4" height="15.0" fill="rgb(236,64,17)" rx="2" ry="2" />
|
|
<text x="1162.34" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (91 samples, 0.02%)</title><rect x="1157.2" y="437" width="0.2" height="15.0" fill="rgb(233,141,46)" rx="2" ry="2" />
|
|
<text x="1160.24" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (93 samples, 0.02%)</title><rect x="1176.8" y="213" width="0.2" height="15.0" fill="rgb(237,229,52)" rx="2" ry="2" />
|
|
<text x="1179.84" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_full_scan_string_detail (860 samples, 0.15%)</title><rect x="1150.0" y="501" width="1.8" height="15.0" fill="rgb(226,213,49)" rx="2" ry="2" />
|
|
<text x="1153.01" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (175 samples, 0.03%)</title><rect x="1174.9" y="197" width="0.3" height="15.0" fill="rgb(232,48,18)" rx="2" ry="2" />
|
|
<text x="1177.86" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_cpuidle (2,542 samples, 0.44%)</title><rect x="1184.6" y="437" width="5.2" height="15.0" fill="rgb(222,154,35)" rx="2" ry="2" />
|
|
<text x="1187.58" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (66 samples, 0.01%)</title><rect x="1177.7" y="181" width="0.1" height="15.0" fill="rgb(244,35,41)" rx="2" ry="2" />
|
|
<text x="1180.67" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (53 samples, 0.01%)</title><rect x="1161.6" y="181" width="0.1" height="15.0" fill="rgb(206,130,29)" rx="2" ry="2" />
|
|
<text x="1164.62" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (81 samples, 0.01%)</title><rect x="1166.0" y="293" width="0.2" height="15.0" fill="rgb(206,92,13)" rx="2" ry="2" />
|
|
<text x="1169.04" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (55 samples, 0.01%)</title><rect x="1160.2" y="101" width="0.1" height="15.0" fill="rgb(246,213,0)" rx="2" ry="2" />
|
|
<text x="1163.22" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (50 samples, 0.01%)</title><rect x="1157.7" y="437" width="0.1" height="15.0" fill="rgb(223,141,37)" rx="2" ry="2" />
|
|
<text x="1160.68" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (187 samples, 0.03%)</title><rect x="1162.6" y="357" width="0.4" height="15.0" fill="rgb(232,66,11)" rx="2" ry="2" />
|
|
<text x="1165.59" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (171 samples, 0.03%)</title><rect x="1178.4" y="261" width="0.4" height="15.0" fill="rgb(209,206,54)" rx="2" ry="2" />
|
|
<text x="1181.42" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (139 samples, 0.02%)</title><rect x="1160.4" y="261" width="0.3" height="15.0" fill="rgb(249,72,53)" rx="2" ry="2" />
|
|
<text x="1163.42" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (132 samples, 0.02%)</title><rect x="1160.4" y="245" width="0.3" height="15.0" fill="rgb(219,78,11)" rx="2" ry="2" />
|
|
<text x="1163.42" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (990 samples, 0.17%)</title><rect x="1159.7" y="293" width="2.0" height="15.0" fill="rgb(234,2,52)" rx="2" ry="2" />
|
|
<text x="1162.71" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (156 samples, 0.03%)</title><rect x="1176.7" y="293" width="0.3" height="15.0" fill="rgb(212,134,51)" rx="2" ry="2" />
|
|
<text x="1179.71" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_make_outer_status (110 samples, 0.02%)</title><rect x="1157.6" y="469" width="0.2" height="15.0" fill="rgb(246,68,21)" rx="2" ry="2" />
|
|
<text x="1160.55" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (61 samples, 0.01%)</title><rect x="1183.5" y="341" width="0.1" height="15.0" fill="rgb(223,200,47)" rx="2" ry="2" />
|
|
<text x="1186.51" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (67 samples, 0.01%)</title><rect x="1162.4" y="341" width="0.2" height="15.0" fill="rgb(242,170,18)" rx="2" ry="2" />
|
|
<text x="1165.42" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (79 samples, 0.01%)</title><rect x="1168.4" y="149" width="0.2" height="15.0" fill="rgb(227,30,3)" rx="2" ry="2" />
|
|
<text x="1171.43" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (71 samples, 0.01%)</title><rect x="1166.1" y="261" width="0.1" height="15.0" fill="rgb(226,74,20)" rx="2" ry="2" />
|
|
<text x="1169.06" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::search_expr (251 samples, 0.04%)</title><rect x="1154.8" y="437" width="0.5" height="15.0" fill="rgb(233,128,32)" rx="2" ry="2" />
|
|
<text x="1157.80" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (107 samples, 0.02%)</title><rect x="1176.8" y="229" width="0.2" height="15.0" fill="rgb(208,10,27)" rx="2" ry="2" />
|
|
<text x="1179.81" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (180 samples, 0.03%)</title><rect x="1172.4" y="293" width="0.4" height="15.0" fill="rgb(218,101,39)" rx="2" ry="2" />
|
|
<text x="1175.40" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (53 samples, 0.01%)</title><rect x="1160.5" y="117" width="0.1" height="15.0" fill="rgb(233,12,0)" rx="2" ry="2" />
|
|
<text x="1163.46" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (170 samples, 0.03%)</title><rect x="1159.3" y="373" width="0.4" height="15.0" fill="rgb(248,222,2)" rx="2" ry="2" />
|
|
<text x="1162.34" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (442 samples, 0.08%)</title><rect x="1160.8" y="229" width="0.9" height="15.0" fill="rgb(206,119,17)" rx="2" ry="2" />
|
|
<text x="1163.84" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (86 samples, 0.02%)</title><rect x="1162.1" y="149" width="0.2" height="15.0" fill="rgb(225,111,1)" rx="2" ry="2" />
|
|
<text x="1165.12" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (667 samples, 0.12%)</title><rect x="1152.8" y="405" width="1.4" height="15.0" fill="rgb(248,118,32)" rx="2" ry="2" />
|
|
<text x="1155.81" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (221 samples, 0.04%)</title><rect x="1162.0" y="309" width="0.4" height="15.0" fill="rgb(234,33,30)" rx="2" ry="2" />
|
|
<text x="1164.97" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9,145 samples, 1.60%)</title><rect x="1163.8" y="469" width="18.8" height="15.0" fill="rgb(221,97,54)" rx="2" ry="2" />
|
|
<text x="1166.81" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (100 samples, 0.02%)</title><rect x="1162.6" y="309" width="0.2" height="15.0" fill="rgb(242,121,14)" rx="2" ry="2" />
|
|
<text x="1165.59" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_tcpall_entry (106 samples, 0.02%)</title><rect x="1171.2" y="229" width="0.2" height="15.0" fill="rgb(235,0,46)" rx="2" ry="2" />
|
|
<text x="1174.19" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (57 samples, 0.01%)</title><rect x="1160.2" y="197" width="0.1" height="15.0" fill="rgb(238,210,34)" rx="2" ry="2" />
|
|
<text x="1163.21" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (66 samples, 0.01%)</title><rect x="1183.8" y="405" width="0.1" height="15.0" fill="rgb(205,88,41)" rx="2" ry="2" />
|
|
<text x="1186.79" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (850 samples, 0.15%)</title><rect x="1152.4" y="437" width="1.8" height="15.0" fill="rgb(234,144,4)" rx="2" ry="2" />
|
|
<text x="1155.43" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (896 samples, 0.16%)</title><rect x="1152.3" y="453" width="1.9" height="15.0" fill="rgb(208,47,16)" rx="2" ry="2" />
|
|
<text x="1155.34" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_hit_path_list (79 samples, 0.01%)</title><rect x="1168.3" y="181" width="0.1" height="15.0" fill="rgb(216,192,43)" rx="2" ry="2" />
|
|
<text x="1171.25" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cpu_startup_entry (2,637 samples, 0.46%)</title><rect x="1184.6" y="469" width="5.4" height="15.0" fill="rgb(247,39,28)" rx="2" ry="2" />
|
|
<text x="1187.57" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeRequestEntityPresent (57 samples, 0.01%)</title><rect x="1160.2" y="229" width="0.1" height="15.0" fill="rgb(244,226,22)" rx="2" ry="2" />
|
|
<text x="1163.21" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (157 samples, 0.03%)</title><rect x="1182.3" y="405" width="0.3" height="15.0" fill="rgb(242,229,22)" rx="2" ry="2" />
|
|
<text x="1185.32" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (107 samples, 0.02%)</title><rect x="1161.7" y="293" width="0.3" height="15.0" fill="rgb(252,36,2)" rx="2" ry="2" />
|
|
<text x="1164.75" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (94 samples, 0.02%)</title><rect x="1169.4" y="149" width="0.2" height="15.0" fill="rgb(217,48,11)" rx="2" ry="2" />
|
|
<text x="1172.43" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (95 samples, 0.02%)</title><rect x="1171.2" y="197" width="0.2" height="15.0" fill="rgb(216,86,27)" rx="2" ry="2" />
|
|
<text x="1174.19" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_send_burst (270 samples, 0.05%)</title><rect x="1163.1" y="485" width="0.5" height="15.0" fill="rgb(209,79,47)" rx="2" ry="2" />
|
|
<text x="1166.08" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (89 samples, 0.02%)</title><rect x="1178.2" y="245" width="0.2" height="15.0" fill="rgb(215,220,34)" rx="2" ry="2" />
|
|
<text x="1181.24" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (56 samples, 0.01%)</title><rect x="1162.7" y="133" width="0.1" height="15.0" fill="rgb(254,47,21)" rx="2" ry="2" />
|
|
<text x="1165.67" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (96 samples, 0.02%)</title><rect x="1178.9" y="229" width="0.2" height="15.0" fill="rgb(220,222,4)" rx="2" ry="2" />
|
|
<text x="1181.86" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (292 samples, 0.05%)</title><rect x="1171.8" y="277" width="0.6" height="15.0" fill="rgb(230,188,46)" rx="2" ry="2" />
|
|
<text x="1174.77" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcpall_entry (424 samples, 0.07%)</title><rect x="1175.5" y="245" width="0.9" height="15.0" fill="rgb(211,221,4)" rx="2" ry="2" />
|
|
<text x="1178.54" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_secondary (2,637 samples, 0.46%)</title><rect x="1184.6" y="485" width="5.4" height="15.0" fill="rgb(229,27,31)" rx="2" ry="2" />
|
|
<text x="1187.57" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (110 samples, 0.02%)</title><rect x="1183.7" y="437" width="0.2" height="15.0" fill="rgb(246,188,29)" rx="2" ry="2" />
|
|
<text x="1186.71" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (68 samples, 0.01%)</title><rect x="1162.7" y="213" width="0.1" height="15.0" fill="rgb(213,87,47)" rx="2" ry="2" />
|
|
<text x="1165.65" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (111 samples, 0.02%)</title><rect x="1183.7" y="453" width="0.2" height="15.0" fill="rgb(236,214,12)" rx="2" ry="2" />
|
|
<text x="1186.70" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.6] (716 samples, 0.12%)</title><rect x="1155.5" y="485" width="1.5" height="15.0" fill="rgb(254,187,3)" rx="2" ry="2" />
|
|
<text x="1158.54" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_add (279 samples, 0.05%)</title><rect x="1173.4" y="245" width="0.6" height="15.0" fill="rgb(211,109,47)" rx="2" ry="2" />
|
|
<text x="1176.40" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2,107 samples, 0.37%)</title><rect x="1159.3" y="501" width="4.4" height="15.0" fill="rgb(208,58,4)" rx="2" ry="2" />
|
|
<text x="1162.33" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (390 samples, 0.07%)</title><rect x="1170.7" y="277" width="0.8" height="15.0" fill="rgb(227,32,38)" rx="2" ry="2" />
|
|
<text x="1173.73" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (482 samples, 0.08%)</title><rect x="1160.8" y="261" width="0.9" height="15.0" fill="rgb(234,63,17)" rx="2" ry="2" />
|
|
<text x="1163.76" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (62 samples, 0.01%)</title><rect x="1168.5" y="117" width="0.1" height="15.0" fill="rgb(246,72,44)" rx="2" ry="2" />
|
|
<text x="1171.46" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (102 samples, 0.02%)</title><rect x="1183.5" y="373" width="0.2" height="15.0" fill="rgb(254,124,36)" rx="2" ry="2" />
|
|
<text x="1186.46" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,803 samples, 0.31%)</title><rect x="1159.3" y="485" width="3.7" height="15.0" fill="rgb(254,137,51)" rx="2" ry="2" />
|
|
<text x="1162.33" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (419 samples, 0.07%)</title><rect x="1171.5" y="293" width="0.9" height="15.0" fill="rgb(237,11,9)" rx="2" ry="2" />
|
|
<text x="1174.54" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (57 samples, 0.01%)</title><rect x="1160.2" y="181" width="0.1" height="15.0" fill="rgb(209,144,28)" rx="2" ry="2" />
|
|
<text x="1163.21" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (63 samples, 0.01%)</title><rect x="1180.6" y="437" width="0.2" height="15.0" fill="rgb(254,134,48)" rx="2" ry="2" />
|
|
<text x="1183.62" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (63 samples, 0.01%)</title><rect x="1170.9" y="197" width="0.2" height="15.0" fill="rgb(252,109,45)" rx="2" ry="2" />
|
|
<text x="1173.95" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (154 samples, 0.03%)</title><rect x="1182.8" y="501" width="0.3" height="15.0" fill="rgb(220,166,45)" rx="2" ry="2" />
|
|
<text x="1185.77" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (106 samples, 0.02%)</title><rect x="1165.7" y="357" width="0.3" height="15.0" fill="rgb(214,173,53)" rx="2" ry="2" />
|
|
<text x="1168.74" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_nanosleep (77 samples, 0.01%)</title><rect x="1181.2" y="389" width="0.2" height="15.0" fill="rgb(215,90,52)" rx="2" ry="2" />
|
|
<text x="1184.23" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (49 samples, 0.01%)</title><rect x="1184.5" y="421" width="0.1" height="15.0" fill="rgb(218,208,42)" rx="2" ry="2" />
|
|
<text x="1187.46" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (156 samples, 0.03%)</title><rect x="1176.7" y="261" width="0.3" height="15.0" fill="rgb(215,75,45)" rx="2" ry="2" />
|
|
<text x="1179.71" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (53 samples, 0.01%)</title><rect x="1184.5" y="453" width="0.1" height="15.0" fill="rgb(252,31,32)" rx="2" ry="2" />
|
|
<text x="1187.46" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (283 samples, 0.05%)</title><rect x="1183.3" y="469" width="0.6" height="15.0" fill="rgb(238,223,43)" rx="2" ry="2" />
|
|
<text x="1186.35" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (86 samples, 0.02%)</title><rect x="1160.5" y="213" width="0.1" height="15.0" fill="rgb(234,226,24)" rx="2" ry="2" />
|
|
<text x="1163.46" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_scan_by_id (64 samples, 0.01%)</title><rect x="1155.7" y="469" width="0.2" height="15.0" fill="rgb(231,104,43)" rx="2" ry="2" />
|
|
<text x="1158.75" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_hit_path_list (53 samples, 0.01%)</title><rect x="1177.5" y="213" width="0.2" height="15.0" fill="rgb(240,109,4)" rx="2" ry="2" />
|
|
<text x="1180.54" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (68 samples, 0.01%)</title><rect x="1162.7" y="181" width="0.1" height="15.0" fill="rgb(210,186,13)" rx="2" ry="2" />
|
|
<text x="1165.65" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (73 samples, 0.01%)</title><rect x="1169.9" y="213" width="0.1" height="15.0" fill="rgb(248,192,23)" rx="2" ry="2" />
|
|
<text x="1172.86" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (62 samples, 0.01%)</title><rect x="1184.2" y="309" width="0.2" height="15.0" fill="rgb(221,87,33)" rx="2" ry="2" />
|
|
<text x="1187.24" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (66 samples, 0.01%)</title><rect x="1171.2" y="165" width="0.2" height="15.0" fill="rgb(214,166,17)" rx="2" ry="2" />
|
|
<text x="1174.23" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (101 samples, 0.02%)</title><rect x="1184.2" y="485" width="0.2" height="15.0" fill="rgb(227,221,22)" rx="2" ry="2" />
|
|
<text x="1187.24" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_polling (593 samples, 0.10%)</title><rect x="1181.4" y="453" width="1.2" height="15.0" fill="rgb(237,207,37)" rx="2" ry="2" />
|
|
<text x="1184.42" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2,064 samples, 0.36%)</title><rect x="1167.3" y="293" width="4.2" height="15.0" fill="rgb(249,176,52)" rx="2" ry="2" />
|
|
<text x="1170.29" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_udp_entry (78 samples, 0.01%)</title><rect x="1179.1" y="261" width="0.1" height="15.0" fill="rgb(206,117,37)" rx="2" ry="2" />
|
|
<text x="1182.07" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (154 samples, 0.03%)</title><rect x="1180.2" y="421" width="0.3" height="15.0" fill="rgb(241,9,28)" rx="2" ry="2" />
|
|
<text x="1183.22" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (7,174 samples, 1.25%)</title><rect x="1164.7" y="405" width="14.8" height="15.0" fill="rgb(207,85,40)" rx="2" ry="2" />
|
|
<text x="1167.72" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_usleep (104 samples, 0.02%)</title><rect x="1181.2" y="453" width="0.2" height="15.0" fill="rgb(222,164,8)" rx="2" ry="2" />
|
|
<text x="1184.21" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_capture_packet_entry (311 samples, 0.05%)</title><rect x="1174.7" y="229" width="0.6" height="15.0" fill="rgb(214,67,10)" rx="2" ry="2" />
|
|
<text x="1177.70" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8,059 samples, 1.41%)</title><rect x="1164.0" y="453" width="16.6" height="15.0" fill="rgb(241,143,30)" rx="2" ry="2" />
|
|
<text x="1167.01" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_TCP_PACKET_ENTRY (396 samples, 0.07%)</title><rect x="1174.5" y="245" width="0.8" height="15.0" fill="rgb(209,27,15)" rx="2" ry="2" />
|
|
<text x="1177.52" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (60 samples, 0.01%)</title><rect x="1160.5" y="197" width="0.1" height="15.0" fill="rgb(247,148,47)" rx="2" ry="2" />
|
|
<text x="1163.46" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (65 samples, 0.01%)</title><rect x="1166.1" y="245" width="0.1" height="15.0" fill="rgb(223,205,4)" rx="2" ry="2" />
|
|
<text x="1169.06" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (58 samples, 0.01%)</title><rect x="1177.1" y="293" width="0.1" height="15.0" fill="rgb(230,215,54)" rx="2" ry="2" />
|
|
<text x="1180.08" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (52 samples, 0.01%)</title><rect x="1182.7" y="485" width="0.1" height="15.0" fill="rgb(228,144,12)" rx="2" ry="2" />
|
|
<text x="1185.66" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>app_proto_worke_process (100 samples, 0.02%)</title><rect x="1162.6" y="277" width="0.2" height="15.0" fill="rgb(235,62,21)" rx="2" ry="2" />
|
|
<text x="1165.59" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (49 samples, 0.01%)</title><rect x="1168.3" y="165" width="0.1" height="15.0" fill="rgb(241,16,42)" rx="2" ry="2" />
|
|
<text x="1171.27" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (107 samples, 0.02%)</title><rect x="1161.7" y="325" width="0.3" height="15.0" fill="rgb(212,167,52)" rx="2" ry="2" />
|
|
<text x="1164.75" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (55 samples, 0.01%)</title><rect x="1182.7" y="501" width="0.1" height="15.0" fill="rgb(221,63,13)" rx="2" ry="2" />
|
|
<text x="1185.65" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (106 samples, 0.02%)</title><rect x="1171.2" y="213" width="0.2" height="15.0" fill="rgb(212,60,51)" rx="2" ry="2" />
|
|
<text x="1174.19" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_add (60 samples, 0.01%)</title><rect x="1172.8" y="261" width="0.2" height="15.0" fill="rgb(238,177,31)" rx="2" ry="2" />
|
|
<text x="1175.84" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (74 samples, 0.01%)</title><rect x="1171.2" y="181" width="0.2" height="15.0" fill="rgb(217,12,49)" rx="2" ry="2" />
|
|
<text x="1174.21" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_searchstream (641 samples, 0.11%)</title><rect x="1150.5" y="469" width="1.3" height="15.0" fill="rgb(233,16,2)" rx="2" ry="2" />
|
|
<text x="1153.47" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (103 samples, 0.02%)</title><rect x="1168.4" y="181" width="0.2" height="15.0" fill="rgb(226,152,5)" rx="2" ry="2" />
|
|
<text x="1171.42" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (85 samples, 0.01%)</title><rect x="1161.8" y="261" width="0.2" height="15.0" fill="rgb(221,125,9)" rx="2" ry="2" />
|
|
<text x="1164.79" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (229 samples, 0.04%)</title><rect x="1176.6" y="309" width="0.4" height="15.0" fill="rgb(251,27,39)" rx="2" ry="2" />
|
|
<text x="1179.56" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (81 samples, 0.01%)</title><rect x="1166.0" y="309" width="0.2" height="15.0" fill="rgb(242,155,3)" rx="2" ry="2" />
|
|
<text x="1169.04" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (53 samples, 0.01%)</title><rect x="1160.5" y="101" width="0.1" height="15.0" fill="rgb(221,38,9)" rx="2" ry="2" />
|
|
<text x="1163.46" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (62 samples, 0.01%)</title><rect x="1183.1" y="485" width="0.1" height="15.0" fill="rgb(248,126,11)" rx="2" ry="2" />
|
|
<text x="1186.10" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (71 samples, 0.01%)</title><rect x="1162.7" y="245" width="0.1" height="15.0" fill="rgb(254,21,11)" rx="2" ry="2" />
|
|
<text x="1165.65" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_ipv4 (51 samples, 0.01%)</title><rect x="1179.3" y="309" width="0.1" height="15.0" fill="rgb(207,3,30)" rx="2" ry="2" />
|
|
<text x="1182.29" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (227 samples, 0.04%)</title><rect x="1165.0" y="373" width="0.4" height="15.0" fill="rgb(235,128,48)" rx="2" ry="2" />
|
|
<text x="1167.98" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (176 samples, 0.03%)</title><rect x="1159.3" y="469" width="0.4" height="15.0" fill="rgb(250,166,12)" rx="2" ry="2" />
|
|
<text x="1162.33" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (55 samples, 0.01%)</title><rect x="1184.5" y="469" width="0.1" height="15.0" fill="rgb(251,40,3)" rx="2" ry="2" />
|
|
<text x="1187.46" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>polling_stream_timeout (221 samples, 0.04%)</title><rect x="1180.8" y="453" width="0.4" height="15.0" fill="rgb(243,123,2)" rx="2" ry="2" />
|
|
<text x="1183.75" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_http_entry (57 samples, 0.01%)</title><rect x="1160.2" y="149" width="0.1" height="15.0" fill="rgb(208,190,32)" rx="2" ry="2" />
|
|
<text x="1163.21" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (1,170 samples, 0.20%)</title><rect x="1174.0" y="293" width="2.4" height="15.0" fill="rgb(226,115,2)" rx="2" ry="2" />
|
|
<text x="1177.01" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (96 samples, 0.02%)</title><rect x="1166.0" y="357" width="0.2" height="15.0" fill="rgb(231,184,50)" rx="2" ry="2" />
|
|
<text x="1169.00" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_udp_entry (107 samples, 0.02%)</title><rect x="1178.8" y="261" width="0.3" height="15.0" fill="rgb(248,98,33)" rx="2" ry="2" />
|
|
<text x="1181.85" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (482 samples, 0.08%)</title><rect x="1160.8" y="245" width="0.9" height="15.0" fill="rgb(251,49,8)" rx="2" ry="2" />
|
|
<text x="1163.76" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (944 samples, 0.16%)</title><rect x="1174.5" y="261" width="1.9" height="15.0" fill="rgb(249,93,52)" rx="2" ry="2" />
|
|
<text x="1177.47" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (990 samples, 0.17%)</title><rect x="1159.7" y="325" width="2.0" height="15.0" fill="rgb(237,84,15)" rx="2" ry="2" />
|
|
<text x="1162.71" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (53 samples, 0.01%)</title><rect x="1160.5" y="53" width="0.1" height="15.0" fill="rgb(217,219,30)" rx="2" ry="2" />
|
|
<text x="1163.46" y="63.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::get_mapped_id (109 samples, 0.02%)</title><rect x="1155.1" y="421" width="0.2" height="15.0" fill="rgb(249,41,21)" rx="2" ry="2" />
|
|
<text x="1158.09" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (54 samples, 0.01%)</title><rect x="1159.6" y="357" width="0.1" height="15.0" fill="rgb(232,108,14)" rx="2" ry="2" />
|
|
<text x="1162.58" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_get_ja3_fingerprint (87 samples, 0.02%)</title><rect x="1184.1" y="501" width="0.1" height="15.0" fill="rgb(254,116,22)" rx="2" ry="2" />
|
|
<text x="1187.06" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::find_matched_result (63 samples, 0.01%)</title><rect x="1156.7" y="405" width="0.1" height="15.0" fill="rgb(249,19,35)" rx="2" ry="2" />
|
|
<text x="1159.69" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_search (541 samples, 0.09%)</title><rect x="1155.9" y="469" width="1.1" height="15.0" fill="rgb(251,1,16)" rx="2" ry="2" />
|
|
<text x="1158.90" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (71 samples, 0.01%)</title><rect x="1168.4" y="133" width="0.2" height="15.0" fill="rgb(207,64,45)" rx="2" ry="2" />
|
|
<text x="1171.44" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (95 samples, 0.02%)</title><rect x="1169.4" y="165" width="0.2" height="15.0" fill="rgb(241,214,6)" rx="2" ry="2" />
|
|
<text x="1172.43" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (221 samples, 0.04%)</title><rect x="1162.0" y="341" width="0.4" height="15.0" fill="rgb(217,64,21)" rx="2" ry="2" />
|
|
<text x="1164.97" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (174 samples, 0.03%)</title><rect x="1172.4" y="277" width="0.4" height="15.0" fill="rgb(250,181,15)" rx="2" ry="2" />
|
|
<text x="1175.41" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>callback_dns_business_plug (283 samples, 0.05%)</title><rect x="1183.3" y="485" width="0.6" height="15.0" fill="rgb(243,190,13)" rx="2" ry="2" />
|
|
<text x="1186.35" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_region_compile (83 samples, 0.01%)</title><rect x="1150.3" y="469" width="0.1" height="15.0" fill="rgb(240,66,26)" rx="2" ry="2" />
|
|
<text x="1153.27" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_udpate (360 samples, 0.06%)</title><rect x="1157.8" y="469" width="0.7" height="15.0" fill="rgb(218,20,1)" rx="2" ry="2" />
|
|
<text x="1160.81" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>region_compile (390 samples, 0.07%)</title><rect x="1157.8" y="485" width="0.8" height="15.0" fill="rgb(225,214,3)" rx="2" ry="2" />
|
|
<text x="1160.78" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>string_search (369 samples, 0.06%)</title><rect x="1149.2" y="485" width="0.8" height="15.0" fill="rgb(244,33,27)" rx="2" ry="2" />
|
|
<text x="1152.25" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (127 samples, 0.02%)</title><rect x="1159.8" y="149" width="0.3" height="15.0" fill="rgb(223,162,7)" rx="2" ry="2" />
|
|
<text x="1162.81" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vxlan_entry (6,276 samples, 1.10%)</title><rect x="1166.5" y="373" width="12.9" height="15.0" fill="rgb(227,98,25)" rx="2" ry="2" />
|
|
<text x="1169.52" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bool_matcher_match (159 samples, 0.03%)</title><rect x="1154.3" y="453" width="0.4" height="15.0" fill="rgb(230,193,54)" rx="2" ry="2" />
|
|
<text x="1157.33" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>all (572,943 samples, 100%)</title><rect x="10.0" y="533" width="1180.0" height="15.0" fill="rgb(237,96,24)" rx="2" ry="2" />
|
|
<text x="13.00" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>QUIC_ENTRY (78 samples, 0.01%)</title><rect x="1178.0" y="261" width="0.2" height="15.0" fill="rgb(243,214,32)" rx="2" ry="2" />
|
|
<text x="1181.01" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (53 samples, 0.01%)</title><rect x="1160.5" y="149" width="0.1" height="15.0" fill="rgb(244,145,45)" rx="2" ry="2" />
|
|
<text x="1163.46" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (101 samples, 0.02%)</title><rect x="1184.2" y="437" width="0.2" height="15.0" fill="rgb(223,128,14)" rx="2" ry="2" />
|
|
<text x="1187.24" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (51 samples, 0.01%)</title><rect x="1169.3" y="149" width="0.1" height="15.0" fill="rgb(215,67,3)" rx="2" ry="2" />
|
|
<text x="1172.25" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>region_compile (136 samples, 0.02%)</title><rect x="1150.2" y="485" width="0.2" height="15.0" fill="rgb(244,153,36)" rx="2" ry="2" />
|
|
<text x="1153.16" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (122 samples, 0.02%)</title><rect x="1170.4" y="229" width="0.3" height="15.0" fill="rgb(215,201,44)" rx="2" ry="2" />
|
|
<text x="1173.45" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CSuccinctHash::find (64 samples, 0.01%)</title><rect x="1158.9" y="453" width="0.2" height="15.0" fill="rgb(217,181,16)" rx="2" ry="2" />
|
|
<text x="1161.94" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_add (260 samples, 0.05%)</title><rect x="1173.4" y="229" width="0.6" height="15.0" fill="rgb(233,74,34)" rx="2" ry="2" />
|
|
<text x="1176.44" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kni_polling_all_entry (249 samples, 0.04%)</title><rect x="1182.1" y="437" width="0.5" height="15.0" fill="rgb(225,0,54)" rx="2" ry="2" />
|
|
<text x="1185.13" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (135 samples, 0.02%)</title><rect x="1157.2" y="453" width="0.2" height="15.0" fill="rgb(228,163,51)" rx="2" ry="2" />
|
|
<text x="1160.15" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (116 samples, 0.02%)</title><rect x="1159.3" y="341" width="0.3" height="15.0" fill="rgb(243,187,35)" rx="2" ry="2" />
|
|
<text x="1162.34" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_polling_inject_context (96 samples, 0.02%)</title><rect x="1166.3" y="373" width="0.2" height="15.0" fill="rgb(239,207,52)" rx="2" ry="2" />
|
|
<text x="1169.32" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (211 samples, 0.04%)</title><rect x="1162.0" y="293" width="0.4" height="15.0" fill="rgb(248,175,27)" rx="2" ry="2" />
|
|
<text x="1164.97" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (57 samples, 0.01%)</title><rect x="1160.2" y="213" width="0.1" height="15.0" fill="rgb(234,186,33)" rx="2" ry="2" />
|
|
<text x="1163.21" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__schedule (88 samples, 0.02%)</title><rect x="1189.8" y="421" width="0.2" height="15.0" fill="rgb(221,196,18)" rx="2" ry="2" />
|
|
<text x="1192.81" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (107 samples, 0.02%)</title><rect x="1161.7" y="277" width="0.3" height="15.0" fill="rgb(245,32,47)" rx="2" ry="2" />
|
|
<text x="1164.75" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_udpate (50 samples, 0.01%)</title><rect x="1150.2" y="469" width="0.1" height="15.0" fill="rgb(212,127,16)" rx="2" ry="2" />
|
|
<text x="1153.17" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (179 samples, 0.03%)</title><rect x="1159.7" y="277" width="0.4" height="15.0" fill="rgb(230,109,0)" rx="2" ry="2" />
|
|
<text x="1162.71" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (114 samples, 0.02%)</title><rect x="1160.5" y="229" width="0.2" height="15.0" fill="rgb(225,7,27)" rx="2" ry="2" />
|
|
<text x="1163.46" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (127 samples, 0.02%)</title><rect x="1159.8" y="165" width="0.3" height="15.0" fill="rgb(219,103,31)" rx="2" ry="2" />
|
|
<text x="1162.81" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (96 samples, 0.02%)</title><rect x="1162.1" y="165" width="0.2" height="15.0" fill="rgb(243,77,28)" rx="2" ry="2" />
|
|
<text x="1165.10" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_engine.so] (100 samples, 0.02%)</title><rect x="1162.6" y="293" width="0.2" height="15.0" fill="rgb(242,45,46)" rx="2" ry="2" />
|
|
<text x="1165.59" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (108 samples, 0.02%)</title><rect x="1169.8" y="229" width="0.3" height="15.0" fill="rgb(240,187,45)" rx="2" ry="2" />
|
|
<text x="1172.85" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (200 samples, 0.03%)</title><rect x="1162.6" y="373" width="0.4" height="15.0" fill="rgb(218,43,1)" rx="2" ry="2" />
|
|
<text x="1165.57" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (213 samples, 0.04%)</title><rect x="1158.0" y="453" width="0.4" height="15.0" fill="rgb(205,89,47)" rx="2" ry="2" />
|
|
<text x="1160.97" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (230 samples, 0.04%)</title><rect x="1171.9" y="261" width="0.5" height="15.0" fill="rgb(227,126,6)" rx="2" ry="2" />
|
|
<text x="1174.89" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (54 samples, 0.01%)</title><rect x="1159.3" y="197" width="0.2" height="15.0" fill="rgb(205,97,17)" rx="2" ry="2" />
|
|
<text x="1162.34" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_increment (212 samples, 0.04%)</title><rect x="1173.5" y="213" width="0.4" height="15.0" fill="rgb(250,105,35)" rx="2" ry="2" />
|
|
<text x="1176.45" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (97 samples, 0.02%)</title><rect x="1178.2" y="261" width="0.2" height="15.0" fill="rgb(250,152,18)" rx="2" ry="2" />
|
|
<text x="1181.22" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (205 samples, 0.04%)</title><rect x="1162.0" y="213" width="0.4" height="15.0" fill="rgb(254,10,47)" rx="2" ry="2" />
|
|
<text x="1164.98" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CStringMatch::search_rule (424 samples, 0.07%)</title><rect x="1149.1" y="501" width="0.9" height="15.0" fill="rgb(230,126,5)" rx="2" ry="2" />
|
|
<text x="1152.13" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (62 samples, 0.01%)</title><rect x="1183.1" y="453" width="0.1" height="15.0" fill="rgb(239,41,14)" rx="2" ry="2" />
|
|
<text x="1186.10" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (57 samples, 0.01%)</title><rect x="1160.2" y="165" width="0.1" height="15.0" fill="rgb(223,66,32)" rx="2" ry="2" />
|
|
<text x="1163.21" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (7,094 samples, 1.24%)</title><rect x="1164.8" y="389" width="14.6" height="15.0" fill="rgb(251,120,22)" rx="2" ry="2" />
|
|
<text x="1167.83" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7,429 samples, 1.30%)</title><rect x="1164.4" y="437" width="15.3" height="15.0" fill="rgb(241,187,44)" rx="2" ry="2" />
|
|
<text x="1167.38" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (113 samples, 0.02%)</title><rect x="1168.8" y="213" width="0.2" height="15.0" fill="rgb(220,116,38)" rx="2" ry="2" />
|
|
<text x="1171.81" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[librulescan.so.2.2] (346 samples, 0.06%)</title><rect x="1158.6" y="501" width="0.7" height="15.0" fill="rgb(207,20,45)" rx="2" ry="2" />
|
|
<text x="1161.61" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Unrecognized line: Check IO/CPU overload! at ./FlameGraph/stackcollapse-perf.pl line 339, <> line (276,480 samples, 48.26%)</title><rect x="579.4" y="517" width="569.4" height="15.0" fill="rgb(219,99,31)" rx="2" ry="2" />
|
|
<text x="582.42" y="527.5" >Unrecognized line: Check IO/CPU overload! at ./FlameGraph/stackcollapse-perf.p..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (53 samples, 0.01%)</title><rect x="1160.5" y="133" width="0.1" height="15.0" fill="rgb(241,194,2)" rx="2" ry="2" />
|
|
<text x="1163.46" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (90 samples, 0.02%)</title><rect x="1178.5" y="213" width="0.2" height="15.0" fill="rgb(232,21,11)" rx="2" ry="2" />
|
|
<text x="1181.54" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (106 samples, 0.02%)</title><rect x="1159.8" y="101" width="0.3" height="15.0" fill="rgb(241,229,53)" rx="2" ry="2" />
|
|
<text x="1162.84" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (179 samples, 0.03%)</title><rect x="1176.0" y="229" width="0.4" height="15.0" fill="rgb(230,139,33)" rx="2" ry="2" />
|
|
<text x="1179.02" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::search_expr (170 samples, 0.03%)</title><rect x="1156.6" y="421" width="0.3" height="15.0" fill="rgb(217,199,44)" rx="2" ry="2" />
|
|
<text x="1159.59" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_computeresult (612 samples, 0.11%)</title><rect x="1150.5" y="453" width="1.3" height="15.0" fill="rgb(227,24,39)" rx="2" ry="2" />
|
|
<text x="1153.52" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (933 samples, 0.16%)</title><rect x="1177.3" y="309" width="2.0" height="15.0" fill="rgb(234,140,37)" rx="2" ry="2" />
|
|
<text x="1180.33" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_free (55 samples, 0.01%)</title><rect x="1174.9" y="181" width="0.1" height="15.0" fill="rgb(220,83,30)" rx="2" ry="2" />
|
|
<text x="1177.87" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (170 samples, 0.03%)</title><rect x="1159.3" y="453" width="0.4" height="15.0" fill="rgb(220,141,38)" rx="2" ry="2" />
|
|
<text x="1162.34" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_mark_v4 (290 samples, 0.05%)</title><rect x="1173.4" y="277" width="0.6" height="15.0" fill="rgb(252,164,54)" rx="2" ry="2" />
|
|
<text x="1176.37" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (170 samples, 0.03%)</title><rect x="1159.3" y="389" width="0.4" height="15.0" fill="rgb(212,144,6)" rx="2" ry="2" />
|
|
<text x="1162.34" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qmdpi_worker_process (133 samples, 0.02%)</title><rect x="1159.8" y="229" width="0.3" height="15.0" fill="rgb(217,0,6)" rx="2" ry="2" />
|
|
<text x="1162.81" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (121 samples, 0.02%)</title><rect x="1168.8" y="229" width="0.2" height="15.0" fill="rgb(229,95,45)" rx="2" ry="2" />
|
|
<text x="1171.80" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (1,351 samples, 0.24%)</title><rect x="1168.0" y="277" width="2.7" height="15.0" fill="rgb(234,24,18)" rx="2" ry="2" />
|
|
<text x="1170.95" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_search (652 samples, 0.11%)</title><rect x="1150.4" y="485" width="1.4" height="15.0" fill="rgb(214,206,2)" rx="2" ry="2" />
|
|
<text x="1153.44" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (322 samples, 0.06%)</title><rect x="1169.1" y="229" width="0.7" height="15.0" fill="rgb(244,151,0)" rx="2" ry="2" />
|
|
<text x="1172.13" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (168 samples, 0.03%)</title><rect x="1158.1" y="437" width="0.3" height="15.0" fill="rgb(220,84,47)" rx="2" ry="2" />
|
|
<text x="1161.07" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (99 samples, 0.02%)</title><rect x="1160.1" y="245" width="0.2" height="15.0" fill="rgb(254,150,45)" rx="2" ry="2" />
|
|
<text x="1163.13" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (6,205 samples, 1.08%)</title><rect x="1166.7" y="357" width="12.7" height="15.0" fill="rgb(210,140,44)" rx="2" ry="2" />
|
|
<text x="1169.66" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (135 samples, 0.02%)</title><rect x="1170.1" y="229" width="0.2" height="15.0" fill="rgb(232,90,20)" rx="2" ry="2" />
|
|
<text x="1173.07" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_nanosleep (73 samples, 0.01%)</title><rect x="1181.2" y="373" width="0.2" height="15.0" fill="rgb(216,147,14)" rx="2" ry="2" />
|
|
<text x="1184.24" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_check (110 samples, 0.02%)</title><rect x="1173.0" y="245" width="0.2" height="15.0" fill="rgb(252,118,10)" rx="2" ry="2" />
|
|
<text x="1175.99" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_udp_entry (71 samples, 0.01%)</title><rect x="1166.1" y="277" width="0.1" height="15.0" fill="rgb(240,62,23)" rx="2" ry="2" />
|
|
<text x="1169.06" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_thread (101 samples, 0.02%)</title><rect x="1184.2" y="501" width="0.2" height="15.0" fill="rgb(235,143,28)" rx="2" ry="2" />
|
|
<text x="1187.24" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (73 samples, 0.01%)</title><rect x="1182.9" y="405" width="0.1" height="15.0" fill="rgb(252,32,29)" rx="2" ry="2" />
|
|
<text x="1185.88" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmbundle.so.tmp.A5gYAQ] (69 samples, 0.01%)</title><rect x="1159.9" y="85" width="0.2" height="15.0" fill="rgb(245,6,22)" rx="2" ry="2" />
|
|
<text x="1162.91" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (57 samples, 0.01%)</title><rect x="1160.2" y="117" width="0.1" height="15.0" fill="rgb(238,94,4)" rx="2" ry="2" />
|
|
<text x="1163.21" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (755 samples, 0.13%)</title><rect x="1152.6" y="421" width="1.6" height="15.0" fill="rgb(243,122,40)" rx="2" ry="2" />
|
|
<text x="1155.63" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_search (320 samples, 0.06%)</title><rect x="1154.7" y="485" width="0.6" height="15.0" fill="rgb(244,199,42)" rx="2" ry="2" />
|
|
<text x="1157.66" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_add (57 samples, 0.01%)</title><rect x="1172.8" y="229" width="0.2" height="15.0" fill="rgb(254,215,39)" rx="2" ry="2" />
|
|
<text x="1175.84" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (154 samples, 0.03%)</title><rect x="1182.8" y="485" width="0.3" height="15.0" fill="rgb(220,129,10)" rx="2" ry="2" />
|
|
<text x="1185.77" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_conn_sketch.so] (205 samples, 0.04%)</title><rect x="1162.0" y="229" width="0.4" height="15.0" fill="rgb(241,37,13)" rx="2" ry="2" />
|
|
<text x="1164.98" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (63 samples, 0.01%)</title><rect x="1184.2" y="341" width="0.2" height="15.0" fill="rgb(210,128,23)" rx="2" ry="2" />
|
|
<text x="1187.24" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (101 samples, 0.02%)</title><rect x="1184.2" y="421" width="0.2" height="15.0" fill="rgb(232,185,29)" rx="2" ry="2" />
|
|
<text x="1187.24" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_computeresult (258 samples, 0.05%)</title><rect x="1154.8" y="453" width="0.5" height="15.0" fill="rgb(254,199,44)" rx="2" ry="2" />
|
|
<text x="1157.79" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_region_compile (167 samples, 0.03%)</title><rect x="1154.3" y="469" width="0.4" height="15.0" fill="rgb(233,118,53)" rx="2" ry="2" />
|
|
<text x="1157.31" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CKRF::SearchMem (202 samples, 0.04%)</title><rect x="1149.6" y="469" width="0.4" height="15.0" fill="rgb(246,112,36)" rx="2" ry="2" />
|
|
<text x="1152.59" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_scan_proto_addr (1,586 samples, 0.28%)</title><rect x="1155.3" y="501" width="3.3" height="15.0" fill="rgb(253,145,6)" rx="2" ry="2" />
|
|
<text x="1158.32" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[quic.so] (78 samples, 0.01%)</title><rect x="1178.0" y="245" width="0.2" height="15.0" fill="rgb(231,114,26)" rx="2" ry="2" />
|
|
<text x="1181.01" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_record_tcp_entry (205 samples, 0.04%)</title><rect x="1162.0" y="245" width="0.4" height="15.0" fill="rgb(220,153,52)" rx="2" ry="2" />
|
|
<text x="1164.98" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libqmengine.so] (90 samples, 0.02%)</title><rect x="1177.7" y="197" width="0.1" height="15.0" fill="rgb(222,139,5)" rx="2" ry="2" />
|
|
<text x="1180.66" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (170 samples, 0.03%)</title><rect x="1159.3" y="421" width="0.4" height="15.0" fill="rgb(227,93,1)" rx="2" ry="2" />
|
|
<text x="1162.34" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (183 samples, 0.03%)</title><rect x="1180.8" y="437" width="0.4" height="15.0" fill="rgb(240,62,29)" rx="2" ry="2" />
|
|
<text x="1183.83" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (108 samples, 0.02%)</title><rect x="1176.8" y="245" width="0.2" height="15.0" fill="rgb(210,216,24)" rx="2" ry="2" />
|
|
<text x="1179.81" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>secondary_startup_64 (2,637 samples, 0.46%)</title><rect x="1184.6" y="501" width="5.4" height="15.0" fill="rgb(246,96,24)" rx="2" ry="2" />
|
|
<text x="1187.57" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (86 samples, 0.02%)</title><rect x="1162.1" y="133" width="0.2" height="15.0" fill="rgb(210,213,11)" rx="2" ry="2" />
|
|
<text x="1165.12" y="143.5" ></text>
|
|
</g>
|
|
</g>
|
|
</svg>
|