8713 lines
395 KiB
XML
8713 lines
395 KiB
XML
<?xml version="1.0" standalone="no"?>
|
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
<svg version="1.1" width="1200" height="838" onload="init(evt)" viewBox="0 0 1200 838" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
|
|
<!-- NOTES: -->
|
|
<defs>
|
|
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
|
|
<stop stop-color="#eeeeee" offset="5%" />
|
|
<stop stop-color="#eeeeb0" offset="95%" />
|
|
</linearGradient>
|
|
</defs>
|
|
<style type="text/css">
|
|
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
|
|
#search, #ignorecase { opacity:0.1; cursor:pointer; }
|
|
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
|
|
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
|
|
#title { text-anchor:middle; font-size:17px}
|
|
#unzoom { cursor:pointer; }
|
|
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
|
|
.hide { display:none; }
|
|
.parent { opacity:0.5; }
|
|
</style>
|
|
<script type="text/ecmascript">
|
|
<![CDATA[
|
|
"use strict";
|
|
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
|
|
function init(evt) {
|
|
details = document.getElementById("details").firstChild;
|
|
searchbtn = document.getElementById("search");
|
|
ignorecaseBtn = document.getElementById("ignorecase");
|
|
unzoombtn = document.getElementById("unzoom");
|
|
matchedtxt = document.getElementById("matched");
|
|
svg = document.getElementsByTagName("svg")[0];
|
|
searching = 0;
|
|
currentSearchTerm = null;
|
|
}
|
|
|
|
window.addEventListener("click", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) {
|
|
if (target.nodeName == "a") {
|
|
if (e.ctrlKey === false) return;
|
|
e.preventDefault();
|
|
}
|
|
if (target.classList.contains("parent")) unzoom();
|
|
zoom(target);
|
|
}
|
|
else if (e.target.id == "unzoom") unzoom();
|
|
else if (e.target.id == "search") search_prompt();
|
|
else if (e.target.id == "ignorecase") toggle_ignorecase();
|
|
}, false)
|
|
|
|
// mouse-over for info
|
|
// show
|
|
window.addEventListener("mouseover", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) details.nodeValue = "Function: " + g_to_text(target);
|
|
}, false)
|
|
|
|
// clear
|
|
window.addEventListener("mouseout", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) details.nodeValue = ' ';
|
|
}, false)
|
|
|
|
// ctrl-F for search
|
|
window.addEventListener("keydown",function (e) {
|
|
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
|
|
e.preventDefault();
|
|
search_prompt();
|
|
}
|
|
}, false)
|
|
|
|
// ctrl-I to toggle case-sensitive search
|
|
window.addEventListener("keydown",function (e) {
|
|
if (e.ctrlKey && e.keyCode === 73) {
|
|
e.preventDefault();
|
|
toggle_ignorecase();
|
|
}
|
|
}, false)
|
|
|
|
// functions
|
|
function find_child(node, selector) {
|
|
var children = node.querySelectorAll(selector);
|
|
if (children.length) return children[0];
|
|
return;
|
|
}
|
|
function find_group(node) {
|
|
var parent = node.parentElement;
|
|
if (!parent) return;
|
|
if (parent.id == "frames") return node;
|
|
return find_group(parent);
|
|
}
|
|
function orig_save(e, attr, val) {
|
|
if (e.attributes["_orig_" + attr] != undefined) return;
|
|
if (e.attributes[attr] == undefined) return;
|
|
if (val == undefined) val = e.attributes[attr].value;
|
|
e.setAttribute("_orig_" + attr, val);
|
|
}
|
|
function orig_load(e, attr) {
|
|
if (e.attributes["_orig_"+attr] == undefined) return;
|
|
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
|
|
e.removeAttribute("_orig_"+attr);
|
|
}
|
|
function g_to_text(e) {
|
|
var text = find_child(e, "title").firstChild.nodeValue;
|
|
return (text)
|
|
}
|
|
function g_to_func(e) {
|
|
var func = g_to_text(e);
|
|
// if there's any manipulation we want to do to the function
|
|
// name before it's searched, do it here before returning.
|
|
return (func);
|
|
}
|
|
function update_text(e) {
|
|
var r = find_child(e, "rect");
|
|
var t = find_child(e, "text");
|
|
var w = parseFloat(r.attributes.width.value) -3;
|
|
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
|
|
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
|
|
|
|
// Smaller than this size won't fit anything
|
|
if (w < 2 * 12 * 0.59) {
|
|
t.textContent = "";
|
|
return;
|
|
}
|
|
|
|
t.textContent = txt;
|
|
// Fit in full text width
|
|
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
|
|
return;
|
|
|
|
for (var x = txt.length - 2; x > 0; x--) {
|
|
if (t.getSubStringLength(0, x + 2) <= w) {
|
|
t.textContent = txt.substring(0, x) + "..";
|
|
return;
|
|
}
|
|
}
|
|
t.textContent = "";
|
|
}
|
|
|
|
// zoom
|
|
function zoom_reset(e) {
|
|
if (e.attributes != undefined) {
|
|
orig_load(e, "x");
|
|
orig_load(e, "width");
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for (var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_reset(c[i]);
|
|
}
|
|
}
|
|
function zoom_child(e, x, ratio) {
|
|
if (e.attributes != undefined) {
|
|
if (e.attributes.x != undefined) {
|
|
orig_save(e, "x");
|
|
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
|
|
if (e.tagName == "text")
|
|
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
|
|
}
|
|
if (e.attributes.width != undefined) {
|
|
orig_save(e, "width");
|
|
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
|
|
}
|
|
}
|
|
|
|
if (e.childNodes == undefined) return;
|
|
for (var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_child(c[i], x - 10, ratio);
|
|
}
|
|
}
|
|
function zoom_parent(e) {
|
|
if (e.attributes) {
|
|
if (e.attributes.x != undefined) {
|
|
orig_save(e, "x");
|
|
e.attributes.x.value = 10;
|
|
}
|
|
if (e.attributes.width != undefined) {
|
|
orig_save(e, "width");
|
|
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
|
|
}
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for (var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_parent(c[i]);
|
|
}
|
|
}
|
|
function zoom(node) {
|
|
var attr = find_child(node, "rect").attributes;
|
|
var width = parseFloat(attr.width.value);
|
|
var xmin = parseFloat(attr.x.value);
|
|
var xmax = parseFloat(xmin + width);
|
|
var ymin = parseFloat(attr.y.value);
|
|
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
|
|
|
|
// XXX: Workaround for JavaScript float issues (fix me)
|
|
var fudge = 0.0001;
|
|
|
|
unzoombtn.classList.remove("hide");
|
|
|
|
var el = document.getElementById("frames").children;
|
|
for (var i = 0; i < el.length; i++) {
|
|
var e = el[i];
|
|
var a = find_child(e, "rect").attributes;
|
|
var ex = parseFloat(a.x.value);
|
|
var ew = parseFloat(a.width.value);
|
|
var upstack;
|
|
// Is it an ancestor
|
|
if (0 == 0) {
|
|
upstack = parseFloat(a.y.value) > ymin;
|
|
} else {
|
|
upstack = parseFloat(a.y.value) < ymin;
|
|
}
|
|
if (upstack) {
|
|
// Direct ancestor
|
|
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
|
|
e.classList.add("parent");
|
|
zoom_parent(e);
|
|
update_text(e);
|
|
}
|
|
// not in current path
|
|
else
|
|
e.classList.add("hide");
|
|
}
|
|
// Children maybe
|
|
else {
|
|
// no common path
|
|
if (ex < xmin || ex + fudge >= xmax) {
|
|
e.classList.add("hide");
|
|
}
|
|
else {
|
|
zoom_child(e, xmin, ratio);
|
|
update_text(e);
|
|
}
|
|
}
|
|
}
|
|
search();
|
|
}
|
|
function unzoom() {
|
|
unzoombtn.classList.add("hide");
|
|
var el = document.getElementById("frames").children;
|
|
for(var i = 0; i < el.length; i++) {
|
|
el[i].classList.remove("parent");
|
|
el[i].classList.remove("hide");
|
|
zoom_reset(el[i]);
|
|
update_text(el[i]);
|
|
}
|
|
search();
|
|
}
|
|
|
|
// search
|
|
function toggle_ignorecase() {
|
|
ignorecase = !ignorecase;
|
|
if (ignorecase) {
|
|
ignorecaseBtn.classList.add("show");
|
|
} else {
|
|
ignorecaseBtn.classList.remove("show");
|
|
}
|
|
reset_search();
|
|
search();
|
|
}
|
|
function reset_search() {
|
|
var el = document.querySelectorAll("#frames rect");
|
|
for (var i = 0; i < el.length; i++) {
|
|
orig_load(el[i], "fill")
|
|
}
|
|
}
|
|
function search_prompt() {
|
|
if (!searching) {
|
|
var term = prompt("Enter a search term (regexp " +
|
|
"allowed, eg: ^ext4_)"
|
|
+ (ignorecase ? ", ignoring case" : "")
|
|
+ "\nPress Ctrl-i to toggle case sensitivity", "");
|
|
if (term != null) {
|
|
currentSearchTerm = term;
|
|
search();
|
|
}
|
|
} else {
|
|
reset_search();
|
|
searching = 0;
|
|
currentSearchTerm = null;
|
|
searchbtn.classList.remove("show");
|
|
searchbtn.firstChild.nodeValue = "Search"
|
|
matchedtxt.classList.add("hide");
|
|
matchedtxt.firstChild.nodeValue = ""
|
|
}
|
|
}
|
|
function search(term) {
|
|
if (currentSearchTerm === null) return;
|
|
var term = currentSearchTerm;
|
|
|
|
var re = new RegExp(term, ignorecase ? 'i' : '');
|
|
var el = document.getElementById("frames").children;
|
|
var matches = new Object();
|
|
var maxwidth = 0;
|
|
for (var i = 0; i < el.length; i++) {
|
|
var e = el[i];
|
|
var func = g_to_func(e);
|
|
var rect = find_child(e, "rect");
|
|
if (func == null || rect == null)
|
|
continue;
|
|
|
|
// Save max width. Only works as we have a root frame
|
|
var w = parseFloat(rect.attributes.width.value);
|
|
if (w > maxwidth)
|
|
maxwidth = w;
|
|
|
|
if (func.match(re)) {
|
|
// highlight
|
|
var x = parseFloat(rect.attributes.x.value);
|
|
orig_save(rect, "fill");
|
|
rect.attributes.fill.value = "rgb(230,0,230)";
|
|
|
|
// remember matches
|
|
if (matches[x] == undefined) {
|
|
matches[x] = w;
|
|
} else {
|
|
if (w > matches[x]) {
|
|
// overwrite with parent
|
|
matches[x] = w;
|
|
}
|
|
}
|
|
searching = 1;
|
|
}
|
|
}
|
|
if (!searching)
|
|
return;
|
|
|
|
searchbtn.classList.add("show");
|
|
searchbtn.firstChild.nodeValue = "Reset Search";
|
|
|
|
// calculate percent matched, excluding vertical overlap
|
|
var count = 0;
|
|
var lastx = -1;
|
|
var lastw = 0;
|
|
var keys = Array();
|
|
for (k in matches) {
|
|
if (matches.hasOwnProperty(k))
|
|
keys.push(k);
|
|
}
|
|
// sort the matched frames by their x location
|
|
// ascending, then width descending
|
|
keys.sort(function(a, b){
|
|
return a - b;
|
|
});
|
|
// Step through frames saving only the biggest bottom-up frames
|
|
// thanks to the sort order. This relies on the tree property
|
|
// where children are always smaller than their parents.
|
|
var fudge = 0.0001; // JavaScript floating point
|
|
for (var k in keys) {
|
|
var x = parseFloat(keys[k]);
|
|
var w = matches[keys[k]];
|
|
if (x >= lastx + lastw - fudge) {
|
|
count += w;
|
|
lastx = x;
|
|
lastw = w;
|
|
}
|
|
}
|
|
// display matched percent
|
|
matchedtxt.classList.remove("hide");
|
|
var pct = 100 * count / maxwidth;
|
|
if (pct != 100) pct = pct.toFixed(1)
|
|
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
|
|
}
|
|
]]>
|
|
</script>
|
|
<rect x="0.0" y="0" width="1200.0" height="838.0" fill="url(#background)" />
|
|
<text id="title" x="600.00" y="24" >Flame Graph</text>
|
|
<text id="details" x="10.00" y="821" > </text>
|
|
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
|
|
<text id="search" x="1090.00" y="24" >Search</text>
|
|
<text id="ignorecase" x="1174.00" y="24" >ic</text>
|
|
<text id="matched" x="1090.00" y="821" > </text>
|
|
<g id="frames">
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (5 samples, 0.02%)</title><rect x="1177.4" y="533" width="0.3" height="15.0" fill="rgb(220,66,47)" rx="2" ry="2" />
|
|
<text x="1180.44" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (42 samples, 0.21%)</title><rect x="809.6" y="597" width="2.5" height="15.0" fill="rgb(243,72,16)" rx="2" ry="2" />
|
|
<text x="812.62" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (32 samples, 0.16%)</title><rect x="1166.3" y="677" width="1.9" height="15.0" fill="rgb(205,172,41)" rx="2" ry="2" />
|
|
<text x="1169.35" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (74 samples, 0.37%)</title><rect x="809.6" y="741" width="4.4" height="15.0" fill="rgb(243,198,25)" rx="2" ry="2" />
|
|
<text x="812.62" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCPALL_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="1102.3" y="485" width="0.3" height="15.0" fill="rgb(233,178,35)" rx="2" ry="2" />
|
|
<text x="1105.29" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_bn2bin (3 samples, 0.01%)</title><rect x="954.9" y="277" width="0.2" height="15.0" fill="rgb(226,72,36)" rx="2" ry="2" />
|
|
<text x="957.90" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (7 samples, 0.03%)</title><rect x="1187.9" y="453" width="0.4" height="15.0" fill="rgb(226,69,30)" rx="2" ry="2" />
|
|
<text x="1190.94" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="954.9" y="293" width="0.2" height="15.0" fill="rgb(218,214,7)" rx="2" ry="2" />
|
|
<text x="957.90" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[unknown] (5 samples, 0.02%)</title><rect x="921.8" y="757" width="0.3" height="15.0" fill="rgb(228,90,42)" rx="2" ry="2" />
|
|
<text x="924.81" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (27 samples, 0.13%)</title><rect x="1168.8" y="693" width="1.6" height="15.0" fill="rgb(247,144,39)" rx="2" ry="2" />
|
|
<text x="1171.77" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="910.0" y="341" width="0.4" height="15.0" fill="rgb(214,66,45)" rx="2" ry="2" />
|
|
<text x="912.95" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1188.2" y="309" width="0.1" height="15.0" fill="rgb(238,89,28)" rx="2" ry="2" />
|
|
<text x="1191.23" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_vMemCpy (2 samples, 0.01%)</title><rect x="1097.6" y="453" width="0.2" height="15.0" fill="rgb(210,118,33)" rx="2" ry="2" />
|
|
<text x="1100.63" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.01%)</title><rect x="1177.1" y="725" width="0.2" height="15.0" fill="rgb(235,155,16)" rx="2" ry="2" />
|
|
<text x="1180.14" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_search (2 samples, 0.01%)</title><rect x="1124.9" y="549" width="0.2" height="15.0" fill="rgb(234,91,54)" rx="2" ry="2" />
|
|
<text x="1127.94" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (18 samples, 0.09%)</title><rect x="1177.3" y="581" width="1.1" height="15.0" fill="rgb(245,217,43)" rx="2" ry="2" />
|
|
<text x="1180.32" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1132.4" y="485" width="0.1" height="15.0" fill="rgb(235,94,36)" rx="2" ry="2" />
|
|
<text x="1135.37" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (6 samples, 0.03%)</title><rect x="1091.1" y="469" width="0.4" height="15.0" fill="rgb(254,61,52)" rx="2" ry="2" />
|
|
<text x="1094.15" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (9 samples, 0.04%)</title><rect x="921.0" y="645" width="0.6" height="15.0" fill="rgb(247,51,36)" rx="2" ry="2" />
|
|
<text x="924.04" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (8 samples, 0.04%)</title><rect x="1186.9" y="469" width="0.5" height="15.0" fill="rgb(221,189,23)" rx="2" ry="2" />
|
|
<text x="1189.93" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="959.6" y="437" width="0.1" height="15.0" fill="rgb(208,81,37)" rx="2" ry="2" />
|
|
<text x="962.56" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_scan_type (21 samples, 0.10%)</title><rect x="859.4" y="709" width="1.2" height="15.0" fill="rgb(251,189,43)" rx="2" ry="2" />
|
|
<text x="862.40" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (16 samples, 0.08%)</title><rect x="1175.1" y="725" width="0.9" height="15.0" fill="rgb(216,198,13)" rx="2" ry="2" />
|
|
<text x="1178.08" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (6 samples, 0.03%)</title><rect x="809.0" y="597" width="0.4" height="15.0" fill="rgb(218,42,19)" rx="2" ry="2" />
|
|
<text x="812.03" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="1156.6" y="549" width="0.1" height="15.0" fill="rgb(209,221,12)" rx="2" ry="2" />
|
|
<text x="1159.62" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (34 samples, 0.17%)</title><rect x="1186.9" y="709" width="2.0" height="15.0" fill="rgb(247,2,30)" rx="2" ry="2" />
|
|
<text x="1189.93" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (5 samples, 0.02%)</title><rect x="911.7" y="485" width="0.3" height="15.0" fill="rgb(227,11,37)" rx="2" ry="2" />
|
|
<text x="914.66" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (7 samples, 0.03%)</title><rect x="911.5" y="597" width="0.5" height="15.0" fill="rgb(214,101,48)" rx="2" ry="2" />
|
|
<text x="914.54" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="1097.9" y="421" width="0.1" height="15.0" fill="rgb(216,135,1)" rx="2" ry="2" />
|
|
<text x="1100.93" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (12 samples, 0.06%)</title><rect x="1002.6" y="533" width="0.7" height="15.0" fill="rgb(239,172,51)" rx="2" ry="2" />
|
|
<text x="1005.55" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_by_id_raw (4 samples, 0.02%)</title><rect x="855.0" y="709" width="0.2" height="15.0" fill="rgb(250,140,38)" rx="2" ry="2" />
|
|
<text x="857.98" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="1131.8" y="517" width="0.2" height="15.0" fill="rgb(253,141,23)" rx="2" ry="2" />
|
|
<text x="1134.78" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_udpate (14 samples, 0.07%)</title><rect x="818.5" y="725" width="0.9" height="15.0" fill="rgb(215,183,40)" rx="2" ry="2" />
|
|
<text x="821.53" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (4 samples, 0.02%)</title><rect x="917.4" y="501" width="0.2" height="15.0" fill="rgb(250,112,14)" rx="2" ry="2" />
|
|
<text x="920.38" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (17 samples, 0.08%)</title><rect x="951.4" y="469" width="1.0" height="15.0" fill="rgb(216,125,38)" rx="2" ry="2" />
|
|
<text x="954.42" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="907.1" y="533" width="0.3" height="15.0" fill="rgb(217,36,46)" rx="2" ry="2" />
|
|
<text x="910.06" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (16 samples, 0.08%)</title><rect x="1175.1" y="693" width="0.9" height="15.0" fill="rgb(230,186,38)" rx="2" ry="2" />
|
|
<text x="1178.08" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.05%)</title><rect x="1174.1" y="693" width="0.7" height="15.0" fill="rgb(226,208,17)" rx="2" ry="2" />
|
|
<text x="1177.13" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="917.7" y="517" width="0.1" height="15.0" fill="rgb(231,54,17)" rx="2" ry="2" />
|
|
<text x="920.68" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1129.5" y="485" width="0.2" height="15.0" fill="rgb(231,152,2)" rx="2" ry="2" />
|
|
<text x="1132.54" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1188.9" y="597" width="0.2" height="15.0" fill="rgb(212,143,34)" rx="2" ry="2" />
|
|
<text x="1191.94" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (4 samples, 0.02%)</title><rect x="1131.8" y="549" width="0.2" height="15.0" fill="rgb(229,42,26)" rx="2" ry="2" />
|
|
<text x="1134.78" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (25 samples, 0.12%)</title><rect x="1108.4" y="549" width="1.4" height="15.0" fill="rgb(253,94,49)" rx="2" ry="2" />
|
|
<text x="1111.37" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (29 samples, 0.14%)</title><rect x="907.9" y="325" width="1.7" height="15.0" fill="rgb(217,119,14)" rx="2" ry="2" />
|
|
<text x="910.89" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bool_matcher_match (2 samples, 0.01%)</title><rect x="819.4" y="709" width="0.1" height="15.0" fill="rgb(209,83,5)" rx="2" ry="2" />
|
|
<text x="822.41" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="918.3" y="485" width="0.1" height="15.0" fill="rgb(208,78,22)" rx="2" ry="2" />
|
|
<text x="921.33" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="910.8" y="469" width="0.2" height="15.0" fill="rgb(231,72,32)" rx="2" ry="2" />
|
|
<text x="913.84" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CIPv4Match::search_rule (3 samples, 0.01%)</title><rect x="874.3" y="693" width="0.2" height="15.0" fill="rgb(244,5,3)" rx="2" ry="2" />
|
|
<text x="877.33" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="808.3" y="757" width="0.3" height="15.0" fill="rgb(229,152,36)" rx="2" ry="2" />
|
|
<text x="811.27" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_ipv4 (6 samples, 0.03%)</title><rect x="977.8" y="565" width="0.3" height="15.0" fill="rgb(244,222,34)" rx="2" ry="2" />
|
|
<text x="980.78" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (2 samples, 0.01%)</title><rect x="1133.3" y="485" width="0.1" height="15.0" fill="rgb(223,141,27)" rx="2" ry="2" />
|
|
<text x="1136.26" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithGzipData (2 samples, 0.01%)</title><rect x="951.9" y="389" width="0.2" height="15.0" fill="rgb(221,158,9)" rx="2" ry="2" />
|
|
<text x="954.95" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (37 samples, 0.18%)</title><rect x="847.6" y="741" width="2.2" height="15.0" fill="rgb(219,12,14)" rx="2" ry="2" />
|
|
<text x="850.61" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_location (3 samples, 0.01%)</title><rect x="1127.8" y="469" width="0.2" height="15.0" fill="rgb(238,106,4)" rx="2" ry="2" />
|
|
<text x="1130.83" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1186.0" y="757" width="0.2" height="15.0" fill="rgb(220,56,41)" rx="2" ry="2" />
|
|
<text x="1189.05" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (7 samples, 0.03%)</title><rect x="920.1" y="677" width="0.4" height="15.0" fill="rgb(237,62,8)" rx="2" ry="2" />
|
|
<text x="923.10" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (6 samples, 0.03%)</title><rect x="1183.3" y="629" width="0.4" height="15.0" fill="rgb(247,108,4)" rx="2" ry="2" />
|
|
<text x="1186.33" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (29 samples, 0.14%)</title><rect x="232.2" y="741" width="1.8" height="15.0" fill="rgb(222,200,38)" rx="2" ry="2" />
|
|
<text x="235.25" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_location (6 samples, 0.03%)</title><rect x="1183.0" y="645" width="0.3" height="15.0" fill="rgb(239,171,25)" rx="2" ry="2" />
|
|
<text x="1185.98" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (12 samples, 0.06%)</title><rect x="906.2" y="437" width="0.7" height="15.0" fill="rgb(218,14,49)" rx="2" ry="2" />
|
|
<text x="909.24" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (4 samples, 0.02%)</title><rect x="1079.1" y="533" width="0.2" height="15.0" fill="rgb(235,171,37)" rx="2" ry="2" />
|
|
<text x="1082.11" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="951.5" y="421" width="0.1" height="15.0" fill="rgb(246,216,54)" rx="2" ry="2" />
|
|
<text x="954.48" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="907.1" y="597" width="0.3" height="15.0" fill="rgb(218,115,50)" rx="2" ry="2" />
|
|
<text x="910.06" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (25 samples, 0.12%)</title><rect x="1102.3" y="517" width="1.5" height="15.0" fill="rgb(238,84,16)" rx="2" ry="2" />
|
|
<text x="1105.29" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="948.7" y="485" width="0.1" height="15.0" fill="rgb(214,131,14)" rx="2" ry="2" />
|
|
<text x="951.70" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (10 samples, 0.05%)</title><rect x="906.2" y="357" width="0.6" height="15.0" fill="rgb(226,224,11)" rx="2" ry="2" />
|
|
<text x="909.24" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_asn (3 samples, 0.01%)</title><rect x="1102.9" y="453" width="0.2" height="15.0" fill="rgb(250,214,40)" rx="2" ry="2" />
|
|
<text x="1105.88" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (4 samples, 0.02%)</title><rect x="912.3" y="613" width="0.2" height="15.0" fill="rgb(250,227,9)" rx="2" ry="2" />
|
|
<text x="915.25" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_search (341 samples, 1.70%)</title><rect x="819.5" y="741" width="20.1" height="15.0" fill="rgb(228,145,11)" rx="2" ry="2" />
|
|
<text x="822.53" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="954.0" y="309" width="0.1" height="15.0" fill="rgb(208,65,39)" rx="2" ry="2" />
|
|
<text x="957.01" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="912.5" y="581" width="0.1" height="15.0" fill="rgb(222,187,20)" rx="2" ry="2" />
|
|
<text x="915.49" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (130 samples, 0.65%)</title><rect x="907.5" y="693" width="7.6" height="15.0" fill="rgb(205,117,42)" rx="2" ry="2" />
|
|
<text x="910.47" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1187.9" y="277" width="0.3" height="15.0" fill="rgb(206,55,14)" rx="2" ry="2" />
|
|
<text x="1190.94" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_check (11 samples, 0.05%)</title><rect x="1125.1" y="533" width="0.7" height="15.0" fill="rgb(223,200,14)" rx="2" ry="2" />
|
|
<text x="1128.12" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (26 samples, 0.13%)</title><rect x="812.1" y="597" width="1.5" height="15.0" fill="rgb(233,196,37)" rx="2" ry="2" />
|
|
<text x="815.10" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (17 samples, 0.08%)</title><rect x="915.6" y="421" width="1.0" height="15.0" fill="rgb(238,87,36)" rx="2" ry="2" />
|
|
<text x="918.56" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (10 samples, 0.05%)</title><rect x="1155.0" y="501" width="0.6" height="15.0" fill="rgb(246,26,39)" rx="2" ry="2" />
|
|
<text x="1157.96" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="1133.1" y="469" width="0.1" height="15.0" fill="rgb(251,63,29)" rx="2" ry="2" />
|
|
<text x="1136.08" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="991.0" y="517" width="0.1" height="15.0" fill="rgb(233,13,17)" rx="2" ry="2" />
|
|
<text x="993.99" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (29 samples, 0.14%)</title><rect x="1170.4" y="677" width="1.7" height="15.0" fill="rgb(240,152,26)" rx="2" ry="2" />
|
|
<text x="1173.42" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="921.6" y="661" width="0.2" height="15.0" fill="rgb(254,59,0)" rx="2" ry="2" />
|
|
<text x="924.63" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="966.7" y="485" width="0.1" height="15.0" fill="rgb(226,137,7)" rx="2" ry="2" />
|
|
<text x="969.69" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_old_init (2 samples, 0.01%)</title><rect x="1181.3" y="565" width="0.1" height="15.0" fill="rgb(228,137,36)" rx="2" ry="2" />
|
|
<text x="1184.33" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (2 samples, 0.01%)</title><rect x="921.7" y="517" width="0.1" height="15.0" fill="rgb(214,154,13)" rx="2" ry="2" />
|
|
<text x="924.69" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="912.3" y="549" width="0.2" height="15.0" fill="rgb(248,184,27)" rx="2" ry="2" />
|
|
<text x="915.25" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_TCP_PACKET_ENTRY (8 samples, 0.04%)</title><rect x="965.0" y="501" width="0.5" height="15.0" fill="rgb(231,159,34)" rx="2" ry="2" />
|
|
<text x="968.04" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CHuffmanCodeDict::fn_BuildDynDict (2 samples, 0.01%)</title><rect x="1170.2" y="405" width="0.2" height="15.0" fill="rgb(205,65,39)" rx="2" ry="2" />
|
|
<text x="1173.24" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (3 samples, 0.01%)</title><rect x="915.0" y="549" width="0.1" height="15.0" fill="rgb(227,37,21)" rx="2" ry="2" />
|
|
<text x="917.97" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (167 samples, 0.83%)</title><rect x="992.6" y="549" width="9.8" height="15.0" fill="rgb(225,162,6)" rx="2" ry="2" />
|
|
<text x="995.59" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (3 samples, 0.01%)</title><rect x="975.2" y="437" width="0.2" height="15.0" fill="rgb(248,188,9)" rx="2" ry="2" />
|
|
<text x="978.25" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="915.6" y="277" width="0.4" height="15.0" fill="rgb(206,227,8)" rx="2" ry="2" />
|
|
<text x="918.56" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="953.8" y="309" width="0.2" height="15.0" fill="rgb(210,87,48)" rx="2" ry="2" />
|
|
<text x="956.83" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_htable_search (2 samples, 0.01%)</title><rect x="1097.0" y="405" width="0.2" height="15.0" fill="rgb(210,170,47)" rx="2" ry="2" />
|
|
<text x="1100.04" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (20 samples, 0.10%)</title><rect x="1031.9" y="469" width="1.1" height="15.0" fill="rgb(231,123,54)" rx="2" ry="2" />
|
|
<text x="1034.87" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="906.8" y="309" width="0.1" height="15.0" fill="rgb(232,118,37)" rx="2" ry="2" />
|
|
<text x="909.83" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (25 samples, 0.12%)</title><rect x="1168.8" y="597" width="1.4" height="15.0" fill="rgb(251,99,23)" rx="2" ry="2" />
|
|
<text x="1171.77" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count (35 samples, 0.17%)</title><rect x="875.3" y="693" width="2.0" height="15.0" fill="rgb(225,148,13)" rx="2" ry="2" />
|
|
<text x="878.27" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (25 samples, 0.12%)</title><rect x="1172.4" y="693" width="1.4" height="15.0" fill="rgb(238,88,10)" rx="2" ry="2" />
|
|
<text x="1175.36" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="910.8" y="485" width="0.2" height="15.0" fill="rgb(226,57,2)" rx="2" ry="2" />
|
|
<text x="913.84" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_full_scan_string_detail (435 samples, 2.17%)</title><rect x="814.0" y="757" width="25.6" height="15.0" fill="rgb(222,4,10)" rx="2" ry="2" />
|
|
<text x="816.99" y="767.5" >M..</text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (2 samples, 0.01%)</title><rect x="944.8" y="581" width="0.1" height="15.0" fill="rgb(234,3,13)" rx="2" ry="2" />
|
|
<text x="947.75" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="941.1" y="565" width="0.1" height="15.0" fill="rgb(205,79,29)" rx="2" ry="2" />
|
|
<text x="944.09" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (3 samples, 0.01%)</title><rect x="1175.1" y="469" width="0.2" height="15.0" fill="rgb(230,122,37)" rx="2" ry="2" />
|
|
<text x="1178.14" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (3,866 samples, 19.32%)</title><rect x="930.2" y="677" width="228.0" height="15.0" fill="rgb(231,127,40)" rx="2" ry="2" />
|
|
<text x="933.18" y="687.5" >eth_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count (3 samples, 0.01%)</title><rect x="842.0" y="709" width="0.2" height="15.0" fill="rgb(225,109,16)" rx="2" ry="2" />
|
|
<text x="845.00" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1188.3" y="485" width="0.2" height="15.0" fill="rgb(252,167,37)" rx="2" ry="2" />
|
|
<text x="1191.35" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="979.3" y="485" width="0.1" height="15.0" fill="rgb(244,122,23)" rx="2" ry="2" />
|
|
<text x="982.26" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_check (11 samples, 0.05%)</title><rect x="963.3" y="501" width="0.6" height="15.0" fill="rgb(238,129,44)" rx="2" ry="2" />
|
|
<text x="966.27" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="906.8" y="389" width="0.1" height="15.0" fill="rgb(245,178,7)" rx="2" ry="2" />
|
|
<text x="909.83" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>arch_cpu_idle (15 samples, 0.07%)</title><rect x="1189.1" y="725" width="0.9" height="15.0" fill="rgb(236,96,43)" rx="2" ry="2" />
|
|
<text x="1192.12" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (2 samples, 0.01%)</title><rect x="1133.3" y="501" width="0.1" height="15.0" fill="rgb(205,217,39)" rx="2" ry="2" />
|
|
<text x="1136.26" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="1173.8" y="645" width="0.3" height="15.0" fill="rgb(234,153,52)" rx="2" ry="2" />
|
|
<text x="1176.84" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_marsio_14 (19,991 samples, 99.93%)</title><rect x="10.0" y="773" width="1179.1" height="15.0" fill="rgb(228,160,7)" rx="2" ry="2" />
|
|
<text x="13.00" y="783.5" >sapp_marsio_14</text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (27 samples, 0.13%)</title><rect x="1168.8" y="709" width="1.6" height="15.0" fill="rgb(238,222,21)" rx="2" ry="2" />
|
|
<text x="1171.77" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (28 samples, 0.14%)</title><rect x="974.0" y="501" width="1.7" height="15.0" fill="rgb(214,44,19)" rx="2" ry="2" />
|
|
<text x="977.01" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (149 samples, 0.74%)</title><rect x="949.8" y="533" width="8.8" height="15.0" fill="rgb(245,192,46)" rx="2" ry="2" />
|
|
<text x="952.82" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>DNS_UDP_ENTRY (2 samples, 0.01%)</title><rect x="1127.0" y="517" width="0.1" height="15.0" fill="rgb(220,98,43)" rx="2" ry="2" />
|
|
<text x="1130.01" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_udp_entry (12 samples, 0.06%)</title><rect x="1002.6" y="565" width="0.7" height="15.0" fill="rgb(209,221,24)" rx="2" ry="2" />
|
|
<text x="1005.55" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (7 samples, 0.03%)</title><rect x="1187.9" y="421" width="0.4" height="15.0" fill="rgb(247,108,29)" rx="2" ry="2" />
|
|
<text x="1190.94" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1103.1" y="437" width="0.1" height="15.0" fill="rgb(252,188,49)" rx="2" ry="2" />
|
|
<text x="1106.06" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (12 samples, 0.06%)</title><rect x="906.2" y="453" width="0.7" height="15.0" fill="rgb(208,90,8)" rx="2" ry="2" />
|
|
<text x="909.24" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (5 samples, 0.02%)</title><rect x="911.7" y="469" width="0.3" height="15.0" fill="rgb(220,30,44)" rx="2" ry="2" />
|
|
<text x="914.66" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="918.3" y="421" width="0.1" height="15.0" fill="rgb(253,39,30)" rx="2" ry="2" />
|
|
<text x="921.33" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_htable_search_cb (4 samples, 0.02%)</title><rect x="1181.7" y="613" width="0.3" height="15.0" fill="rgb(244,68,9)" rx="2" ry="2" />
|
|
<text x="1184.74" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (27 samples, 0.13%)</title><rect x="999.9" y="501" width="1.6" height="15.0" fill="rgb(241,209,42)" rx="2" ry="2" />
|
|
<text x="1002.90" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="906.4" y="261" width="0.1" height="15.0" fill="rgb(231,195,9)" rx="2" ry="2" />
|
|
<text x="909.41" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.03%)</title><rect x="1176.0" y="661" width="0.4" height="15.0" fill="rgb(215,54,8)" rx="2" ry="2" />
|
|
<text x="1179.02" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (7 samples, 0.03%)</title><rect x="981.2" y="453" width="0.4" height="15.0" fill="rgb(244,125,11)" rx="2" ry="2" />
|
|
<text x="984.20" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (5 samples, 0.02%)</title><rect x="813.6" y="677" width="0.3" height="15.0" fill="rgb(223,8,36)" rx="2" ry="2" />
|
|
<text x="816.63" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1187.6" y="501" width="0.2" height="15.0" fill="rgb(249,121,32)" rx="2" ry="2" />
|
|
<text x="1190.64" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (44 samples, 0.22%)</title><rect x="1148.1" y="565" width="2.6" height="15.0" fill="rgb(210,35,12)" rx="2" ry="2" />
|
|
<text x="1151.06" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (6 samples, 0.03%)</title><rect x="975.1" y="453" width="0.3" height="15.0" fill="rgb(254,158,35)" rx="2" ry="2" />
|
|
<text x="978.07" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="912.0" y="549" width="0.2" height="15.0" fill="rgb(225,21,23)" rx="2" ry="2" />
|
|
<text x="915.02" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (29 samples, 0.14%)</title><rect x="907.9" y="389" width="1.7" height="15.0" fill="rgb(213,12,24)" rx="2" ry="2" />
|
|
<text x="910.89" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="1173.8" y="661" width="0.3" height="15.0" fill="rgb(213,152,1)" rx="2" ry="2" />
|
|
<text x="1176.84" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (17 samples, 0.08%)</title><rect x="915.6" y="325" width="1.0" height="15.0" fill="rgb(214,196,8)" rx="2" ry="2" />
|
|
<text x="918.56" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="962.6" y="485" width="0.1" height="15.0" fill="rgb(232,46,40)" rx="2" ry="2" />
|
|
<text x="965.56" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="991.0" y="501" width="0.1" height="15.0" fill="rgb(234,223,34)" rx="2" ry="2" />
|
|
<text x="993.99" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count (20 samples, 0.10%)</title><rect x="838.5" y="693" width="1.1" height="15.0" fill="rgb(213,149,30)" rx="2" ry="2" />
|
|
<text x="841.47" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grab_mid (2 samples, 0.01%)</title><rect x="809.3" y="565" width="0.1" height="15.0" fill="rgb(251,142,20)" rx="2" ry="2" />
|
|
<text x="812.27" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_vlan_addr (13 samples, 0.06%)</title><rect x="1157.0" y="645" width="0.7" height="15.0" fill="rgb(224,26,7)" rx="2" ry="2" />
|
|
<text x="1159.97" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="910.8" y="453" width="0.2" height="15.0" fill="rgb(232,120,42)" rx="2" ry="2" />
|
|
<text x="913.84" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (29 samples, 0.14%)</title><rect x="907.9" y="437" width="1.7" height="15.0" fill="rgb(254,16,47)" rx="2" ry="2" />
|
|
<text x="910.89" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.01%)</title><rect x="808.4" y="661" width="0.2" height="15.0" fill="rgb(217,194,15)" rx="2" ry="2" />
|
|
<text x="811.38" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="977.1" y="533" width="0.1" height="15.0" fill="rgb(228,137,8)" rx="2" ry="2" />
|
|
<text x="980.07" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BIO_snprintf (2 samples, 0.01%)</title><rect x="1099.0" y="373" width="0.1" height="15.0" fill="rgb(209,100,52)" rx="2" ry="2" />
|
|
<text x="1101.99" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1172.8" y="533" width="0.2" height="15.0" fill="rgb(244,78,48)" rx="2" ry="2" />
|
|
<text x="1175.84" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInflate2::fn_BuildDynamicHuffmanCodeDict (2 samples, 0.01%)</title><rect x="1170.2" y="421" width="0.2" height="15.0" fill="rgb(206,214,14)" rx="2" ry="2" />
|
|
<text x="1173.24" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="978.5" y="533" width="0.1" height="15.0" fill="rgb(243,197,3)" rx="2" ry="2" />
|
|
<text x="981.49" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="1132.4" y="533" width="0.1" height="15.0" fill="rgb(245,217,24)" rx="2" ry="2" />
|
|
<text x="1135.37" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (28 samples, 0.14%)</title><rect x="964.5" y="549" width="1.6" height="15.0" fill="rgb(216,20,22)" rx="2" ry="2" />
|
|
<text x="967.45" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>parse_query_question (2 samples, 0.01%)</title><rect x="1184.6" y="741" width="0.1" height="15.0" fill="rgb(220,210,42)" rx="2" ry="2" />
|
|
<text x="1187.57" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (14 samples, 0.07%)</title><rect x="960.0" y="421" width="0.9" height="15.0" fill="rgb(217,48,22)" rx="2" ry="2" />
|
|
<text x="963.03" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (4 samples, 0.02%)</title><rect x="1001.5" y="501" width="0.2" height="15.0" fill="rgb(223,128,9)" rx="2" ry="2" />
|
|
<text x="1004.49" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (4 samples, 0.02%)</title><rect x="1187.6" y="613" width="0.3" height="15.0" fill="rgb(246,99,43)" rx="2" ry="2" />
|
|
<text x="1190.64" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchrnul (2 samples, 0.01%)</title><rect x="911.8" y="437" width="0.2" height="15.0" fill="rgb(209,22,46)" rx="2" ry="2" />
|
|
<text x="914.84" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="972.9" y="405" width="0.2" height="15.0" fill="rgb(227,9,43)" rx="2" ry="2" />
|
|
<text x="975.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (7 samples, 0.03%)</title><rect x="808.6" y="613" width="0.4" height="15.0" fill="rgb(210,177,53)" rx="2" ry="2" />
|
|
<text x="811.62" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::search_expr (47 samples, 0.23%)</title><rect x="878.5" y="677" width="2.8" height="15.0" fill="rgb(214,66,37)" rx="2" ry="2" />
|
|
<text x="881.51" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (2 samples, 0.01%)</title><rect x="1177.1" y="645" width="0.2" height="15.0" fill="rgb(233,14,29)" rx="2" ry="2" />
|
|
<text x="1180.14" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (181 samples, 0.90%)</title><rect x="1079.8" y="533" width="10.7" height="15.0" fill="rgb(249,134,4)" rx="2" ry="2" />
|
|
<text x="1082.82" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (3 samples, 0.01%)</title><rect x="911.3" y="581" width="0.2" height="15.0" fill="rgb(217,100,52)" rx="2" ry="2" />
|
|
<text x="914.31" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grab_mid (187 samples, 0.93%)</title><rect x="882.1" y="741" width="11.0" height="15.0" fill="rgb(214,204,52)" rx="2" ry="2" />
|
|
<text x="885.11" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (6 samples, 0.03%)</title><rect x="1175.5" y="613" width="0.3" height="15.0" fill="rgb(226,19,32)" rx="2" ry="2" />
|
|
<text x="1178.49" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (2 samples, 0.01%)</title><rect x="1175.8" y="597" width="0.2" height="15.0" fill="rgb(248,58,50)" rx="2" ry="2" />
|
|
<text x="1178.84" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify_udp_v4 (14 samples, 0.07%)</title><rect x="1124.9" y="565" width="0.9" height="15.0" fill="rgb(233,140,44)" rx="2" ry="2" />
|
|
<text x="1127.94" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (213 samples, 1.06%)</title><rect x="907.5" y="725" width="12.5" height="15.0" fill="rgb(220,83,44)" rx="2" ry="2" />
|
|
<text x="910.47" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="1131.0" y="517" width="0.1" height="15.0" fill="rgb(237,17,37)" rx="2" ry="2" />
|
|
<text x="1133.96" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (29 samples, 0.14%)</title><rect x="907.9" y="421" width="1.7" height="15.0" fill="rgb(245,14,1)" rx="2" ry="2" />
|
|
<text x="910.89" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="1172.2" y="597" width="0.2" height="15.0" fill="rgb(236,50,45)" rx="2" ry="2" />
|
|
<text x="1175.25" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_call_fastpath (3 samples, 0.01%)</title><rect x="921.8" y="725" width="0.2" height="15.0" fill="rgb(223,206,26)" rx="2" ry="2" />
|
|
<text x="924.81" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="906.8" y="341" width="0.1" height="15.0" fill="rgb(248,116,45)" rx="2" ry="2" />
|
|
<text x="909.83" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (6 samples, 0.03%)</title><rect x="1109.4" y="501" width="0.4" height="15.0" fill="rgb(235,221,6)" rx="2" ry="2" />
|
|
<text x="1112.43" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (12 samples, 0.06%)</title><rect x="961.3" y="533" width="0.7" height="15.0" fill="rgb(218,76,47)" rx="2" ry="2" />
|
|
<text x="964.33" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (15 samples, 0.07%)</title><rect x="953.2" y="357" width="0.9" height="15.0" fill="rgb(243,132,43)" rx="2" ry="2" />
|
|
<text x="956.25" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (12 samples, 0.06%)</title><rect x="1120.5" y="469" width="0.7" height="15.0" fill="rgb(225,131,32)" rx="2" ry="2" />
|
|
<text x="1123.52" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="909.1" y="277" width="0.3" height="15.0" fill="rgb(240,140,17)" rx="2" ry="2" />
|
|
<text x="912.07" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="1186.0" y="709" width="0.2" height="15.0" fill="rgb(241,49,14)" rx="2" ry="2" />
|
|
<text x="1189.05" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="1003.9" y="581" width="0.1" height="15.0" fill="rgb(214,172,50)" rx="2" ry="2" />
|
|
<text x="1006.85" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (17 samples, 0.08%)</title><rect x="1128.5" y="469" width="1.0" height="15.0" fill="rgb(242,125,51)" rx="2" ry="2" />
|
|
<text x="1131.48" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (4 samples, 0.02%)</title><rect x="1175.5" y="565" width="0.3" height="15.0" fill="rgb(225,178,6)" rx="2" ry="2" />
|
|
<text x="1178.55" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1098.3" y="325" width="0.2" height="15.0" fill="rgb(213,25,40)" rx="2" ry="2" />
|
|
<text x="1101.34" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (5 samples, 0.02%)</title><rect x="970.9" y="485" width="0.3" height="15.0" fill="rgb(240,203,20)" rx="2" ry="2" />
|
|
<text x="973.94" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>region_compile (2 samples, 0.01%)</title><rect x="1186.2" y="757" width="0.1" height="15.0" fill="rgb(241,227,53)" rx="2" ry="2" />
|
|
<text x="1189.23" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (4 samples, 0.02%)</title><rect x="1183.5" y="613" width="0.2" height="15.0" fill="rgb(206,208,41)" rx="2" ry="2" />
|
|
<text x="1186.45" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CZipFormat::AddDocData (2 samples, 0.01%)</title><rect x="951.9" y="357" width="0.2" height="15.0" fill="rgb(220,110,28)" rx="2" ry="2" />
|
|
<text x="954.95" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (17 samples, 0.08%)</title><rect x="959.9" y="453" width="1.0" height="15.0" fill="rgb(227,202,48)" rx="2" ry="2" />
|
|
<text x="962.91" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="957.2" y="453" width="0.4" height="15.0" fill="rgb(237,72,51)" rx="2" ry="2" />
|
|
<text x="960.20" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,745 samples, 8.72%)</title><rect x="1020.3" y="565" width="102.9" height="15.0" fill="rgb(245,90,34)" rx="2" ry="2" />
|
|
<text x="1023.31" y="575.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (42 samples, 0.21%)</title><rect x="915.2" y="565" width="2.5" height="15.0" fill="rgb(248,227,49)" rx="2" ry="2" />
|
|
<text x="918.20" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (7 samples, 0.03%)</title><rect x="1183.7" y="613" width="0.4" height="15.0" fill="rgb(209,128,21)" rx="2" ry="2" />
|
|
<text x="1186.69" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_location (2 samples, 0.01%)</title><rect x="991.5" y="517" width="0.1" height="15.0" fill="rgb(238,84,51)" rx="2" ry="2" />
|
|
<text x="994.47" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (2 samples, 0.01%)</title><rect x="948.0" y="421" width="0.1" height="15.0" fill="rgb(246,181,39)" rx="2" ry="2" />
|
|
<text x="951.00" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (12 samples, 0.06%)</title><rect x="906.2" y="469" width="0.7" height="15.0" fill="rgb(227,56,32)" rx="2" ry="2" />
|
|
<text x="909.24" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (2 samples, 0.01%)</title><rect x="1123.7" y="533" width="0.1" height="15.0" fill="rgb(216,145,39)" rx="2" ry="2" />
|
|
<text x="1126.70" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (2 samples, 0.01%)</title><rect x="912.5" y="661" width="0.1" height="15.0" fill="rgb(237,156,3)" rx="2" ry="2" />
|
|
<text x="915.49" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>default_idle (15 samples, 0.07%)</title><rect x="1189.1" y="709" width="0.9" height="15.0" fill="rgb(247,98,38)" rx="2" ry="2" />
|
|
<text x="1192.12" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.01%)</title><rect x="991.2" y="501" width="0.2" height="15.0" fill="rgb(205,168,26)" rx="2" ry="2" />
|
|
<text x="994.23" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (49 samples, 0.24%)</title><rect x="989.1" y="565" width="2.9" height="15.0" fill="rgb(242,173,43)" rx="2" ry="2" />
|
|
<text x="992.11" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (5 samples, 0.02%)</title><rect x="1179.1" y="677" width="0.3" height="15.0" fill="rgb(234,140,11)" rx="2" ry="2" />
|
|
<text x="1182.15" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="951.5" y="405" width="0.1" height="15.0" fill="rgb(244,113,53)" rx="2" ry="2" />
|
|
<text x="954.48" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (31 samples, 0.15%)</title><rect x="1177.3" y="677" width="1.8" height="15.0" fill="rgb(210,214,8)" rx="2" ry="2" />
|
|
<text x="1180.32" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (16 samples, 0.08%)</title><rect x="1175.1" y="709" width="0.9" height="15.0" fill="rgb(252,145,0)" rx="2" ry="2" />
|
|
<text x="1178.08" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (539 samples, 2.69%)</title><rect x="849.8" y="741" width="31.8" height="15.0" fill="rgb(246,65,34)" rx="2" ry="2" />
|
|
<text x="852.79" y="751.5" >[l..</text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (4 samples, 0.02%)</title><rect x="1174.1" y="581" width="0.3" height="15.0" fill="rgb(234,175,10)" rx="2" ry="2" />
|
|
<text x="1177.13" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_parser_execute (3 samples, 0.01%)</title><rect x="957.8" y="453" width="0.2" height="15.0" fill="rgb(221,53,27)" rx="2" ry="2" />
|
|
<text x="960.79" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (3 samples, 0.01%)</title><rect x="920.5" y="629" width="0.2" height="15.0" fill="rgb(244,179,34)" rx="2" ry="2" />
|
|
<text x="923.51" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BN_bin2bn (2 samples, 0.01%)</title><rect x="1099.3" y="229" width="0.1" height="15.0" fill="rgb(220,73,42)" rx="2" ry="2" />
|
|
<text x="1102.29" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (2 samples, 0.01%)</title><rect x="1168.3" y="757" width="0.1" height="15.0" fill="rgb(227,13,7)" rx="2" ry="2" />
|
|
<text x="1171.29" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="1130.8" y="517" width="0.1" height="15.0" fill="rgb(243,49,27)" rx="2" ry="2" />
|
|
<text x="1133.78" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_deleteEmptyRow (71 samples, 0.35%)</title><rect x="1092.0" y="453" width="4.2" height="15.0" fill="rgb(224,139,47)" rx="2" ry="2" />
|
|
<text x="1095.03" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (8 samples, 0.04%)</title><rect x="1103.2" y="469" width="0.5" height="15.0" fill="rgb(247,181,31)" rx="2" ry="2" />
|
|
<text x="1106.24" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="1188.9" y="757" width="0.2" height="15.0" fill="rgb(214,95,18)" rx="2" ry="2" />
|
|
<text x="1191.94" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (2 samples, 0.01%)</title><rect x="1172.1" y="677" width="0.1" height="15.0" fill="rgb(221,10,53)" rx="2" ry="2" />
|
|
<text x="1175.13" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="908.5" y="213" width="0.1" height="15.0" fill="rgb(248,104,18)" rx="2" ry="2" />
|
|
<text x="911.48" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (3 samples, 0.01%)</title><rect x="918.3" y="597" width="0.1" height="15.0" fill="rgb(234,213,20)" rx="2" ry="2" />
|
|
<text x="921.27" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (17 samples, 0.08%)</title><rect x="1187.9" y="661" width="1.0" height="15.0" fill="rgb(227,15,45)" rx="2" ry="2" />
|
|
<text x="1190.94" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (11 samples, 0.05%)</title><rect x="1176.4" y="677" width="0.7" height="15.0" fill="rgb(205,10,8)" rx="2" ry="2" />
|
|
<text x="1179.43" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (4 samples, 0.02%)</title><rect x="1126.4" y="485" width="0.2" height="15.0" fill="rgb(205,134,1)" rx="2" ry="2" />
|
|
<text x="1129.36" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="1127.7" y="469" width="0.1" height="15.0" fill="rgb(232,142,43)" rx="2" ry="2" />
|
|
<text x="1130.71" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (16 samples, 0.08%)</title><rect x="1175.1" y="677" width="0.9" height="15.0" fill="rgb(251,164,4)" rx="2" ry="2" />
|
|
<text x="1178.08" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (34 samples, 0.17%)</title><rect x="1186.9" y="725" width="2.0" height="15.0" fill="rgb(236,88,13)" rx="2" ry="2" />
|
|
<text x="1189.93" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (12 samples, 0.06%)</title><rect x="955.7" y="437" width="0.7" height="15.0" fill="rgb(206,30,47)" rx="2" ry="2" />
|
|
<text x="958.72" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (3 samples, 0.01%)</title><rect x="954.7" y="341" width="0.1" height="15.0" fill="rgb(229,197,19)" rx="2" ry="2" />
|
|
<text x="957.66" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="977.1" y="517" width="0.1" height="15.0" fill="rgb(212,33,46)" rx="2" ry="2" />
|
|
<text x="980.07" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (5 samples, 0.02%)</title><rect x="982.0" y="501" width="0.3" height="15.0" fill="rgb(245,103,31)" rx="2" ry="2" />
|
|
<text x="984.97" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (3 samples, 0.01%)</title><rect x="911.3" y="469" width="0.2" height="15.0" fill="rgb(244,92,44)" rx="2" ry="2" />
|
|
<text x="914.31" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_app_properties_policy (2 samples, 0.01%)</title><rect x="911.0" y="501" width="0.1" height="15.0" fill="rgb(253,99,35)" rx="2" ry="2" />
|
|
<text x="913.95" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_global_stream_id (2 samples, 0.01%)</title><rect x="948.9" y="517" width="0.1" height="15.0" fill="rgb(212,71,52)" rx="2" ry="2" />
|
|
<text x="951.88" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (7 samples, 0.03%)</title><rect x="1135.1" y="533" width="0.5" height="15.0" fill="rgb(217,107,27)" rx="2" ry="2" />
|
|
<text x="1138.15" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (78 samples, 0.39%)</title><rect x="1126.2" y="533" width="4.6" height="15.0" fill="rgb(205,124,34)" rx="2" ry="2" />
|
|
<text x="1129.18" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="916.3" y="229" width="0.1" height="15.0" fill="rgb(250,174,42)" rx="2" ry="2" />
|
|
<text x="919.32" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1188.6" y="453" width="0.1" height="15.0" fill="rgb(223,14,23)" rx="2" ry="2" />
|
|
<text x="1191.58" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="1172.2" y="613" width="0.2" height="15.0" fill="rgb(240,150,53)" rx="2" ry="2" />
|
|
<text x="1175.25" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.04%)</title><rect x="981.7" y="549" width="0.6" height="15.0" fill="rgb(220,108,14)" rx="2" ry="2" />
|
|
<text x="984.73" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (17 samples, 0.08%)</title><rect x="955.5" y="453" width="1.0" height="15.0" fill="rgb(212,122,17)" rx="2" ry="2" />
|
|
<text x="958.55" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (40 samples, 0.20%)</title><rect x="1131.6" y="597" width="2.4" height="15.0" fill="rgb(252,223,41)" rx="2" ry="2" />
|
|
<text x="1134.61" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (7 samples, 0.03%)</title><rect x="907.5" y="485" width="0.4" height="15.0" fill="rgb(243,187,14)" rx="2" ry="2" />
|
|
<text x="910.47" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (4 samples, 0.02%)</title><rect x="1170.5" y="501" width="0.3" height="15.0" fill="rgb(214,169,24)" rx="2" ry="2" />
|
|
<text x="1173.54" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (7 samples, 0.03%)</title><rect x="1170.4" y="613" width="0.4" height="15.0" fill="rgb(220,130,46)" rx="2" ry="2" />
|
|
<text x="1173.42" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="978.5" y="517" width="0.1" height="15.0" fill="rgb(251,187,19)" rx="2" ry="2" />
|
|
<text x="981.49" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (3 samples, 0.01%)</title><rect x="1178.4" y="565" width="0.2" height="15.0" fill="rgb(239,22,29)" rx="2" ry="2" />
|
|
<text x="1181.38" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (4 samples, 0.02%)</title><rect x="918.5" y="517" width="0.2" height="15.0" fill="rgb(215,135,7)" rx="2" ry="2" />
|
|
<text x="921.50" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (7 samples, 0.03%)</title><rect x="915.6" y="245" width="0.4" height="15.0" fill="rgb(219,37,4)" rx="2" ry="2" />
|
|
<text x="918.56" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (18 samples, 0.09%)</title><rect x="808.6" y="741" width="1.0" height="15.0" fill="rgb(237,24,52)" rx="2" ry="2" />
|
|
<text x="811.56" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.01%)</title><rect x="962.9" y="485" width="0.1" height="15.0" fill="rgb(210,31,11)" rx="2" ry="2" />
|
|
<text x="965.86" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1168.3" y="677" width="0.1" height="15.0" fill="rgb(243,220,22)" rx="2" ry="2" />
|
|
<text x="1171.29" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (3 samples, 0.01%)</title><rect x="915.7" y="149" width="0.2" height="15.0" fill="rgb(253,50,12)" rx="2" ry="2" />
|
|
<text x="918.67" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="1180.6" y="581" width="0.1" height="15.0" fill="rgb(224,218,33)" rx="2" ry="2" />
|
|
<text x="1183.56" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (6 samples, 0.03%)</title><rect x="1116.3" y="549" width="0.4" height="15.0" fill="rgb(214,193,45)" rx="2" ry="2" />
|
|
<text x="1119.33" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (6 samples, 0.03%)</title><rect x="907.1" y="549" width="0.3" height="15.0" fill="rgb(242,157,43)" rx="2" ry="2" />
|
|
<text x="910.06" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (3 samples, 0.01%)</title><rect x="1179.9" y="661" width="0.2" height="15.0" fill="rgb(220,30,43)" rx="2" ry="2" />
|
|
<text x="1182.91" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (5 samples, 0.02%)</title><rect x="976.3" y="469" width="0.3" height="15.0" fill="rgb(217,193,32)" rx="2" ry="2" />
|
|
<text x="979.31" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (2 samples, 0.01%)</title><rect x="1133.3" y="469" width="0.1" height="15.0" fill="rgb(207,40,13)" rx="2" ry="2" />
|
|
<text x="1136.26" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (2 samples, 0.01%)</title><rect x="1156.6" y="613" width="0.1" height="15.0" fill="rgb(245,77,45)" rx="2" ry="2" />
|
|
<text x="1159.62" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="966.6" y="485" width="0.1" height="15.0" fill="rgb(212,33,40)" rx="2" ry="2" />
|
|
<text x="969.58" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1127.5" y="485" width="0.2" height="15.0" fill="rgb(235,100,43)" rx="2" ry="2" />
|
|
<text x="1130.54" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>irq_exit (2 samples, 0.01%)</title><rect x="808.1" y="677" width="0.2" height="15.0" fill="rgb(248,14,21)" rx="2" ry="2" />
|
|
<text x="811.15" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CStringMatch::search_rule (6 samples, 0.03%)</title><rect x="830.3" y="709" width="0.4" height="15.0" fill="rgb(237,19,23)" rx="2" ry="2" />
|
|
<text x="833.33" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="954.1" y="341" width="0.4" height="15.0" fill="rgb(243,161,24)" rx="2" ry="2" />
|
|
<text x="957.13" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1188.2" y="261" width="0.1" height="15.0" fill="rgb(252,5,37)" rx="2" ry="2" />
|
|
<text x="1191.23" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1182.9" y="629" width="0.1" height="15.0" fill="rgb(212,18,53)" rx="2" ry="2" />
|
|
<text x="1185.86" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCPALL_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="958.7" y="485" width="0.3" height="15.0" fill="rgb(252,150,24)" rx="2" ry="2" />
|
|
<text x="961.67" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="907.3" y="501" width="0.1" height="15.0" fill="rgb(251,99,27)" rx="2" ry="2" />
|
|
<text x="910.30" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (7 samples, 0.03%)</title><rect x="911.5" y="613" width="0.5" height="15.0" fill="rgb(230,167,1)" rx="2" ry="2" />
|
|
<text x="914.54" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (8 samples, 0.04%)</title><rect x="910.0" y="437" width="0.4" height="15.0" fill="rgb(219,107,18)" rx="2" ry="2" />
|
|
<text x="912.95" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (34 samples, 0.17%)</title><rect x="953.2" y="421" width="2.0" height="15.0" fill="rgb(247,203,6)" rx="2" ry="2" />
|
|
<text x="956.19" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="1183.6" y="597" width="0.1" height="15.0" fill="rgb(234,223,1)" rx="2" ry="2" />
|
|
<text x="1186.57" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (7 samples, 0.03%)</title><rect x="1183.7" y="629" width="0.4" height="15.0" fill="rgb(246,168,42)" rx="2" ry="2" />
|
|
<text x="1186.69" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.02%)</title><rect x="1110.0" y="517" width="0.3" height="15.0" fill="rgb(251,204,51)" rx="2" ry="2" />
|
|
<text x="1112.96" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="983.3" y="549" width="0.2" height="15.0" fill="rgb(219,154,43)" rx="2" ry="2" />
|
|
<text x="986.27" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clone (4,173 samples, 20.86%)</title><rect x="922.1" y="757" width="246.1" height="15.0" fill="rgb(218,144,16)" rx="2" ry="2" />
|
|
<text x="925.10" y="767.5" >__clone</text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_scan_by_id (12 samples, 0.06%)</title><rect x="815.8" y="741" width="0.7" height="15.0" fill="rgb(226,211,24)" rx="2" ry="2" />
|
|
<text x="818.82" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_id (2 samples, 0.01%)</title><rect x="1182.6" y="661" width="0.1" height="15.0" fill="rgb(229,205,18)" rx="2" ry="2" />
|
|
<text x="1185.57" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="953.7" y="293" width="0.1" height="15.0" fill="rgb(248,171,14)" rx="2" ry="2" />
|
|
<text x="956.72" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (5 samples, 0.02%)</title><rect x="808.3" y="709" width="0.3" height="15.0" fill="rgb(205,220,25)" rx="2" ry="2" />
|
|
<text x="811.27" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_initHttpLinkInfor (2 samples, 0.01%)</title><rect x="952.2" y="437" width="0.1" height="15.0" fill="rgb(210,210,26)" rx="2" ry="2" />
|
|
<text x="955.18" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (50 samples, 0.25%)</title><rect x="907.9" y="517" width="2.9" height="15.0" fill="rgb(245,13,33)" rx="2" ry="2" />
|
|
<text x="910.89" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.05%)</title><rect x="1186.9" y="581" width="0.7" height="15.0" fill="rgb(205,134,6)" rx="2" ry="2" />
|
|
<text x="1189.93" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (3 samples, 0.01%)</title><rect x="1174.9" y="725" width="0.2" height="15.0" fill="rgb(214,114,33)" rx="2" ry="2" />
|
|
<text x="1177.90" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_initHttpConnection (4 samples, 0.02%)</title><rect x="1097.3" y="453" width="0.2" height="15.0" fill="rgb(208,224,36)" rx="2" ry="2" />
|
|
<text x="1100.28" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_recv_burst (43 samples, 0.21%)</title><rect x="1165.7" y="693" width="2.5" height="15.0" fill="rgb(238,127,28)" rx="2" ry="2" />
|
|
<text x="1168.70" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (4 samples, 0.02%)</title><rect x="918.0" y="485" width="0.2" height="15.0" fill="rgb(241,67,6)" rx="2" ry="2" />
|
|
<text x="920.97" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>IEEE_8021_entry (9 samples, 0.04%)</title><rect x="921.0" y="725" width="0.6" height="15.0" fill="rgb(206,168,11)" rx="2" ry="2" />
|
|
<text x="924.04" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1098.2" y="293" width="0.1" height="15.0" fill="rgb(242,79,30)" rx="2" ry="2" />
|
|
<text x="1101.16" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="910.8" y="501" width="0.2" height="15.0" fill="rgb(211,41,3)" rx="2" ry="2" />
|
|
<text x="913.84" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (2 samples, 0.01%)</title><rect x="1170.2" y="549" width="0.2" height="15.0" fill="rgb(230,101,47)" rx="2" ry="2" />
|
|
<text x="1173.24" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (4 samples, 0.02%)</title><rect x="894.5" y="709" width="0.2" height="15.0" fill="rgb(236,207,16)" rx="2" ry="2" />
|
|
<text x="897.50" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (6 samples, 0.03%)</title><rect x="1176.1" y="629" width="0.3" height="15.0" fill="rgb(250,128,12)" rx="2" ry="2" />
|
|
<text x="1179.08" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="840.5" y="741" width="0.1" height="15.0" fill="rgb(236,28,8)" rx="2" ry="2" />
|
|
<text x="843.47" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="966.6" y="469" width="0.1" height="15.0" fill="rgb(212,228,8)" rx="2" ry="2" />
|
|
<text x="969.58" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_stream_scan_string_detail (22 samples, 0.11%)</title><rect x="895.9" y="757" width="1.3" height="15.0" fill="rgb(248,129,0)" rx="2" ry="2" />
|
|
<text x="898.86" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="916.3" y="261" width="0.1" height="15.0" fill="rgb(234,155,18)" rx="2" ry="2" />
|
|
<text x="919.32" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (2 samples, 0.01%)</title><rect x="947.9" y="453" width="0.1" height="15.0" fill="rgb(220,119,34)" rx="2" ry="2" />
|
|
<text x="950.88" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="958.1" y="453" width="0.2" height="15.0" fill="rgb(214,90,7)" rx="2" ry="2" />
|
|
<text x="961.14" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="953.5" y="309" width="0.2" height="15.0" fill="rgb(233,209,32)" rx="2" ry="2" />
|
|
<text x="956.48" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="1188.9" y="725" width="0.2" height="15.0" fill="rgb(213,93,22)" rx="2" ry="2" />
|
|
<text x="1191.94" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (14 samples, 0.07%)</title><rect x="962.3" y="517" width="0.8" height="15.0" fill="rgb(238,55,17)" rx="2" ry="2" />
|
|
<text x="965.27" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="1174.1" y="645" width="0.3" height="15.0" fill="rgb(222,46,24)" rx="2" ry="2" />
|
|
<text x="1177.13" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (29 samples, 0.14%)</title><rect x="907.9" y="357" width="1.7" height="15.0" fill="rgb(237,187,25)" rx="2" ry="2" />
|
|
<text x="910.89" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (5 samples, 0.02%)</title><rect x="1173.8" y="677" width="0.3" height="15.0" fill="rgb(208,78,13)" rx="2" ry="2" />
|
|
<text x="1176.84" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (3 samples, 0.01%)</title><rect x="981.8" y="517" width="0.2" height="15.0" fill="rgb(219,104,13)" rx="2" ry="2" />
|
|
<text x="984.79" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_computeresult (63 samples, 0.31%)</title><rect x="877.8" y="693" width="3.7" height="15.0" fill="rgb(228,184,12)" rx="2" ry="2" />
|
|
<text x="880.81" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (3 samples, 0.01%)</title><rect x="1185.8" y="725" width="0.2" height="15.0" fill="rgb(239,203,20)" rx="2" ry="2" />
|
|
<text x="1188.81" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="978.5" y="549" width="0.1" height="15.0" fill="rgb(215,99,0)" rx="2" ry="2" />
|
|
<text x="981.49" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (5 samples, 0.02%)</title><rect x="918.4" y="565" width="0.3" height="15.0" fill="rgb(228,182,28)" rx="2" ry="2" />
|
|
<text x="921.45" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (3 samples, 0.01%)</title><rect x="1142.2" y="597" width="0.2" height="15.0" fill="rgb(252,152,7)" rx="2" ry="2" />
|
|
<text x="1145.22" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (110 samples, 0.55%)</title><rect x="1116.7" y="549" width="6.5" height="15.0" fill="rgb(208,177,28)" rx="2" ry="2" />
|
|
<text x="1119.68" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (5 samples, 0.02%)</title><rect x="1176.1" y="565" width="0.3" height="15.0" fill="rgb(251,0,50)" rx="2" ry="2" />
|
|
<text x="1179.08" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_dump_sig (6 samples, 0.03%)</title><rect x="915.2" y="501" width="0.4" height="15.0" fill="rgb(254,132,45)" rx="2" ry="2" />
|
|
<text x="918.20" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (6 samples, 0.03%)</title><rect x="896.7" y="741" width="0.3" height="15.0" fill="rgb(208,56,1)" rx="2" ry="2" />
|
|
<text x="899.68" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="1168.3" y="709" width="0.1" height="15.0" fill="rgb(239,197,40)" rx="2" ry="2" />
|
|
<text x="1171.29" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="979.6" y="517" width="0.1" height="15.0" fill="rgb(217,73,47)" rx="2" ry="2" />
|
|
<text x="982.61" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (4 samples, 0.02%)</title><rect x="1175.1" y="581" width="0.2" height="15.0" fill="rgb(250,28,2)" rx="2" ry="2" />
|
|
<text x="1178.08" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_ncopy (3 samples, 0.01%)</title><rect x="908.4" y="245" width="0.2" height="15.0" fill="rgb(230,124,3)" rx="2" ry="2" />
|
|
<text x="911.42" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (9 samples, 0.04%)</title><rect x="907.9" y="277" width="0.5" height="15.0" fill="rgb(219,194,27)" rx="2" ry="2" />
|
|
<text x="910.89" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="911.3" y="517" width="0.2" height="15.0" fill="rgb(246,162,33)" rx="2" ry="2" />
|
|
<text x="914.31" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (47 samples, 0.23%)</title><rect x="952.5" y="469" width="2.8" height="15.0" fill="rgb(231,190,3)" rx="2" ry="2" />
|
|
<text x="955.48" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (3 samples, 0.01%)</title><rect x="948.1" y="533" width="0.2" height="15.0" fill="rgb(230,115,0)" rx="2" ry="2" />
|
|
<text x="951.11" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (13 samples, 0.06%)</title><rect x="1178.4" y="629" width="0.7" height="15.0" fill="rgb(239,199,25)" rx="2" ry="2" />
|
|
<text x="1181.38" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (95 samples, 0.47%)</title><rect x="1073.5" y="533" width="5.6" height="15.0" fill="rgb(228,63,11)" rx="2" ry="2" />
|
|
<text x="1076.45" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (121 samples, 0.60%)</title><rect x="994.7" y="517" width="7.1" height="15.0" fill="rgb(216,25,13)" rx="2" ry="2" />
|
|
<text x="997.71" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (1,102 samples, 5.51%)</title><rect x="939.7" y="645" width="65.0" height="15.0" fill="rgb(214,130,18)" rx="2" ry="2" />
|
|
<text x="942.68" y="655.5" >ipv4_en..</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (15 samples, 0.07%)</title><rect x="959.0" y="469" width="0.9" height="15.0" fill="rgb(248,207,28)" rx="2" ry="2" />
|
|
<text x="961.97" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="972.6" y="485" width="0.1" height="15.0" fill="rgb(210,86,45)" rx="2" ry="2" />
|
|
<text x="975.59" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>IEEE_8021_entry (3,731 samples, 18.65%)</title><rect x="937.7" y="661" width="220.0" height="15.0" fill="rgb(240,213,39)" rx="2" ry="2" />
|
|
<text x="940.67" y="671.5" >IEEE_8021_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (3 samples, 0.01%)</title><rect x="954.9" y="373" width="0.2" height="15.0" fill="rgb(228,142,34)" rx="2" ry="2" />
|
|
<text x="957.90" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (7 samples, 0.03%)</title><rect x="1187.9" y="485" width="0.4" height="15.0" fill="rgb(229,26,31)" rx="2" ry="2" />
|
|
<text x="1190.94" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="1182.9" y="645" width="0.1" height="15.0" fill="rgb(245,105,42)" rx="2" ry="2" />
|
|
<text x="1185.86" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4,173 samples, 20.86%)</title><rect x="922.1" y="709" width="246.1" height="15.0" fill="rgb(252,17,46)" rx="2" ry="2" />
|
|
<text x="925.10" y="719.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (65 samples, 0.32%)</title><rect x="907.5" y="597" width="3.8" height="15.0" fill="rgb(241,142,30)" rx="2" ry="2" />
|
|
<text x="910.47" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (10 samples, 0.05%)</title><rect x="1176.4" y="581" width="0.6" height="15.0" fill="rgb(215,82,21)" rx="2" ry="2" />
|
|
<text x="1179.43" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (78 samples, 0.39%)</title><rect x="1103.8" y="549" width="4.6" height="15.0" fill="rgb(246,10,38)" rx="2" ry="2" />
|
|
<text x="1106.77" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (38 samples, 0.19%)</title><rect x="1097.5" y="485" width="2.3" height="15.0" fill="rgb(229,18,35)" rx="2" ry="2" />
|
|
<text x="1100.52" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (5 samples, 0.02%)</title><rect x="920.2" y="613" width="0.3" height="15.0" fill="rgb(254,20,16)" rx="2" ry="2" />
|
|
<text x="923.16" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (24 samples, 0.12%)</title><rect x="955.3" y="485" width="1.4" height="15.0" fill="rgb(243,216,21)" rx="2" ry="2" />
|
|
<text x="958.31" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (17 samples, 0.08%)</title><rect x="942.1" y="613" width="1.0" height="15.0" fill="rgb(206,8,45)" rx="2" ry="2" />
|
|
<text x="945.10" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_htable_search_cb (2 samples, 0.01%)</title><rect x="1184.1" y="613" width="0.1" height="15.0" fill="rgb(205,123,20)" rx="2" ry="2" />
|
|
<text x="1187.10" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="982.9" y="549" width="0.3" height="15.0" fill="rgb(220,114,51)" rx="2" ry="2" />
|
|
<text x="985.85" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (8 samples, 0.04%)</title><rect x="1177.8" y="549" width="0.5" height="15.0" fill="rgb(234,146,31)" rx="2" ry="2" />
|
|
<text x="1180.85" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_udp_entry (2 samples, 0.01%)</title><rect x="1156.5" y="565" width="0.1" height="15.0" fill="rgb(205,36,52)" rx="2" ry="2" />
|
|
<text x="1159.50" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="1119.3" y="469" width="0.6" height="15.0" fill="rgb(218,33,15)" rx="2" ry="2" />
|
|
<text x="1122.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="978.6" y="549" width="0.1" height="15.0" fill="rgb(236,25,11)" rx="2" ry="2" />
|
|
<text x="981.61" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="1170.2" y="661" width="0.2" height="15.0" fill="rgb(254,108,0)" rx="2" ry="2" />
|
|
<text x="1173.24" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (3 samples, 0.01%)</title><rect x="908.2" y="101" width="0.2" height="15.0" fill="rgb(254,24,48)" rx="2" ry="2" />
|
|
<text x="911.18" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (3 samples, 0.01%)</title><rect x="1097.0" y="421" width="0.2" height="15.0" fill="rgb(240,213,15)" rx="2" ry="2" />
|
|
<text x="1099.98" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithStartLine (2 samples, 0.01%)</title><rect x="1091.9" y="437" width="0.1" height="15.0" fill="rgb(252,83,23)" rx="2" ry="2" />
|
|
<text x="1094.91" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (3 samples, 0.01%)</title><rect x="1174.5" y="581" width="0.2" height="15.0" fill="rgb(205,42,40)" rx="2" ry="2" />
|
|
<text x="1177.49" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (6 samples, 0.03%)</title><rect x="919.4" y="581" width="0.4" height="15.0" fill="rgb(238,133,20)" rx="2" ry="2" />
|
|
<text x="922.45" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (86 samples, 0.43%)</title><rect x="1125.8" y="565" width="5.1" height="15.0" fill="rgb(246,77,4)" rx="2" ry="2" />
|
|
<text x="1128.83" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_new (3 samples, 0.01%)</title><rect x="920.3" y="501" width="0.2" height="15.0" fill="rgb(206,195,32)" rx="2" ry="2" />
|
|
<text x="923.27" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1188.9" y="709" width="0.2" height="15.0" fill="rgb(207,115,27)" rx="2" ry="2" />
|
|
<text x="1191.94" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="906.6" y="261" width="0.1" height="15.0" fill="rgb(227,120,18)" rx="2" ry="2" />
|
|
<text x="909.59" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (9 samples, 0.04%)</title><rect x="1130.2" y="453" width="0.5" height="15.0" fill="rgb(215,163,35)" rx="2" ry="2" />
|
|
<text x="1133.19" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="951.8" y="357" width="0.1" height="15.0" fill="rgb(216,137,54)" rx="2" ry="2" />
|
|
<text x="954.83" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (3 samples, 0.01%)</title><rect x="1135.4" y="501" width="0.2" height="15.0" fill="rgb(250,212,54)" rx="2" ry="2" />
|
|
<text x="1138.38" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1098.7" y="341" width="0.3" height="15.0" fill="rgb(246,35,25)" rx="2" ry="2" />
|
|
<text x="1101.70" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (3 samples, 0.01%)</title><rect x="1079.2" y="517" width="0.1" height="15.0" fill="rgb(241,169,33)" rx="2" ry="2" />
|
|
<text x="1082.17" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (3 samples, 0.01%)</title><rect x="1180.6" y="613" width="0.1" height="15.0" fill="rgb(232,102,49)" rx="2" ry="2" />
|
|
<text x="1183.56" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (7 samples, 0.03%)</title><rect x="1150.2" y="533" width="0.5" height="15.0" fill="rgb(254,210,17)" rx="2" ry="2" />
|
|
<text x="1153.25" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (3 samples, 0.01%)</title><rect x="915.0" y="533" width="0.1" height="15.0" fill="rgb(213,111,42)" rx="2" ry="2" />
|
|
<text x="917.97" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInt128IntervalIndex::Find_interval (2 samples, 0.01%)</title><rect x="1150.3" y="437" width="0.1" height="15.0" fill="rgb(211,132,52)" rx="2" ry="2" />
|
|
<text x="1153.30" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (4 samples, 0.02%)</title><rect x="1130.9" y="533" width="0.2" height="15.0" fill="rgb(246,145,29)" rx="2" ry="2" />
|
|
<text x="1133.90" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="977.3" y="485" width="0.1" height="15.0" fill="rgb(214,62,45)" rx="2" ry="2" />
|
|
<text x="980.25" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="1175.1" y="517" width="0.2" height="15.0" fill="rgb(225,138,38)" rx="2" ry="2" />
|
|
<text x="1178.08" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (2 samples, 0.01%)</title><rect x="1133.7" y="437" width="0.1" height="15.0" fill="rgb(217,59,45)" rx="2" ry="2" />
|
|
<text x="1136.67" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_scan_proto_addr (4 samples, 0.02%)</title><rect x="1121.2" y="469" width="0.3" height="15.0" fill="rgb(213,77,28)" rx="2" ry="2" />
|
|
<text x="1124.23" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="916.3" y="277" width="0.1" height="15.0" fill="rgb(215,42,43)" rx="2" ry="2" />
|
|
<text x="919.32" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (7 samples, 0.03%)</title><rect x="808.6" y="581" width="0.4" height="15.0" fill="rgb(238,200,32)" rx="2" ry="2" />
|
|
<text x="811.62" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="1170.4" y="565" width="0.4" height="15.0" fill="rgb(247,221,53)" rx="2" ry="2" />
|
|
<text x="1173.42" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_jhash_4words (2 samples, 0.01%)</title><rect x="1108.3" y="517" width="0.1" height="15.0" fill="rgb(208,79,19)" rx="2" ry="2" />
|
|
<text x="1111.25" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (130 samples, 0.65%)</title><rect x="907.5" y="677" width="7.6" height="15.0" fill="rgb(245,53,50)" rx="2" ry="2" />
|
|
<text x="910.47" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_sse2_pminub (3 samples, 0.01%)</title><rect x="919.6" y="565" width="0.2" height="15.0" fill="rgb(232,2,50)" rx="2" ry="2" />
|
|
<text x="922.63" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (5 samples, 0.02%)</title><rect x="1187.9" y="341" width="0.3" height="15.0" fill="rgb(207,202,45)" rx="2" ry="2" />
|
|
<text x="1190.94" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="916.6" y="389" width="0.4" height="15.0" fill="rgb(208,80,8)" rx="2" ry="2" />
|
|
<text x="919.62" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="915.6" y="389" width="1.0" height="15.0" fill="rgb(250,224,52)" rx="2" ry="2" />
|
|
<text x="918.56" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_addr (2 samples, 0.01%)</title><rect x="1182.0" y="645" width="0.1" height="15.0" fill="rgb(216,166,9)" rx="2" ry="2" />
|
|
<text x="1184.98" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="912.1" y="485" width="0.1" height="15.0" fill="rgb(251,102,8)" rx="2" ry="2" />
|
|
<text x="915.08" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1124.4" y="533" width="0.1" height="15.0" fill="rgb(247,111,9)" rx="2" ry="2" />
|
|
<text x="1127.35" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (18 samples, 0.09%)</title><rect x="915.6" y="453" width="1.0" height="15.0" fill="rgb(212,225,22)" rx="2" ry="2" />
|
|
<text x="918.56" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (2 samples, 0.01%)</title><rect x="966.7" y="517" width="0.1" height="15.0" fill="rgb(224,131,17)" rx="2" ry="2" />
|
|
<text x="969.69" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (6 samples, 0.03%)</title><rect x="979.8" y="485" width="0.4" height="15.0" fill="rgb(227,132,49)" rx="2" ry="2" />
|
|
<text x="982.85" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (12 samples, 0.06%)</title><rect x="906.2" y="485" width="0.7" height="15.0" fill="rgb(246,164,41)" rx="2" ry="2" />
|
|
<text x="909.24" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_scan_type (6 samples, 0.03%)</title><rect x="816.2" y="725" width="0.3" height="15.0" fill="rgb(227,190,52)" rx="2" ry="2" />
|
|
<text x="819.17" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (2 samples, 0.01%)</title><rect x="1170.2" y="581" width="0.2" height="15.0" fill="rgb(241,155,43)" rx="2" ry="2" />
|
|
<text x="1173.24" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (3 samples, 0.01%)</title><rect x="915.0" y="517" width="0.1" height="15.0" fill="rgb(216,109,40)" rx="2" ry="2" />
|
|
<text x="917.97" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_addr_list_ntop (2 samples, 0.01%)</title><rect x="1186.0" y="597" width="0.2" height="15.0" fill="rgb(206,135,30)" rx="2" ry="2" />
|
|
<text x="1189.05" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (4 samples, 0.02%)</title><rect x="1079.3" y="533" width="0.3" height="15.0" fill="rgb(237,104,45)" rx="2" ry="2" />
|
|
<text x="1082.35" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (4 samples, 0.02%)</title><rect x="1126.7" y="501" width="0.2" height="15.0" fill="rgb(247,74,13)" rx="2" ry="2" />
|
|
<text x="1129.71" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (4 samples, 0.02%)</title><rect x="910.5" y="373" width="0.3" height="15.0" fill="rgb(216,189,31)" rx="2" ry="2" />
|
|
<text x="913.54" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="917.3" y="501" width="0.1" height="15.0" fill="rgb(215,215,6)" rx="2" ry="2" />
|
|
<text x="920.27" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="1132.4" y="517" width="0.1" height="15.0" fill="rgb(214,227,27)" rx="2" ry="2" />
|
|
<text x="1135.37" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="954.7" y="309" width="0.1" height="15.0" fill="rgb(234,5,40)" rx="2" ry="2" />
|
|
<text x="957.66" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_addr_list_ntop_outward (2 samples, 0.01%)</title><rect x="921.7" y="613" width="0.1" height="15.0" fill="rgb(221,72,31)" rx="2" ry="2" />
|
|
<text x="924.69" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_entry (5 samples, 0.02%)</title><rect x="910.5" y="389" width="0.3" height="15.0" fill="rgb(239,102,50)" rx="2" ry="2" />
|
|
<text x="913.48" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="982.6" y="549" width="0.3" height="15.0" fill="rgb(229,26,22)" rx="2" ry="2" />
|
|
<text x="985.62" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1187.9" y="325" width="0.3" height="15.0" fill="rgb(235,43,17)" rx="2" ry="2" />
|
|
<text x="1190.94" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_udp_entry (16 samples, 0.08%)</title><rect x="976.1" y="517" width="1.0" height="15.0" fill="rgb(239,41,12)" rx="2" ry="2" />
|
|
<text x="979.13" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_htable_search (9 samples, 0.04%)</title><rect x="940.7" y="629" width="0.6" height="15.0" fill="rgb(238,50,49)" rx="2" ry="2" />
|
|
<text x="943.74" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (13 samples, 0.06%)</title><rect x="1173.0" y="597" width="0.8" height="15.0" fill="rgb(244,55,27)" rx="2" ry="2" />
|
|
<text x="1176.01" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (6 samples, 0.03%)</title><rect x="968.7" y="517" width="0.4" height="15.0" fill="rgb(206,22,22)" rx="2" ry="2" />
|
|
<text x="971.70" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="914.7" y="597" width="0.4" height="15.0" fill="rgb(232,35,50)" rx="2" ry="2" />
|
|
<text x="917.73" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (327 samples, 1.63%)</title><rect x="946.8" y="581" width="19.3" height="15.0" fill="rgb(251,91,18)" rx="2" ry="2" />
|
|
<text x="949.82" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (8 samples, 0.04%)</title><rect x="1172.4" y="581" width="0.4" height="15.0" fill="rgb(209,158,19)" rx="2" ry="2" />
|
|
<text x="1175.36" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_computeresult (152 samples, 0.76%)</title><rect x="830.7" y="709" width="8.9" height="15.0" fill="rgb(253,86,49)" rx="2" ry="2" />
|
|
<text x="833.68" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (40 samples, 0.20%)</title><rect x="958.6" y="501" width="2.4" height="15.0" fill="rgb(215,61,34)" rx="2" ry="2" />
|
|
<text x="961.61" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (6 samples, 0.03%)</title><rect x="910.0" y="325" width="0.4" height="15.0" fill="rgb(240,159,26)" rx="2" ry="2" />
|
|
<text x="913.01" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="1181.7" y="629" width="0.3" height="15.0" fill="rgb(251,38,3)" rx="2" ry="2" />
|
|
<text x="1184.74" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (19 samples, 0.09%)</title><rect x="1026.9" y="501" width="1.1" height="15.0" fill="rgb(241,172,29)" rx="2" ry="2" />
|
|
<text x="1029.85" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1187.8" y="517" width="0.1" height="15.0" fill="rgb(233,217,5)" rx="2" ry="2" />
|
|
<text x="1190.76" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.03%)</title><rect x="1176.0" y="677" width="0.4" height="15.0" fill="rgb(238,27,39)" rx="2" ry="2" />
|
|
<text x="1179.02" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="912.3" y="469" width="0.1" height="15.0" fill="rgb(216,38,19)" rx="2" ry="2" />
|
|
<text x="915.25" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1187.6" y="517" width="0.2" height="15.0" fill="rgb(224,22,8)" rx="2" ry="2" />
|
|
<text x="1190.64" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="953.5" y="293" width="0.2" height="15.0" fill="rgb(240,35,42)" rx="2" ry="2" />
|
|
<text x="956.54" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="1096.5" y="373" width="0.2" height="15.0" fill="rgb(243,117,17)" rx="2" ry="2" />
|
|
<text x="1099.51" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_l7_protocol_name2id (2 samples, 0.01%)</title><rect x="1100.7" y="437" width="0.1" height="15.0" fill="rgb(205,207,37)" rx="2" ry="2" />
|
|
<text x="1103.70" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (16 samples, 0.08%)</title><rect x="953.2" y="389" width="0.9" height="15.0" fill="rgb(251,61,22)" rx="2" ry="2" />
|
|
<text x="956.19" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (21 samples, 0.10%)</title><rect x="982.3" y="613" width="1.2" height="15.0" fill="rgb(231,202,37)" rx="2" ry="2" />
|
|
<text x="985.26" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (42 samples, 0.21%)</title><rect x="809.6" y="629" width="2.5" height="15.0" fill="rgb(225,146,9)" rx="2" ry="2" />
|
|
<text x="812.62" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (37 samples, 0.18%)</title><rect x="1025.8" y="517" width="2.2" height="15.0" fill="rgb(228,146,11)" rx="2" ry="2" />
|
|
<text x="1028.79" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_check (10 samples, 0.05%)</title><rect x="968.5" y="533" width="0.6" height="15.0" fill="rgb(230,171,8)" rx="2" ry="2" />
|
|
<text x="971.46" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="917.9" y="581" width="0.3" height="15.0" fill="rgb(207,52,18)" rx="2" ry="2" />
|
|
<text x="920.91" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="1145.2" y="549" width="0.2" height="15.0" fill="rgb(242,84,23)" rx="2" ry="2" />
|
|
<text x="1148.23" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (7 samples, 0.03%)</title><rect x="1170.4" y="597" width="0.4" height="15.0" fill="rgb(241,163,48)" rx="2" ry="2" />
|
|
<text x="1173.42" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (5 samples, 0.02%)</title><rect x="1168.4" y="565" width="0.3" height="15.0" fill="rgb(228,136,15)" rx="2" ry="2" />
|
|
<text x="1171.41" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (6 samples, 0.03%)</title><rect x="1174.4" y="629" width="0.4" height="15.0" fill="rgb(207,18,27)" rx="2" ry="2" />
|
|
<text x="1177.43" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.06%)</title><rect x="1187.9" y="581" width="0.8" height="15.0" fill="rgb(243,186,8)" rx="2" ry="2" />
|
|
<text x="1190.94" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (2 samples, 0.01%)</title><rect x="1123.7" y="549" width="0.1" height="15.0" fill="rgb(241,136,39)" rx="2" ry="2" />
|
|
<text x="1126.70" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="813.6" y="629" width="0.3" height="15.0" fill="rgb(213,14,47)" rx="2" ry="2" />
|
|
<text x="816.63" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="983.4" y="533" width="0.1" height="15.0" fill="rgb(225,106,11)" rx="2" ry="2" />
|
|
<text x="986.38" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (30 samples, 0.15%)</title><rect x="1172.4" y="709" width="1.7" height="15.0" fill="rgb(252,158,27)" rx="2" ry="2" />
|
|
<text x="1175.36" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (103 samples, 0.51%)</title><rect x="1117.1" y="533" width="6.1" height="15.0" fill="rgb(251,198,48)" rx="2" ry="2" />
|
|
<text x="1120.10" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_stream_list_free (3 samples, 0.01%)</title><rect x="940.4" y="581" width="0.2" height="15.0" fill="rgb(214,163,6)" rx="2" ry="2" />
|
|
<text x="943.45" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (6 samples, 0.03%)</title><rect x="1183.7" y="581" width="0.4" height="15.0" fill="rgb(219,167,48)" rx="2" ry="2" />
|
|
<text x="1186.75" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (5 samples, 0.02%)</title><rect x="1098.7" y="325" width="0.3" height="15.0" fill="rgb(224,113,8)" rx="2" ry="2" />
|
|
<text x="1101.70" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="915.2" y="533" width="0.4" height="15.0" fill="rgb(206,115,22)" rx="2" ry="2" />
|
|
<text x="918.20" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithServerHello (3 samples, 0.01%)</title><rect x="920.5" y="613" width="0.2" height="15.0" fill="rgb(254,79,27)" rx="2" ry="2" />
|
|
<text x="923.51" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (5 samples, 0.02%)</title><rect x="1179.1" y="597" width="0.3" height="15.0" fill="rgb(252,59,21)" rx="2" ry="2" />
|
|
<text x="1182.15" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="1079.6" y="485" width="0.2" height="15.0" fill="rgb(229,49,1)" rx="2" ry="2" />
|
|
<text x="1082.64" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify_udp_v4 (12 samples, 0.06%)</title><rect x="968.3" y="565" width="0.8" height="15.0" fill="rgb(245,101,13)" rx="2" ry="2" />
|
|
<text x="971.34" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_addr_list_ntop_outward (3 samples, 0.01%)</title><rect x="808.4" y="677" width="0.2" height="15.0" fill="rgb(207,1,18)" rx="2" ry="2" />
|
|
<text x="811.38" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="1126.4" y="469" width="0.2" height="15.0" fill="rgb(245,150,26)" rx="2" ry="2" />
|
|
<text x="1129.36" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (5 samples, 0.02%)</title><rect x="968.0" y="549" width="0.3" height="15.0" fill="rgb(212,196,47)" rx="2" ry="2" />
|
|
<text x="971.05" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_location (4 samples, 0.02%)</title><rect x="972.9" y="469" width="0.2" height="15.0" fill="rgb(247,15,9)" rx="2" ry="2" />
|
|
<text x="975.89" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_ncopy (2 samples, 0.01%)</title><rect x="906.2" y="229" width="0.2" height="15.0" fill="rgb(245,174,13)" rx="2" ry="2" />
|
|
<text x="909.24" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="912.5" y="597" width="0.1" height="15.0" fill="rgb(221,34,7)" rx="2" ry="2" />
|
|
<text x="915.49" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (14 samples, 0.07%)</title><rect x="906.2" y="581" width="0.9" height="15.0" fill="rgb(223,57,18)" rx="2" ry="2" />
|
|
<text x="909.24" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (14 samples, 0.07%)</title><rect x="894.7" y="709" width="0.9" height="15.0" fill="rgb(226,107,36)" rx="2" ry="2" />
|
|
<text x="897.73" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (4 samples, 0.02%)</title><rect x="1174.1" y="661" width="0.3" height="15.0" fill="rgb(226,176,37)" rx="2" ry="2" />
|
|
<text x="1177.13" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="951.1" y="453" width="0.1" height="15.0" fill="rgb(235,49,18)" rx="2" ry="2" />
|
|
<text x="954.06" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="920.5" y="485" width="0.1" height="15.0" fill="rgb(242,106,46)" rx="2" ry="2" />
|
|
<text x="923.51" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="973.3" y="453" width="0.3" height="15.0" fill="rgb(252,100,2)" rx="2" ry="2" />
|
|
<text x="976.30" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>parse_packet (2 samples, 0.01%)</title><rect x="1102.4" y="469" width="0.1" height="15.0" fill="rgb(246,126,38)" rx="2" ry="2" />
|
|
<text x="1105.41" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CZipFormat::AddDocData (2 samples, 0.01%)</title><rect x="1170.2" y="485" width="0.2" height="15.0" fill="rgb(231,218,51)" rx="2" ry="2" />
|
|
<text x="1173.24" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (4 samples, 0.02%)</title><rect x="1185.6" y="709" width="0.2" height="15.0" fill="rgb(235,104,39)" rx="2" ry="2" />
|
|
<text x="1188.58" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Rb_tree_increment (2 samples, 0.01%)</title><rect x="956.4" y="437" width="0.1" height="15.0" fill="rgb(247,127,40)" rx="2" ry="2" />
|
|
<text x="959.43" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_decompressed_name (7 samples, 0.03%)</title><rect x="1185.1" y="709" width="0.4" height="15.0" fill="rgb(226,138,9)" rx="2" ry="2" />
|
|
<text x="1188.10" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1182.6" y="645" width="0.1" height="15.0" fill="rgb(224,85,8)" rx="2" ry="2" />
|
|
<text x="1185.57" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (4 samples, 0.02%)</title><rect x="1175.5" y="501" width="0.3" height="15.0" fill="rgb(239,202,19)" rx="2" ry="2" />
|
|
<text x="1178.55" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (4 samples, 0.02%)</title><rect x="1185.6" y="677" width="0.2" height="15.0" fill="rgb(234,6,36)" rx="2" ry="2" />
|
|
<text x="1188.58" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (76 samples, 0.38%)</title><rect x="907.5" y="645" width="4.5" height="15.0" fill="rgb(243,124,15)" rx="2" ry="2" />
|
|
<text x="910.47" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (22 samples, 0.11%)</title><rect x="974.2" y="469" width="1.3" height="15.0" fill="rgb(253,69,19)" rx="2" ry="2" />
|
|
<text x="977.24" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (2 samples, 0.01%)</title><rect x="1188.9" y="565" width="0.2" height="15.0" fill="rgb(246,65,21)" rx="2" ry="2" />
|
|
<text x="1191.94" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (324 samples, 1.62%)</title><rect x="984.3" y="597" width="19.1" height="15.0" fill="rgb(247,163,51)" rx="2" ry="2" />
|
|
<text x="987.27" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (3 samples, 0.01%)</title><rect x="911.1" y="469" width="0.2" height="15.0" fill="rgb(253,21,2)" rx="2" ry="2" />
|
|
<text x="914.13" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (5 samples, 0.02%)</title><rect x="970.9" y="469" width="0.3" height="15.0" fill="rgb(246,175,2)" rx="2" ry="2" />
|
|
<text x="973.94" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (5 samples, 0.02%)</title><rect x="1168.4" y="725" width="0.3" height="15.0" fill="rgb(212,103,7)" rx="2" ry="2" />
|
|
<text x="1171.41" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (4 samples, 0.02%)</title><rect x="921.6" y="741" width="0.2" height="15.0" fill="rgb(223,11,36)" rx="2" ry="2" />
|
|
<text x="924.57" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (2 samples, 0.01%)</title><rect x="991.8" y="517" width="0.1" height="15.0" fill="rgb(209,114,40)" rx="2" ry="2" />
|
|
<text x="994.82" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="1174.5" y="517" width="0.2" height="15.0" fill="rgb(215,34,27)" rx="2" ry="2" />
|
|
<text x="1177.55" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="1188.2" y="277" width="0.1" height="15.0" fill="rgb(222,210,50)" rx="2" ry="2" />
|
|
<text x="1191.23" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="917.7" y="501" width="0.1" height="15.0" fill="rgb(220,131,22)" rx="2" ry="2" />
|
|
<text x="920.68" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (9 samples, 0.04%)</title><rect x="1101.7" y="469" width="0.5" height="15.0" fill="rgb(237,43,19)" rx="2" ry="2" />
|
|
<text x="1104.70" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="920.8" y="581" width="0.1" height="15.0" fill="rgb(228,216,22)" rx="2" ry="2" />
|
|
<text x="923.80" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (4 samples, 0.02%)</title><rect x="912.0" y="597" width="0.2" height="15.0" fill="rgb(210,60,47)" rx="2" ry="2" />
|
|
<text x="914.96" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (8 samples, 0.04%)</title><rect x="1186.9" y="501" width="0.5" height="15.0" fill="rgb(207,3,35)" rx="2" ry="2" />
|
|
<text x="1189.93" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (13 samples, 0.06%)</title><rect x="1173.0" y="613" width="0.8" height="15.0" fill="rgb(254,185,25)" rx="2" ry="2" />
|
|
<text x="1176.01" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="1133.8" y="501" width="0.2" height="15.0" fill="rgb(219,18,18)" rx="2" ry="2" />
|
|
<text x="1136.85" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="921.6" y="677" width="0.2" height="15.0" fill="rgb(206,143,52)" rx="2" ry="2" />
|
|
<text x="924.63" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="1170.2" y="645" width="0.2" height="15.0" fill="rgb(224,61,28)" rx="2" ry="2" />
|
|
<text x="1173.24" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="921.6" y="725" width="0.2" height="15.0" fill="rgb(222,183,40)" rx="2" ry="2" />
|
|
<text x="924.57" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (4 samples, 0.02%)</title><rect x="982.6" y="533" width="0.3" height="15.0" fill="rgb(241,206,39)" rx="2" ry="2" />
|
|
<text x="985.62" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (200 samples, 1.00%)</title><rect x="1090.5" y="533" width="11.8" height="15.0" fill="rgb(222,224,5)" rx="2" ry="2" />
|
|
<text x="1093.50" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (21 samples, 0.10%)</title><rect x="1132.6" y="565" width="1.2" height="15.0" fill="rgb(235,117,31)" rx="2" ry="2" />
|
|
<text x="1135.55" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="909.6" y="325" width="0.1" height="15.0" fill="rgb(251,172,36)" rx="2" ry="2" />
|
|
<text x="912.60" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (5 samples, 0.02%)</title><rect x="1003.4" y="613" width="0.3" height="15.0" fill="rgb(228,67,13)" rx="2" ry="2" />
|
|
<text x="1006.38" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (2 samples, 0.01%)</title><rect x="1175.8" y="613" width="0.2" height="15.0" fill="rgb(228,34,10)" rx="2" ry="2" />
|
|
<text x="1178.84" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_host_parser (5 samples, 0.02%)</title><rect x="1101.4" y="469" width="0.3" height="15.0" fill="rgb(254,131,24)" rx="2" ry="2" />
|
|
<text x="1104.41" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="954.1" y="309" width="0.4" height="15.0" fill="rgb(233,143,39)" rx="2" ry="2" />
|
|
<text x="957.13" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (10 samples, 0.05%)</title><rect x="906.2" y="293" width="0.6" height="15.0" fill="rgb(206,149,15)" rx="2" ry="2" />
|
|
<text x="909.24" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1109.1" y="501" width="0.2" height="15.0" fill="rgb(252,98,50)" rx="2" ry="2" />
|
|
<text x="1112.14" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (5 samples, 0.02%)</title><rect x="916.6" y="357" width="0.3" height="15.0" fill="rgb(243,121,45)" rx="2" ry="2" />
|
|
<text x="919.62" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (2 samples, 0.01%)</title><rect x="1188.9" y="517" width="0.2" height="15.0" fill="rgb(214,187,1)" rx="2" ry="2" />
|
|
<text x="1191.94" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (4 samples, 0.02%)</title><rect x="917.4" y="437" width="0.2" height="15.0" fill="rgb(216,137,19)" rx="2" ry="2" />
|
|
<text x="920.38" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (4 samples, 0.02%)</title><rect x="914.7" y="517" width="0.3" height="15.0" fill="rgb(230,191,37)" rx="2" ry="2" />
|
|
<text x="917.73" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="1188.5" y="485" width="0.2" height="15.0" fill="rgb(241,131,13)" rx="2" ry="2" />
|
|
<text x="1191.53" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1180.3" y="645" width="0.1" height="15.0" fill="rgb(232,181,47)" rx="2" ry="2" />
|
|
<text x="1183.27" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (26 samples, 0.13%)</title><rect x="1128.1" y="517" width="1.6" height="15.0" fill="rgb(206,195,16)" rx="2" ry="2" />
|
|
<text x="1131.13" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="906.9" y="517" width="0.2" height="15.0" fill="rgb(235,171,29)" rx="2" ry="2" />
|
|
<text x="909.94" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (7 samples, 0.03%)</title><rect x="986.2" y="501" width="0.4" height="15.0" fill="rgb(215,43,43)" rx="2" ry="2" />
|
|
<text x="989.16" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (7 samples, 0.03%)</title><rect x="1174.4" y="661" width="0.4" height="15.0" fill="rgb(249,186,34)" rx="2" ry="2" />
|
|
<text x="1177.37" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="911.3" y="421" width="0.2" height="15.0" fill="rgb(233,177,46)" rx="2" ry="2" />
|
|
<text x="914.31" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (4 samples, 0.02%)</title><rect x="1125.5" y="517" width="0.3" height="15.0" fill="rgb(206,134,51)" rx="2" ry="2" />
|
|
<text x="1128.53" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (17 samples, 0.08%)</title><rect x="955.5" y="469" width="1.0" height="15.0" fill="rgb(214,53,30)" rx="2" ry="2" />
|
|
<text x="958.55" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_get (16 samples, 0.08%)</title><rect x="846.7" y="741" width="0.9" height="15.0" fill="rgb(215,153,1)" rx="2" ry="2" />
|
|
<text x="849.66" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="967.3" y="533" width="0.1" height="15.0" fill="rgb(218,6,26)" rx="2" ry="2" />
|
|
<text x="970.28" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (24 samples, 0.12%)</title><rect x="1172.4" y="677" width="1.4" height="15.0" fill="rgb(253,166,48)" rx="2" ry="2" />
|
|
<text x="1175.36" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="1135.7" y="533" width="0.3" height="15.0" fill="rgb(225,111,37)" rx="2" ry="2" />
|
|
<text x="1138.74" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (9 samples, 0.04%)</title><rect x="981.7" y="565" width="0.6" height="15.0" fill="rgb(209,30,17)" rx="2" ry="2" />
|
|
<text x="984.73" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (2 samples, 0.01%)</title><rect x="1103.5" y="437" width="0.1" height="15.0" fill="rgb(254,118,30)" rx="2" ry="2" />
|
|
<text x="1106.53" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="1172.1" y="597" width="0.1" height="15.0" fill="rgb(235,41,51)" rx="2" ry="2" />
|
|
<text x="1175.13" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (8 samples, 0.04%)</title><rect x="910.0" y="421" width="0.4" height="15.0" fill="rgb(253,113,33)" rx="2" ry="2" />
|
|
<text x="912.95" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="906.8" y="293" width="0.1" height="15.0" fill="rgb(239,79,16)" rx="2" ry="2" />
|
|
<text x="909.83" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_check (3 samples, 0.01%)</title><rect x="968.5" y="517" width="0.2" height="15.0" fill="rgb(243,145,6)" rx="2" ry="2" />
|
|
<text x="971.52" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_scan_by_id (2 samples, 0.01%)</title><rect x="1180.8" y="613" width="0.1" height="15.0" fill="rgb(244,214,27)" rx="2" ry="2" />
|
|
<text x="1183.80" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (7 samples, 0.03%)</title><rect x="907.1" y="677" width="0.4" height="15.0" fill="rgb(246,215,32)" rx="2" ry="2" />
|
|
<text x="910.06" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (25 samples, 0.12%)</title><rect x="1168.8" y="565" width="1.4" height="15.0" fill="rgb(217,71,49)" rx="2" ry="2" />
|
|
<text x="1171.77" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sys_write (2 samples, 0.01%)</title><rect x="921.9" y="709" width="0.1" height="15.0" fill="rgb(206,66,38)" rx="2" ry="2" />
|
|
<text x="924.87" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (3 samples, 0.01%)</title><rect x="976.1" y="469" width="0.2" height="15.0" fill="rgb(225,96,0)" rx="2" ry="2" />
|
|
<text x="979.13" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (9 samples, 0.04%)</title><rect x="921.0" y="661" width="0.6" height="15.0" fill="rgb(238,82,2)" rx="2" ry="2" />
|
|
<text x="924.04" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (7 samples, 0.03%)</title><rect x="1186.5" y="741" width="0.4" height="15.0" fill="rgb(228,122,14)" rx="2" ry="2" />
|
|
<text x="1189.52" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (5 samples, 0.02%)</title><rect x="947.8" y="501" width="0.3" height="15.0" fill="rgb(216,193,35)" rx="2" ry="2" />
|
|
<text x="950.82" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (4 samples, 0.02%)</title><rect x="991.6" y="517" width="0.2" height="15.0" fill="rgb(214,27,22)" rx="2" ry="2" />
|
|
<text x="994.58" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (5 samples, 0.02%)</title><rect x="920.2" y="597" width="0.3" height="15.0" fill="rgb(233,98,50)" rx="2" ry="2" />
|
|
<text x="923.16" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="1096.5" y="357" width="0.1" height="15.0" fill="rgb(251,0,33)" rx="2" ry="2" />
|
|
<text x="1099.51" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="906.6" y="229" width="0.1" height="15.0" fill="rgb(206,111,1)" rx="2" ry="2" />
|
|
<text x="909.59" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (3 samples, 0.01%)</title><rect x="954.1" y="293" width="0.2" height="15.0" fill="rgb(218,6,4)" rx="2" ry="2" />
|
|
<text x="957.13" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="943.0" y="597" width="0.1" height="15.0" fill="rgb(234,100,3)" rx="2" ry="2" />
|
|
<text x="945.98" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (38 samples, 0.19%)</title><rect x="1177.3" y="725" width="2.3" height="15.0" fill="rgb(239,9,46)" rx="2" ry="2" />
|
|
<text x="1180.32" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (7 samples, 0.03%)</title><rect x="1102.8" y="469" width="0.4" height="15.0" fill="rgb(220,171,9)" rx="2" ry="2" />
|
|
<text x="1105.82" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_check (16 samples, 0.08%)</title><rect x="963.3" y="517" width="0.9" height="15.0" fill="rgb(234,10,7)" rx="2" ry="2" />
|
|
<text x="966.27" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Rb_tree_increment (8 samples, 0.04%)</title><rect x="1001.8" y="517" width="0.5" height="15.0" fill="rgb(246,103,37)" rx="2" ry="2" />
|
|
<text x="1004.85" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (41 samples, 0.20%)</title><rect x="958.6" y="533" width="2.4" height="15.0" fill="rgb(210,170,53)" rx="2" ry="2" />
|
|
<text x="961.61" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>process_ipv4_pkt (8 samples, 0.04%)</title><rect x="977.7" y="581" width="0.4" height="15.0" fill="rgb(237,120,25)" rx="2" ry="2" />
|
|
<text x="980.66" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_stream_scan_string (2 samples, 0.01%)</title><rect x="1175.5" y="453" width="0.2" height="15.0" fill="rgb(227,89,39)" rx="2" ry="2" />
|
|
<text x="1178.55" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (9 samples, 0.04%)</title><rect x="981.2" y="501" width="0.5" height="15.0" fill="rgb(220,187,4)" rx="2" ry="2" />
|
|
<text x="984.20" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1187.6" y="533" width="0.2" height="15.0" fill="rgb(211,191,33)" rx="2" ry="2" />
|
|
<text x="1190.64" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="1188.2" y="373" width="0.1" height="15.0" fill="rgb(234,149,54)" rx="2" ry="2" />
|
|
<text x="1191.23" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (9 samples, 0.04%)</title><rect x="907.9" y="245" width="0.5" height="15.0" fill="rgb(228,212,41)" rx="2" ry="2" />
|
|
<text x="910.89" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (12 samples, 0.06%)</title><rect x="1174.1" y="725" width="0.7" height="15.0" fill="rgb(218,38,16)" rx="2" ry="2" />
|
|
<text x="1177.13" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (10 samples, 0.05%)</title><rect x="961.4" y="517" width="0.6" height="15.0" fill="rgb(244,72,17)" rx="2" ry="2" />
|
|
<text x="964.44" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_id (2 samples, 0.01%)</title><rect x="958.0" y="469" width="0.1" height="15.0" fill="rgb(240,214,41)" rx="2" ry="2" />
|
|
<text x="960.96" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (5 samples, 0.02%)</title><rect x="918.4" y="629" width="0.3" height="15.0" fill="rgb(229,50,31)" rx="2" ry="2" />
|
|
<text x="921.45" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="1098.2" y="341" width="0.3" height="15.0" fill="rgb(214,212,4)" rx="2" ry="2" />
|
|
<text x="1101.16" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_location (4 samples, 0.02%)</title><rect x="959.1" y="453" width="0.3" height="15.0" fill="rgb(223,110,39)" rx="2" ry="2" />
|
|
<text x="962.14" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grab_mid (3 samples, 0.01%)</title><rect x="914.4" y="565" width="0.2" height="15.0" fill="rgb(245,227,28)" rx="2" ry="2" />
|
|
<text x="917.43" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (5 samples, 0.02%)</title><rect x="910.5" y="437" width="0.3" height="15.0" fill="rgb(252,42,36)" rx="2" ry="2" />
|
|
<text x="913.48" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (7 samples, 0.03%)</title><rect x="1187.9" y="469" width="0.4" height="15.0" fill="rgb(214,61,25)" rx="2" ry="2" />
|
|
<text x="1190.94" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (9 samples, 0.04%)</title><rect x="921.0" y="581" width="0.6" height="15.0" fill="rgb(205,29,15)" rx="2" ry="2" />
|
|
<text x="924.04" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="1178.0" y="533" width="0.1" height="15.0" fill="rgb(214,158,50)" rx="2" ry="2" />
|
|
<text x="1181.03" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CIPv6Match::SearchIP (24 samples, 0.12%)</title><rect x="904.6" y="741" width="1.5" height="15.0" fill="rgb(241,128,31)" rx="2" ry="2" />
|
|
<text x="907.64" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (16 samples, 0.08%)</title><rect x="1012.8" y="613" width="1.0" height="15.0" fill="rgb(212,24,54)" rx="2" ry="2" />
|
|
<text x="1015.82" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_UDP_PACKET_ENTRY (12 samples, 0.06%)</title><rect x="970.6" y="517" width="0.7" height="15.0" fill="rgb(212,2,20)" rx="2" ry="2" />
|
|
<text x="973.59" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="921.7" y="533" width="0.1" height="15.0" fill="rgb(246,138,30)" rx="2" ry="2" />
|
|
<text x="924.69" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (1,317 samples, 6.58%)</title><rect x="509.9" y="677" width="77.7" height="15.0" fill="rgb(221,42,17)" rx="2" ry="2" />
|
|
<text x="512.93" y="687.5" >operator..</text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="912.5" y="613" width="0.1" height="15.0" fill="rgb(212,92,6)" rx="2" ry="2" />
|
|
<text x="915.49" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (43 samples, 0.21%)</title><rect x="1013.8" y="613" width="2.5" height="15.0" fill="rgb(206,9,18)" rx="2" ry="2" />
|
|
<text x="1016.76" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (18 samples, 0.09%)</title><rect x="962.0" y="549" width="1.1" height="15.0" fill="rgb(234,188,50)" rx="2" ry="2" />
|
|
<text x="965.03" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (48 samples, 0.24%)</title><rect x="952.5" y="485" width="2.8" height="15.0" fill="rgb(251,103,21)" rx="2" ry="2" />
|
|
<text x="955.48" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>printaddr (8 samples, 0.04%)</title><rect x="1185.5" y="741" width="0.5" height="15.0" fill="rgb(205,8,8)" rx="2" ry="2" />
|
|
<text x="1188.52" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="1127.7" y="437" width="0.1" height="15.0" fill="rgb(241,124,1)" rx="2" ry="2" />
|
|
<text x="1130.71" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (7 samples, 0.03%)</title><rect x="808.6" y="597" width="0.4" height="15.0" fill="rgb(237,47,37)" rx="2" ry="2" />
|
|
<text x="811.62" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="958.1" y="437" width="0.2" height="15.0" fill="rgb(205,10,5)" rx="2" ry="2" />
|
|
<text x="961.14" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (99 samples, 0.49%)</title><rect x="1091.7" y="485" width="5.8" height="15.0" fill="rgb(254,83,10)" rx="2" ry="2" />
|
|
<text x="1094.68" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_calloc (5 samples, 0.02%)</title><rect x="883.7" y="709" width="0.3" height="15.0" fill="rgb(220,226,37)" rx="2" ry="2" />
|
|
<text x="886.70" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (8 samples, 0.04%)</title><rect x="1170.4" y="661" width="0.5" height="15.0" fill="rgb(246,158,44)" rx="2" ry="2" />
|
|
<text x="1173.42" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="1156.6" y="565" width="0.1" height="15.0" fill="rgb(237,179,25)" rx="2" ry="2" />
|
|
<text x="1159.62" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1187.1" y="261" width="0.2" height="15.0" fill="rgb(210,8,26)" rx="2" ry="2" />
|
|
<text x="1190.05" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1187.9" y="309" width="0.3" height="15.0" fill="rgb(252,142,37)" rx="2" ry="2" />
|
|
<text x="1190.94" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (32 samples, 0.16%)</title><rect x="956.7" y="485" width="1.9" height="15.0" fill="rgb(215,66,52)" rx="2" ry="2" />
|
|
<text x="959.72" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (3 samples, 0.01%)</title><rect x="909.2" y="197" width="0.2" height="15.0" fill="rgb(219,139,2)" rx="2" ry="2" />
|
|
<text x="912.19" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="916.6" y="421" width="0.4" height="15.0" fill="rgb(234,124,9)" rx="2" ry="2" />
|
|
<text x="919.62" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grab_mid (2 samples, 0.01%)</title><rect x="818.4" y="741" width="0.1" height="15.0" fill="rgb(248,49,36)" rx="2" ry="2" />
|
|
<text x="821.35" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (10 samples, 0.05%)</title><rect x="906.2" y="325" width="0.6" height="15.0" fill="rgb(238,53,50)" rx="2" ry="2" />
|
|
<text x="909.24" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (2 samples, 0.01%)</title><rect x="921.7" y="565" width="0.1" height="15.0" fill="rgb(251,172,13)" rx="2" ry="2" />
|
|
<text x="924.69" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_TCP_PACKET_ENTRY (39 samples, 0.19%)</title><rect x="1119.3" y="501" width="2.3" height="15.0" fill="rgb(229,49,21)" rx="2" ry="2" />
|
|
<text x="1122.28" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="1003.7" y="613" width="0.1" height="15.0" fill="rgb(221,7,38)" rx="2" ry="2" />
|
|
<text x="1006.67" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (13 samples, 0.06%)</title><rect x="1187.9" y="517" width="0.8" height="15.0" fill="rgb(249,184,47)" rx="2" ry="2" />
|
|
<text x="1190.94" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_child_id (23 samples, 0.11%)</title><rect x="853.9" y="725" width="1.3" height="15.0" fill="rgb(207,1,15)" rx="2" ry="2" />
|
|
<text x="856.86" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::search_expr (84 samples, 0.42%)</title><rect x="833.5" y="693" width="5.0" height="15.0" fill="rgb(247,100,27)" rx="2" ry="2" />
|
|
<text x="836.51" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (43 samples, 0.21%)</title><rect x="907.9" y="469" width="2.5" height="15.0" fill="rgb(221,100,0)" rx="2" ry="2" />
|
|
<text x="910.89" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="1150.3" y="501" width="0.2" height="15.0" fill="rgb(209,3,17)" rx="2" ry="2" />
|
|
<text x="1153.30" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="1129.4" y="453" width="0.1" height="15.0" fill="rgb(234,120,43)" rx="2" ry="2" />
|
|
<text x="1132.37" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (7 samples, 0.03%)</title><rect x="1134.7" y="549" width="0.4" height="15.0" fill="rgb(254,31,49)" rx="2" ry="2" />
|
|
<text x="1137.73" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (3 samples, 0.01%)</title><rect x="911.3" y="549" width="0.2" height="15.0" fill="rgb(248,206,46)" rx="2" ry="2" />
|
|
<text x="914.31" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (7 samples, 0.03%)</title><rect x="914.7" y="613" width="0.4" height="15.0" fill="rgb(248,185,22)" rx="2" ry="2" />
|
|
<text x="917.73" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (2 samples, 0.01%)</title><rect x="1132.4" y="469" width="0.1" height="15.0" fill="rgb(220,12,5)" rx="2" ry="2" />
|
|
<text x="1135.37" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (727 samples, 3.63%)</title><rect x="1030.5" y="501" width="42.9" height="15.0" fill="rgb(219,191,31)" rx="2" ry="2" />
|
|
<text x="1033.51" y="511.5" >stre..</text>
|
|
</g>
|
|
<g >
|
|
<title>vfs_write (2 samples, 0.01%)</title><rect x="921.9" y="693" width="0.1" height="15.0" fill="rgb(226,204,3)" rx="2" ry="2" />
|
|
<text x="924.87" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (64 samples, 0.32%)</title><rect x="1007.2" y="629" width="3.7" height="15.0" fill="rgb(232,28,3)" rx="2" ry="2" />
|
|
<text x="1010.15" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (51 samples, 0.25%)</title><rect x="1087.5" y="485" width="3.0" height="15.0" fill="rgb(252,97,30)" rx="2" ry="2" />
|
|
<text x="1090.49" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="1133.8" y="517" width="0.2" height="15.0" fill="rgb(234,65,42)" rx="2" ry="2" />
|
|
<text x="1136.85" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CZipFormat::AddDocData (5 samples, 0.02%)</title><rect x="1096.7" y="357" width="0.3" height="15.0" fill="rgb(223,218,2)" rx="2" ry="2" />
|
|
<text x="1099.69" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="918.3" y="469" width="0.1" height="15.0" fill="rgb(241,92,48)" rx="2" ry="2" />
|
|
<text x="921.33" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="918.3" y="453" width="0.1" height="15.0" fill="rgb(241,32,19)" rx="2" ry="2" />
|
|
<text x="921.33" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="1072.9" y="469" width="0.5" height="15.0" fill="rgb(243,73,5)" rx="2" ry="2" />
|
|
<text x="1075.86" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_copy (3 samples, 0.01%)</title><rect x="908.4" y="261" width="0.2" height="15.0" fill="rgb(219,91,20)" rx="2" ry="2" />
|
|
<text x="911.42" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (21 samples, 0.10%)</title><rect x="918.7" y="613" width="1.3" height="15.0" fill="rgb(241,136,47)" rx="2" ry="2" />
|
|
<text x="921.74" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (8 samples, 0.04%)</title><rect x="1186.9" y="453" width="0.5" height="15.0" fill="rgb(222,31,24)" rx="2" ry="2" />
|
|
<text x="1189.93" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_searchstream (21 samples, 0.10%)</title><rect x="841.6" y="725" width="1.2" height="15.0" fill="rgb(251,192,13)" rx="2" ry="2" />
|
|
<text x="844.59" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509_NAME_oneline (2 samples, 0.01%)</title><rect x="953.3" y="341" width="0.1" height="15.0" fill="rgb(218,136,16)" rx="2" ry="2" />
|
|
<text x="956.30" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (7 samples, 0.03%)</title><rect x="907.5" y="469" width="0.4" height="15.0" fill="rgb(217,76,38)" rx="2" ry="2" />
|
|
<text x="910.47" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="908.1" y="149" width="0.1" height="15.0" fill="rgb(239,228,23)" rx="2" ry="2" />
|
|
<text x="911.06" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (3 samples, 0.01%)</title><rect x="949.5" y="485" width="0.2" height="15.0" fill="rgb(252,91,1)" rx="2" ry="2" />
|
|
<text x="952.53" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="966.7" y="501" width="0.1" height="15.0" fill="rgb(221,145,9)" rx="2" ry="2" />
|
|
<text x="969.69" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1101.1" y="453" width="0.2" height="15.0" fill="rgb(206,100,4)" rx="2" ry="2" />
|
|
<text x="1104.11" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (25 samples, 0.12%)</title><rect x="915.6" y="501" width="1.4" height="15.0" fill="rgb(206,40,14)" rx="2" ry="2" />
|
|
<text x="918.56" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_free (2 samples, 0.01%)</title><rect x="1098.8" y="261" width="0.1" height="15.0" fill="rgb(227,189,37)" rx="2" ry="2" />
|
|
<text x="1101.75" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (2 samples, 0.01%)</title><rect x="917.8" y="597" width="0.1" height="15.0" fill="rgb(238,183,19)" rx="2" ry="2" />
|
|
<text x="920.80" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (2 samples, 0.01%)</title><rect x="1188.2" y="389" width="0.1" height="15.0" fill="rgb(244,1,35)" rx="2" ry="2" />
|
|
<text x="1191.23" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (6 samples, 0.03%)</title><rect x="951.7" y="437" width="0.4" height="15.0" fill="rgb(232,0,23)" rx="2" ry="2" />
|
|
<text x="954.71" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_copy (2 samples, 0.01%)</title><rect x="906.2" y="245" width="0.2" height="15.0" fill="rgb(226,9,16)" rx="2" ry="2" />
|
|
<text x="909.24" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (267 samples, 1.33%)</title><rect x="906.1" y="757" width="15.7" height="15.0" fill="rgb(231,31,44)" rx="2" ry="2" />
|
|
<text x="909.06" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_ip_entry (2 samples, 0.01%)</title><rect x="1131.4" y="549" width="0.1" height="15.0" fill="rgb(252,41,41)" rx="2" ry="2" />
|
|
<text x="1134.43" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime (3 samples, 0.01%)</title><rect x="896.0" y="741" width="0.2" height="15.0" fill="rgb(231,182,14)" rx="2" ry="2" />
|
|
<text x="898.97" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_check (11 samples, 0.05%)</title><rect x="968.4" y="549" width="0.7" height="15.0" fill="rgb(240,120,19)" rx="2" ry="2" />
|
|
<text x="971.40" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="912.0" y="565" width="0.2" height="15.0" fill="rgb(251,213,39)" rx="2" ry="2" />
|
|
<text x="914.96" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_to_UTF8 (2 samples, 0.01%)</title><rect x="906.2" y="261" width="0.2" height="15.0" fill="rgb(225,193,5)" rx="2" ry="2" />
|
|
<text x="909.24" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1127.5" y="437" width="0.2" height="15.0" fill="rgb(241,107,54)" rx="2" ry="2" />
|
|
<text x="1130.54" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (2 samples, 0.01%)</title><rect x="956.3" y="421" width="0.1" height="15.0" fill="rgb(206,205,46)" rx="2" ry="2" />
|
|
<text x="959.25" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="970.6" y="485" width="0.2" height="15.0" fill="rgb(224,114,3)" rx="2" ry="2" />
|
|
<text x="973.59" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="978.8" y="549" width="0.2" height="15.0" fill="rgb(231,102,19)" rx="2" ry="2" />
|
|
<text x="981.84" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (7 samples, 0.03%)</title><rect x="1186.9" y="341" width="0.4" height="15.0" fill="rgb(209,69,38)" rx="2" ry="2" />
|
|
<text x="1189.93" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (5 samples, 0.02%)</title><rect x="1168.4" y="661" width="0.3" height="15.0" fill="rgb(229,19,28)" rx="2" ry="2" />
|
|
<text x="1171.41" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (26 samples, 0.13%)</title><rect x="812.1" y="629" width="1.5" height="15.0" fill="rgb(224,142,38)" rx="2" ry="2" />
|
|
<text x="815.10" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (7 samples, 0.03%)</title><rect x="949.3" y="501" width="0.4" height="15.0" fill="rgb(230,112,16)" rx="2" ry="2" />
|
|
<text x="952.29" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_ex_c2i (2 samples, 0.01%)</title><rect x="908.8" y="245" width="0.1" height="15.0" fill="rgb(234,105,19)" rx="2" ry="2" />
|
|
<text x="911.83" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (5 samples, 0.02%)</title><rect x="976.7" y="437" width="0.3" height="15.0" fill="rgb(245,138,37)" rx="2" ry="2" />
|
|
<text x="979.66" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509_PUBKEY_get (7 samples, 0.03%)</title><rect x="1099.2" y="389" width="0.4" height="15.0" fill="rgb(219,145,34)" rx="2" ry="2" />
|
|
<text x="1102.23" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="1175.3" y="533" width="0.2" height="15.0" fill="rgb(246,16,47)" rx="2" ry="2" />
|
|
<text x="1178.31" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="1172.4" y="629" width="0.4" height="15.0" fill="rgb(249,158,48)" rx="2" ry="2" />
|
|
<text x="1175.36" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_addr (2 samples, 0.01%)</title><rect x="959.7" y="453" width="0.2" height="15.0" fill="rgb(251,10,21)" rx="2" ry="2" />
|
|
<text x="962.73" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.02%)</title><rect x="978.5" y="565" width="0.3" height="15.0" fill="rgb(227,43,47)" rx="2" ry="2" />
|
|
<text x="981.49" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (5 samples, 0.02%)</title><rect x="982.0" y="517" width="0.3" height="15.0" fill="rgb(215,188,16)" rx="2" ry="2" />
|
|
<text x="984.97" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (3 samples, 0.01%)</title><rect x="977.3" y="517" width="0.1" height="15.0" fill="rgb(206,98,26)" rx="2" ry="2" />
|
|
<text x="980.25" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (2 samples, 0.01%)</title><rect x="909.6" y="421" width="0.1" height="15.0" fill="rgb(209,192,42)" rx="2" ry="2" />
|
|
<text x="912.60" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (8 samples, 0.04%)</title><rect x="977.2" y="565" width="0.5" height="15.0" fill="rgb(205,115,31)" rx="2" ry="2" />
|
|
<text x="980.19" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="1174.9" y="741" width="0.2" height="15.0" fill="rgb(235,24,51)" rx="2" ry="2" />
|
|
<text x="1177.90" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="1172.4" y="485" width="0.1" height="15.0" fill="rgb(249,12,25)" rx="2" ry="2" />
|
|
<text x="1175.42" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (19 samples, 0.09%)</title><rect x="1121.6" y="501" width="1.1" height="15.0" fill="rgb(225,35,39)" rx="2" ry="2" />
|
|
<text x="1124.58" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_default_xsputn (3 samples, 0.01%)</title><rect x="907.6" y="437" width="0.2" height="15.0" fill="rgb(241,158,53)" rx="2" ry="2" />
|
|
<text x="910.59" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="909.6" y="373" width="0.1" height="15.0" fill="rgb(250,73,12)" rx="2" ry="2" />
|
|
<text x="912.60" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1187.6" y="597" width="0.2" height="15.0" fill="rgb(243,19,50)" rx="2" ry="2" />
|
|
<text x="1190.64" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="1079.6" y="501" width="0.2" height="15.0" fill="rgb(246,96,23)" rx="2" ry="2" />
|
|
<text x="1082.64" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (13 samples, 0.06%)</title><rect x="1183.3" y="645" width="0.8" height="15.0" fill="rgb(216,130,29)" rx="2" ry="2" />
|
|
<text x="1186.33" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (2 samples, 0.01%)</title><rect x="921.7" y="549" width="0.1" height="15.0" fill="rgb(246,40,7)" rx="2" ry="2" />
|
|
<text x="924.69" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (4 samples, 0.02%)</title><rect x="914.4" y="581" width="0.2" height="15.0" fill="rgb(236,51,16)" rx="2" ry="2" />
|
|
<text x="917.38" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (3 samples, 0.01%)</title><rect x="1172.4" y="501" width="0.2" height="15.0" fill="rgb(219,47,52)" rx="2" ry="2" />
|
|
<text x="1175.42" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (18 samples, 0.09%)</title><rect x="1177.3" y="597" width="1.1" height="15.0" fill="rgb(215,74,2)" rx="2" ry="2" />
|
|
<text x="1180.32" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="1175.5" y="517" width="0.3" height="15.0" fill="rgb(212,23,17)" rx="2" ry="2" />
|
|
<text x="1178.55" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithServerHello (5 samples, 0.02%)</title><rect x="910.5" y="469" width="0.3" height="15.0" fill="rgb(207,121,15)" rx="2" ry="2" />
|
|
<text x="913.48" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (38 samples, 0.19%)</title><rect x="973.9" y="517" width="2.2" height="15.0" fill="rgb(235,193,22)" rx="2" ry="2" />
|
|
<text x="976.89" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_rr_common_field (9 samples, 0.04%)</title><rect x="1185.0" y="725" width="0.5" height="15.0" fill="rgb(227,22,39)" rx="2" ry="2" />
|
|
<text x="1187.99" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (14 samples, 0.07%)</title><rect x="906.2" y="597" width="0.9" height="15.0" fill="rgb(216,154,49)" rx="2" ry="2" />
|
|
<text x="909.24" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="809.2" y="565" width="0.1" height="15.0" fill="rgb(207,149,36)" rx="2" ry="2" />
|
|
<text x="812.15" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_fqdn_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="958.0" y="437" width="0.1" height="15.0" fill="rgb(223,24,8)" rx="2" ry="2" />
|
|
<text x="960.96" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="954.0" y="325" width="0.1" height="15.0" fill="rgb(240,15,8)" rx="2" ry="2" />
|
|
<text x="956.95" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_UDP_PACKET_ENTRY (44 samples, 0.22%)</title><rect x="1145.5" y="565" width="2.6" height="15.0" fill="rgb(246,184,1)" rx="2" ry="2" />
|
|
<text x="1148.47" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_fqdn_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="1180.1" y="629" width="0.2" height="15.0" fill="rgb(226,156,22)" rx="2" ry="2" />
|
|
<text x="1183.09" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (21 samples, 0.10%)</title><rect x="1132.6" y="549" width="1.2" height="15.0" fill="rgb(213,221,25)" rx="2" ry="2" />
|
|
<text x="1135.55" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_app_properties_policy (2 samples, 0.01%)</title><rect x="912.1" y="517" width="0.1" height="15.0" fill="rgb(236,203,16)" rx="2" ry="2" />
|
|
<text x="915.08" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1188.2" y="341" width="0.1" height="15.0" fill="rgb(246,171,49)" rx="2" ry="2" />
|
|
<text x="1191.23" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (21 samples, 0.10%)</title><rect x="1128.2" y="501" width="1.3" height="15.0" fill="rgb(252,50,37)" rx="2" ry="2" />
|
|
<text x="1131.25" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (307 samples, 1.53%)</title><rect x="985.2" y="581" width="18.1" height="15.0" fill="rgb(249,81,51)" rx="2" ry="2" />
|
|
<text x="988.15" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (7 samples, 0.03%)</title><rect x="914.7" y="581" width="0.4" height="15.0" fill="rgb(242,121,23)" rx="2" ry="2" />
|
|
<text x="917.73" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (667 samples, 3.33%)</title><rect x="1033.4" y="453" width="39.3" height="15.0" fill="rgb(226,29,24)" rx="2" ry="2" />
|
|
<text x="1036.40" y="463.5" >htt..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (2 samples, 0.01%)</title><rect x="978.0" y="501" width="0.1" height="15.0" fill="rgb(231,164,31)" rx="2" ry="2" />
|
|
<text x="981.02" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="1186.9" y="357" width="0.4" height="15.0" fill="rgb(240,60,29)" rx="2" ry="2" />
|
|
<text x="1189.93" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CDirectIndex::Find (2 samples, 0.01%)</title><rect x="841.9" y="693" width="0.1" height="15.0" fill="rgb(245,31,0)" rx="2" ry="2" />
|
|
<text x="844.89" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>process_ipv4_pkt (7 samples, 0.03%)</title><rect x="1131.1" y="581" width="0.4" height="15.0" fill="rgb(241,215,2)" rx="2" ry="2" />
|
|
<text x="1134.14" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="948.5" y="501" width="0.1" height="15.0" fill="rgb(231,121,6)" rx="2" ry="2" />
|
|
<text x="951.47" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="912.5" y="565" width="0.1" height="15.0" fill="rgb(220,64,43)" rx="2" ry="2" />
|
|
<text x="915.49" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1127.7" y="453" width="0.1" height="15.0" fill="rgb(224,93,49)" rx="2" ry="2" />
|
|
<text x="1130.71" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="910.6" y="357" width="0.2" height="15.0" fill="rgb(205,69,28)" rx="2" ry="2" />
|
|
<text x="913.60" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (3 samples, 0.01%)</title><rect x="1150.3" y="485" width="0.2" height="15.0" fill="rgb(233,15,3)" rx="2" ry="2" />
|
|
<text x="1153.30" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_scan_by_id (90 samples, 0.45%)</title><rect x="855.3" y="725" width="5.3" height="15.0" fill="rgb(237,31,5)" rx="2" ry="2" />
|
|
<text x="858.33" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="964.3" y="533" width="0.2" height="15.0" fill="rgb(231,41,36)" rx="2" ry="2" />
|
|
<text x="967.33" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (4 samples, 0.02%)</title><rect x="1185.6" y="725" width="0.2" height="15.0" fill="rgb(252,72,53)" rx="2" ry="2" />
|
|
<text x="1188.58" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (68 samples, 0.34%)</title><rect x="907.5" y="613" width="4.0" height="15.0" fill="rgb(237,104,44)" rx="2" ry="2" />
|
|
<text x="910.47" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (48 samples, 0.24%)</title><rect x="1113.5" y="501" width="2.8" height="15.0" fill="rgb(228,35,13)" rx="2" ry="2" />
|
|
<text x="1116.50" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_addr_list_ntop_outward (2 samples, 0.01%)</title><rect x="1188.9" y="613" width="0.2" height="15.0" fill="rgb(244,167,21)" rx="2" ry="2" />
|
|
<text x="1191.94" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="908.2" y="117" width="0.2" height="15.0" fill="rgb(249,65,53)" rx="2" ry="2" />
|
|
<text x="911.18" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (11 samples, 0.05%)</title><rect x="957.0" y="469" width="0.7" height="15.0" fill="rgb(241,48,9)" rx="2" ry="2" />
|
|
<text x="960.02" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (42 samples, 0.21%)</title><rect x="809.6" y="613" width="2.5" height="15.0" fill="rgb(219,13,3)" rx="2" ry="2" />
|
|
<text x="812.62" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (5 samples, 0.02%)</title><rect x="1187.9" y="405" width="0.3" height="15.0" fill="rgb(236,69,26)" rx="2" ry="2" />
|
|
<text x="1190.94" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (325 samples, 1.62%)</title><rect x="946.9" y="565" width="19.2" height="15.0" fill="rgb(225,183,15)" rx="2" ry="2" />
|
|
<text x="949.93" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="910.8" y="533" width="0.5" height="15.0" fill="rgb(225,181,29)" rx="2" ry="2" />
|
|
<text x="913.84" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="908.1" y="165" width="0.3" height="15.0" fill="rgb(231,214,18)" rx="2" ry="2" />
|
|
<text x="911.06" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="918.3" y="437" width="0.1" height="15.0" fill="rgb(244,165,4)" rx="2" ry="2" />
|
|
<text x="921.33" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_enc_save (2 samples, 0.01%)</title><rect x="953.7" y="309" width="0.1" height="15.0" fill="rgb(241,38,48)" rx="2" ry="2" />
|
|
<text x="956.72" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (26 samples, 0.13%)</title><rect x="812.1" y="613" width="1.5" height="15.0" fill="rgb(222,51,12)" rx="2" ry="2" />
|
|
<text x="815.10" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (8 samples, 0.04%)</title><rect x="1130.2" y="437" width="0.5" height="15.0" fill="rgb(236,73,27)" rx="2" ry="2" />
|
|
<text x="1133.19" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="1099.3" y="293" width="0.1" height="15.0" fill="rgb(231,91,32)" rx="2" ry="2" />
|
|
<text x="1102.29" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1131.8" y="501" width="0.2" height="15.0" fill="rgb(218,143,10)" rx="2" ry="2" />
|
|
<text x="1134.84" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="921.7" y="581" width="0.1" height="15.0" fill="rgb(232,3,39)" rx="2" ry="2" />
|
|
<text x="924.69" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_create (2 samples, 0.01%)</title><rect x="1079.6" y="533" width="0.2" height="15.0" fill="rgb(225,11,2)" rx="2" ry="2" />
|
|
<text x="1082.64" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (27 samples, 0.13%)</title><rect x="1098.0" y="405" width="1.6" height="15.0" fill="rgb(222,87,38)" rx="2" ry="2" />
|
|
<text x="1101.05" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (9 samples, 0.04%)</title><rect x="921.0" y="613" width="0.6" height="15.0" fill="rgb(215,41,13)" rx="2" ry="2" />
|
|
<text x="924.04" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grab_mid (3 samples, 0.01%)</title><rect x="1178.1" y="533" width="0.2" height="15.0" fill="rgb(239,160,15)" rx="2" ry="2" />
|
|
<text x="1181.14" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (6 samples, 0.03%)</title><rect x="916.6" y="405" width="0.4" height="15.0" fill="rgb(246,189,9)" rx="2" ry="2" />
|
|
<text x="919.62" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="1096.3" y="389" width="0.1" height="15.0" fill="rgb(233,11,44)" rx="2" ry="2" />
|
|
<text x="1099.28" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (11 samples, 0.05%)</title><rect x="1172.4" y="661" width="0.6" height="15.0" fill="rgb(233,10,30)" rx="2" ry="2" />
|
|
<text x="1175.36" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libpthread-2.17.so] (3 samples, 0.01%)</title><rect x="921.8" y="741" width="0.2" height="15.0" fill="rgb(246,212,25)" rx="2" ry="2" />
|
|
<text x="924.81" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="972.9" y="453" width="0.2" height="15.0" fill="rgb(227,209,53)" rx="2" ry="2" />
|
|
<text x="975.89" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1122.6" y="485" width="0.1" height="15.0" fill="rgb(206,18,10)" rx="2" ry="2" />
|
|
<text x="1125.58" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (9 samples, 0.04%)</title><rect x="912.0" y="645" width="0.5" height="15.0" fill="rgb(213,75,20)" rx="2" ry="2" />
|
|
<text x="914.96" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpReqResHeader (4 samples, 0.02%)</title><rect x="1091.8" y="453" width="0.2" height="15.0" fill="rgb(239,70,25)" rx="2" ry="2" />
|
|
<text x="1094.79" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (134 samples, 0.67%)</title><rect x="1123.2" y="581" width="7.9" height="15.0" fill="rgb(232,57,4)" rx="2" ry="2" />
|
|
<text x="1126.23" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::find_matched_result (22 samples, 0.11%)</title><rect x="878.9" y="661" width="1.3" height="15.0" fill="rgb(207,149,14)" rx="2" ry="2" />
|
|
<text x="881.93" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (8 samples, 0.04%)</title><rect x="1186.9" y="485" width="0.5" height="15.0" fill="rgb(205,131,0)" rx="2" ry="2" />
|
|
<text x="1189.93" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (42 samples, 0.21%)</title><rect x="809.6" y="581" width="2.5" height="15.0" fill="rgb(249,68,6)" rx="2" ry="2" />
|
|
<text x="812.62" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rd_kafka_msg_partitioner (3 samples, 0.01%)</title><rect x="920.3" y="485" width="0.2" height="15.0" fill="rgb(225,18,49)" rx="2" ry="2" />
|
|
<text x="923.27" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="1098.8" y="245" width="0.1" height="15.0" fill="rgb(220,12,25)" rx="2" ry="2" />
|
|
<text x="1101.75" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (10 samples, 0.05%)</title><rect x="949.1" y="533" width="0.6" height="15.0" fill="rgb(206,206,10)" rx="2" ry="2" />
|
|
<text x="952.12" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="951.5" y="373" width="0.1" height="15.0" fill="rgb(248,194,11)" rx="2" ry="2" />
|
|
<text x="954.48" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (21 samples, 0.10%)</title><rect x="918.7" y="597" width="1.3" height="15.0" fill="rgb(239,67,33)" rx="2" ry="2" />
|
|
<text x="921.74" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (7 samples, 0.03%)</title><rect x="1170.4" y="581" width="0.4" height="15.0" fill="rgb(207,111,39)" rx="2" ry="2" />
|
|
<text x="1173.42" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="975.4" y="453" width="0.1" height="15.0" fill="rgb(206,135,29)" rx="2" ry="2" />
|
|
<text x="978.42" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_l7_protocol_name2id (2 samples, 0.01%)</title><rect x="1184.2" y="645" width="0.1" height="15.0" fill="rgb(230,67,39)" rx="2" ry="2" />
|
|
<text x="1187.22" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.01%)</title><rect x="1172.8" y="565" width="0.2" height="15.0" fill="rgb(236,30,25)" rx="2" ry="2" />
|
|
<text x="1175.84" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_tcpall_entry (19 samples, 0.09%)</title><rect x="959.9" y="485" width="1.1" height="15.0" fill="rgb(218,77,11)" rx="2" ry="2" />
|
|
<text x="962.85" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchrnul (2 samples, 0.01%)</title><rect x="1186.8" y="693" width="0.1" height="15.0" fill="rgb(226,197,1)" rx="2" ry="2" />
|
|
<text x="1189.81" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="954.7" y="373" width="0.2" height="15.0" fill="rgb(253,58,10)" rx="2" ry="2" />
|
|
<text x="957.66" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>c2i_ASN1_OBJECT (2 samples, 0.01%)</title><rect x="915.7" y="101" width="0.2" height="15.0" fill="rgb(231,7,51)" rx="2" ry="2" />
|
|
<text x="918.73" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="1186.0" y="629" width="0.2" height="15.0" fill="rgb(210,13,14)" rx="2" ry="2" />
|
|
<text x="1189.05" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (2 samples, 0.01%)</title><rect x="948.0" y="405" width="0.1" height="15.0" fill="rgb(250,120,3)" rx="2" ry="2" />
|
|
<text x="951.00" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="972.6" y="453" width="0.1" height="15.0" fill="rgb(251,140,39)" rx="2" ry="2" />
|
|
<text x="975.59" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1168.3" y="741" width="0.1" height="15.0" fill="rgb(209,12,13)" rx="2" ry="2" />
|
|
<text x="1171.29" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="970.2" y="501" width="0.1" height="15.0" fill="rgb(245,163,37)" rx="2" ry="2" />
|
|
<text x="973.17" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (2 samples, 0.01%)</title><rect x="1098.6" y="373" width="0.1" height="15.0" fill="rgb(240,155,24)" rx="2" ry="2" />
|
|
<text x="1101.58" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="912.1" y="501" width="0.1" height="15.0" fill="rgb(254,113,1)" rx="2" ry="2" />
|
|
<text x="915.08" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1187.4" y="501" width="0.2" height="15.0" fill="rgb(215,190,49)" rx="2" ry="2" />
|
|
<text x="1190.40" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_dump_sig (2 samples, 0.01%)</title><rect x="951.2" y="453" width="0.1" height="15.0" fill="rgb(226,179,38)" rx="2" ry="2" />
|
|
<text x="954.18" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="809.0" y="613" width="0.4" height="15.0" fill="rgb(236,101,44)" rx="2" ry="2" />
|
|
<text x="812.03" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="1176.1" y="597" width="0.3" height="15.0" fill="rgb(214,220,32)" rx="2" ry="2" />
|
|
<text x="1179.08" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_jhash_4words (2 samples, 0.01%)</title><rect x="945.1" y="581" width="0.1" height="15.0" fill="rgb(224,218,22)" rx="2" ry="2" />
|
|
<text x="948.11" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (8 samples, 0.04%)</title><rect x="977.2" y="533" width="0.5" height="15.0" fill="rgb(251,93,35)" rx="2" ry="2" />
|
|
<text x="980.19" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_to_UTF8 (3 samples, 0.01%)</title><rect x="916.0" y="277" width="0.1" height="15.0" fill="rgb(238,204,24)" rx="2" ry="2" />
|
|
<text x="918.97" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (2 samples, 0.01%)</title><rect x="1185.9" y="693" width="0.1" height="15.0" fill="rgb(212,213,4)" rx="2" ry="2" />
|
|
<text x="1188.87" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (2 samples, 0.01%)</title><rect x="947.9" y="469" width="0.1" height="15.0" fill="rgb(214,1,34)" rx="2" ry="2" />
|
|
<text x="950.88" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_searchstream (2 samples, 0.01%)</title><rect x="897.0" y="741" width="0.2" height="15.0" fill="rgb(206,212,47)" rx="2" ry="2" />
|
|
<text x="900.03" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="920.5" y="501" width="0.2" height="15.0" fill="rgb(249,104,42)" rx="2" ry="2" />
|
|
<text x="923.51" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="952.5" y="453" width="0.1" height="15.0" fill="rgb(242,161,28)" rx="2" ry="2" />
|
|
<text x="955.48" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (7 samples, 0.03%)</title><rect x="587.2" y="629" width="0.4" height="15.0" fill="rgb(242,41,44)" rx="2" ry="2" />
|
|
<text x="590.20" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grab_mid (2 samples, 0.01%)</title><rect x="813.7" y="565" width="0.1" height="15.0" fill="rgb(218,146,14)" rx="2" ry="2" />
|
|
<text x="816.69" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (9 samples, 0.04%)</title><rect x="921.0" y="709" width="0.6" height="15.0" fill="rgb(250,125,35)" rx="2" ry="2" />
|
|
<text x="924.04" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (68 samples, 0.34%)</title><rect x="809.6" y="661" width="4.0" height="15.0" fill="rgb(247,9,19)" rx="2" ry="2" />
|
|
<text x="812.62" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (1,316 samples, 6.58%)</title><rect x="510.0" y="661" width="77.6" height="15.0" fill="rgb(248,143,11)" rx="2" ry="2" />
|
|
<text x="512.99" y="671.5" >malloc</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="1150.5" y="517" width="0.1" height="15.0" fill="rgb(240,223,37)" rx="2" ry="2" />
|
|
<text x="1153.48" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="980.3" y="501" width="0.1" height="15.0" fill="rgb(223,58,8)" rx="2" ry="2" />
|
|
<text x="983.26" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (6 samples, 0.03%)</title><rect x="809.0" y="645" width="0.4" height="15.0" fill="rgb(247,187,53)" rx="2" ry="2" />
|
|
<text x="812.03" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="911.3" y="453" width="0.2" height="15.0" fill="rgb(223,170,10)" rx="2" ry="2" />
|
|
<text x="914.31" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (9 samples, 0.04%)</title><rect x="921.0" y="597" width="0.6" height="15.0" fill="rgb(244,164,52)" rx="2" ry="2" />
|
|
<text x="924.04" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (18 samples, 0.09%)</title><rect x="951.4" y="485" width="1.1" height="15.0" fill="rgb(221,156,38)" rx="2" ry="2" />
|
|
<text x="954.42" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (3 samples, 0.01%)</title><rect x="1177.1" y="709" width="0.2" height="15.0" fill="rgb(248,4,41)" rx="2" ry="2" />
|
|
<text x="1180.14" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="982.0" y="485" width="0.3" height="15.0" fill="rgb(205,70,8)" rx="2" ry="2" />
|
|
<text x="985.03" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="1180.6" y="597" width="0.1" height="15.0" fill="rgb(231,168,27)" rx="2" ry="2" />
|
|
<text x="1183.56" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (8 samples, 0.04%)</title><rect x="808.6" y="677" width="0.4" height="15.0" fill="rgb(212,182,39)" rx="2" ry="2" />
|
|
<text x="811.56" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="915.6" y="261" width="0.4" height="15.0" fill="rgb(234,177,41)" rx="2" ry="2" />
|
|
<text x="918.56" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (3 samples, 0.01%)</title><rect x="1172.8" y="613" width="0.2" height="15.0" fill="rgb(213,171,10)" rx="2" ry="2" />
|
|
<text x="1175.84" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (5 samples, 0.02%)</title><rect x="911.7" y="533" width="0.3" height="15.0" fill="rgb(225,86,36)" rx="2" ry="2" />
|
|
<text x="914.66" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_search (24 samples, 0.12%)</title><rect x="841.4" y="741" width="1.4" height="15.0" fill="rgb(223,185,34)" rx="2" ry="2" />
|
|
<text x="844.41" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (4 samples, 0.02%)</title><rect x="951.8" y="405" width="0.3" height="15.0" fill="rgb(223,225,5)" rx="2" ry="2" />
|
|
<text x="954.83" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (9 samples, 0.04%)</title><rect x="1144.9" y="565" width="0.6" height="15.0" fill="rgb(233,151,24)" rx="2" ry="2" />
|
|
<text x="1147.94" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (24 samples, 0.12%)</title><rect x="906.1" y="725" width="1.4" height="15.0" fill="rgb(250,73,3)" rx="2" ry="2" />
|
|
<text x="909.06" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (11 samples, 0.05%)</title><rect x="917.0" y="533" width="0.7" height="15.0" fill="rgb(248,47,12)" rx="2" ry="2" />
|
|
<text x="920.03" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (6 samples, 0.03%)</title><rect x="915.2" y="485" width="0.4" height="15.0" fill="rgb(233,24,7)" rx="2" ry="2" />
|
|
<text x="918.20" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (83 samples, 0.41%)</title><rect x="915.1" y="677" width="4.9" height="15.0" fill="rgb(254,59,4)" rx="2" ry="2" />
|
|
<text x="918.14" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (67 samples, 0.33%)</title><rect x="978.3" y="597" width="4.0" height="15.0" fill="rgb(222,180,15)" rx="2" ry="2" />
|
|
<text x="981.31" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="956.6" y="453" width="0.1" height="15.0" fill="rgb(205,184,36)" rx="2" ry="2" />
|
|
<text x="959.61" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (12 samples, 0.06%)</title><rect x="1186.9" y="613" width="0.7" height="15.0" fill="rgb(223,37,18)" rx="2" ry="2" />
|
|
<text x="1189.93" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="1175.3" y="549" width="0.2" height="15.0" fill="rgb(206,66,42)" rx="2" ry="2" />
|
|
<text x="1178.31" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (9 samples, 0.04%)</title><rect x="949.2" y="517" width="0.5" height="15.0" fill="rgb(216,154,35)" rx="2" ry="2" />
|
|
<text x="952.18" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::get_mapped_id (30 samples, 0.15%)</title><rect x="836.7" y="677" width="1.8" height="15.0" fill="rgb(222,219,8)" rx="2" ry="2" />
|
|
<text x="839.70" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (29 samples, 0.14%)</title><rect x="907.9" y="341" width="1.7" height="15.0" fill="rgb(223,152,54)" rx="2" ry="2" />
|
|
<text x="910.89" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (34 samples, 0.17%)</title><rect x="953.2" y="405" width="2.0" height="15.0" fill="rgb(211,89,25)" rx="2" ry="2" />
|
|
<text x="956.19" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (4 samples, 0.02%)</title><rect x="918.0" y="501" width="0.2" height="15.0" fill="rgb(218,65,21)" rx="2" ry="2" />
|
|
<text x="920.97" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="1170.4" y="645" width="0.5" height="15.0" fill="rgb(207,108,24)" rx="2" ry="2" />
|
|
<text x="1173.42" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (3 samples, 0.01%)</title><rect x="964.3" y="549" width="0.2" height="15.0" fill="rgb(227,128,24)" rx="2" ry="2" />
|
|
<text x="967.27" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (2 samples, 0.01%)</title><rect x="979.3" y="517" width="0.1" height="15.0" fill="rgb(242,153,2)" rx="2" ry="2" />
|
|
<text x="982.26" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="966.8" y="517" width="0.1" height="15.0" fill="rgb(245,122,23)" rx="2" ry="2" />
|
|
<text x="969.81" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (4 samples, 0.02%)</title><rect x="1124.4" y="549" width="0.2" height="15.0" fill="rgb(233,115,45)" rx="2" ry="2" />
|
|
<text x="1127.35" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_to_UTF8 (3 samples, 0.01%)</title><rect x="908.4" y="277" width="0.2" height="15.0" fill="rgb(225,193,0)" rx="2" ry="2" />
|
|
<text x="911.42" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_udpate (8 samples, 0.04%)</title><rect x="840.6" y="725" width="0.5" height="15.0" fill="rgb(247,147,17)" rx="2" ry="2" />
|
|
<text x="843.65" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (3 samples, 0.01%)</title><rect x="1133.6" y="469" width="0.2" height="15.0" fill="rgb(218,29,22)" rx="2" ry="2" />
|
|
<text x="1136.61" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_dump_sig (7 samples, 0.03%)</title><rect x="907.5" y="501" width="0.4" height="15.0" fill="rgb(234,151,26)" rx="2" ry="2" />
|
|
<text x="910.47" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (14 samples, 0.07%)</title><rect x="960.0" y="437" width="0.9" height="15.0" fill="rgb(215,5,36)" rx="2" ry="2" />
|
|
<text x="963.03" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_calloc (9 samples, 0.04%)</title><rect x="896.2" y="741" width="0.5" height="15.0" fill="rgb(206,38,3)" rx="2" ry="2" />
|
|
<text x="899.15" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (10 samples, 0.05%)</title><rect x="906.2" y="389" width="0.6" height="15.0" fill="rgb(229,172,47)" rx="2" ry="2" />
|
|
<text x="909.24" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="987.2" y="533" width="0.7" height="15.0" fill="rgb(226,199,43)" rx="2" ry="2" />
|
|
<text x="990.16" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="917.7" y="453" width="0.1" height="15.0" fill="rgb(219,69,30)" rx="2" ry="2" />
|
|
<text x="920.68" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="1168.3" y="693" width="0.1" height="15.0" fill="rgb(209,10,33)" rx="2" ry="2" />
|
|
<text x="1171.29" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="1079.4" y="485" width="0.1" height="15.0" fill="rgb(242,87,14)" rx="2" ry="2" />
|
|
<text x="1082.41" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (11 samples, 0.05%)</title><rect x="1186.9" y="533" width="0.7" height="15.0" fill="rgb(211,224,38)" rx="2" ry="2" />
|
|
<text x="1189.93" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (12 samples, 0.06%)</title><rect x="906.2" y="501" width="0.7" height="15.0" fill="rgb(249,224,45)" rx="2" ry="2" />
|
|
<text x="909.24" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="915.7" y="53" width="0.2" height="15.0" fill="rgb(242,142,5)" rx="2" ry="2" />
|
|
<text x="918.73" y="63.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_check (100 samples, 0.50%)</title><rect x="1110.4" y="517" width="5.9" height="15.0" fill="rgb(223,126,39)" rx="2" ry="2" />
|
|
<text x="1113.43" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (5 samples, 0.02%)</title><rect x="1133.5" y="501" width="0.3" height="15.0" fill="rgb(247,194,7)" rx="2" ry="2" />
|
|
<text x="1136.49" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>region_compile (46 samples, 0.23%)</title><rect x="893.1" y="741" width="2.8" height="15.0" fill="rgb(246,141,1)" rx="2" ry="2" />
|
|
<text x="896.14" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MurmurHash3_x64_128 (15 samples, 0.07%)</title><rect x="1140.0" y="549" width="0.9" height="15.0" fill="rgb(222,13,25)" rx="2" ry="2" />
|
|
<text x="1142.98" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="959.7" y="437" width="0.2" height="15.0" fill="rgb(248,208,13)" rx="2" ry="2" />
|
|
<text x="962.73" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="1176.1" y="581" width="0.3" height="15.0" fill="rgb(242,187,5)" rx="2" ry="2" />
|
|
<text x="1179.08" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_DNS_PLUG_ENTRY (39 samples, 0.19%)</title><rect x="1179.9" y="677" width="2.3" height="15.0" fill="rgb(216,55,38)" rx="2" ry="2" />
|
|
<text x="1182.86" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="1003.7" y="597" width="0.1" height="15.0" fill="rgb(243,117,26)" rx="2" ry="2" />
|
|
<text x="1006.67" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (2 samples, 0.01%)</title><rect x="966.6" y="517" width="0.1" height="15.0" fill="rgb(205,156,33)" rx="2" ry="2" />
|
|
<text x="969.58" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (11 samples, 0.05%)</title><rect x="1181.1" y="629" width="0.6" height="15.0" fill="rgb(219,15,50)" rx="2" ry="2" />
|
|
<text x="1184.09" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (30 samples, 0.15%)</title><rect x="1172.4" y="725" width="1.7" height="15.0" fill="rgb(238,164,22)" rx="2" ry="2" />
|
|
<text x="1175.36" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_location (3 samples, 0.01%)</title><rect x="1150.3" y="517" width="0.2" height="15.0" fill="rgb(214,158,11)" rx="2" ry="2" />
|
|
<text x="1153.30" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (16 samples, 0.08%)</title><rect x="961.1" y="549" width="0.9" height="15.0" fill="rgb(210,159,52)" rx="2" ry="2" />
|
|
<text x="964.09" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (27 samples, 0.13%)</title><rect x="1098.0" y="421" width="1.6" height="15.0" fill="rgb(221,192,13)" rx="2" ry="2" />
|
|
<text x="1101.05" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_computeresult (11 samples, 0.05%)</title><rect x="842.2" y="709" width="0.6" height="15.0" fill="rgb(251,155,23)" rx="2" ry="2" />
|
|
<text x="845.18" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (4 samples, 0.02%)</title><rect x="916.7" y="293" width="0.2" height="15.0" fill="rgb(237,112,49)" rx="2" ry="2" />
|
|
<text x="919.68" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1187.9" y="357" width="0.3" height="15.0" fill="rgb(217,154,46)" rx="2" ry="2" />
|
|
<text x="1190.94" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (16 samples, 0.08%)</title><rect x="1175.1" y="741" width="0.9" height="15.0" fill="rgb(245,130,5)" rx="2" ry="2" />
|
|
<text x="1178.08" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (13 samples, 0.06%)</title><rect x="1178.4" y="613" width="0.7" height="15.0" fill="rgb(215,198,53)" rx="2" ry="2" />
|
|
<text x="1181.38" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="1172.8" y="501" width="0.2" height="15.0" fill="rgb(250,89,7)" rx="2" ry="2" />
|
|
<text x="1175.84" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_udp_entry (19 samples, 0.09%)</title><rect x="1129.7" y="517" width="1.1" height="15.0" fill="rgb(214,225,20)" rx="2" ry="2" />
|
|
<text x="1132.66" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (9 samples, 0.04%)</title><rect x="921.0" y="677" width="0.6" height="15.0" fill="rgb(234,207,36)" rx="2" ry="2" />
|
|
<text x="924.04" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_STRING_type_new (3 samples, 0.01%)</title><rect x="908.2" y="133" width="0.2" height="15.0" fill="rgb(213,123,7)" rx="2" ry="2" />
|
|
<text x="911.18" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="954.9" y="389" width="0.2" height="15.0" fill="rgb(226,124,3)" rx="2" ry="2" />
|
|
<text x="957.90" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.02%)</title><rect x="1168.4" y="677" width="0.3" height="15.0" fill="rgb(242,15,4)" rx="2" ry="2" />
|
|
<text x="1171.41" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_check (45 samples, 0.22%)</title><rect x="1110.8" y="501" width="2.7" height="15.0" fill="rgb(234,27,22)" rx="2" ry="2" />
|
|
<text x="1113.85" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="918.4" y="581" width="0.3" height="15.0" fill="rgb(217,9,4)" rx="2" ry="2" />
|
|
<text x="921.45" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="982.7" y="517" width="0.2" height="15.0" fill="rgb(226,73,36)" rx="2" ry="2" />
|
|
<text x="985.74" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_host_parser (4 samples, 0.02%)</title><rect x="957.7" y="469" width="0.3" height="15.0" fill="rgb(230,69,28)" rx="2" ry="2" />
|
|
<text x="960.73" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (41 samples, 0.20%)</title><rect x="1177.1" y="757" width="2.5" height="15.0" fill="rgb(217,7,28)" rx="2" ry="2" />
|
|
<text x="1180.14" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (4 samples, 0.02%)</title><rect x="1133.0" y="485" width="0.3" height="15.0" fill="rgb(208,138,18)" rx="2" ry="2" />
|
|
<text x="1136.02" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (547 samples, 2.73%)</title><rect x="946.0" y="597" width="32.3" height="15.0" fill="rgb(238,68,21)" rx="2" ry="2" />
|
|
<text x="949.05" y="607.5" >ip..</text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1188.9" y="581" width="0.2" height="15.0" fill="rgb(217,58,42)" rx="2" ry="2" />
|
|
<text x="1191.94" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (13 samples, 0.06%)</title><rect x="991.2" y="533" width="0.7" height="15.0" fill="rgb(231,80,44)" rx="2" ry="2" />
|
|
<text x="994.17" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="978.6" y="533" width="0.1" height="15.0" fill="rgb(235,149,11)" rx="2" ry="2" />
|
|
<text x="981.61" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (7 samples, 0.03%)</title><rect x="1174.4" y="645" width="0.4" height="15.0" fill="rgb(251,114,39)" rx="2" ry="2" />
|
|
<text x="1177.37" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="907.1" y="341" width="0.2" height="15.0" fill="rgb(233,85,20)" rx="2" ry="2" />
|
|
<text x="910.06" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_umts_user_info (4 samples, 0.02%)</title><rect x="1181.7" y="645" width="0.3" height="15.0" fill="rgb(240,10,38)" rx="2" ry="2" />
|
|
<text x="1184.74" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (15 samples, 0.07%)</title><rect x="1175.1" y="645" width="0.9" height="15.0" fill="rgb(249,84,8)" rx="2" ry="2" />
|
|
<text x="1178.08" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (7 samples, 0.03%)</title><rect x="1103.2" y="453" width="0.4" height="15.0" fill="rgb(241,61,14)" rx="2" ry="2" />
|
|
<text x="1106.24" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::get_mapped_id (5 samples, 0.02%)</title><rect x="842.5" y="677" width="0.3" height="15.0" fill="rgb(208,152,12)" rx="2" ry="2" />
|
|
<text x="845.54" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="1172.2" y="693" width="0.2" height="15.0" fill="rgb(248,90,14)" rx="2" ry="2" />
|
|
<text x="1175.25" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.02%)</title><rect x="916.7" y="309" width="0.2" height="15.0" fill="rgb(238,96,4)" rx="2" ry="2" />
|
|
<text x="919.68" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="907.1" y="293" width="0.2" height="15.0" fill="rgb(248,222,41)" rx="2" ry="2" />
|
|
<text x="910.06" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="909.2" y="181" width="0.2" height="15.0" fill="rgb(241,163,26)" rx="2" ry="2" />
|
|
<text x="912.19" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (2 samples, 0.01%)</title><rect x="1133.7" y="453" width="0.1" height="15.0" fill="rgb(208,63,2)" rx="2" ry="2" />
|
|
<text x="1136.67" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (2 samples, 0.01%)</title><rect x="920.8" y="597" width="0.1" height="15.0" fill="rgb(241,106,50)" rx="2" ry="2" />
|
|
<text x="923.80" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1188.9" y="677" width="0.2" height="15.0" fill="rgb(248,169,38)" rx="2" ry="2" />
|
|
<text x="1191.94" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_entry (2 samples, 0.01%)</title><rect x="1186.0" y="661" width="0.2" height="15.0" fill="rgb(230,52,38)" rx="2" ry="2" />
|
|
<text x="1189.05" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grab_mid (4 samples, 0.02%)</title><rect x="813.3" y="533" width="0.2" height="15.0" fill="rgb(206,155,53)" rx="2" ry="2" />
|
|
<text x="816.28" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (17 samples, 0.08%)</title><rect x="972.8" y="485" width="1.0" height="15.0" fill="rgb(206,87,30)" rx="2" ry="2" />
|
|
<text x="975.77" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_primitive_free (2 samples, 0.01%)</title><rect x="1098.8" y="277" width="0.1" height="15.0" fill="rgb(209,204,10)" rx="2" ry="2" />
|
|
<text x="1101.75" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="809.3" y="581" width="0.1" height="15.0" fill="rgb(227,51,49)" rx="2" ry="2" />
|
|
<text x="812.27" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_deleteEmptyRow (659 samples, 3.29%)</title><rect x="1033.7" y="437" width="38.9" height="15.0" fill="rgb(215,10,2)" rx="2" ry="2" />
|
|
<text x="1036.70" y="447.5" >htt..</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (16 samples, 0.08%)</title><rect x="976.1" y="501" width="1.0" height="15.0" fill="rgb(206,208,2)" rx="2" ry="2" />
|
|
<text x="979.13" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="1098.2" y="277" width="0.1" height="15.0" fill="rgb(207,216,2)" rx="2" ry="2" />
|
|
<text x="1101.16" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (142 samples, 0.71%)</title><rect x="950.2" y="501" width="8.4" height="15.0" fill="rgb(208,138,44)" rx="2" ry="2" />
|
|
<text x="953.24" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="959.2" y="437" width="0.2" height="15.0" fill="rgb(216,128,21)" rx="2" ry="2" />
|
|
<text x="962.20" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (4 samples, 0.02%)</title><rect x="916.7" y="325" width="0.2" height="15.0" fill="rgb(211,162,11)" rx="2" ry="2" />
|
|
<text x="919.68" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (711 samples, 3.55%)</title><rect x="1031.5" y="485" width="41.9" height="15.0" fill="rgb(252,126,28)" rx="2" ry="2" />
|
|
<text x="1034.46" y="495.5" >plu..</text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (31 samples, 0.15%)</title><rect x="1177.3" y="693" width="1.8" height="15.0" fill="rgb(223,68,3)" rx="2" ry="2" />
|
|
<text x="1180.32" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CKRF::SearchMem (3,740 samples, 18.69%)</title><rect x="587.7" y="725" width="220.6" height="15.0" fill="rgb(238,114,40)" rx="2" ry="2" />
|
|
<text x="590.67" y="735.5" >CKRF::SearchMem</text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (3 samples, 0.01%)</title><rect x="921.6" y="645" width="0.2" height="15.0" fill="rgb(238,90,18)" rx="2" ry="2" />
|
|
<text x="924.63" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (4 samples, 0.02%)</title><rect x="1185.6" y="693" width="0.2" height="15.0" fill="rgb(220,195,44)" rx="2" ry="2" />
|
|
<text x="1188.58" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (18 samples, 0.09%)</title><rect x="808.6" y="709" width="1.0" height="15.0" fill="rgb(241,40,53)" rx="2" ry="2" />
|
|
<text x="811.56" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="1003.3" y="581" width="0.1" height="15.0" fill="rgb(213,101,33)" rx="2" ry="2" />
|
|
<text x="1006.26" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (4 samples, 0.02%)</title><rect x="981.0" y="501" width="0.2" height="15.0" fill="rgb(236,25,24)" rx="2" ry="2" />
|
|
<text x="983.97" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (10 samples, 0.05%)</title><rect x="1130.1" y="469" width="0.6" height="15.0" fill="rgb(242,202,38)" rx="2" ry="2" />
|
|
<text x="1133.13" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_initHttpConnection (2 samples, 0.01%)</title><rect x="952.2" y="453" width="0.1" height="15.0" fill="rgb(222,178,53)" rx="2" ry="2" />
|
|
<text x="955.18" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (7 samples, 0.03%)</title><rect x="1157.7" y="661" width="0.4" height="15.0" fill="rgb(250,191,6)" rx="2" ry="2" />
|
|
<text x="1160.74" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="1102.6" y="469" width="0.2" height="15.0" fill="rgb(240,64,5)" rx="2" ry="2" />
|
|
<text x="1105.65" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (20 samples, 0.10%)</title><rect x="908.4" y="293" width="1.2" height="15.0" fill="rgb(245,93,32)" rx="2" ry="2" />
|
|
<text x="911.42" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (3 samples, 0.01%)</title><rect x="1188.8" y="613" width="0.1" height="15.0" fill="rgb(232,0,46)" rx="2" ry="2" />
|
|
<text x="1191.76" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (4 samples, 0.02%)</title><rect x="909.7" y="405" width="0.3" height="15.0" fill="rgb(212,59,18)" rx="2" ry="2" />
|
|
<text x="912.72" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInflate2::fn_iDecodeHuffmanCodeBlock (2 samples, 0.01%)</title><rect x="951.9" y="293" width="0.2" height="15.0" fill="rgb(208,83,37)" rx="2" ry="2" />
|
|
<text x="954.95" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="1188.2" y="325" width="0.1" height="15.0" fill="rgb(228,204,33)" rx="2" ry="2" />
|
|
<text x="1191.23" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (7 samples, 0.03%)</title><rect x="907.9" y="197" width="0.5" height="15.0" fill="rgb(216,221,29)" rx="2" ry="2" />
|
|
<text x="910.95" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="906.8" y="373" width="0.1" height="15.0" fill="rgb(205,39,6)" rx="2" ry="2" />
|
|
<text x="909.83" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (4 samples, 0.02%)</title><rect x="912.3" y="629" width="0.2" height="15.0" fill="rgb(248,128,38)" rx="2" ry="2" />
|
|
<text x="915.25" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (4 samples, 0.02%)</title><rect x="909.7" y="437" width="0.3" height="15.0" fill="rgb(227,118,9)" rx="2" ry="2" />
|
|
<text x="912.72" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (11 samples, 0.05%)</title><rect x="1120.5" y="453" width="0.7" height="15.0" fill="rgb(249,172,37)" rx="2" ry="2" />
|
|
<text x="1123.52" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="1132.6" y="501" width="0.1" height="15.0" fill="rgb(223,99,7)" rx="2" ry="2" />
|
|
<text x="1135.61" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_UDP_PACKET_ENTRY (36 samples, 0.18%)</title><rect x="986.9" y="565" width="2.1" height="15.0" fill="rgb(229,82,4)" rx="2" ry="2" />
|
|
<text x="989.92" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_ex_c2i (2 samples, 0.01%)</title><rect x="909.6" y="277" width="0.1" height="15.0" fill="rgb(234,124,37)" rx="2" ry="2" />
|
|
<text x="912.60" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="917.7" y="533" width="0.1" height="15.0" fill="rgb(217,229,37)" rx="2" ry="2" />
|
|
<text x="920.68" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (31 samples, 0.15%)</title><rect x="1170.4" y="693" width="1.8" height="15.0" fill="rgb(241,196,48)" rx="2" ry="2" />
|
|
<text x="1173.42" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>process_ipv4_pkt (10 samples, 0.05%)</title><rect x="1004.0" y="629" width="0.6" height="15.0" fill="rgb(240,60,53)" rx="2" ry="2" />
|
|
<text x="1006.97" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="980.0" y="469" width="0.1" height="15.0" fill="rgb(246,56,14)" rx="2" ry="2" />
|
|
<text x="982.96" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_vMemCpy (6 samples, 0.03%)</title><rect x="952.6" y="453" width="0.4" height="15.0" fill="rgb(211,58,7)" rx="2" ry="2" />
|
|
<text x="955.60" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmarsio.so.4.4] (3 samples, 0.01%)</title><rect x="1165.4" y="677" width="0.2" height="15.0" fill="rgb(205,187,40)" rx="2" ry="2" />
|
|
<text x="1168.40" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (3 samples, 0.01%)</title><rect x="972.4" y="485" width="0.1" height="15.0" fill="rgb(227,221,30)" rx="2" ry="2" />
|
|
<text x="975.36" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (27 samples, 0.13%)</title><rect x="1168.8" y="725" width="1.6" height="15.0" fill="rgb(249,62,28)" rx="2" ry="2" />
|
|
<text x="1171.77" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (65 samples, 0.32%)</title><rect x="907.5" y="565" width="3.8" height="15.0" fill="rgb(250,52,31)" rx="2" ry="2" />
|
|
<text x="910.47" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (74 samples, 0.37%)</title><rect x="809.6" y="709" width="4.4" height="15.0" fill="rgb(218,70,36)" rx="2" ry="2" />
|
|
<text x="812.62" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (4 samples, 0.02%)</title><rect x="912.3" y="565" width="0.2" height="15.0" fill="rgb(205,134,22)" rx="2" ry="2" />
|
|
<text x="915.25" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1187.9" y="373" width="0.3" height="15.0" fill="rgb(218,187,48)" rx="2" ry="2" />
|
|
<text x="1190.94" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (9 samples, 0.04%)</title><rect x="1002.6" y="517" width="0.5" height="15.0" fill="rgb(213,141,5)" rx="2" ry="2" />
|
|
<text x="1005.61" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (3 samples, 0.01%)</title><rect x="1188.3" y="453" width="0.2" height="15.0" fill="rgb(242,114,17)" rx="2" ry="2" />
|
|
<text x="1191.35" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (10 samples, 0.05%)</title><rect x="967.4" y="533" width="0.6" height="15.0" fill="rgb(221,129,1)" rx="2" ry="2" />
|
|
<text x="970.40" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (5 samples, 0.02%)</title><rect x="911.7" y="517" width="0.3" height="15.0" fill="rgb(232,12,35)" rx="2" ry="2" />
|
|
<text x="914.66" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (16 samples, 0.08%)</title><rect x="1175.1" y="661" width="0.9" height="15.0" fill="rgb(213,182,18)" rx="2" ry="2" />
|
|
<text x="1178.08" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MurmurHash3_x64_128 (7 samples, 0.03%)</title><rect x="1115.9" y="485" width="0.4" height="15.0" fill="rgb(242,106,33)" rx="2" ry="2" />
|
|
<text x="1118.92" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="918.3" y="533" width="0.1" height="15.0" fill="rgb(240,213,12)" rx="2" ry="2" />
|
|
<text x="921.27" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (11 samples, 0.05%)</title><rect x="1176.4" y="613" width="0.7" height="15.0" fill="rgb(219,206,46)" rx="2" ry="2" />
|
|
<text x="1179.43" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (2 samples, 0.01%)</title><rect x="1003.1" y="485" width="0.2" height="15.0" fill="rgb(234,210,32)" rx="2" ry="2" />
|
|
<text x="1006.14" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_capture_packet_entry (7 samples, 0.03%)</title><rect x="965.1" y="485" width="0.4" height="15.0" fill="rgb(239,222,43)" rx="2" ry="2" />
|
|
<text x="968.10" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (16 samples, 0.08%)</title><rect x="950.5" y="485" width="0.9" height="15.0" fill="rgb(214,43,25)" rx="2" ry="2" />
|
|
<text x="953.47" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (29 samples, 0.14%)</title><rect x="907.9" y="309" width="1.7" height="15.0" fill="rgb(239,66,41)" rx="2" ry="2" />
|
|
<text x="910.89" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="1150.5" y="485" width="0.1" height="15.0" fill="rgb(227,84,22)" rx="2" ry="2" />
|
|
<text x="1153.48" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (196 samples, 0.98%)</title><rect x="966.1" y="581" width="11.6" height="15.0" fill="rgb(214,53,37)" rx="2" ry="2" />
|
|
<text x="969.10" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (35 samples, 0.17%)</title><rect x="1175.1" y="757" width="2.0" height="15.0" fill="rgb(215,199,14)" rx="2" ry="2" />
|
|
<text x="1178.08" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (13 samples, 0.06%)</title><rect x="1173.0" y="581" width="0.8" height="15.0" fill="rgb(211,106,25)" rx="2" ry="2" />
|
|
<text x="1176.01" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (42 samples, 0.21%)</title><rect x="915.2" y="549" width="2.5" height="15.0" fill="rgb(208,49,27)" rx="2" ry="2" />
|
|
<text x="918.20" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1098.7" y="373" width="0.3" height="15.0" fill="rgb(207,158,18)" rx="2" ry="2" />
|
|
<text x="1101.70" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (18 samples, 0.09%)</title><rect x="1176.0" y="709" width="1.1" height="15.0" fill="rgb(250,129,3)" rx="2" ry="2" />
|
|
<text x="1179.02" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithGzipData (5 samples, 0.02%)</title><rect x="1096.7" y="389" width="0.3" height="15.0" fill="rgb(251,59,1)" rx="2" ry="2" />
|
|
<text x="1099.69" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime (6 samples, 0.03%)</title><rect x="818.0" y="741" width="0.4" height="15.0" fill="rgb(221,5,53)" rx="2" ry="2" />
|
|
<text x="821.00" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="911.5" y="549" width="0.5" height="15.0" fill="rgb(242,103,22)" rx="2" ry="2" />
|
|
<text x="914.54" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="979.2" y="565" width="0.2" height="15.0" fill="rgb(208,225,10)" rx="2" ry="2" />
|
|
<text x="982.20" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509_PUBKEY_get (4 samples, 0.02%)</title><rect x="954.7" y="389" width="0.2" height="15.0" fill="rgb(245,14,4)" rx="2" ry="2" />
|
|
<text x="957.66" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (9 samples, 0.04%)</title><rect x="907.9" y="213" width="0.5" height="15.0" fill="rgb(250,20,16)" rx="2" ry="2" />
|
|
<text x="910.89" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (2 samples, 0.01%)</title><rect x="1186.0" y="725" width="0.2" height="15.0" fill="rgb(251,221,12)" rx="2" ry="2" />
|
|
<text x="1189.05" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="1150.3" y="453" width="0.1" height="15.0" fill="rgb(237,60,15)" rx="2" ry="2" />
|
|
<text x="1153.30" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (4 samples, 0.02%)</title><rect x="948.3" y="533" width="0.3" height="15.0" fill="rgb(220,195,16)" rx="2" ry="2" />
|
|
<text x="951.35" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (83 samples, 0.41%)</title><rect x="915.1" y="693" width="4.9" height="15.0" fill="rgb(250,91,54)" rx="2" ry="2" />
|
|
<text x="918.14" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (10 samples, 0.05%)</title><rect x="1119.3" y="485" width="0.6" height="15.0" fill="rgb(234,124,33)" rx="2" ry="2" />
|
|
<text x="1122.34" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (5 samples, 0.02%)</title><rect x="1176.7" y="565" width="0.3" height="15.0" fill="rgb(233,27,31)" rx="2" ry="2" />
|
|
<text x="1179.73" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (18 samples, 0.09%)</title><rect x="1177.3" y="613" width="1.1" height="15.0" fill="rgb(240,199,26)" rx="2" ry="2" />
|
|
<text x="1180.32" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (14 samples, 0.07%)</title><rect x="906.2" y="661" width="0.9" height="15.0" fill="rgb(248,21,51)" rx="2" ry="2" />
|
|
<text x="909.24" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_no_init (2 samples, 0.01%)</title><rect x="1181.3" y="581" width="0.1" height="15.0" fill="rgb(233,158,17)" rx="2" ry="2" />
|
|
<text x="1184.33" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (2 samples, 0.01%)</title><rect x="917.7" y="581" width="0.1" height="15.0" fill="rgb(208,190,32)" rx="2" ry="2" />
|
|
<text x="920.68" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1101.8" y="437" width="0.1" height="15.0" fill="rgb(212,107,32)" rx="2" ry="2" />
|
|
<text x="1104.76" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="911.3" y="501" width="0.2" height="15.0" fill="rgb(225,165,24)" rx="2" ry="2" />
|
|
<text x="914.31" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="1174.5" y="469" width="0.2" height="15.0" fill="rgb(205,61,0)" rx="2" ry="2" />
|
|
<text x="1177.55" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="951.5" y="325" width="0.1" height="15.0" fill="rgb(211,152,46)" rx="2" ry="2" />
|
|
<text x="954.48" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (13 samples, 0.06%)</title><rect x="1106.5" y="501" width="0.7" height="15.0" fill="rgb(221,20,54)" rx="2" ry="2" />
|
|
<text x="1109.48" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (43 samples, 0.21%)</title><rect x="912.6" y="661" width="2.5" height="15.0" fill="rgb(221,127,10)" rx="2" ry="2" />
|
|
<text x="915.61" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (3 samples, 0.01%)</title><rect x="920.5" y="565" width="0.2" height="15.0" fill="rgb(239,127,11)" rx="2" ry="2" />
|
|
<text x="923.51" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="1099.3" y="325" width="0.2" height="15.0" fill="rgb(216,33,8)" rx="2" ry="2" />
|
|
<text x="1102.29" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (5 samples, 0.02%)</title><rect x="1010.6" y="613" width="0.3" height="15.0" fill="rgb(234,150,14)" rx="2" ry="2" />
|
|
<text x="1013.63" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (4 samples, 0.02%)</title><rect x="970.6" y="501" width="0.2" height="15.0" fill="rgb(248,222,21)" rx="2" ry="2" />
|
|
<text x="973.59" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="808.6" y="661" width="0.4" height="15.0" fill="rgb(248,177,36)" rx="2" ry="2" />
|
|
<text x="811.56" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>raw_ip_frag_list_stream_attach (2 samples, 0.01%)</title><rect x="1117.0" y="533" width="0.1" height="15.0" fill="rgb(225,171,27)" rx="2" ry="2" />
|
|
<text x="1119.98" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (4 samples, 0.02%)</title><rect x="1133.6" y="485" width="0.2" height="15.0" fill="rgb(219,128,42)" rx="2" ry="2" />
|
|
<text x="1136.55" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1188.0" y="261" width="0.2" height="15.0" fill="rgb(251,116,5)" rx="2" ry="2" />
|
|
<text x="1190.99" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (6 samples, 0.03%)</title><rect x="916.6" y="437" width="0.4" height="15.0" fill="rgb(254,68,22)" rx="2" ry="2" />
|
|
<text x="919.62" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="907.1" y="245" width="0.1" height="15.0" fill="rgb(244,57,39)" rx="2" ry="2" />
|
|
<text x="910.06" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (7 samples, 0.03%)</title><rect x="911.5" y="565" width="0.5" height="15.0" fill="rgb(229,210,12)" rx="2" ry="2" />
|
|
<text x="914.54" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (18 samples, 0.09%)</title><rect x="1177.3" y="565" width="1.1" height="15.0" fill="rgb(231,48,34)" rx="2" ry="2" />
|
|
<text x="1180.32" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (2 samples, 0.01%)</title><rect x="920.8" y="613" width="0.1" height="15.0" fill="rgb(240,148,16)" rx="2" ry="2" />
|
|
<text x="923.80" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="1179.0" y="533" width="0.1" height="15.0" fill="rgb(242,123,41)" rx="2" ry="2" />
|
|
<text x="1181.97" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="1188.5" y="469" width="0.2" height="15.0" fill="rgb(222,48,29)" rx="2" ry="2" />
|
|
<text x="1191.53" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="915.6" y="357" width="1.0" height="15.0" fill="rgb(252,49,53)" rx="2" ry="2" />
|
|
<text x="918.56" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strchrnul (2 samples, 0.01%)</title><rect x="915.4" y="437" width="0.1" height="15.0" fill="rgb(234,147,28)" rx="2" ry="2" />
|
|
<text x="918.38" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (4 samples, 0.02%)</title><rect x="907.1" y="437" width="0.2" height="15.0" fill="rgb(230,227,20)" rx="2" ry="2" />
|
|
<text x="910.06" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="978.6" y="517" width="0.1" height="15.0" fill="rgb(251,110,33)" rx="2" ry="2" />
|
|
<text x="981.61" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (19 samples, 0.09%)</title><rect x="982.4" y="581" width="1.1" height="15.0" fill="rgb(233,96,12)" rx="2" ry="2" />
|
|
<text x="985.38" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (4 samples, 0.02%)</title><rect x="1096.5" y="389" width="0.2" height="15.0" fill="rgb(221,157,0)" rx="2" ry="2" />
|
|
<text x="1099.45" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (10 samples, 0.05%)</title><rect x="906.2" y="405" width="0.6" height="15.0" fill="rgb(228,198,10)" rx="2" ry="2" />
|
|
<text x="909.24" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_default_xsputn (2 samples, 0.01%)</title><rect x="911.7" y="437" width="0.1" height="15.0" fill="rgb(232,5,29)" rx="2" ry="2" />
|
|
<text x="914.72" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1150.5" y="501" width="0.1" height="15.0" fill="rgb(238,130,10)" rx="2" ry="2" />
|
|
<text x="1153.48" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.01%)</title><rect x="1177.1" y="741" width="0.2" height="15.0" fill="rgb(228,181,13)" rx="2" ry="2" />
|
|
<text x="1180.14" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (2 samples, 0.01%)</title><rect x="1176.1" y="549" width="0.1" height="15.0" fill="rgb(233,165,43)" rx="2" ry="2" />
|
|
<text x="1179.08" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (2 samples, 0.01%)</title><rect x="948.0" y="437" width="0.1" height="15.0" fill="rgb(243,82,22)" rx="2" ry="2" />
|
|
<text x="951.00" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInt128IntervalIndex::Find_interval (14 samples, 0.07%)</title><rect x="904.8" y="725" width="0.8" height="15.0" fill="rgb(216,13,27)" rx="2" ry="2" />
|
|
<text x="907.82" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_ex_c2i (3 samples, 0.01%)</title><rect x="915.7" y="117" width="0.2" height="15.0" fill="rgb(214,136,32)" rx="2" ry="2" />
|
|
<text x="918.67" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (45 samples, 0.22%)</title><rect x="915.1" y="597" width="2.7" height="15.0" fill="rgb(243,128,4)" rx="2" ry="2" />
|
|
<text x="918.14" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (41 samples, 0.20%)</title><rect x="1182.2" y="693" width="2.4" height="15.0" fill="rgb(221,175,40)" rx="2" ry="2" />
|
|
<text x="1185.16" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (165 samples, 0.82%)</title><rect x="992.7" y="533" width="9.7" height="15.0" fill="rgb(232,116,11)" rx="2" ry="2" />
|
|
<text x="995.70" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (8 samples, 0.04%)</title><rect x="988.6" y="517" width="0.4" height="15.0" fill="rgb(253,151,37)" rx="2" ry="2" />
|
|
<text x="991.58" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="962.9" y="469" width="0.1" height="15.0" fill="rgb(236,150,42)" rx="2" ry="2" />
|
|
<text x="965.86" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="1188.3" y="437" width="0.2" height="15.0" fill="rgb(233,16,7)" rx="2" ry="2" />
|
|
<text x="1191.35" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="1172.2" y="581" width="0.2" height="15.0" fill="rgb(205,155,3)" rx="2" ry="2" />
|
|
<text x="1175.25" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1099.3" y="245" width="0.1" height="15.0" fill="rgb(209,64,10)" rx="2" ry="2" />
|
|
<text x="1102.29" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_rule_get_ex_data (2 samples, 0.01%)</title><rect x="1150.1" y="533" width="0.1" height="15.0" fill="rgb(230,25,23)" rx="2" ry="2" />
|
|
<text x="1153.07" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="915.7" y="133" width="0.2" height="15.0" fill="rgb(211,36,5)" rx="2" ry="2" />
|
|
<text x="918.67" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (7 samples, 0.03%)</title><rect x="970.2" y="517" width="0.4" height="15.0" fill="rgb(248,48,37)" rx="2" ry="2" />
|
|
<text x="973.17" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (4 samples, 0.02%)</title><rect x="966.6" y="533" width="0.2" height="15.0" fill="rgb(252,85,17)" rx="2" ry="2" />
|
|
<text x="969.58" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="906.9" y="437" width="0.2" height="15.0" fill="rgb(211,191,8)" rx="2" ry="2" />
|
|
<text x="909.94" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="1174.9" y="709" width="0.2" height="15.0" fill="rgb(246,159,16)" rx="2" ry="2" />
|
|
<text x="1177.90" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.01%)</title><rect x="941.1" y="597" width="0.2" height="15.0" fill="rgb(233,8,16)" rx="2" ry="2" />
|
|
<text x="944.09" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3,898 samples, 19.48%)</title><rect x="928.4" y="693" width="229.9" height="15.0" fill="rgb(217,221,40)" rx="2" ry="2" />
|
|
<text x="931.35" y="703.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (26 samples, 0.13%)</title><rect x="812.1" y="565" width="1.5" height="15.0" fill="rgb(235,36,11)" rx="2" ry="2" />
|
|
<text x="815.10" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.01%)</title><rect x="977.5" y="501" width="0.2" height="15.0" fill="rgb(214,179,1)" rx="2" ry="2" />
|
|
<text x="980.49" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (16 samples, 0.08%)</title><rect x="1127.2" y="517" width="0.9" height="15.0" fill="rgb(215,190,38)" rx="2" ry="2" />
|
|
<text x="1130.18" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (2 samples, 0.01%)</title><rect x="1170.2" y="597" width="0.2" height="15.0" fill="rgb(224,229,5)" rx="2" ry="2" />
|
|
<text x="1173.24" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="1187.8" y="565" width="0.1" height="15.0" fill="rgb(226,72,33)" rx="2" ry="2" />
|
|
<text x="1190.76" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (68 samples, 0.34%)</title><rect x="809.6" y="645" width="4.0" height="15.0" fill="rgb(239,116,11)" rx="2" ry="2" />
|
|
<text x="812.62" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (6 samples, 0.03%)</title><rect x="920.2" y="629" width="0.3" height="15.0" fill="rgb(209,152,33)" rx="2" ry="2" />
|
|
<text x="923.16" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="940.4" y="597" width="0.2" height="15.0" fill="rgb(224,196,8)" rx="2" ry="2" />
|
|
<text x="943.39" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (2 samples, 0.01%)</title><rect x="1170.2" y="533" width="0.2" height="15.0" fill="rgb(251,118,0)" rx="2" ry="2" />
|
|
<text x="1173.24" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (4 samples, 0.02%)</title><rect x="1174.5" y="597" width="0.2" height="15.0" fill="rgb(210,203,39)" rx="2" ry="2" />
|
|
<text x="1177.49" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="1172.2" y="677" width="0.2" height="15.0" fill="rgb(251,152,3)" rx="2" ry="2" />
|
|
<text x="1175.25" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1098.4" y="309" width="0.1" height="15.0" fill="rgb(207,43,28)" rx="2" ry="2" />
|
|
<text x="1101.40" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (8 samples, 0.04%)</title><rect x="981.2" y="469" width="0.5" height="15.0" fill="rgb(207,99,13)" rx="2" ry="2" />
|
|
<text x="984.20" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (36 samples, 0.18%)</title><rect x="1177.3" y="709" width="2.1" height="15.0" fill="rgb(228,147,36)" rx="2" ry="2" />
|
|
<text x="1180.32" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (5 samples, 0.02%)</title><rect x="976.3" y="453" width="0.3" height="15.0" fill="rgb(248,124,28)" rx="2" ry="2" />
|
|
<text x="979.31" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (13 samples, 0.06%)</title><rect x="1187.9" y="533" width="0.8" height="15.0" fill="rgb(232,39,16)" rx="2" ry="2" />
|
|
<text x="1190.94" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="920.7" y="677" width="0.3" height="15.0" fill="rgb(215,73,32)" rx="2" ry="2" />
|
|
<text x="923.69" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_addr_list_ntop_outward (2 samples, 0.01%)</title><rect x="920.9" y="597" width="0.1" height="15.0" fill="rgb(247,136,37)" rx="2" ry="2" />
|
|
<text x="923.92" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (230 samples, 1.15%)</title><rect x="947.5" y="549" width="13.6" height="15.0" fill="rgb(223,57,7)" rx="2" ry="2" />
|
|
<text x="950.52" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (4 samples, 0.02%)</title><rect x="972.9" y="437" width="0.2" height="15.0" fill="rgb(231,214,8)" rx="2" ry="2" />
|
|
<text x="975.89" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="1182.6" y="613" width="0.1" height="15.0" fill="rgb(209,89,13)" rx="2" ry="2" />
|
|
<text x="1185.57" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (15 samples, 0.07%)</title><rect x="1127.2" y="501" width="0.9" height="15.0" fill="rgb(212,63,1)" rx="2" ry="2" />
|
|
<text x="1130.24" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify_tcp (19 samples, 0.09%)</title><rect x="963.1" y="549" width="1.1" height="15.0" fill="rgb(205,83,23)" rx="2" ry="2" />
|
|
<text x="966.10" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1188.3" y="469" width="0.2" height="15.0" fill="rgb(225,169,17)" rx="2" ry="2" />
|
|
<text x="1191.35" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CSuccinctHash::find (53 samples, 0.26%)</title><rect x="899.8" y="709" width="3.1" height="15.0" fill="rgb(226,10,48)" rx="2" ry="2" />
|
|
<text x="902.81" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_decompressed_name (2 samples, 0.01%)</title><rect x="1184.7" y="709" width="0.1" height="15.0" fill="rgb(250,168,44)" rx="2" ry="2" />
|
|
<text x="1187.69" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="1180.0" y="629" width="0.1" height="15.0" fill="rgb(214,50,7)" rx="2" ry="2" />
|
|
<text x="1182.97" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (33 samples, 0.16%)</title><rect x="884.0" y="709" width="1.9" height="15.0" fill="rgb(219,99,52)" rx="2" ry="2" />
|
|
<text x="887.00" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (12 samples, 0.06%)</title><rect x="1091.0" y="485" width="0.7" height="15.0" fill="rgb(213,195,21)" rx="2" ry="2" />
|
|
<text x="1093.97" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="942.9" y="581" width="0.1" height="15.0" fill="rgb(246,193,32)" rx="2" ry="2" />
|
|
<text x="945.86" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (43 samples, 0.21%)</title><rect x="912.6" y="629" width="2.5" height="15.0" fill="rgb(254,30,51)" rx="2" ry="2" />
|
|
<text x="915.61" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_ip_location (3 samples, 0.01%)</title><rect x="915.0" y="565" width="0.1" height="15.0" fill="rgb(225,159,35)" rx="2" ry="2" />
|
|
<text x="917.97" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (31 samples, 0.15%)</title><rect x="1134.2" y="597" width="1.8" height="15.0" fill="rgb(249,191,35)" rx="2" ry="2" />
|
|
<text x="1137.20" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_http_plug.so] (5 samples, 0.02%)</title><rect x="920.2" y="533" width="0.3" height="15.0" fill="rgb(230,73,32)" rx="2" ry="2" />
|
|
<text x="923.16" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (20 samples, 0.10%)</title><rect x="1170.9" y="613" width="1.2" height="15.0" fill="rgb(241,210,8)" rx="2" ry="2" />
|
|
<text x="1173.89" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="916.3" y="245" width="0.1" height="15.0" fill="rgb(245,222,50)" rx="2" ry="2" />
|
|
<text x="919.32" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>raw_frags_list_free_stream (2 samples, 0.01%)</title><rect x="1030.1" y="517" width="0.1" height="15.0" fill="rgb(251,88,2)" rx="2" ry="2" />
|
|
<text x="1033.10" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_softirq (2 samples, 0.01%)</title><rect x="808.1" y="661" width="0.2" height="15.0" fill="rgb(208,121,13)" rx="2" ry="2" />
|
|
<text x="811.15" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (38 samples, 0.19%)</title><rect x="1177.3" y="741" width="2.3" height="15.0" fill="rgb(209,196,37)" rx="2" ry="2" />
|
|
<text x="1180.32" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (13 samples, 0.06%)</title><rect x="1173.0" y="645" width="0.8" height="15.0" fill="rgb(242,130,35)" rx="2" ry="2" />
|
|
<text x="1176.01" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="1168.4" y="613" width="0.3" height="15.0" fill="rgb(242,168,47)" rx="2" ry="2" />
|
|
<text x="1171.41" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (8 samples, 0.04%)</title><rect x="1186.9" y="437" width="0.5" height="15.0" fill="rgb(218,64,40)" rx="2" ry="2" />
|
|
<text x="1189.93" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="1179.1" y="645" width="0.3" height="15.0" fill="rgb(217,118,38)" rx="2" ry="2" />
|
|
<text x="1182.15" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="916.6" y="341" width="0.3" height="15.0" fill="rgb(229,139,54)" rx="2" ry="2" />
|
|
<text x="919.62" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CIPv4Match::SearchIP (123 samples, 0.61%)</title><rect x="897.4" y="741" width="7.2" height="15.0" fill="rgb(227,7,2)" rx="2" ry="2" />
|
|
<text x="900.39" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="920.5" y="517" width="0.2" height="15.0" fill="rgb(236,211,6)" rx="2" ry="2" />
|
|
<text x="923.51" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (2 samples, 0.01%)</title><rect x="1188.8" y="597" width="0.1" height="15.0" fill="rgb(205,35,42)" rx="2" ry="2" />
|
|
<text x="1191.82" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="1186.0" y="677" width="0.2" height="15.0" fill="rgb(228,81,35)" rx="2" ry="2" />
|
|
<text x="1189.05" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sk_pop_free (2 samples, 0.01%)</title><rect x="909.5" y="277" width="0.1" height="15.0" fill="rgb(249,53,9)" rx="2" ry="2" />
|
|
<text x="912.48" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (4 samples, 0.02%)</title><rect x="910.1" y="293" width="0.3" height="15.0" fill="rgb(232,94,33)" rx="2" ry="2" />
|
|
<text x="913.13" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (36 samples, 0.18%)</title><rect x="1097.5" y="469" width="2.1" height="15.0" fill="rgb(250,2,51)" rx="2" ry="2" />
|
|
<text x="1100.52" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="1132.6" y="517" width="0.2" height="15.0" fill="rgb(209,120,3)" rx="2" ry="2" />
|
|
<text x="1135.61" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (3 samples, 0.01%)</title><rect x="911.3" y="437" width="0.2" height="15.0" fill="rgb(233,89,8)" rx="2" ry="2" />
|
|
<text x="914.31" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="1179.1" y="629" width="0.3" height="15.0" fill="rgb(248,40,17)" rx="2" ry="2" />
|
|
<text x="1182.15" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="948.5" y="485" width="0.1" height="15.0" fill="rgb(250,181,42)" rx="2" ry="2" />
|
|
<text x="951.47" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (4 samples, 0.02%)</title><rect x="918.5" y="533" width="0.2" height="15.0" fill="rgb(224,40,13)" rx="2" ry="2" />
|
|
<text x="921.50" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="1150.3" y="469" width="0.2" height="15.0" fill="rgb(209,75,27)" rx="2" ry="2" />
|
|
<text x="1153.30" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>all (20,006 samples, 100%)</title><rect x="10.0" y="789" width="1180.0" height="15.0" fill="rgb(228,199,29)" rx="2" ry="2" />
|
|
<text x="13.00" y="799.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (11 samples, 0.05%)</title><rect x="1186.9" y="517" width="0.7" height="15.0" fill="rgb(212,143,4)" rx="2" ry="2" />
|
|
<text x="1189.93" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (14 samples, 0.07%)</title><rect x="1026.0" y="501" width="0.9" height="15.0" fill="rgb(220,3,43)" rx="2" ry="2" />
|
|
<text x="1029.03" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="1127.5" y="469" width="0.2" height="15.0" fill="rgb(207,207,52)" rx="2" ry="2" />
|
|
<text x="1130.54" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (4 samples, 0.02%)</title><rect x="1124.7" y="549" width="0.2" height="15.0" fill="rgb(238,80,7)" rx="2" ry="2" />
|
|
<text x="1127.71" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (5 samples, 0.02%)</title><rect x="1032.8" y="437" width="0.2" height="15.0" fill="rgb(239,140,29)" rx="2" ry="2" />
|
|
<text x="1035.75" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="951.8" y="373" width="0.1" height="15.0" fill="rgb(234,156,11)" rx="2" ry="2" />
|
|
<text x="954.83" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="951.5" y="357" width="0.1" height="15.0" fill="rgb(245,26,16)" rx="2" ry="2" />
|
|
<text x="954.48" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_udp_entry (6 samples, 0.03%)</title><rect x="1133.4" y="517" width="0.4" height="15.0" fill="rgb(208,133,19)" rx="2" ry="2" />
|
|
<text x="1136.44" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (3 samples, 0.01%)</title><rect x="1177.1" y="661" width="0.2" height="15.0" fill="rgb(250,36,16)" rx="2" ry="2" />
|
|
<text x="1180.14" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (6 samples, 0.03%)</title><rect x="907.1" y="613" width="0.3" height="15.0" fill="rgb(229,78,47)" rx="2" ry="2" />
|
|
<text x="910.06" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (2 samples, 0.01%)</title><rect x="979.3" y="501" width="0.1" height="15.0" fill="rgb(254,53,19)" rx="2" ry="2" />
|
|
<text x="982.26" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (10 samples, 0.05%)</title><rect x="1096.4" y="421" width="0.6" height="15.0" fill="rgb(207,178,47)" rx="2" ry="2" />
|
|
<text x="1099.40" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (9 samples, 0.04%)</title><rect x="1096.5" y="405" width="0.5" height="15.0" fill="rgb(230,58,53)" rx="2" ry="2" />
|
|
<text x="1099.45" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>docanalyze_parsestream (2 samples, 0.01%)</title><rect x="1170.2" y="501" width="0.2" height="15.0" fill="rgb(243,112,24)" rx="2" ry="2" />
|
|
<text x="1173.24" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="1170.4" y="549" width="0.4" height="15.0" fill="rgb(244,224,17)" rx="2" ry="2" />
|
|
<text x="1173.42" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="909.6" y="357" width="0.1" height="15.0" fill="rgb(239,216,37)" rx="2" ry="2" />
|
|
<text x="912.60" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[librulescan.so.2.2] (1,840 samples, 9.20%)</title><rect x="479.1" y="709" width="108.6" height="15.0" fill="rgb(237,139,20)" rx="2" ry="2" />
|
|
<text x="482.15" y="719.5" >[librulescan...</text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (7 samples, 0.03%)</title><rect x="980.6" y="469" width="0.4" height="15.0" fill="rgb(237,220,46)" rx="2" ry="2" />
|
|
<text x="983.55" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeHttpProtocol (2 samples, 0.01%)</title><rect x="1072.6" y="437" width="0.1" height="15.0" fill="rgb(226,152,43)" rx="2" ry="2" />
|
|
<text x="1075.63" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_capture_packet_entry (8 samples, 0.04%)</title><rect x="970.8" y="501" width="0.5" height="15.0" fill="rgb(232,45,53)" rx="2" ry="2" />
|
|
<text x="973.82" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="917.8" y="581" width="0.1" height="15.0" fill="rgb(217,157,22)" rx="2" ry="2" />
|
|
<text x="920.80" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (254 samples, 1.27%)</title><rect x="906.1" y="741" width="14.9" height="15.0" fill="rgb(232,167,53)" rx="2" ry="2" />
|
|
<text x="909.06" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (24 samples, 0.12%)</title><rect x="915.6" y="469" width="1.4" height="15.0" fill="rgb(207,172,51)" rx="2" ry="2" />
|
|
<text x="918.56" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_region_compile (4 samples, 0.02%)</title><rect x="895.6" y="725" width="0.3" height="15.0" fill="rgb(235,192,53)" rx="2" ry="2" />
|
|
<text x="898.62" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>IEEE_8021_entry (21 samples, 0.10%)</title><rect x="906.2" y="693" width="1.3" height="15.0" fill="rgb(249,133,26)" rx="2" ry="2" />
|
|
<text x="909.24" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_capture_packet_entry (33 samples, 0.16%)</title><rect x="1146.1" y="549" width="2.0" height="15.0" fill="rgb(254,27,34)" rx="2" ry="2" />
|
|
<text x="1149.12" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (3 samples, 0.01%)</title><rect x="1175.1" y="485" width="0.2" height="15.0" fill="rgb(241,154,53)" rx="2" ry="2" />
|
|
<text x="1178.14" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (75 samples, 0.37%)</title><rect x="1118.7" y="517" width="4.5" height="15.0" fill="rgb(254,106,53)" rx="2" ry="2" />
|
|
<text x="1121.75" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_get (5 samples, 0.02%)</title><rect x="816.5" y="741" width="0.3" height="15.0" fill="rgb(253,213,29)" rx="2" ry="2" />
|
|
<text x="819.52" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>region_compile (13 samples, 0.06%)</title><rect x="840.6" y="741" width="0.8" height="15.0" fill="rgb(211,229,52)" rx="2" ry="2" />
|
|
<text x="843.65" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CPortIndex::Find (3 samples, 0.01%)</title><rect x="905.6" y="725" width="0.2" height="15.0" fill="rgb(219,96,29)" rx="2" ry="2" />
|
|
<text x="908.65" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_check (16 samples, 0.08%)</title><rect x="963.3" y="533" width="0.9" height="15.0" fill="rgb(232,215,36)" rx="2" ry="2" />
|
|
<text x="966.27" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (818 samples, 4.09%)</title><rect x="1025.2" y="533" width="48.3" height="15.0" fill="rgb(207,94,14)" rx="2" ry="2" />
|
|
<text x="1028.20" y="543.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>CIPMaskIndex::Find (65 samples, 0.32%)</title><rect x="899.1" y="725" width="3.8" height="15.0" fill="rgb(216,55,28)" rx="2" ry="2" />
|
|
<text x="902.10" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="906.8" y="277" width="0.1" height="15.0" fill="rgb(252,214,23)" rx="2" ry="2" />
|
|
<text x="909.83" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithGzipData (2 samples, 0.01%)</title><rect x="1170.2" y="517" width="0.2" height="15.0" fill="rgb(234,8,45)" rx="2" ry="2" />
|
|
<text x="1173.24" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (39 samples, 0.19%)</title><rect x="1179.9" y="709" width="2.3" height="15.0" fill="rgb(216,154,52)" rx="2" ry="2" />
|
|
<text x="1182.86" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="956.6" y="437" width="0.1" height="15.0" fill="rgb(210,38,40)" rx="2" ry="2" />
|
|
<text x="959.61" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (10 samples, 0.05%)</title><rect x="1124.0" y="565" width="0.6" height="15.0" fill="rgb(253,71,25)" rx="2" ry="2" />
|
|
<text x="1127.00" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (1,058 samples, 5.29%)</title><rect x="941.3" y="629" width="62.4" height="15.0" fill="rgb(223,90,34)" rx="2" ry="2" />
|
|
<text x="944.27" y="639.5" >dealip..</text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (12 samples, 0.06%)</title><rect x="985.9" y="549" width="0.7" height="15.0" fill="rgb(232,115,25)" rx="2" ry="2" />
|
|
<text x="988.86" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="908.6" y="277" width="0.3" height="15.0" fill="rgb(227,36,42)" rx="2" ry="2" />
|
|
<text x="911.60" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__snprintf (2 samples, 0.01%)</title><rect x="1091.5" y="469" width="0.1" height="15.0" fill="rgb(236,225,27)" rx="2" ry="2" />
|
|
<text x="1094.50" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_default_xsputn (2 samples, 0.01%)</title><rect x="918.0" y="437" width="0.2" height="15.0" fill="rgb(239,65,12)" rx="2" ry="2" />
|
|
<text x="921.03" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_addr (2 samples, 0.01%)</title><rect x="973.6" y="469" width="0.1" height="15.0" fill="rgb(227,224,50)" rx="2" ry="2" />
|
|
<text x="976.59" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (3 samples, 0.01%)</title><rect x="916.1" y="277" width="0.2" height="15.0" fill="rgb(225,159,44)" rx="2" ry="2" />
|
|
<text x="919.15" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (9 samples, 0.04%)</title><rect x="921.0" y="741" width="0.6" height="15.0" fill="rgb(223,125,53)" rx="2" ry="2" />
|
|
<text x="924.04" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (3 samples, 0.01%)</title><rect x="954.7" y="357" width="0.1" height="15.0" fill="rgb(242,137,40)" rx="2" ry="2" />
|
|
<text x="957.66" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509V3_EXT_d2i (2 samples, 0.01%)</title><rect x="906.8" y="421" width="0.1" height="15.0" fill="rgb(224,43,28)" rx="2" ry="2" />
|
|
<text x="909.83" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count@plt (2 samples, 0.01%)</title><rect x="830.2" y="709" width="0.1" height="15.0" fill="rgb(228,223,27)" rx="2" ry="2" />
|
|
<text x="833.21" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="813.7" y="581" width="0.1" height="15.0" fill="rgb(226,190,11)" rx="2" ry="2" />
|
|
<text x="816.69" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (6 samples, 0.03%)</title><rect x="909.1" y="261" width="0.3" height="15.0" fill="rgb(205,160,39)" rx="2" ry="2" />
|
|
<text x="912.07" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1188.2" y="293" width="0.1" height="15.0" fill="rgb(224,44,43)" rx="2" ry="2" />
|
|
<text x="1191.23" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bool_matcher_match (3 samples, 0.01%)</title><rect x="895.7" y="709" width="0.2" height="15.0" fill="rgb(214,136,32)" rx="2" ry="2" />
|
|
<text x="898.68" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="906.9" y="501" width="0.2" height="15.0" fill="rgb(228,20,6)" rx="2" ry="2" />
|
|
<text x="909.94" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (2 samples, 0.01%)</title><rect x="819.2" y="709" width="0.2" height="15.0" fill="rgb(211,171,25)" rx="2" ry="2" />
|
|
<text x="822.24" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::find_matched_result (3 samples, 0.01%)</title><rect x="842.4" y="677" width="0.1" height="15.0" fill="rgb(216,117,22)" rx="2" ry="2" />
|
|
<text x="845.36" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (4 samples, 0.02%)</title><rect x="907.1" y="485" width="0.2" height="15.0" fill="rgb(214,18,25)" rx="2" ry="2" />
|
|
<text x="910.06" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (18 samples, 0.09%)</title><rect x="1177.3" y="629" width="1.1" height="15.0" fill="rgb(235,205,30)" rx="2" ry="2" />
|
|
<text x="1180.32" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (12 samples, 0.06%)</title><rect x="1107.2" y="501" width="0.8" height="15.0" fill="rgb(212,167,42)" rx="2" ry="2" />
|
|
<text x="1110.25" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="954.7" y="325" width="0.1" height="15.0" fill="rgb(244,32,49)" rx="2" ry="2" />
|
|
<text x="957.66" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="953.8" y="325" width="0.2" height="15.0" fill="rgb(228,127,15)" rx="2" ry="2" />
|
|
<text x="956.83" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_check (100 samples, 0.50%)</title><rect x="1110.4" y="533" width="5.9" height="15.0" fill="rgb(222,103,48)" rx="2" ry="2" />
|
|
<text x="1113.43" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="975.8" y="485" width="0.3" height="15.0" fill="rgb(240,9,18)" rx="2" ry="2" />
|
|
<text x="978.84" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_default_xsputn (2 samples, 0.01%)</title><rect x="909.8" y="389" width="0.2" height="15.0" fill="rgb(245,107,45)" rx="2" ry="2" />
|
|
<text x="912.83" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (47 samples, 0.23%)</title><rect x="915.1" y="613" width="2.8" height="15.0" fill="rgb(237,180,24)" rx="2" ry="2" />
|
|
<text x="918.14" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_search (9 samples, 0.04%)</title><rect x="1136.0" y="597" width="0.6" height="15.0" fill="rgb(210,101,35)" rx="2" ry="2" />
|
|
<text x="1139.03" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="951.8" y="389" width="0.1" height="15.0" fill="rgb(228,122,42)" rx="2" ry="2" />
|
|
<text x="954.83" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (12 samples, 0.06%)</title><rect x="953.4" y="341" width="0.7" height="15.0" fill="rgb(205,204,11)" rx="2" ry="2" />
|
|
<text x="956.42" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_fqdn_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1182.6" y="629" width="0.1" height="15.0" fill="rgb(253,65,46)" rx="2" ry="2" />
|
|
<text x="1185.57" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="1179.6" y="741" width="0.1" height="15.0" fill="rgb(212,103,53)" rx="2" ry="2" />
|
|
<text x="1182.62" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_htable_search_cb (5 samples, 0.02%)</title><rect x="973.3" y="437" width="0.3" height="15.0" fill="rgb(238,28,11)" rx="2" ry="2" />
|
|
<text x="976.30" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="920.7" y="661" width="0.3" height="15.0" fill="rgb(234,208,23)" rx="2" ry="2" />
|
|
<text x="923.69" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="911.1" y="453" width="0.2" height="15.0" fill="rgb(213,211,25)" rx="2" ry="2" />
|
|
<text x="914.13" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (8 samples, 0.04%)</title><rect x="981.2" y="485" width="0.5" height="15.0" fill="rgb(228,182,16)" rx="2" ry="2" />
|
|
<text x="984.20" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (35 samples, 0.17%)</title><rect x="1134.0" y="613" width="2.0" height="15.0" fill="rgb(236,77,44)" rx="2" ry="2" />
|
|
<text x="1136.97" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_http_plug.so] (5 samples, 0.02%)</title><rect x="808.3" y="741" width="0.3" height="15.0" fill="rgb(214,206,44)" rx="2" ry="2" />
|
|
<text x="811.27" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="1172.1" y="645" width="0.1" height="15.0" fill="rgb(250,213,30)" rx="2" ry="2" />
|
|
<text x="1175.13" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__clock_gettime (8 samples, 0.04%)</title><rect x="881.6" y="741" width="0.5" height="15.0" fill="rgb(243,70,38)" rx="2" ry="2" />
|
|
<text x="884.58" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (7 samples, 0.03%)</title><rect x="1183.7" y="597" width="0.4" height="15.0" fill="rgb(235,22,2)" rx="2" ry="2" />
|
|
<text x="1186.69" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (12 samples, 0.06%)</title><rect x="1147.4" y="517" width="0.7" height="15.0" fill="rgb(224,170,23)" rx="2" ry="2" />
|
|
<text x="1150.36" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="957.1" y="453" width="0.1" height="15.0" fill="rgb(245,213,31)" rx="2" ry="2" />
|
|
<text x="960.08" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (27 samples, 0.13%)</title><rect x="1140.9" y="613" width="1.6" height="15.0" fill="rgb(233,82,0)" rx="2" ry="2" />
|
|
<text x="1143.87" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (2 samples, 0.01%)</title><rect x="1124.5" y="533" width="0.1" height="15.0" fill="rgb(207,93,49)" rx="2" ry="2" />
|
|
<text x="1127.47" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (17 samples, 0.08%)</title><rect x="1187.9" y="629" width="1.0" height="15.0" fill="rgb(206,7,6)" rx="2" ry="2" />
|
|
<text x="1190.94" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (1,288 samples, 6.44%)</title><rect x="511.6" y="645" width="76.0" height="15.0" fill="rgb(235,200,2)" rx="2" ry="2" />
|
|
<text x="514.64" y="655.5" >_int_mal..</text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="1174.1" y="597" width="0.3" height="15.0" fill="rgb(217,113,40)" rx="2" ry="2" />
|
|
<text x="1177.13" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (54 samples, 0.27%)</title><rect x="889.9" y="693" width="3.2" height="15.0" fill="rgb(211,24,46)" rx="2" ry="2" />
|
|
<text x="892.90" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_secondary (15 samples, 0.07%)</title><rect x="1189.1" y="757" width="0.9" height="15.0" fill="rgb(232,62,50)" rx="2" ry="2" />
|
|
<text x="1192.12" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>print_spent_time (2 samples, 0.01%)</title><rect x="914.6" y="581" width="0.1" height="15.0" fill="rgb(238,23,43)" rx="2" ry="2" />
|
|
<text x="917.61" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (5 samples, 0.02%)</title><rect x="1099.2" y="357" width="0.3" height="15.0" fill="rgb(243,115,13)" rx="2" ry="2" />
|
|
<text x="1102.23" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_full_scan_string (2 samples, 0.01%)</title><rect x="1177.7" y="549" width="0.1" height="15.0" fill="rgb(209,141,18)" rx="2" ry="2" />
|
|
<text x="1180.73" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="1101.9" y="421" width="0.2" height="15.0" fill="rgb(223,164,13)" rx="2" ry="2" />
|
|
<text x="1104.94" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (2 samples, 0.01%)</title><rect x="948.5" y="517" width="0.1" height="15.0" fill="rgb(228,106,19)" rx="2" ry="2" />
|
|
<text x="951.47" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="1180.0" y="645" width="0.1" height="15.0" fill="rgb(229,138,4)" rx="2" ry="2" />
|
|
<text x="1182.97" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1174.1" y="677" width="0.3" height="15.0" fill="rgb(250,148,1)" rx="2" ry="2" />
|
|
<text x="1177.13" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CUNZIP::fn_iUnGZ (4 samples, 0.02%)</title><rect x="1096.7" y="325" width="0.2" height="15.0" fill="rgb(248,86,39)" rx="2" ry="2" />
|
|
<text x="1099.69" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (7 samples, 0.03%)</title><rect x="1172.4" y="533" width="0.4" height="15.0" fill="rgb(249,191,40)" rx="2" ry="2" />
|
|
<text x="1175.36" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (5 samples, 0.02%)</title><rect x="1180.8" y="629" width="0.3" height="15.0" fill="rgb(216,16,38)" rx="2" ry="2" />
|
|
<text x="1183.80" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (7 samples, 0.03%)</title><rect x="1132.8" y="517" width="0.5" height="15.0" fill="rgb(222,154,16)" rx="2" ry="2" />
|
|
<text x="1135.85" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (3 samples, 0.01%)</title><rect x="979.3" y="549" width="0.1" height="15.0" fill="rgb(209,176,36)" rx="2" ry="2" />
|
|
<text x="982.26" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.01%)</title><rect x="969.2" y="549" width="0.1" height="15.0" fill="rgb(251,161,45)" rx="2" ry="2" />
|
|
<text x="972.17" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="948.0" y="469" width="0.1" height="15.0" fill="rgb(205,142,52)" rx="2" ry="2" />
|
|
<text x="951.00" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::find_matched_result (37 samples, 0.18%)</title><rect x="834.5" y="677" width="2.2" height="15.0" fill="rgb(214,51,8)" rx="2" ry="2" />
|
|
<text x="837.51" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="950.9" y="437" width="0.2" height="15.0" fill="rgb(233,174,9)" rx="2" ry="2" />
|
|
<text x="953.89" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (26 samples, 0.13%)</title><rect x="985.4" y="565" width="1.5" height="15.0" fill="rgb(240,29,8)" rx="2" ry="2" />
|
|
<text x="988.39" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="906.9" y="469" width="0.2" height="15.0" fill="rgb(219,34,23)" rx="2" ry="2" />
|
|
<text x="909.94" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (2 samples, 0.01%)</title><rect x="952.1" y="453" width="0.1" height="15.0" fill="rgb(250,163,2)" rx="2" ry="2" />
|
|
<text x="955.07" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (5 samples, 0.02%)</title><rect x="969.1" y="565" width="0.2" height="15.0" fill="rgb(224,161,52)" rx="2" ry="2" />
|
|
<text x="972.05" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (30 samples, 0.15%)</title><rect x="1182.8" y="661" width="1.8" height="15.0" fill="rgb(217,85,21)" rx="2" ry="2" />
|
|
<text x="1185.80" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_one_resource_record (5 samples, 0.02%)</title><rect x="1184.7" y="725" width="0.3" height="15.0" fill="rgb(232,154,36)" rx="2" ry="2" />
|
|
<text x="1187.69" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (2 samples, 0.01%)</title><rect x="1170.2" y="613" width="0.2" height="15.0" fill="rgb(245,222,6)" rx="2" ry="2" />
|
|
<text x="1173.24" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (17 samples, 0.08%)</title><rect x="1187.9" y="645" width="1.0" height="15.0" fill="rgb(213,224,47)" rx="2" ry="2" />
|
|
<text x="1190.94" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (2 samples, 0.01%)</title><rect x="1170.2" y="565" width="0.2" height="15.0" fill="rgb(229,36,12)" rx="2" ry="2" />
|
|
<text x="1173.24" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (9 samples, 0.04%)</title><rect x="1123.5" y="565" width="0.5" height="15.0" fill="rgb(231,119,34)" rx="2" ry="2" />
|
|
<text x="1126.47" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="1102.6" y="485" width="0.6" height="15.0" fill="rgb(234,162,15)" rx="2" ry="2" />
|
|
<text x="1105.65" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (2,582 samples, 12.91%)</title><rect x="1004.7" y="645" width="152.3" height="15.0" fill="rgb(247,190,32)" rx="2" ry="2" />
|
|
<text x="1007.68" y="655.5" >ipv6_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (17 samples, 0.08%)</title><rect x="967.0" y="565" width="1.0" height="15.0" fill="rgb(229,189,20)" rx="2" ry="2" />
|
|
<text x="970.05" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (5 samples, 0.02%)</title><rect x="1098.7" y="357" width="0.3" height="15.0" fill="rgb(216,115,47)" rx="2" ry="2" />
|
|
<text x="1101.70" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_check (14 samples, 0.07%)</title><rect x="1137.1" y="565" width="0.8" height="15.0" fill="rgb(223,146,40)" rx="2" ry="2" />
|
|
<text x="1140.09" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="1130.8" y="501" width="0.1" height="15.0" fill="rgb(237,190,49)" rx="2" ry="2" />
|
|
<text x="1133.78" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="1079.4" y="501" width="0.1" height="15.0" fill="rgb(245,227,6)" rx="2" ry="2" />
|
|
<text x="1082.41" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="1185.8" y="709" width="0.2" height="15.0" fill="rgb(227,214,4)" rx="2" ry="2" />
|
|
<text x="1188.81" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (4 samples, 0.02%)</title><rect x="1174.1" y="613" width="0.3" height="15.0" fill="rgb(210,119,29)" rx="2" ry="2" />
|
|
<text x="1177.13" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (9 samples, 0.04%)</title><rect x="1002.6" y="501" width="0.5" height="15.0" fill="rgb(206,61,33)" rx="2" ry="2" />
|
|
<text x="1005.61" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="1099.2" y="373" width="0.4" height="15.0" fill="rgb(224,46,34)" rx="2" ry="2" />
|
|
<text x="1102.23" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="991.0" y="533" width="0.1" height="15.0" fill="rgb(250,114,28)" rx="2" ry="2" />
|
|
<text x="993.99" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (3 samples, 0.01%)</title><rect x="912.3" y="501" width="0.1" height="15.0" fill="rgb(234,99,25)" rx="2" ry="2" />
|
|
<text x="915.25" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="973.8" y="485" width="0.1" height="15.0" fill="rgb(222,118,52)" rx="2" ry="2" />
|
|
<text x="976.77" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (4 samples, 0.02%)</title><rect x="907.1" y="421" width="0.2" height="15.0" fill="rgb(229,99,35)" rx="2" ry="2" />
|
|
<text x="910.06" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="916.1" y="261" width="0.2" height="15.0" fill="rgb(252,18,34)" rx="2" ry="2" />
|
|
<text x="919.15" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="916.0" y="229" width="0.1" height="15.0" fill="rgb(229,192,15)" rx="2" ry="2" />
|
|
<text x="919.03" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>memcmp@plt (2 samples, 0.01%)</title><rect x="1001.7" y="501" width="0.1" height="15.0" fill="rgb(246,10,44)" rx="2" ry="2" />
|
|
<text x="1004.73" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Rb_tree_increment (2 samples, 0.01%)</title><rect x="975.5" y="469" width="0.2" height="15.0" fill="rgb(241,197,31)" rx="2" ry="2" />
|
|
<text x="978.54" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (61 samples, 0.30%)</title><rect x="915.1" y="661" width="3.6" height="15.0" fill="rgb(208,26,16)" rx="2" ry="2" />
|
|
<text x="918.14" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="1188.9" y="741" width="0.2" height="15.0" fill="rgb(213,93,49)" rx="2" ry="2" />
|
|
<text x="1191.94" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="1172.8" y="549" width="0.2" height="15.0" fill="rgb(238,108,47)" rx="2" ry="2" />
|
|
<text x="1175.84" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (18 samples, 0.09%)</title><rect x="1177.3" y="645" width="1.1" height="15.0" fill="rgb(241,142,54)" rx="2" ry="2" />
|
|
<text x="1180.32" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (16 samples, 0.08%)</title><rect x="943.8" y="581" width="1.0" height="15.0" fill="rgb(242,184,14)" rx="2" ry="2" />
|
|
<text x="946.81" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (2 samples, 0.01%)</title><rect x="1188.9" y="549" width="0.2" height="15.0" fill="rgb(252,48,18)" rx="2" ry="2" />
|
|
<text x="1191.94" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="917.8" y="565" width="0.1" height="15.0" fill="rgb(226,119,44)" rx="2" ry="2" />
|
|
<text x="920.80" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (2 samples, 0.01%)</title><rect x="907.8" y="437" width="0.1" height="15.0" fill="rgb(210,96,31)" rx="2" ry="2" />
|
|
<text x="910.77" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (2 samples, 0.01%)</title><rect x="917.7" y="437" width="0.1" height="15.0" fill="rgb(211,56,9)" rx="2" ry="2" />
|
|
<text x="920.68" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (25 samples, 0.12%)</title><rect x="1102.3" y="533" width="1.5" height="15.0" fill="rgb(214,214,2)" rx="2" ry="2" />
|
|
<text x="1105.29" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (2 samples, 0.01%)</title><rect x="1168.3" y="661" width="0.1" height="15.0" fill="rgb(227,211,19)" rx="2" ry="2" />
|
|
<text x="1171.29" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator< (4 samples, 0.02%)</title><rect x="905.4" y="693" width="0.2" height="15.0" fill="rgb(248,158,10)" rx="2" ry="2" />
|
|
<text x="908.35" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (7 samples, 0.03%)</title><rect x="808.6" y="565" width="0.4" height="15.0" fill="rgb(221,169,3)" rx="2" ry="2" />
|
|
<text x="811.62" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (2 samples, 0.01%)</title><rect x="1178.4" y="549" width="0.1" height="15.0" fill="rgb(228,169,7)" rx="2" ry="2" />
|
|
<text x="1181.38" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_http_plug.so] (2 samples, 0.01%)</title><rect x="1174.9" y="677" width="0.1" height="15.0" fill="rgb(216,216,3)" rx="2" ry="2" />
|
|
<text x="1177.90" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (3 samples, 0.01%)</title><rect x="982.4" y="565" width="0.2" height="15.0" fill="rgb(214,46,27)" rx="2" ry="2" />
|
|
<text x="985.44" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (7 samples, 0.03%)</title><rect x="976.6" y="469" width="0.4" height="15.0" fill="rgb(228,197,26)" rx="2" ry="2" />
|
|
<text x="979.60" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="909.6" y="405" width="0.1" height="15.0" fill="rgb(249,190,40)" rx="2" ry="2" />
|
|
<text x="912.60" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="1130.8" y="533" width="0.1" height="15.0" fill="rgb(252,27,1)" rx="2" ry="2" />
|
|
<text x="1133.78" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (8 samples, 0.04%)</title><rect x="910.0" y="389" width="0.4" height="15.0" fill="rgb(219,215,20)" rx="2" ry="2" />
|
|
<text x="912.95" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_add_stream (2 samples, 0.01%)</title><rect x="948.9" y="533" width="0.1" height="15.0" fill="rgb(222,66,30)" rx="2" ry="2" />
|
|
<text x="951.88" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="1174.9" y="693" width="0.2" height="15.0" fill="rgb(239,74,36)" rx="2" ry="2" />
|
|
<text x="1177.90" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="915.7" y="37" width="0.2" height="15.0" fill="rgb(218,118,36)" rx="2" ry="2" />
|
|
<text x="918.73" y="47.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (2 samples, 0.01%)</title><rect x="920.8" y="565" width="0.1" height="15.0" fill="rgb(251,102,3)" rx="2" ry="2" />
|
|
<text x="923.80" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1098.7" y="309" width="0.3" height="15.0" fill="rgb(236,2,27)" rx="2" ry="2" />
|
|
<text x="1101.70" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (5 samples, 0.02%)</title><rect x="920.2" y="581" width="0.3" height="15.0" fill="rgb(231,210,18)" rx="2" ry="2" />
|
|
<text x="923.16" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>heap_trim (6 samples, 0.03%)</title><rect x="233.6" y="725" width="0.4" height="15.0" fill="rgb(235,219,12)" rx="2" ry="2" />
|
|
<text x="236.60" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (25 samples, 0.12%)</title><rect x="915.6" y="485" width="1.4" height="15.0" fill="rgb(241,190,23)" rx="2" ry="2" />
|
|
<text x="918.56" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CIntervalMatch::search_rule (3 samples, 0.01%)</title><rect x="841.8" y="709" width="0.2" height="15.0" fill="rgb(232,55,49)" rx="2" ry="2" />
|
|
<text x="844.83" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="1187.8" y="581" width="0.1" height="15.0" fill="rgb(233,146,2)" rx="2" ry="2" />
|
|
<text x="1190.76" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_region_compile (3 samples, 0.01%)</title><rect x="819.4" y="725" width="0.1" height="15.0" fill="rgb(225,48,46)" rx="2" ry="2" />
|
|
<text x="822.36" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_dns_query_question (2 samples, 0.01%)</title><rect x="1184.6" y="725" width="0.1" height="15.0" fill="rgb(248,81,22)" rx="2" ry="2" />
|
|
<text x="1187.57" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bool_matcher_match (3 samples, 0.01%)</title><rect x="841.2" y="709" width="0.2" height="15.0" fill="rgb(237,214,13)" rx="2" ry="2" />
|
|
<text x="844.24" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (5 samples, 0.02%)</title><rect x="1003.4" y="581" width="0.3" height="15.0" fill="rgb(210,202,51)" rx="2" ry="2" />
|
|
<text x="1006.38" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (12 samples, 0.06%)</title><rect x="1178.4" y="581" width="0.7" height="15.0" fill="rgb(243,175,25)" rx="2" ry="2" />
|
|
<text x="1181.38" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (6 samples, 0.03%)</title><rect x="910.0" y="309" width="0.4" height="15.0" fill="rgb(234,52,1)" rx="2" ry="2" />
|
|
<text x="913.01" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count (3 samples, 0.01%)</title><rect x="881.3" y="677" width="0.2" height="15.0" fill="rgb(207,19,2)" rx="2" ry="2" />
|
|
<text x="884.35" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (31 samples, 0.15%)</title><rect x="1177.3" y="661" width="1.8" height="15.0" fill="rgb(243,219,21)" rx="2" ry="2" />
|
|
<text x="1180.32" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1172.2" y="661" width="0.2" height="15.0" fill="rgb(245,156,20)" rx="2" ry="2" />
|
|
<text x="1175.25" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (5 samples, 0.02%)</title><rect x="909.1" y="229" width="0.3" height="15.0" fill="rgb(244,220,26)" rx="2" ry="2" />
|
|
<text x="912.07" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (5 samples, 0.02%)</title><rect x="982.9" y="533" width="0.3" height="15.0" fill="rgb(252,159,13)" rx="2" ry="2" />
|
|
<text x="985.91" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (13 samples, 0.06%)</title><rect x="1187.9" y="549" width="0.8" height="15.0" fill="rgb(212,221,27)" rx="2" ry="2" />
|
|
<text x="1190.94" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="915.7" y="69" width="0.2" height="15.0" fill="rgb(217,116,22)" rx="2" ry="2" />
|
|
<text x="918.73" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="980.8" y="453" width="0.2" height="15.0" fill="rgb(237,133,20)" rx="2" ry="2" />
|
|
<text x="983.85" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (3 samples, 0.01%)</title><rect x="918.3" y="565" width="0.1" height="15.0" fill="rgb(206,117,36)" rx="2" ry="2" />
|
|
<text x="921.27" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="911.0" y="485" width="0.1" height="15.0" fill="rgb(209,198,40)" rx="2" ry="2" />
|
|
<text x="913.95" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1101.1" y="469" width="0.2" height="15.0" fill="rgb(233,214,13)" rx="2" ry="2" />
|
|
<text x="1104.11" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (7 samples, 0.03%)</title><rect x="1170.4" y="517" width="0.4" height="15.0" fill="rgb(224,59,31)" rx="2" ry="2" />
|
|
<text x="1173.42" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_searchstream (299 samples, 1.49%)</title><rect x="863.9" y="709" width="17.6" height="15.0" fill="rgb(228,107,18)" rx="2" ry="2" />
|
|
<text x="866.89" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="979.6" y="501" width="0.1" height="15.0" fill="rgb(226,183,32)" rx="2" ry="2" />
|
|
<text x="982.61" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_ncopy (3 samples, 0.01%)</title><rect x="916.0" y="245" width="0.1" height="15.0" fill="rgb(247,2,16)" rx="2" ry="2" />
|
|
<text x="918.97" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (21 samples, 0.10%)</title><rect x="906.2" y="709" width="1.3" height="15.0" fill="rgb(249,218,31)" rx="2" ry="2" />
|
|
<text x="909.24" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="1079.6" y="517" width="0.2" height="15.0" fill="rgb(225,19,40)" rx="2" ry="2" />
|
|
<text x="1082.64" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_update_dpkt (2 samples, 0.01%)</title><rect x="1002.4" y="549" width="0.2" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
|
|
<text x="1005.44" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (240 samples, 1.20%)</title><rect x="1142.5" y="613" width="14.1" height="15.0" fill="rgb(228,204,53)" rx="2" ry="2" />
|
|
<text x="1145.46" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (4 samples, 0.02%)</title><rect x="982.9" y="517" width="0.2" height="15.0" fill="rgb(212,146,1)" rx="2" ry="2" />
|
|
<text x="985.91" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[librulescan.so.2.2] (151 samples, 0.75%)</title><rect x="897.2" y="757" width="8.9" height="15.0" fill="rgb(210,14,33)" rx="2" ry="2" />
|
|
<text x="900.15" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CompareRule (4 samples, 0.02%)</title><rect x="905.8" y="725" width="0.3" height="15.0" fill="rgb(218,53,14)" rx="2" ry="2" />
|
|
<text x="908.82" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="918.3" y="501" width="0.1" height="15.0" fill="rgb(211,154,9)" rx="2" ry="2" />
|
|
<text x="921.33" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1170.2" y="629" width="0.2" height="15.0" fill="rgb(229,50,20)" rx="2" ry="2" />
|
|
<text x="1173.24" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_htable.so] (5 samples, 0.02%)</title><rect x="940.3" y="613" width="0.3" height="15.0" fill="rgb(244,138,36)" rx="2" ry="2" />
|
|
<text x="943.33" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithStartLine (3 samples, 0.01%)</title><rect x="951.5" y="437" width="0.2" height="15.0" fill="rgb(228,134,31)" rx="2" ry="2" />
|
|
<text x="954.48" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (5 samples, 0.02%)</title><rect x="1179.1" y="661" width="0.3" height="15.0" fill="rgb(249,176,0)" rx="2" ry="2" />
|
|
<text x="1182.15" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (19 samples, 0.09%)</title><rect x="1176.0" y="725" width="1.1" height="15.0" fill="rgb(222,224,36)" rx="2" ry="2" />
|
|
<text x="1179.02" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_htable.so] (2 samples, 0.01%)</title><rect x="973.5" y="421" width="0.1" height="15.0" fill="rgb(205,19,38)" rx="2" ry="2" />
|
|
<text x="976.48" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (7 samples, 0.03%)</title><rect x="1170.4" y="533" width="0.4" height="15.0" fill="rgb(242,50,30)" rx="2" ry="2" />
|
|
<text x="1173.42" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1168.3" y="725" width="0.1" height="15.0" fill="rgb(241,23,23)" rx="2" ry="2" />
|
|
<text x="1171.29" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (11 samples, 0.05%)</title><rect x="1186.9" y="549" width="0.7" height="15.0" fill="rgb(218,60,7)" rx="2" ry="2" />
|
|
<text x="1189.93" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (12 samples, 0.06%)</title><rect x="1178.4" y="597" width="0.7" height="15.0" fill="rgb(240,219,1)" rx="2" ry="2" />
|
|
<text x="1181.38" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (5 samples, 0.02%)</title><rect x="917.9" y="613" width="0.3" height="15.0" fill="rgb(217,228,39)" rx="2" ry="2" />
|
|
<text x="920.91" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="819.0" y="709" width="0.1" height="15.0" fill="rgb(249,24,20)" rx="2" ry="2" />
|
|
<text x="822.00" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="1172.4" y="565" width="0.4" height="15.0" fill="rgb(227,143,41)" rx="2" ry="2" />
|
|
<text x="1175.36" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (2 samples, 0.01%)</title><rect x="917.7" y="485" width="0.1" height="15.0" fill="rgb(212,75,13)" rx="2" ry="2" />
|
|
<text x="920.68" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="919.9" y="581" width="0.1" height="15.0" fill="rgb(225,52,36)" rx="2" ry="2" />
|
|
<text x="922.86" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="1175.3" y="501" width="0.2" height="15.0" fill="rgb(235,58,17)" rx="2" ry="2" />
|
|
<text x="1178.31" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (17 samples, 0.08%)</title><rect x="915.6" y="437" width="1.0" height="15.0" fill="rgb(254,114,10)" rx="2" ry="2" />
|
|
<text x="918.56" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="956.9" y="469" width="0.1" height="15.0" fill="rgb(220,213,50)" rx="2" ry="2" />
|
|
<text x="959.90" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (5 samples, 0.02%)</title><rect x="910.5" y="453" width="0.3" height="15.0" fill="rgb(233,191,0)" rx="2" ry="2" />
|
|
<text x="913.48" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (65 samples, 0.32%)</title><rect x="907.5" y="549" width="3.8" height="15.0" fill="rgb(205,118,3)" rx="2" ry="2" />
|
|
<text x="910.47" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="1004.6" y="613" width="0.1" height="15.0" fill="rgb(219,28,25)" rx="2" ry="2" />
|
|
<text x="1007.56" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (68 samples, 0.34%)</title><rect x="907.5" y="629" width="4.0" height="15.0" fill="rgb(217,213,0)" rx="2" ry="2" />
|
|
<text x="910.47" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (10 samples, 0.05%)</title><rect x="982.6" y="565" width="0.6" height="15.0" fill="rgb(221,121,25)" rx="2" ry="2" />
|
|
<text x="985.62" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (3 samples, 0.01%)</title><rect x="920.5" y="661" width="0.2" height="15.0" fill="rgb(216,26,22)" rx="2" ry="2" />
|
|
<text x="923.51" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (12 samples, 0.06%)</title><rect x="894.9" y="693" width="0.7" height="15.0" fill="rgb(245,176,52)" rx="2" ry="2" />
|
|
<text x="897.85" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (3 samples, 0.01%)</title><rect x="1172.8" y="485" width="0.2" height="15.0" fill="rgb(212,111,39)" rx="2" ry="2" />
|
|
<text x="1175.84" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (5 samples, 0.02%)</title><rect x="917.9" y="629" width="0.3" height="15.0" fill="rgb(238,33,13)" rx="2" ry="2" />
|
|
<text x="920.91" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_calloc (115 samples, 0.57%)</title><rect x="886.3" y="709" width="6.8" height="15.0" fill="rgb(233,126,36)" rx="2" ry="2" />
|
|
<text x="889.30" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="1187.6" y="549" width="0.2" height="15.0" fill="rgb(226,81,22)" rx="2" ry="2" />
|
|
<text x="1190.64" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (33 samples, 0.16%)</title><rect x="1170.4" y="709" width="2.0" height="15.0" fill="rgb(231,199,47)" rx="2" ry="2" />
|
|
<text x="1173.42" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify_v4 (3 samples, 0.01%)</title><rect x="1110.3" y="533" width="0.1" height="15.0" fill="rgb(215,156,24)" rx="2" ry="2" />
|
|
<text x="1113.26" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (6 samples, 0.03%)</title><rect x="1168.4" y="757" width="0.4" height="15.0" fill="rgb(236,125,0)" rx="2" ry="2" />
|
|
<text x="1171.41" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (4 samples, 0.02%)</title><rect x="817.8" y="741" width="0.2" height="15.0" fill="rgb(245,101,18)" rx="2" ry="2" />
|
|
<text x="820.76" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (3 samples, 0.01%)</title><rect x="1182.3" y="661" width="0.2" height="15.0" fill="rgb(253,150,41)" rx="2" ry="2" />
|
|
<text x="1185.27" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (25 samples, 0.12%)</title><rect x="1168.8" y="581" width="1.4" height="15.0" fill="rgb(253,23,18)" rx="2" ry="2" />
|
|
<text x="1171.77" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (23 samples, 0.11%)</title><rect x="1134.7" y="581" width="1.3" height="15.0" fill="rgb(216,173,31)" rx="2" ry="2" />
|
|
<text x="1137.67" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_ex_c2i (2 samples, 0.01%)</title><rect x="1099.3" y="261" width="0.1" height="15.0" fill="rgb(251,186,6)" rx="2" ry="2" />
|
|
<text x="1102.29" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CZipFormat::AddOneSection (5 samples, 0.02%)</title><rect x="1096.7" y="341" width="0.3" height="15.0" fill="rgb(236,58,37)" rx="2" ry="2" />
|
|
<text x="1099.69" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="959.4" y="437" width="0.1" height="15.0" fill="rgb(222,66,21)" rx="2" ry="2" />
|
|
<text x="962.38" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (5 samples, 0.02%)</title><rect x="947.8" y="517" width="0.3" height="15.0" fill="rgb(253,192,10)" rx="2" ry="2" />
|
|
<text x="950.82" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (11 samples, 0.05%)</title><rect x="1176.4" y="693" width="0.7" height="15.0" fill="rgb(231,71,25)" rx="2" ry="2" />
|
|
<text x="1179.43" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (5 samples, 0.02%)</title><rect x="1173.8" y="597" width="0.3" height="15.0" fill="rgb(223,66,48)" rx="2" ry="2" />
|
|
<text x="1176.84" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (38 samples, 0.19%)</title><rect x="953.0" y="437" width="2.3" height="15.0" fill="rgb(243,151,45)" rx="2" ry="2" />
|
|
<text x="956.01" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (3 samples, 0.01%)</title><rect x="976.1" y="453" width="0.2" height="15.0" fill="rgb(230,180,54)" rx="2" ry="2" />
|
|
<text x="979.13" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>raw_ip_frag_list_stream_detach (2 samples, 0.01%)</title><rect x="1090.6" y="517" width="0.1" height="15.0" fill="rgb(215,140,10)" rx="2" ry="2" />
|
|
<text x="1093.56" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_capture_packet_entry (26 samples, 0.13%)</title><rect x="1119.9" y="485" width="1.6" height="15.0" fill="rgb(237,200,52)" rx="2" ry="2" />
|
|
<text x="1122.93" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (4 samples, 0.02%)</title><rect x="983.3" y="565" width="0.2" height="15.0" fill="rgb(253,131,27)" rx="2" ry="2" />
|
|
<text x="986.27" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (10 samples, 0.05%)</title><rect x="1145.5" y="549" width="0.6" height="15.0" fill="rgb(253,111,52)" rx="2" ry="2" />
|
|
<text x="1148.53" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (2 samples, 0.01%)</title><rect x="909.5" y="213" width="0.1" height="15.0" fill="rgb(208,209,16)" rx="2" ry="2" />
|
|
<text x="912.48" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (7 samples, 0.03%)</title><rect x="1172.4" y="517" width="0.4" height="15.0" fill="rgb(211,81,11)" rx="2" ry="2" />
|
|
<text x="1175.36" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (4 samples, 0.02%)</title><rect x="907.1" y="501" width="0.2" height="15.0" fill="rgb(239,21,34)" rx="2" ry="2" />
|
|
<text x="910.06" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (5 samples, 0.02%)</title><rect x="1187.9" y="389" width="0.3" height="15.0" fill="rgb(243,112,53)" rx="2" ry="2" />
|
|
<text x="1190.94" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="930.0" y="677" width="0.1" height="15.0" fill="rgb(229,19,9)" rx="2" ry="2" />
|
|
<text x="933.01" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>counting_bloom_check (66 samples, 0.33%)</title><rect x="1137.0" y="581" width="3.9" height="15.0" fill="rgb(224,44,11)" rx="2" ry="2" />
|
|
<text x="1139.97" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (3 samples, 0.01%)</title><rect x="912.3" y="485" width="0.1" height="15.0" fill="rgb(233,205,30)" rx="2" ry="2" />
|
|
<text x="915.25" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="1101.9" y="437" width="0.2" height="15.0" fill="rgb(229,20,28)" rx="2" ry="2" />
|
|
<text x="1104.88" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (12 samples, 0.06%)</title><rect x="906.2" y="517" width="0.7" height="15.0" fill="rgb(253,201,30)" rx="2" ry="2" />
|
|
<text x="909.24" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (18 samples, 0.09%)</title><rect x="808.6" y="725" width="1.0" height="15.0" fill="rgb(209,128,22)" rx="2" ry="2" />
|
|
<text x="811.56" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (5 samples, 0.02%)</title><rect x="1168.4" y="645" width="0.3" height="15.0" fill="rgb(227,84,3)" rx="2" ry="2" />
|
|
<text x="1171.41" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="917.9" y="549" width="0.3" height="15.0" fill="rgb(230,50,15)" rx="2" ry="2" />
|
|
<text x="920.91" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (7 samples, 0.03%)</title><rect x="1176.0" y="693" width="0.4" height="15.0" fill="rgb(214,204,14)" rx="2" ry="2" />
|
|
<text x="1179.02" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (3 samples, 0.01%)</title><rect x="1185.3" y="693" width="0.2" height="15.0" fill="rgb(247,23,18)" rx="2" ry="2" />
|
|
<text x="1188.34" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_ipv4 (6 samples, 0.03%)</title><rect x="1004.2" y="613" width="0.4" height="15.0" fill="rgb(211,112,40)" rx="2" ry="2" />
|
|
<text x="1007.21" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="907.1" y="357" width="0.2" height="15.0" fill="rgb(244,150,53)" rx="2" ry="2" />
|
|
<text x="910.06" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="1127.5" y="453" width="0.2" height="15.0" fill="rgb(206,28,29)" rx="2" ry="2" />
|
|
<text x="1130.54" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="1172.1" y="581" width="0.1" height="15.0" fill="rgb(207,94,21)" rx="2" ry="2" />
|
|
<text x="1175.13" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="909.1" y="213" width="0.3" height="15.0" fill="rgb(214,112,25)" rx="2" ry="2" />
|
|
<text x="912.07" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (5 samples, 0.02%)</title><rect x="1187.9" y="293" width="0.3" height="15.0" fill="rgb(205,224,24)" rx="2" ry="2" />
|
|
<text x="1190.94" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (4 samples, 0.02%)</title><rect x="907.1" y="517" width="0.2" height="15.0" fill="rgb(236,10,9)" rx="2" ry="2" />
|
|
<text x="910.06" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CZipFormat::AddOneSection (2 samples, 0.01%)</title><rect x="951.9" y="341" width="0.2" height="15.0" fill="rgb(231,62,35)" rx="2" ry="2" />
|
|
<text x="954.95" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (2,472 samples, 12.36%)</title><rect x="1010.9" y="629" width="145.8" height="15.0" fill="rgb(239,187,52)" rx="2" ry="2" />
|
|
<text x="1013.93" y="639.5" >dealipv6udppkt</text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_udpate (41 samples, 0.20%)</title><rect x="893.2" y="725" width="2.4" height="15.0" fill="rgb(213,110,42)" rx="2" ry="2" />
|
|
<text x="896.20" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="911.5" y="533" width="0.2" height="15.0" fill="rgb(235,191,48)" rx="2" ry="2" />
|
|
<text x="914.54" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (4 samples, 0.02%)</title><rect x="907.1" y="469" width="0.2" height="15.0" fill="rgb(238,226,9)" rx="2" ry="2" />
|
|
<text x="910.06" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (6 samples, 0.03%)</title><rect x="234.0" y="741" width="0.3" height="15.0" fill="rgb(250,62,20)" rx="2" ry="2" />
|
|
<text x="236.96" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (6 samples, 0.03%)</title><rect x="809.0" y="677" width="0.4" height="15.0" fill="rgb(254,200,16)" rx="2" ry="2" />
|
|
<text x="812.03" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="1132.4" y="549" width="0.1" height="15.0" fill="rgb(249,102,8)" rx="2" ry="2" />
|
|
<text x="1135.37" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (5 samples, 0.02%)</title><rect x="911.7" y="453" width="0.3" height="15.0" fill="rgb(242,221,47)" rx="2" ry="2" />
|
|
<text x="914.66" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (5 samples, 0.02%)</title><rect x="813.6" y="645" width="0.3" height="15.0" fill="rgb(235,215,18)" rx="2" ry="2" />
|
|
<text x="816.63" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="1003.3" y="549" width="0.1" height="15.0" fill="rgb(250,133,8)" rx="2" ry="2" />
|
|
<text x="1006.26" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (3 samples, 0.01%)</title><rect x="894.3" y="709" width="0.2" height="15.0" fill="rgb(205,124,11)" rx="2" ry="2" />
|
|
<text x="897.32" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (5 samples, 0.02%)</title><rect x="1168.4" y="709" width="0.3" height="15.0" fill="rgb(211,172,42)" rx="2" ry="2" />
|
|
<text x="1171.41" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (9 samples, 0.04%)</title><rect x="1178.6" y="549" width="0.5" height="15.0" fill="rgb(253,171,49)" rx="2" ry="2" />
|
|
<text x="1181.56" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (20 samples, 0.10%)</title><rect x="1108.7" y="533" width="1.1" height="15.0" fill="rgb(245,38,17)" rx="2" ry="2" />
|
|
<text x="1111.66" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_umts_user_info (2 samples, 0.01%)</title><rect x="1184.1" y="645" width="0.1" height="15.0" fill="rgb(213,51,29)" rx="2" ry="2" />
|
|
<text x="1187.10" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="909.7" y="421" width="0.3" height="15.0" fill="rgb(249,174,19)" rx="2" ry="2" />
|
|
<text x="912.72" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (13 samples, 0.06%)</title><rect x="1173.0" y="629" width="0.8" height="15.0" fill="rgb(211,23,27)" rx="2" ry="2" />
|
|
<text x="1176.01" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (179 samples, 0.89%)</title><rect x="992.0" y="565" width="10.6" height="15.0" fill="rgb(211,188,5)" rx="2" ry="2" />
|
|
<text x="995.00" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (8 samples, 0.04%)</title><rect x="910.0" y="405" width="0.4" height="15.0" fill="rgb(241,25,22)" rx="2" ry="2" />
|
|
<text x="912.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (7 samples, 0.03%)</title><rect x="1186.9" y="389" width="0.4" height="15.0" fill="rgb(240,13,52)" rx="2" ry="2" />
|
|
<text x="1189.93" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="915.6" y="229" width="0.4" height="15.0" fill="rgb(213,137,43)" rx="2" ry="2" />
|
|
<text x="918.56" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="953.8" y="293" width="0.2" height="15.0" fill="rgb(239,95,16)" rx="2" ry="2" />
|
|
<text x="956.83" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (8 samples, 0.04%)</title><rect x="1186.9" y="421" width="0.5" height="15.0" fill="rgb(244,140,45)" rx="2" ry="2" />
|
|
<text x="1189.93" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.02%)</title><rect x="983.8" y="597" width="0.3" height="15.0" fill="rgb(237,138,17)" rx="2" ry="2" />
|
|
<text x="986.80" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="813.6" y="613" width="0.3" height="15.0" fill="rgb(244,62,19)" rx="2" ry="2" />
|
|
<text x="816.63" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="1132.4" y="501" width="0.1" height="15.0" fill="rgb(248,89,51)" rx="2" ry="2" />
|
|
<text x="1135.37" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (25 samples, 0.12%)</title><rect x="915.6" y="533" width="1.4" height="15.0" fill="rgb(230,177,49)" rx="2" ry="2" />
|
|
<text x="918.56" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (6 samples, 0.03%)</title><rect x="1183.0" y="629" width="0.3" height="15.0" fill="rgb(215,195,41)" rx="2" ry="2" />
|
|
<text x="1185.98" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithCertificateDetail (6 samples, 0.03%)</title><rect x="916.6" y="453" width="0.4" height="15.0" fill="rgb(208,67,26)" rx="2" ry="2" />
|
|
<text x="919.62" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="1174.5" y="485" width="0.2" height="15.0" fill="rgb(252,110,48)" rx="2" ry="2" />
|
|
<text x="1177.55" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_get_ja3_fingerprint (10 samples, 0.05%)</title><rect x="1186.3" y="757" width="0.6" height="15.0" fill="rgb(226,192,52)" rx="2" ry="2" />
|
|
<text x="1189.34" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="1187.5" y="485" width="0.1" height="15.0" fill="rgb(240,218,40)" rx="2" ry="2" />
|
|
<text x="1190.46" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (2 samples, 0.01%)</title><rect x="1187.8" y="533" width="0.1" height="15.0" fill="rgb(224,3,54)" rx="2" ry="2" />
|
|
<text x="1190.76" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="1186.9" y="309" width="0.4" height="15.0" fill="rgb(212,163,49)" rx="2" ry="2" />
|
|
<text x="1189.93" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (35 samples, 0.17%)</title><rect x="971.7" y="501" width="2.1" height="15.0" fill="rgb(224,22,44)" rx="2" ry="2" />
|
|
<text x="974.71" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1188.9" y="693" width="0.2" height="15.0" fill="rgb(213,70,52)" rx="2" ry="2" />
|
|
<text x="1191.94" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (6 samples, 0.03%)</title><rect x="1135.6" y="549" width="0.4" height="15.0" fill="rgb(227,124,48)" rx="2" ry="2" />
|
|
<text x="1138.62" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="1173.8" y="629" width="0.3" height="15.0" fill="rgb(211,205,53)" rx="2" ry="2" />
|
|
<text x="1176.84" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1130.9" y="549" width="0.2" height="15.0" fill="rgb(224,62,48)" rx="2" ry="2" />
|
|
<text x="1133.90" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_umts_user_info (4 samples, 0.02%)</title><rect x="958.4" y="453" width="0.2" height="15.0" fill="rgb(221,191,53)" rx="2" ry="2" />
|
|
<text x="961.38" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="1131.8" y="533" width="0.2" height="15.0" fill="rgb(240,64,43)" rx="2" ry="2" />
|
|
<text x="1134.78" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (31 samples, 0.15%)</title><rect x="1097.8" y="437" width="1.8" height="15.0" fill="rgb(246,182,3)" rx="2" ry="2" />
|
|
<text x="1100.81" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="1101.8" y="421" width="0.1" height="15.0" fill="rgb(206,106,11)" rx="2" ry="2" />
|
|
<text x="1104.76" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (42 samples, 0.21%)</title><rect x="809.6" y="565" width="2.5" height="15.0" fill="rgb(209,33,15)" rx="2" ry="2" />
|
|
<text x="812.62" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (2 samples, 0.01%)</title><rect x="948.0" y="453" width="0.1" height="15.0" fill="rgb(246,159,20)" rx="2" ry="2" />
|
|
<text x="951.00" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CUNZIP::fn_iUnGZ (2 samples, 0.01%)</title><rect x="1170.2" y="453" width="0.2" height="15.0" fill="rgb(222,179,23)" rx="2" ry="2" />
|
|
<text x="1173.24" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_udp_entry (9 samples, 0.04%)</title><rect x="981.2" y="517" width="0.5" height="15.0" fill="rgb(254,221,32)" rx="2" ry="2" />
|
|
<text x="984.20" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="1177.1" y="677" width="0.2" height="15.0" fill="rgb(243,222,3)" rx="2" ry="2" />
|
|
<text x="1180.14" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (8 samples, 0.04%)</title><rect x="1181.3" y="613" width="0.4" height="15.0" fill="rgb(229,211,19)" rx="2" ry="2" />
|
|
<text x="1184.27" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (2 samples, 0.01%)</title><rect x="909.5" y="245" width="0.1" height="15.0" fill="rgb(240,13,51)" rx="2" ry="2" />
|
|
<text x="912.48" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (41 samples, 0.20%)</title><rect x="958.6" y="517" width="2.4" height="15.0" fill="rgb(237,64,2)" rx="2" ry="2" />
|
|
<text x="961.61" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (28 samples, 0.14%)</title><rect x="974.0" y="485" width="1.7" height="15.0" fill="rgb(225,54,3)" rx="2" ry="2" />
|
|
<text x="977.01" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (4 samples, 0.02%)</title><rect x="951.8" y="421" width="0.3" height="15.0" fill="rgb(235,63,12)" rx="2" ry="2" />
|
|
<text x="954.83" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1098.2" y="309" width="0.1" height="15.0" fill="rgb(217,122,30)" rx="2" ry="2" />
|
|
<text x="1101.16" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (14 samples, 0.07%)</title><rect x="906.2" y="629" width="0.9" height="15.0" fill="rgb(206,128,2)" rx="2" ry="2" />
|
|
<text x="909.24" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (13 samples, 0.06%)</title><rect x="950.5" y="469" width="0.8" height="15.0" fill="rgb(234,214,3)" rx="2" ry="2" />
|
|
<text x="953.53" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_entry (8 samples, 0.04%)</title><rect x="910.0" y="373" width="0.4" height="15.0" fill="rgb(232,172,53)" rx="2" ry="2" />
|
|
<text x="912.95" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (4 samples, 0.02%)</title><rect x="914.7" y="565" width="0.3" height="15.0" fill="rgb(210,197,51)" rx="2" ry="2" />
|
|
<text x="917.73" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="977.5" y="485" width="0.2" height="15.0" fill="rgb(253,63,25)" rx="2" ry="2" />
|
|
<text x="980.55" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_ip_entry (4 samples, 0.02%)</title><rect x="1004.3" y="597" width="0.3" height="15.0" fill="rgb(215,62,4)" rx="2" ry="2" />
|
|
<text x="1007.32" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (16 samples, 0.08%)</title><rect x="816.8" y="741" width="1.0" height="15.0" fill="rgb(218,130,15)" rx="2" ry="2" />
|
|
<text x="819.82" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithACompleteRegion (2 samples, 0.01%)</title><rect x="1175.8" y="581" width="0.2" height="15.0" fill="rgb(208,182,21)" rx="2" ry="2" />
|
|
<text x="1178.84" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (2 samples, 0.01%)</title><rect x="1156.5" y="549" width="0.1" height="15.0" fill="rgb(220,199,50)" rx="2" ry="2" />
|
|
<text x="1159.50" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_new (43 samples, 0.21%)</title><rect x="883.4" y="725" width="2.5" height="15.0" fill="rgb(244,161,51)" rx="2" ry="2" />
|
|
<text x="886.41" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (4 samples, 0.02%)</title><rect x="809.4" y="693" width="0.2" height="15.0" fill="rgb(246,194,42)" rx="2" ry="2" />
|
|
<text x="812.39" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="955.1" y="373" width="0.1" height="15.0" fill="rgb(209,115,31)" rx="2" ry="2" />
|
|
<text x="958.07" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="973.8" y="501" width="0.1" height="15.0" fill="rgb(212,214,16)" rx="2" ry="2" />
|
|
<text x="976.77" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.02%)</title><rect x="912.0" y="629" width="0.3" height="15.0" fill="rgb(217,3,26)" rx="2" ry="2" />
|
|
<text x="914.96" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="915.6" y="341" width="1.0" height="15.0" fill="rgb(224,78,37)" rx="2" ry="2" />
|
|
<text x="918.56" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="979.3" y="469" width="0.1" height="15.0" fill="rgb(226,138,4)" rx="2" ry="2" />
|
|
<text x="982.26" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (3 samples, 0.01%)</title><rect x="1129.2" y="453" width="0.2" height="15.0" fill="rgb(236,37,13)" rx="2" ry="2" />
|
|
<text x="1132.19" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="908.4" y="229" width="0.2" height="15.0" fill="rgb(219,167,32)" rx="2" ry="2" />
|
|
<text x="911.42" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1184.1" y="629" width="0.1" height="15.0" fill="rgb(225,97,39)" rx="2" ry="2" />
|
|
<text x="1187.10" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_ipv4 (5 samples, 0.02%)</title><rect x="1131.3" y="565" width="0.2" height="15.0" fill="rgb(241,32,8)" rx="2" ry="2" />
|
|
<text x="1134.25" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (19 samples, 0.09%)</title><rect x="1129.7" y="501" width="1.1" height="15.0" fill="rgb(253,97,14)" rx="2" ry="2" />
|
|
<text x="1132.66" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (129 samples, 0.64%)</title><rect x="1082.9" y="501" width="7.6" height="15.0" fill="rgb(216,171,49)" rx="2" ry="2" />
|
|
<text x="1085.89" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_ex_i2c (3 samples, 0.01%)</title><rect x="954.9" y="309" width="0.2" height="15.0" fill="rgb(250,94,5)" rx="2" ry="2" />
|
|
<text x="957.90" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (6 samples, 0.03%)</title><rect x="896.3" y="725" width="0.4" height="15.0" fill="rgb(231,89,0)" rx="2" ry="2" />
|
|
<text x="899.33" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (2 samples, 0.01%)</title><rect x="1174.5" y="549" width="0.2" height="15.0" fill="rgb(228,216,27)" rx="2" ry="2" />
|
|
<text x="1177.55" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="920.5" y="581" width="0.2" height="15.0" fill="rgb(243,204,6)" rx="2" ry="2" />
|
|
<text x="923.51" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="1003.6" y="549" width="0.1" height="15.0" fill="rgb(235,69,19)" rx="2" ry="2" />
|
|
<text x="1006.56" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (2 samples, 0.01%)</title><rect x="1172.1" y="661" width="0.1" height="15.0" fill="rgb(213,223,14)" rx="2" ry="2" />
|
|
<text x="1175.13" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (23 samples, 0.11%)</title><rect x="884.6" y="693" width="1.3" height="15.0" fill="rgb(239,92,35)" rx="2" ry="2" />
|
|
<text x="887.59" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (6 samples, 0.03%)</title><rect x="915.2" y="517" width="0.4" height="15.0" fill="rgb(208,35,16)" rx="2" ry="2" />
|
|
<text x="918.20" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="860.6" y="725" width="0.2" height="15.0" fill="rgb(229,99,19)" rx="2" ry="2" />
|
|
<text x="863.64" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RSA_new_method (2 samples, 0.01%)</title><rect x="1099.4" y="293" width="0.1" height="15.0" fill="rgb(224,64,27)" rx="2" ry="2" />
|
|
<text x="1102.40" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (8 samples, 0.04%)</title><rect x="1172.4" y="597" width="0.4" height="15.0" fill="rgb(244,188,22)" rx="2" ry="2" />
|
|
<text x="1175.36" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (4 samples, 0.02%)</title><rect x="1175.1" y="501" width="0.2" height="15.0" fill="rgb(243,112,13)" rx="2" ry="2" />
|
|
<text x="1178.08" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (6 samples, 0.03%)</title><rect x="914.0" y="581" width="0.4" height="15.0" fill="rgb(216,40,26)" rx="2" ry="2" />
|
|
<text x="917.02" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (7 samples, 0.03%)</title><rect x="1134.7" y="533" width="0.4" height="15.0" fill="rgb(211,20,52)" rx="2" ry="2" />
|
|
<text x="1137.73" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.05%)</title><rect x="1172.4" y="645" width="0.6" height="15.0" fill="rgb(223,90,27)" rx="2" ry="2" />
|
|
<text x="1175.36" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (9 samples, 0.04%)</title><rect x="1098.0" y="357" width="0.6" height="15.0" fill="rgb(218,10,49)" rx="2" ry="2" />
|
|
<text x="1101.05" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (14 samples, 0.07%)</title><rect x="906.2" y="549" width="0.9" height="15.0" fill="rgb(219,128,50)" rx="2" ry="2" />
|
|
<text x="909.24" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="910.8" y="517" width="0.3" height="15.0" fill="rgb(251,84,46)" rx="2" ry="2" />
|
|
<text x="913.84" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="908.7" y="245" width="0.1" height="15.0" fill="rgb(238,226,39)" rx="2" ry="2" />
|
|
<text x="911.71" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="1127.8" y="453" width="0.2" height="15.0" fill="rgb(235,127,17)" rx="2" ry="2" />
|
|
<text x="1130.83" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="1135.7" y="517" width="0.2" height="15.0" fill="rgb(233,77,8)" rx="2" ry="2" />
|
|
<text x="1138.74" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="909.1" y="245" width="0.3" height="15.0" fill="rgb(246,220,53)" rx="2" ry="2" />
|
|
<text x="912.07" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (9 samples, 0.04%)</title><rect x="958.1" y="469" width="0.5" height="15.0" fill="rgb(232,176,14)" rx="2" ry="2" />
|
|
<text x="961.08" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="973.1" y="469" width="0.1" height="15.0" fill="rgb(217,172,8)" rx="2" ry="2" />
|
|
<text x="976.12" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (4 samples, 0.02%)</title><rect x="1175.5" y="581" width="0.3" height="15.0" fill="rgb(224,47,11)" rx="2" ry="2" />
|
|
<text x="1178.55" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_SSL_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="920.5" y="533" width="0.2" height="15.0" fill="rgb(224,202,52)" rx="2" ry="2" />
|
|
<text x="923.51" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (18 samples, 0.09%)</title><rect x="1099.8" y="485" width="1.0" height="15.0" fill="rgb(224,206,22)" rx="2" ry="2" />
|
|
<text x="1102.76" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (6 samples, 0.03%)</title><rect x="954.1" y="357" width="0.4" height="15.0" fill="rgb(244,118,44)" rx="2" ry="2" />
|
|
<text x="957.13" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (19 samples, 0.09%)</title><rect x="1176.0" y="741" width="1.1" height="15.0" fill="rgb(216,97,40)" rx="2" ry="2" />
|
|
<text x="1179.02" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (12 samples, 0.06%)</title><rect x="1109.1" y="517" width="0.7" height="15.0" fill="rgb(211,183,5)" rx="2" ry="2" />
|
|
<text x="1112.14" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_addr_list_ntop (2 samples, 0.01%)</title><rect x="920.9" y="613" width="0.1" height="15.0" fill="rgb(223,189,6)" rx="2" ry="2" />
|
|
<text x="923.92" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (6 samples, 0.03%)</title><rect x="1134.8" y="517" width="0.3" height="15.0" fill="rgb(231,43,52)" rx="2" ry="2" />
|
|
<text x="1137.79" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="918.2" y="629" width="0.2" height="15.0" fill="rgb(212,211,34)" rx="2" ry="2" />
|
|
<text x="921.21" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (12 samples, 0.06%)</title><rect x="1174.1" y="757" width="0.7" height="15.0" fill="rgb(247,176,8)" rx="2" ry="2" />
|
|
<text x="1177.13" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (11 samples, 0.05%)</title><rect x="1176.4" y="661" width="0.7" height="15.0" fill="rgb(245,188,52)" rx="2" ry="2" />
|
|
<text x="1179.43" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (3 samples, 0.01%)</title><rect x="1133.3" y="517" width="0.1" height="15.0" fill="rgb(242,61,28)" rx="2" ry="2" />
|
|
<text x="1136.26" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (16 samples, 0.08%)</title><rect x="1129.8" y="485" width="0.9" height="15.0" fill="rgb(248,189,2)" rx="2" ry="2" />
|
|
<text x="1132.78" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="920.2" y="565" width="0.3" height="15.0" fill="rgb(250,27,10)" rx="2" ry="2" />
|
|
<text x="923.16" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (6 samples, 0.03%)</title><rect x="1176.1" y="645" width="0.3" height="15.0" fill="rgb(223,219,33)" rx="2" ry="2" />
|
|
<text x="1179.08" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_region_compile (5 samples, 0.02%)</title><rect x="841.1" y="725" width="0.3" height="15.0" fill="rgb(240,4,9)" rx="2" ry="2" />
|
|
<text x="844.12" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="1003.6" y="565" width="0.1" height="15.0" fill="rgb(239,152,19)" rx="2" ry="2" />
|
|
<text x="1006.56" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (5 samples, 0.02%)</title><rect x="1168.4" y="741" width="0.3" height="15.0" fill="rgb(216,228,19)" rx="2" ry="2" />
|
|
<text x="1171.41" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_check (11 samples, 0.05%)</title><rect x="1125.1" y="549" width="0.7" height="15.0" fill="rgb(225,26,16)" rx="2" ry="2" />
|
|
<text x="1128.12" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>frag_ipq_create (2 samples, 0.01%)</title><rect x="1003.7" y="629" width="0.1" height="15.0" fill="rgb(236,114,37)" rx="2" ry="2" />
|
|
<text x="1006.67" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (5 samples, 0.02%)</title><rect x="963.9" y="501" width="0.3" height="15.0" fill="rgb(209,223,2)" rx="2" ry="2" />
|
|
<text x="966.92" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_doWithCertificateDetail (8 samples, 0.04%)</title><rect x="910.0" y="453" width="0.4" height="15.0" fill="rgb(249,122,19)" rx="2" ry="2" />
|
|
<text x="912.95" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_judgeContentEncoding (2 samples, 0.01%)</title><rect x="1096.3" y="405" width="0.1" height="15.0" fill="rgb(231,147,35)" rx="2" ry="2" />
|
|
<text x="1099.28" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (3 samples, 0.01%)</title><rect x="1133.8" y="565" width="0.2" height="15.0" fill="rgb(249,58,31)" rx="2" ry="2" />
|
|
<text x="1136.79" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="906.8" y="325" width="0.1" height="15.0" fill="rgb(210,70,23)" rx="2" ry="2" />
|
|
<text x="909.83" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (39 samples, 0.19%)</title><rect x="953.0" y="453" width="2.3" height="15.0" fill="rgb(213,179,50)" rx="2" ry="2" />
|
|
<text x="955.95" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="1187.8" y="501" width="0.1" height="15.0" fill="rgb(244,111,23)" rx="2" ry="2" />
|
|
<text x="1190.76" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (3 samples, 0.01%)</title><rect x="1172.8" y="581" width="0.2" height="15.0" fill="rgb(214,214,54)" rx="2" ry="2" />
|
|
<text x="1175.84" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (4 samples, 0.02%)</title><rect x="918.0" y="533" width="0.2" height="15.0" fill="rgb(216,123,48)" rx="2" ry="2" />
|
|
<text x="920.97" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="918.3" y="517" width="0.1" height="15.0" fill="rgb(228,75,44)" rx="2" ry="2" />
|
|
<text x="921.33" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="958.0" y="453" width="0.1" height="15.0" fill="rgb(220,120,50)" rx="2" ry="2" />
|
|
<text x="960.96" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (25 samples, 0.12%)</title><rect x="1168.8" y="645" width="1.4" height="15.0" fill="rgb(223,46,22)" rx="2" ry="2" />
|
|
<text x="1171.77" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (5 samples, 0.02%)</title><rect x="1129.8" y="453" width="0.3" height="15.0" fill="rgb(215,33,36)" rx="2" ry="2" />
|
|
<text x="1132.84" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>set_transport_addr (8 samples, 0.04%)</title><rect x="983.6" y="613" width="0.5" height="15.0" fill="rgb(207,73,9)" rx="2" ry="2" />
|
|
<text x="986.62" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (65 samples, 0.32%)</title><rect x="907.5" y="581" width="3.8" height="15.0" fill="rgb(231,180,51)" rx="2" ry="2" />
|
|
<text x="910.47" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (5 samples, 0.02%)</title><rect x="1181.4" y="581" width="0.3" height="15.0" fill="rgb(239,226,51)" rx="2" ry="2" />
|
|
<text x="1184.45" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_htable_search_cb (3 samples, 0.01%)</title><rect x="959.6" y="421" width="0.1" height="15.0" fill="rgb(252,204,39)" rx="2" ry="2" />
|
|
<text x="962.56" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="1165.6" y="677" width="0.1" height="15.0" fill="rgb(207,133,18)" rx="2" ry="2" />
|
|
<text x="1168.58" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vlan_addr_net_to_mem (2 samples, 0.01%)</title><rect x="1157.6" y="629" width="0.1" height="15.0" fill="rgb(231,212,21)" rx="2" ry="2" />
|
|
<text x="1160.62" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (3 samples, 0.01%)</title><rect x="912.3" y="453" width="0.1" height="15.0" fill="rgb(244,104,43)" rx="2" ry="2" />
|
|
<text x="915.25" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="912.3" y="517" width="0.1" height="15.0" fill="rgb(225,87,42)" rx="2" ry="2" />
|
|
<text x="915.25" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (9 samples, 0.04%)</title><rect x="986.0" y="517" width="0.6" height="15.0" fill="rgb(205,182,42)" rx="2" ry="2" />
|
|
<text x="989.04" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="977.2" y="549" width="0.5" height="15.0" fill="rgb(230,100,10)" rx="2" ry="2" />
|
|
<text x="980.19" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (7 samples, 0.03%)</title><rect x="953.4" y="325" width="0.4" height="15.0" fill="rgb(250,16,40)" rx="2" ry="2" />
|
|
<text x="956.42" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_htable_search_cb (4 samples, 0.02%)</title><rect x="958.4" y="421" width="0.2" height="15.0" fill="rgb(231,112,20)" rx="2" ry="2" />
|
|
<text x="961.38" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpReqResHeader (5 samples, 0.02%)</title><rect x="951.4" y="453" width="0.3" height="15.0" fill="rgb(254,81,3)" rx="2" ry="2" />
|
|
<text x="954.42" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInflate2::fn_iDecode (2 samples, 0.01%)</title><rect x="1170.2" y="437" width="0.2" height="15.0" fill="rgb(222,174,32)" rx="2" ry="2" />
|
|
<text x="1173.24" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (12 samples, 0.06%)</title><rect x="1174.1" y="709" width="0.7" height="15.0" fill="rgb(233,12,5)" rx="2" ry="2" />
|
|
<text x="1177.13" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_callPlugins (3 samples, 0.01%)</title><rect x="920.5" y="597" width="0.2" height="15.0" fill="rgb(213,31,26)" rx="2" ry="2" />
|
|
<text x="923.51" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="915.6" y="405" width="1.0" height="15.0" fill="rgb(207,72,0)" rx="2" ry="2" />
|
|
<text x="918.56" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="991.5" y="501" width="0.1" height="15.0" fill="rgb(210,45,39)" rx="2" ry="2" />
|
|
<text x="994.47" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Rb_tree_increment (11 samples, 0.05%)</title><rect x="1155.8" y="517" width="0.6" height="15.0" fill="rgb(248,121,48)" rx="2" ry="2" />
|
|
<text x="1158.79" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (3 samples, 0.01%)</title><rect x="982.4" y="549" width="0.2" height="15.0" fill="rgb(246,23,52)" rx="2" ry="2" />
|
|
<text x="985.44" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (42 samples, 0.21%)</title><rect x="915.2" y="581" width="2.5" height="15.0" fill="rgb(242,86,45)" rx="2" ry="2" />
|
|
<text x="918.20" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="940.6" y="613" width="0.1" height="15.0" fill="rgb(214,34,41)" rx="2" ry="2" />
|
|
<text x="943.62" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>OBJ_obj2txt (2 samples, 0.01%)</title><rect x="1099.0" y="389" width="0.1" height="15.0" fill="rgb(207,166,52)" rx="2" ry="2" />
|
|
<text x="1101.99" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (4 samples, 0.02%)</title><rect x="1174.1" y="565" width="0.3" height="15.0" fill="rgb(251,145,30)" rx="2" ry="2" />
|
|
<text x="1177.13" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (42 samples, 0.21%)</title><rect x="809.6" y="549" width="2.5" height="15.0" fill="rgb(222,39,34)" rx="2" ry="2" />
|
|
<text x="812.62" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="906.9" y="453" width="0.2" height="15.0" fill="rgb(248,126,44)" rx="2" ry="2" />
|
|
<text x="909.94" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (10 samples, 0.05%)</title><rect x="906.2" y="421" width="0.6" height="15.0" fill="rgb(226,189,14)" rx="2" ry="2" />
|
|
<text x="909.24" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (4 samples, 0.02%)</title><rect x="1175.5" y="469" width="0.3" height="15.0" fill="rgb(248,125,11)" rx="2" ry="2" />
|
|
<text x="1178.55" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="977.3" y="501" width="0.1" height="15.0" fill="rgb(206,154,8)" rx="2" ry="2" />
|
|
<text x="980.25" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (32 samples, 0.16%)</title><rect x="1097.8" y="453" width="1.8" height="15.0" fill="rgb(216,184,35)" rx="2" ry="2" />
|
|
<text x="1100.75" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="920.2" y="485" width="0.1" height="15.0" fill="rgb(252,121,52)" rx="2" ry="2" />
|
|
<text x="923.16" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>bitmap_check (7 samples, 0.03%)</title><rect x="1125.1" y="517" width="0.4" height="15.0" fill="rgb(225,54,2)" rx="2" ry="2" />
|
|
<text x="1128.12" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (6 samples, 0.03%)</title><rect x="907.1" y="629" width="0.3" height="15.0" fill="rgb(232,201,33)" rx="2" ry="2" />
|
|
<text x="910.06" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="1186.9" y="373" width="0.4" height="15.0" fill="rgb(210,219,45)" rx="2" ry="2" />
|
|
<text x="1189.93" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify_tcp (110 samples, 0.55%)</title><rect x="1109.8" y="549" width="6.5" height="15.0" fill="rgb(239,90,37)" rx="2" ry="2" />
|
|
<text x="1112.84" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_make_hash (6 samples, 0.03%)</title><rect x="944.9" y="597" width="0.3" height="15.0" fill="rgb(207,175,47)" rx="2" ry="2" />
|
|
<text x="947.87" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (9 samples, 0.04%)</title><rect x="921.0" y="629" width="0.6" height="15.0" fill="rgb(251,219,29)" rx="2" ry="2" />
|
|
<text x="924.04" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CUNZIP::fn_iUnGZ (2 samples, 0.01%)</title><rect x="951.9" y="325" width="0.2" height="15.0" fill="rgb(219,165,0)" rx="2" ry="2" />
|
|
<text x="954.95" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.05%)</title><rect x="1186.9" y="565" width="0.7" height="15.0" fill="rgb(251,206,32)" rx="2" ry="2" />
|
|
<text x="1189.93" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (3 samples, 0.01%)</title><rect x="1079.2" y="485" width="0.1" height="15.0" fill="rgb(238,199,49)" rx="2" ry="2" />
|
|
<text x="1082.17" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (4 samples, 0.02%)</title><rect x="1103.3" y="421" width="0.2" height="15.0" fill="rgb(225,181,24)" rx="2" ry="2" />
|
|
<text x="1106.30" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (1,939 samples, 9.69%)</title><rect x="1017.2" y="597" width="114.4" height="15.0" fill="rgb(209,195,31)" rx="2" ry="2" />
|
|
<text x="1020.24" y="607.5" >ipv4_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (52 samples, 0.26%)</title><rect x="915.1" y="645" width="3.1" height="15.0" fill="rgb(208,26,1)" rx="2" ry="2" />
|
|
<text x="918.14" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="920.2" y="549" width="0.3" height="15.0" fill="rgb(219,86,12)" rx="2" ry="2" />
|
|
<text x="923.16" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="1184.6" y="693" width="0.1" height="15.0" fill="rgb(254,38,15)" rx="2" ry="2" />
|
|
<text x="1187.57" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_capture_packet_entry@plt (2 samples, 0.01%)</title><rect x="1121.5" y="485" width="0.1" height="15.0" fill="rgb(216,199,3)" rx="2" ry="2" />
|
|
<text x="1124.46" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>callback_dns_business_plug (81 samples, 0.40%)</title><rect x="1179.8" y="741" width="4.8" height="15.0" fill="rgb(222,82,23)" rx="2" ry="2" />
|
|
<text x="1182.80" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap_single_layer (2 samples, 0.01%)</title><rect x="966.6" y="501" width="0.1" height="15.0" fill="rgb(206,34,16)" rx="2" ry="2" />
|
|
<text x="969.58" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="909.6" y="293" width="0.1" height="15.0" fill="rgb(254,164,49)" rx="2" ry="2" />
|
|
<text x="912.60" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_sse2_pminub (5 samples, 0.02%)</title><rect x="914.1" y="565" width="0.3" height="15.0" fill="rgb(220,101,26)" rx="2" ry="2" />
|
|
<text x="917.08" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (7 samples, 0.03%)</title><rect x="907.5" y="453" width="0.4" height="15.0" fill="rgb(241,206,4)" rx="2" ry="2" />
|
|
<text x="910.47" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (20 samples, 0.10%)</title><rect x="1170.9" y="629" width="1.2" height="15.0" fill="rgb(249,152,43)" rx="2" ry="2" />
|
|
<text x="1173.89" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_field_stat2.so] (2 samples, 0.01%)</title><rect x="976.2" y="437" width="0.1" height="15.0" fill="rgb(213,34,51)" rx="2" ry="2" />
|
|
<text x="979.19" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (50 samples, 0.25%)</title><rect x="907.9" y="533" width="2.9" height="15.0" fill="rgb(240,220,40)" rx="2" ry="2" />
|
|
<text x="910.89" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="1168.4" y="629" width="0.3" height="15.0" fill="rgb(220,220,30)" rx="2" ry="2" />
|
|
<text x="1171.41" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1188.2" y="357" width="0.1" height="15.0" fill="rgb(221,17,24)" rx="2" ry="2" />
|
|
<text x="1191.23" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="1003.9" y="597" width="0.1" height="15.0" fill="rgb(208,94,12)" rx="2" ry="2" />
|
|
<text x="1006.85" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__strlen_sse2_pminub (3 samples, 0.01%)</title><rect x="1176.2" y="549" width="0.2" height="15.0" fill="rgb(209,58,20)" rx="2" ry="2" />
|
|
<text x="1179.20" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (1,995 samples, 9.97%)</title><rect x="1016.3" y="613" width="117.7" height="15.0" fill="rgb(224,168,27)" rx="2" ry="2" />
|
|
<text x="1019.30" y="623.5" >gtp_entry</text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (4 samples, 0.02%)</title><rect x="1079.3" y="517" width="0.3" height="15.0" fill="rgb(206,32,5)" rx="2" ry="2" />
|
|
<text x="1082.35" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (7 samples, 0.03%)</title><rect x="1177.3" y="549" width="0.4" height="15.0" fill="rgb(230,164,24)" rx="2" ry="2" />
|
|
<text x="1180.32" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (26 samples, 0.13%)</title><rect x="964.6" y="533" width="1.5" height="15.0" fill="rgb(248,203,49)" rx="2" ry="2" />
|
|
<text x="967.57" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (7 samples, 0.03%)</title><rect x="808.6" y="629" width="0.4" height="15.0" fill="rgb(229,134,48)" rx="2" ry="2" />
|
|
<text x="811.62" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scan_ip_port (2 samples, 0.01%)</title><rect x="813.8" y="581" width="0.1" height="15.0" fill="rgb(218,112,14)" rx="2" ry="2" />
|
|
<text x="816.81" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (2 samples, 0.01%)</title><rect x="1003.1" y="501" width="0.2" height="15.0" fill="rgb(252,33,34)" rx="2" ry="2" />
|
|
<text x="1006.14" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (61 samples, 0.30%)</title><rect x="1152.2" y="517" width="3.6" height="15.0" fill="rgb(253,154,48)" rx="2" ry="2" />
|
|
<text x="1155.19" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (6 samples, 0.03%)</title><rect x="920.2" y="645" width="0.3" height="15.0" fill="rgb(245,157,4)" rx="2" ry="2" />
|
|
<text x="923.16" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="962.6" y="469" width="0.1" height="15.0" fill="rgb(221,25,43)" rx="2" ry="2" />
|
|
<text x="965.56" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (12 samples, 0.06%)</title><rect x="1174.1" y="741" width="0.7" height="15.0" fill="rgb(254,29,41)" rx="2" ry="2" />
|
|
<text x="1177.13" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="953.7" y="277" width="0.1" height="15.0" fill="rgb(247,1,23)" rx="2" ry="2" />
|
|
<text x="956.72" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (7 samples, 0.03%)</title><rect x="1186.9" y="293" width="0.4" height="15.0" fill="rgb(245,218,14)" rx="2" ry="2" />
|
|
<text x="1189.93" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="1187.6" y="565" width="0.2" height="15.0" fill="rgb(238,183,11)" rx="2" ry="2" />
|
|
<text x="1190.64" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509V3_EXT_d2i (2 samples, 0.01%)</title><rect x="909.6" y="437" width="0.1" height="15.0" fill="rgb(248,94,41)" rx="2" ry="2" />
|
|
<text x="912.60" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (7 samples, 0.03%)</title><rect x="981.2" y="437" width="0.4" height="15.0" fill="rgb(249,173,35)" rx="2" ry="2" />
|
|
<text x="984.20" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Rb_tree_increment@plt (2 samples, 0.01%)</title><rect x="1002.3" y="517" width="0.1" height="15.0" fill="rgb(236,57,13)" rx="2" ry="2" />
|
|
<text x="1005.32" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="1188.9" y="645" width="0.2" height="15.0" fill="rgb(210,141,37)" rx="2" ry="2" />
|
|
<text x="1191.94" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (8 samples, 0.04%)</title><rect x="1126.2" y="517" width="0.5" height="15.0" fill="rgb(215,210,49)" rx="2" ry="2" />
|
|
<text x="1129.18" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1100.6" y="453" width="0.2" height="15.0" fill="rgb(226,10,21)" rx="2" ry="2" />
|
|
<text x="1103.64" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_addr_list_ntop (2 samples, 0.01%)</title><rect x="921.7" y="629" width="0.1" height="15.0" fill="rgb(251,77,50)" rx="2" ry="2" />
|
|
<text x="924.69" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="965.7" y="485" width="0.2" height="15.0" fill="rgb(225,160,35)" rx="2" ry="2" />
|
|
<text x="968.75" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (4 samples, 0.02%)</title><rect x="914.7" y="549" width="0.3" height="15.0" fill="rgb(254,92,31)" rx="2" ry="2" />
|
|
<text x="917.73" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="954.9" y="357" width="0.2" height="15.0" fill="rgb(242,55,43)" rx="2" ry="2" />
|
|
<text x="957.90" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="951.1" y="437" width="0.1" height="15.0" fill="rgb(223,137,46)" rx="2" ry="2" />
|
|
<text x="954.06" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="917.0" y="517" width="0.4" height="15.0" fill="rgb(242,47,13)" rx="2" ry="2" />
|
|
<text x="920.03" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (5 samples, 0.02%)</title><rect x="1173.8" y="613" width="0.3" height="15.0" fill="rgb(224,32,3)" rx="2" ry="2" />
|
|
<text x="1176.84" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="1175.3" y="565" width="0.2" height="15.0" fill="rgb(227,53,8)" rx="2" ry="2" />
|
|
<text x="1178.31" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (17 samples, 0.08%)</title><rect x="1186.9" y="661" width="1.0" height="15.0" fill="rgb(225,109,37)" rx="2" ry="2" />
|
|
<text x="1189.93" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="906.8" y="357" width="0.1" height="15.0" fill="rgb(241,45,18)" rx="2" ry="2" />
|
|
<text x="909.83" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="954.9" y="325" width="0.2" height="15.0" fill="rgb(218,117,6)" rx="2" ry="2" />
|
|
<text x="957.90" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (5 samples, 0.02%)</title><rect x="986.6" y="549" width="0.3" height="15.0" fill="rgb(216,179,5)" rx="2" ry="2" />
|
|
<text x="989.63" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator delete[] (3 samples, 0.01%)</title><rect x="234.5" y="741" width="0.2" height="15.0" fill="rgb(214,2,6)" rx="2" ry="2" />
|
|
<text x="237.49" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (10 samples, 0.05%)</title><rect x="906.2" y="373" width="0.6" height="15.0" fill="rgb(254,118,37)" rx="2" ry="2" />
|
|
<text x="909.24" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="1175.3" y="453" width="0.1" height="15.0" fill="rgb(207,90,15)" rx="2" ry="2" />
|
|
<text x="1178.31" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (4 samples, 0.02%)</title><rect x="914.7" y="533" width="0.3" height="15.0" fill="rgb(222,18,25)" rx="2" ry="2" />
|
|
<text x="917.73" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (17 samples, 0.08%)</title><rect x="920.0" y="725" width="1.0" height="15.0" fill="rgb(206,82,11)" rx="2" ry="2" />
|
|
<text x="923.04" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>IEEE_8021_entry (63 samples, 0.31%)</title><rect x="1170.4" y="741" width="3.7" height="15.0" fill="rgb(251,116,54)" rx="2" ry="2" />
|
|
<text x="1173.42" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (3 samples, 0.01%)</title><rect x="1175.1" y="453" width="0.2" height="15.0" fill="rgb(211,177,19)" rx="2" ry="2" />
|
|
<text x="1178.14" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (3 samples, 0.01%)</title><rect x="1133.8" y="533" width="0.2" height="15.0" fill="rgb(214,34,11)" rx="2" ry="2" />
|
|
<text x="1136.79" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (4 samples, 0.02%)</title><rect x="1175.1" y="533" width="0.2" height="15.0" fill="rgb(229,212,22)" rx="2" ry="2" />
|
|
<text x="1178.08" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CNaiveIntervalIndex::Find (10 samples, 0.05%)</title><rect x="902.9" y="725" width="0.6" height="15.0" fill="rgb(206,77,0)" rx="2" ry="2" />
|
|
<text x="905.93" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (5 samples, 0.02%)</title><rect x="1179.1" y="693" width="0.3" height="15.0" fill="rgb(213,147,23)" rx="2" ry="2" />
|
|
<text x="1182.15" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>IEEE_8021_entry (92 samples, 0.46%)</title><rect x="808.6" y="757" width="5.4" height="15.0" fill="rgb(213,35,18)" rx="2" ry="2" />
|
|
<text x="811.56" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_ipv6_frag (2 samples, 0.01%)</title><rect x="1156.9" y="629" width="0.1" height="15.0" fill="rgb(228,218,10)" rx="2" ry="2" />
|
|
<text x="1159.85" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (118 samples, 0.59%)</title><rect x="970.1" y="533" width="7.0" height="15.0" fill="rgb(221,124,23)" rx="2" ry="2" />
|
|
<text x="973.11" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.01%)</title><rect x="1177.1" y="693" width="0.2" height="15.0" fill="rgb(219,103,14)" rx="2" ry="2" />
|
|
<text x="1180.14" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (16 samples, 0.08%)</title><rect x="1186.9" y="629" width="1.0" height="15.0" fill="rgb(247,180,44)" rx="2" ry="2" />
|
|
<text x="1189.93" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (17 samples, 0.08%)</title><rect x="980.2" y="517" width="1.0" height="15.0" fill="rgb(226,155,27)" rx="2" ry="2" />
|
|
<text x="983.20" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="912.5" y="549" width="0.1" height="15.0" fill="rgb(222,62,44)" rx="2" ry="2" />
|
|
<text x="915.49" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="915.6" y="181" width="0.3" height="15.0" fill="rgb(230,122,45)" rx="2" ry="2" />
|
|
<text x="918.56" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>docanalyze_parsestream (2 samples, 0.01%)</title><rect x="951.9" y="373" width="0.2" height="15.0" fill="rgb(223,74,15)" rx="2" ry="2" />
|
|
<text x="954.95" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (209 samples, 1.04%)</title><rect x="1144.3" y="581" width="12.3" height="15.0" fill="rgb(217,18,38)" rx="2" ry="2" />
|
|
<text x="1147.29" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (3 samples, 0.01%)</title><rect x="911.3" y="597" width="0.2" height="15.0" fill="rgb(224,136,4)" rx="2" ry="2" />
|
|
<text x="914.31" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1187.6" y="581" width="0.2" height="15.0" fill="rgb(219,19,17)" rx="2" ry="2" />
|
|
<text x="1190.64" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (6 samples, 0.03%)</title><rect x="907.1" y="565" width="0.3" height="15.0" fill="rgb(235,146,17)" rx="2" ry="2" />
|
|
<text x="910.06" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_primitive_free (2 samples, 0.01%)</title><rect x="954.1" y="277" width="0.1" height="15.0" fill="rgb(242,30,8)" rx="2" ry="2" />
|
|
<text x="957.13" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (11 samples, 0.05%)</title><rect x="1176.4" y="629" width="0.7" height="15.0" fill="rgb(222,64,16)" rx="2" ry="2" />
|
|
<text x="1179.43" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (9 samples, 0.04%)</title><rect x="907.9" y="229" width="0.5" height="15.0" fill="rgb(245,19,2)" rx="2" ry="2" />
|
|
<text x="910.89" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="955.1" y="389" width="0.1" height="15.0" fill="rgb(235,218,45)" rx="2" ry="2" />
|
|
<text x="958.07" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="1079.2" y="469" width="0.1" height="15.0" fill="rgb(243,229,2)" rx="2" ry="2" />
|
|
<text x="1082.23" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="965.3" y="469" width="0.2" height="15.0" fill="rgb(213,188,9)" rx="2" ry="2" />
|
|
<text x="968.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_fqdn_category_id (3 samples, 0.01%)</title><rect x="1180.1" y="661" width="0.2" height="15.0" fill="rgb(250,179,13)" rx="2" ry="2" />
|
|
<text x="1183.09" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (26 samples, 0.13%)</title><rect x="812.1" y="581" width="1.5" height="15.0" fill="rgb(214,41,6)" rx="2" ry="2" />
|
|
<text x="815.10" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CStringMatch::search_rule (13,172 samples, 65.84%)</title><rect x="31.4" y="757" width="776.9" height="15.0" fill="rgb(228,226,18)" rx="2" ry="2" />
|
|
<text x="34.35" y="767.5" >CStringMatch::search_rule</text>
|
|
</g>
|
|
<g >
|
|
<title>streamaddlist (4 samples, 0.02%)</title><rect x="1130.9" y="565" width="0.2" height="15.0" fill="rgb(245,137,5)" rx="2" ry="2" />
|
|
<text x="1133.90" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (5 samples, 0.02%)</title><rect x="1179.1" y="581" width="0.3" height="15.0" fill="rgb(220,124,11)" rx="2" ry="2" />
|
|
<text x="1182.15" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (17 samples, 0.08%)</title><rect x="920.0" y="709" width="1.0" height="15.0" fill="rgb(253,192,48)" rx="2" ry="2" />
|
|
<text x="923.04" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInflate2::fn_iDecode (2 samples, 0.01%)</title><rect x="951.9" y="309" width="0.2" height="15.0" fill="rgb(214,54,12)" rx="2" ry="2" />
|
|
<text x="954.95" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CompareRule (6 samples, 0.03%)</title><rect x="904.3" y="725" width="0.3" height="15.0" fill="rgb(230,104,27)" rx="2" ry="2" />
|
|
<text x="907.29" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (6 samples, 0.03%)</title><rect x="1174.4" y="613" width="0.4" height="15.0" fill="rgb(246,99,54)" rx="2" ry="2" />
|
|
<text x="1177.43" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (16 samples, 0.08%)</title><rect x="953.2" y="373" width="0.9" height="15.0" fill="rgb(251,87,48)" rx="2" ry="2" />
|
|
<text x="956.19" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (17 samples, 0.08%)</title><rect x="1186.9" y="645" width="1.0" height="15.0" fill="rgb(205,103,42)" rx="2" ry="2" />
|
|
<text x="1189.93" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (3 samples, 0.01%)</title><rect x="911.1" y="437" width="0.2" height="15.0" fill="rgb(221,92,32)" rx="2" ry="2" />
|
|
<text x="914.13" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="1124.8" y="533" width="0.1" height="15.0" fill="rgb(237,15,7)" rx="2" ry="2" />
|
|
<text x="1127.82" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (25 samples, 0.12%)</title><rect x="1168.8" y="661" width="1.4" height="15.0" fill="rgb(233,14,5)" rx="2" ry="2" />
|
|
<text x="1171.77" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (15 samples, 0.07%)</title><rect x="976.1" y="485" width="0.9" height="15.0" fill="rgb(239,143,10)" rx="2" ry="2" />
|
|
<text x="979.13" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (5 samples, 0.02%)</title><rect x="948.6" y="517" width="0.3" height="15.0" fill="rgb(230,146,22)" rx="2" ry="2" />
|
|
<text x="951.59" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (18 samples, 0.09%)</title><rect x="959.9" y="469" width="1.1" height="15.0" fill="rgb(225,49,35)" rx="2" ry="2" />
|
|
<text x="962.91" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator>= (6 samples, 0.03%)</title><rect x="905.3" y="709" width="0.3" height="15.0" fill="rgb(220,45,27)" rx="2" ry="2" />
|
|
<text x="908.29" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (2 samples, 0.01%)</title><rect x="906.8" y="405" width="0.1" height="15.0" fill="rgb(235,180,13)" rx="2" ry="2" />
|
|
<text x="909.83" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_primitive_free (2 samples, 0.01%)</title><rect x="909.5" y="197" width="0.1" height="15.0" fill="rgb(212,110,18)" rx="2" ry="2" />
|
|
<text x="912.48" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (3 samples, 0.01%)</title><rect x="1172.8" y="597" width="0.2" height="15.0" fill="rgb(220,28,41)" rx="2" ry="2" />
|
|
<text x="1175.84" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (27 samples, 0.13%)</title><rect x="1168.8" y="677" width="1.6" height="15.0" fill="rgb(205,27,50)" rx="2" ry="2" />
|
|
<text x="1171.77" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1126.7" y="485" width="0.2" height="15.0" fill="rgb(234,77,28)" rx="2" ry="2" />
|
|
<text x="1129.71" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (4 samples, 0.02%)</title><rect x="1134.9" y="501" width="0.2" height="15.0" fill="rgb(240,142,52)" rx="2" ry="2" />
|
|
<text x="1137.85" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (48 samples, 0.24%)</title><rect x="1105.1" y="533" width="2.9" height="15.0" fill="rgb(213,19,18)" rx="2" ry="2" />
|
|
<text x="1108.12" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (191 samples, 0.95%)</title><rect x="1091.0" y="501" width="11.2" height="15.0" fill="rgb(234,155,30)" rx="2" ry="2" />
|
|
<text x="1093.97" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (4 samples, 0.02%)</title><rect x="918.0" y="517" width="0.2" height="15.0" fill="rgb(225,192,14)" rx="2" ry="2" />
|
|
<text x="920.97" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (2 samples, 0.01%)</title><rect x="978.8" y="565" width="0.2" height="15.0" fill="rgb(243,153,5)" rx="2" ry="2" />
|
|
<text x="981.84" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (6 samples, 0.03%)</title><rect x="840.1" y="741" width="0.4" height="15.0" fill="rgb(217,160,7)" rx="2" ry="2" />
|
|
<text x="843.12" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (36 samples, 0.18%)</title><rect x="979.6" y="565" width="2.1" height="15.0" fill="rgb(247,114,1)" rx="2" ry="2" />
|
|
<text x="982.61" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (5 samples, 0.02%)</title><rect x="917.9" y="565" width="0.3" height="15.0" fill="rgb(224,22,26)" rx="2" ry="2" />
|
|
<text x="920.91" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (4 samples, 0.02%)</title><rect x="907.1" y="453" width="0.2" height="15.0" fill="rgb(224,153,4)" rx="2" ry="2" />
|
|
<text x="910.06" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>BIO_vsnprintf (2 samples, 0.01%)</title><rect x="1099.0" y="357" width="0.1" height="15.0" fill="rgb(247,49,27)" rx="2" ry="2" />
|
|
<text x="1101.99" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="911.3" y="485" width="0.2" height="15.0" fill="rgb(221,77,7)" rx="2" ry="2" />
|
|
<text x="914.31" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="1102.9" y="437" width="0.2" height="15.0" fill="rgb(235,99,3)" rx="2" ry="2" />
|
|
<text x="1105.88" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cpu_startup_entry (15 samples, 0.07%)</title><rect x="1189.1" y="741" width="0.9" height="15.0" fill="rgb(236,111,46)" rx="2" ry="2" />
|
|
<text x="1192.12" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (11 samples, 0.05%)</title><rect x="1186.9" y="597" width="0.7" height="15.0" fill="rgb(254,67,14)" rx="2" ry="2" />
|
|
<text x="1189.93" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>native_safe_halt (15 samples, 0.07%)</title><rect x="1189.1" y="693" width="0.9" height="15.0" fill="rgb(213,53,10)" rx="2" ry="2" />
|
|
<text x="1192.12" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (13 samples, 0.06%)</title><rect x="1096.2" y="453" width="0.8" height="15.0" fill="rgb(243,115,18)" rx="2" ry="2" />
|
|
<text x="1099.22" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_addr_list_ntop (3 samples, 0.01%)</title><rect x="808.4" y="693" width="0.2" height="15.0" fill="rgb(244,173,1)" rx="2" ry="2" />
|
|
<text x="811.38" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="909.6" y="309" width="0.1" height="15.0" fill="rgb(249,225,20)" rx="2" ry="2" />
|
|
<text x="912.60" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="921.6" y="709" width="0.2" height="15.0" fill="rgb(215,98,43)" rx="2" ry="2" />
|
|
<text x="924.57" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_propluginfo_plugid (2 samples, 0.01%)</title><rect x="951.8" y="341" width="0.1" height="15.0" fill="rgb(237,52,25)" rx="2" ry="2" />
|
|
<text x="954.83" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_make_hash (6 samples, 0.03%)</title><rect x="1015.9" y="597" width="0.4" height="15.0" fill="rgb(211,120,17)" rx="2" ry="2" />
|
|
<text x="1018.94" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="947.8" y="533" width="0.3" height="15.0" fill="rgb(208,52,8)" rx="2" ry="2" />
|
|
<text x="950.76" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (29 samples, 0.14%)</title><rect x="907.9" y="405" width="1.7" height="15.0" fill="rgb(244,181,36)" rx="2" ry="2" />
|
|
<text x="910.89" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="970.3" y="501" width="0.2" height="15.0" fill="rgb(210,160,9)" rx="2" ry="2" />
|
|
<text x="973.29" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (10 samples, 0.05%)</title><rect x="916.0" y="293" width="0.6" height="15.0" fill="rgb(236,55,19)" rx="2" ry="2" />
|
|
<text x="918.97" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="943.0" y="565" width="0.1" height="15.0" fill="rgb(225,182,35)" rx="2" ry="2" />
|
|
<text x="945.98" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (4 samples, 0.02%)</title><rect x="1175.1" y="565" width="0.2" height="15.0" fill="rgb(252,97,54)" rx="2" ry="2" />
|
|
<text x="1178.08" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>parse_resource_record (14 samples, 0.07%)</title><rect x="1184.7" y="741" width="0.8" height="15.0" fill="rgb(209,30,25)" rx="2" ry="2" />
|
|
<text x="1187.69" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>findstreamindex (36 samples, 0.18%)</title><rect x="943.1" y="613" width="2.1" height="15.0" fill="rgb(254,120,38)" rx="2" ry="2" />
|
|
<text x="946.10" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_scan_intval (54 samples, 0.27%)</title><rect x="839.6" y="757" width="3.2" height="15.0" fill="rgb(224,228,33)" rx="2" ry="2" />
|
|
<text x="842.65" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (2 samples, 0.01%)</title><rect x="956.6" y="469" width="0.1" height="15.0" fill="rgb(221,89,17)" rx="2" ry="2" />
|
|
<text x="959.61" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (20 samples, 0.10%)</title><rect x="1170.9" y="581" width="1.2" height="15.0" fill="rgb(206,102,16)" rx="2" ry="2" />
|
|
<text x="1173.89" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="1156.6" y="581" width="0.1" height="15.0" fill="rgb(238,48,4)" rx="2" ry="2" />
|
|
<text x="1159.62" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1032.8" y="421" width="0.2" height="15.0" fill="rgb(217,76,10)" rx="2" ry="2" />
|
|
<text x="1035.81" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (5 samples, 0.02%)</title><rect x="948.6" y="533" width="0.3" height="15.0" fill="rgb(242,16,41)" rx="2" ry="2" />
|
|
<text x="951.59" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_is_overlay_layer (3 samples, 0.01%)</title><rect x="978.1" y="581" width="0.2" height="15.0" fill="rgb(246,31,44)" rx="2" ry="2" />
|
|
<text x="981.14" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>DNS_UDP_ENTRY (3 samples, 0.01%)</title><rect x="971.3" y="517" width="0.2" height="15.0" fill="rgb(252,206,11)" rx="2" ry="2" />
|
|
<text x="974.29" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1187.8" y="549" width="0.1" height="15.0" fill="rgb(211,109,47)" rx="2" ry="2" />
|
|
<text x="1190.76" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (17 samples, 0.08%)</title><rect x="915.6" y="373" width="1.0" height="15.0" fill="rgb(219,171,52)" rx="2" ry="2" />
|
|
<text x="918.56" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CZipFormat::AddOneSection (2 samples, 0.01%)</title><rect x="1170.2" y="469" width="0.2" height="15.0" fill="rgb(238,157,4)" rx="2" ry="2" />
|
|
<text x="1173.24" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="909.6" y="389" width="0.1" height="15.0" fill="rgb(220,214,7)" rx="2" ry="2" />
|
|
<text x="912.60" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="953.7" y="261" width="0.1" height="15.0" fill="rgb(208,141,24)" rx="2" ry="2" />
|
|
<text x="956.72" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4,173 samples, 20.86%)</title><rect x="922.1" y="725" width="246.1" height="15.0" fill="rgb(229,114,31)" rx="2" ry="2" />
|
|
<text x="925.10" y="735.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="1172.4" y="549" width="0.4" height="15.0" fill="rgb(223,201,32)" rx="2" ry="2" />
|
|
<text x="1175.36" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (1,370 samples, 6.85%)</title><rect x="1023.0" y="549" width="80.8" height="15.0" fill="rgb(243,107,24)" rx="2" ry="2" />
|
|
<text x="1025.96" y="559.5" >[sapp]</text>
|
|
</g>
|
|
<g >
|
|
<title>RSA_new_method (2 samples, 0.01%)</title><rect x="954.7" y="293" width="0.1" height="15.0" fill="rgb(241,142,39)" rx="2" ry="2" />
|
|
<text x="957.72" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_mbstring_copy (3 samples, 0.01%)</title><rect x="916.0" y="261" width="0.1" height="15.0" fill="rgb(251,51,44)" rx="2" ry="2" />
|
|
<text x="918.97" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (10 samples, 0.05%)</title><rect x="906.2" y="341" width="0.6" height="15.0" fill="rgb(248,142,31)" rx="2" ry="2" />
|
|
<text x="909.24" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_search (6 samples, 0.03%)</title><rect x="1109.9" y="533" width="0.4" height="15.0" fill="rgb(236,30,16)" rx="2" ry="2" />
|
|
<text x="1112.90" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (34 samples, 0.17%)</title><rect x="1186.9" y="693" width="2.0" height="15.0" fill="rgb(233,35,22)" rx="2" ry="2" />
|
|
<text x="1189.93" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="912.5" y="629" width="0.1" height="15.0" fill="rgb(212,180,37)" rx="2" ry="2" />
|
|
<text x="915.49" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (54 samples, 0.27%)</title><rect x="979.1" y="581" width="3.2" height="15.0" fill="rgb(205,208,24)" rx="2" ry="2" />
|
|
<text x="982.08" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_buildHttpInforLink (2 samples, 0.01%)</title><rect x="1097.4" y="437" width="0.1" height="15.0" fill="rgb(222,188,38)" rx="2" ry="2" />
|
|
<text x="1100.40" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (2 samples, 0.01%)</title><rect x="1127.8" y="437" width="0.2" height="15.0" fill="rgb(211,105,43)" rx="2" ry="2" />
|
|
<text x="1130.83" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (20 samples, 0.10%)</title><rect x="1132.6" y="533" width="1.2" height="15.0" fill="rgb(216,96,16)" rx="2" ry="2" />
|
|
<text x="1135.61" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_ipv6 (2 samples, 0.01%)</title><rect x="1156.7" y="629" width="0.2" height="15.0" fill="rgb(242,44,11)" rx="2" ry="2" />
|
|
<text x="1159.73" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (43 samples, 0.21%)</title><rect x="912.6" y="645" width="2.5" height="15.0" fill="rgb(225,39,42)" rx="2" ry="2" />
|
|
<text x="915.61" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (7 samples, 0.03%)</title><rect x="1127.7" y="485" width="0.4" height="15.0" fill="rgb(248,211,8)" rx="2" ry="2" />
|
|
<text x="1130.71" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInflate2::fn_iDecode (4 samples, 0.02%)</title><rect x="1096.7" y="309" width="0.2" height="15.0" fill="rgb(235,228,34)" rx="2" ry="2" />
|
|
<text x="1099.69" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_rr_domain (2 samples, 0.01%)</title><rect x="1184.8" y="709" width="0.1" height="15.0" fill="rgb(212,219,2)" rx="2" ry="2" />
|
|
<text x="1187.81" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (14 samples, 0.07%)</title><rect x="906.2" y="677" width="0.9" height="15.0" fill="rgb(237,48,50)" rx="2" ry="2" />
|
|
<text x="909.24" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (68 samples, 0.34%)</title><rect x="809.6" y="677" width="4.0" height="15.0" fill="rgb(245,139,48)" rx="2" ry="2" />
|
|
<text x="812.62" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (13 samples, 0.06%)</title><rect x="1187.9" y="565" width="0.8" height="15.0" fill="rgb(217,91,26)" rx="2" ry="2" />
|
|
<text x="1190.94" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (15 samples, 0.07%)</title><rect x="959.0" y="485" width="0.9" height="15.0" fill="rgb(221,189,16)" rx="2" ry="2" />
|
|
<text x="961.97" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (4 samples, 0.02%)</title><rect x="918.5" y="469" width="0.2" height="15.0" fill="rgb(239,40,53)" rx="2" ry="2" />
|
|
<text x="921.50" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="972.6" y="469" width="0.1" height="15.0" fill="rgb(206,168,31)" rx="2" ry="2" />
|
|
<text x="975.59" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1098.2" y="261" width="0.1" height="15.0" fill="rgb(223,135,11)" rx="2" ry="2" />
|
|
<text x="1101.16" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="920.5" y="469" width="0.1" height="15.0" fill="rgb(239,64,49)" rx="2" ry="2" />
|
|
<text x="923.51" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_fqdn_category_id (2 samples, 0.01%)</title><rect x="1182.7" y="661" width="0.1" height="15.0" fill="rgb(224,99,29)" rx="2" ry="2" />
|
|
<text x="1185.69" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>raw_ip_frag_list_stream_attach (3 samples, 0.01%)</title><rect x="1142.7" y="597" width="0.2" height="15.0" fill="rgb(221,71,49)" rx="2" ry="2" />
|
|
<text x="1145.70" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (5 samples, 0.02%)</title><rect x="918.4" y="597" width="0.3" height="15.0" fill="rgb(219,4,31)" rx="2" ry="2" />
|
|
<text x="921.45" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="1150.5" y="469" width="0.1" height="15.0" fill="rgb(239,213,18)" rx="2" ry="2" />
|
|
<text x="1153.48" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.03%)</title><rect x="1131.7" y="565" width="0.4" height="15.0" fill="rgb(235,52,29)" rx="2" ry="2" />
|
|
<text x="1134.73" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="1109.3" y="485" width="0.1" height="15.0" fill="rgb(205,216,15)" rx="2" ry="2" />
|
|
<text x="1112.25" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (2 samples, 0.01%)</title><rect x="1187.8" y="597" width="0.1" height="15.0" fill="rgb(247,225,36)" rx="2" ry="2" />
|
|
<text x="1190.76" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (9 samples, 0.04%)</title><rect x="907.9" y="293" width="0.5" height="15.0" fill="rgb(219,56,14)" rx="2" ry="2" />
|
|
<text x="910.89" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (3 samples, 0.01%)</title><rect x="920.5" y="645" width="0.2" height="15.0" fill="rgb(205,33,28)" rx="2" ry="2" />
|
|
<text x="923.51" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="1188.3" y="501" width="0.4" height="15.0" fill="rgb(205,136,17)" rx="2" ry="2" />
|
|
<text x="1191.35" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="1175.3" y="469" width="0.1" height="15.0" fill="rgb(238,55,43)" rx="2" ry="2" />
|
|
<text x="1178.31" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (4 samples, 0.02%)</title><rect x="1175.5" y="549" width="0.3" height="15.0" fill="rgb(229,179,40)" rx="2" ry="2" />
|
|
<text x="1178.55" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (2 samples, 0.01%)</title><rect x="948.3" y="517" width="0.2" height="15.0" fill="rgb(207,92,36)" rx="2" ry="2" />
|
|
<text x="951.35" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="917.1" y="485" width="0.2" height="15.0" fill="rgb(206,101,48)" rx="2" ry="2" />
|
|
<text x="920.15" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="1186.0" y="693" width="0.2" height="15.0" fill="rgb(206,43,18)" rx="2" ry="2" />
|
|
<text x="1189.05" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="1174.5" y="501" width="0.2" height="15.0" fill="rgb(213,16,8)" rx="2" ry="2" />
|
|
<text x="1177.55" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>string_search (9,724 samples, 48.61%)</title><rect x="234.7" y="741" width="573.6" height="15.0" fill="rgb(229,97,43)" rx="2" ry="2" />
|
|
<text x="237.72" y="751.5" >string_search</text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="1186.9" y="277" width="0.4" height="15.0" fill="rgb(251,100,26)" rx="2" ry="2" />
|
|
<text x="1189.93" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.03%)</title><rect x="1170.4" y="629" width="0.4" height="15.0" fill="rgb(242,130,35)" rx="2" ry="2" />
|
|
<text x="1173.42" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (628 samples, 3.14%)</title><rect x="945.2" y="613" width="37.1" height="15.0" fill="rgb(246,188,9)" rx="2" ry="2" />
|
|
<text x="948.22" y="623.5" >gtp..</text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (13 samples, 0.06%)</title><rect x="1178.4" y="645" width="0.7" height="15.0" fill="rgb(240,35,6)" rx="2" ry="2" />
|
|
<text x="1181.38" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (24 samples, 0.12%)</title><rect x="1100.8" y="485" width="1.4" height="15.0" fill="rgb(218,164,6)" rx="2" ry="2" />
|
|
<text x="1103.82" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="958.4" y="437" width="0.2" height="15.0" fill="rgb(221,88,42)" rx="2" ry="2" />
|
|
<text x="961.38" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (39 samples, 0.19%)</title><rect x="1179.9" y="693" width="2.3" height="15.0" fill="rgb(241,181,19)" rx="2" ry="2" />
|
|
<text x="1182.86" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (11 samples, 0.05%)</title><rect x="1099.9" y="437" width="0.7" height="15.0" fill="rgb(213,19,0)" rx="2" ry="2" />
|
|
<text x="1102.93" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (6 samples, 0.03%)</title><rect x="1135.6" y="565" width="0.4" height="15.0" fill="rgb(236,225,19)" rx="2" ry="2" />
|
|
<text x="1138.62" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (6 samples, 0.03%)</title><rect x="915.2" y="469" width="0.4" height="15.0" fill="rgb(242,119,39)" rx="2" ry="2" />
|
|
<text x="918.20" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_umts_user_info (2 samples, 0.01%)</title><rect x="1102.1" y="453" width="0.1" height="15.0" fill="rgb(208,106,19)" rx="2" ry="2" />
|
|
<text x="1105.06" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_l7_protocol_name2id (2 samples, 0.01%)</title><rect x="981.1" y="469" width="0.1" height="15.0" fill="rgb(206,220,35)" rx="2" ry="2" />
|
|
<text x="984.08" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (80 samples, 0.40%)</title><rect x="1179.9" y="725" width="4.7" height="15.0" fill="rgb(252,81,24)" rx="2" ry="2" />
|
|
<text x="1182.86" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.01%)</title><rect x="918.3" y="549" width="0.1" height="15.0" fill="rgb(238,156,1)" rx="2" ry="2" />
|
|
<text x="921.27" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>swapper (15 samples, 0.07%)</title><rect x="1189.1" y="773" width="0.9" height="15.0" fill="rgb(237,5,18)" rx="2" ry="2" />
|
|
<text x="1192.12" y="783.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (2 samples, 0.01%)</title><rect x="948.6" y="501" width="0.1" height="15.0" fill="rgb(225,22,32)" rx="2" ry="2" />
|
|
<text x="951.59" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="947.8" y="485" width="0.3" height="15.0" fill="rgb(253,92,2)" rx="2" ry="2" />
|
|
<text x="950.82" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (5 samples, 0.02%)</title><rect x="911.7" y="501" width="0.3" height="15.0" fill="rgb(240,130,46)" rx="2" ry="2" />
|
|
<text x="914.66" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (10 samples, 0.05%)</title><rect x="906.2" y="277" width="0.6" height="15.0" fill="rgb(228,7,44)" rx="2" ry="2" />
|
|
<text x="909.24" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_handle_logger.so.2.0] (2 samples, 0.01%)</title><rect x="919.5" y="565" width="0.1" height="15.0" fill="rgb(252,107,20)" rx="2" ry="2" />
|
|
<text x="922.51" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (21 samples, 0.10%)</title><rect x="1170.9" y="661" width="1.2" height="15.0" fill="rgb(226,104,52)" rx="2" ry="2" />
|
|
<text x="1173.89" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithStartLine (7 samples, 0.03%)</title><rect x="1175.1" y="597" width="0.4" height="15.0" fill="rgb(234,112,13)" rx="2" ry="2" />
|
|
<text x="1178.08" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (2 samples, 0.01%)</title><rect x="978.0" y="517" width="0.1" height="15.0" fill="rgb(234,71,3)" rx="2" ry="2" />
|
|
<text x="981.02" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (3 samples, 0.01%)</title><rect x="979.3" y="533" width="0.1" height="15.0" fill="rgb(236,31,8)" rx="2" ry="2" />
|
|
<text x="982.26" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (7 samples, 0.03%)</title><rect x="1098.6" y="389" width="0.4" height="15.0" fill="rgb(230,174,48)" rx="2" ry="2" />
|
|
<text x="1101.58" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="912.5" y="645" width="0.1" height="15.0" fill="rgb(238,140,6)" rx="2" ry="2" />
|
|
<text x="915.49" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="1096.3" y="373" width="0.1" height="15.0" fill="rgb(247,49,13)" rx="2" ry="2" />
|
|
<text x="1099.28" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::dec_reference_count (13 samples, 0.06%)</title><rect x="874.5" y="693" width="0.8" height="15.0" fill="rgb(210,127,9)" rx="2" ry="2" />
|
|
<text x="877.50" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="813.0" y="549" width="0.2" height="15.0" fill="rgb(207,122,0)" rx="2" ry="2" />
|
|
<text x="816.04" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (33 samples, 0.16%)</title><rect x="1170.4" y="725" width="2.0" height="15.0" fill="rgb(246,103,52)" rx="2" ry="2" />
|
|
<text x="1173.42" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (7 samples, 0.03%)</title><rect x="915.6" y="293" width="0.4" height="15.0" fill="rgb(205,56,37)" rx="2" ry="2" />
|
|
<text x="918.56" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (3 samples, 0.01%)</title><rect x="911.1" y="485" width="0.2" height="15.0" fill="rgb(235,144,40)" rx="2" ry="2" />
|
|
<text x="914.13" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="1174.1" y="629" width="0.3" height="15.0" fill="rgb(246,16,40)" rx="2" ry="2" />
|
|
<text x="1177.13" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (29 samples, 0.14%)</title><rect x="907.9" y="373" width="1.7" height="15.0" fill="rgb(239,23,40)" rx="2" ry="2" />
|
|
<text x="910.89" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="912.3" y="581" width="0.2" height="15.0" fill="rgb(218,4,43)" rx="2" ry="2" />
|
|
<text x="915.25" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (29 samples, 0.14%)</title><rect x="1132.3" y="581" width="1.7" height="15.0" fill="rgb(226,162,8)" rx="2" ry="2" />
|
|
<text x="1135.26" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.01%)</title><rect x="962.7" y="485" width="0.1" height="15.0" fill="rgb(205,3,32)" rx="2" ry="2" />
|
|
<text x="965.68" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="920.5" y="549" width="0.2" height="15.0" fill="rgb(212,39,4)" rx="2" ry="2" />
|
|
<text x="923.51" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_searchstream (304 samples, 1.52%)</title><rect x="821.7" y="725" width="17.9" height="15.0" fill="rgb(237,155,5)" rx="2" ry="2" />
|
|
<text x="824.71" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="965.9" y="501" width="0.2" height="15.0" fill="rgb(227,7,8)" rx="2" ry="2" />
|
|
<text x="968.87" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (2 samples, 0.01%)</title><rect x="1003.1" y="517" width="0.2" height="15.0" fill="rgb(242,226,42)" rx="2" ry="2" />
|
|
<text x="1006.14" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (11 samples, 0.05%)</title><rect x="1176.4" y="645" width="0.7" height="15.0" fill="rgb(210,143,42)" rx="2" ry="2" />
|
|
<text x="1179.43" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_scan_by_id (2 samples, 0.01%)</title><rect x="958.1" y="421" width="0.2" height="15.0" fill="rgb(207,214,44)" rx="2" ry="2" />
|
|
<text x="961.14" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (7 samples, 0.03%)</title><rect x="911.5" y="581" width="0.5" height="15.0" fill="rgb(219,211,1)" rx="2" ry="2" />
|
|
<text x="914.54" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (20 samples, 0.10%)</title><rect x="1170.9" y="597" width="1.2" height="15.0" fill="rgb(241,5,31)" rx="2" ry="2" />
|
|
<text x="1173.89" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="1109.5" y="485" width="0.2" height="15.0" fill="rgb(234,205,11)" rx="2" ry="2" />
|
|
<text x="1112.49" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="916.3" y="213" width="0.1" height="15.0" fill="rgb(214,174,39)" rx="2" ry="2" />
|
|
<text x="919.32" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (131 samples, 0.65%)</title><rect x="969.5" y="549" width="7.7" height="15.0" fill="rgb(253,57,21)" rx="2" ry="2" />
|
|
<text x="972.47" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>region_compile (18 samples, 0.09%)</title><rect x="818.5" y="741" width="1.0" height="15.0" fill="rgb(207,223,15)" rx="2" ry="2" />
|
|
<text x="821.47" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1156.6" y="597" width="0.1" height="15.0" fill="rgb(249,211,15)" rx="2" ry="2" />
|
|
<text x="1159.62" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (3 samples, 0.01%)</title><rect x="918.3" y="581" width="0.1" height="15.0" fill="rgb(228,103,45)" rx="2" ry="2" />
|
|
<text x="921.27" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="917.7" y="549" width="0.1" height="15.0" fill="rgb(212,32,39)" rx="2" ry="2" />
|
|
<text x="920.68" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="1135.1" y="549" width="0.5" height="15.0" fill="rgb(216,2,29)" rx="2" ry="2" />
|
|
<text x="1138.15" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (32 samples, 0.16%)</title><rect x="1180.3" y="661" width="1.9" height="15.0" fill="rgb(220,127,18)" rx="2" ry="2" />
|
|
<text x="1183.27" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (14 samples, 0.07%)</title><rect x="906.2" y="533" width="0.9" height="15.0" fill="rgb(247,117,15)" rx="2" ry="2" />
|
|
<text x="909.24" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="959.4" y="453" width="0.1" height="15.0" fill="rgb(242,212,54)" rx="2" ry="2" />
|
|
<text x="962.38" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (6 samples, 0.03%)</title><rect x="920.7" y="629" width="0.3" height="15.0" fill="rgb(221,59,23)" rx="2" ry="2" />
|
|
<text x="923.69" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (3 samples, 0.01%)</title><rect x="1175.3" y="517" width="0.2" height="15.0" fill="rgb(246,61,28)" rx="2" ry="2" />
|
|
<text x="1178.31" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_make_hash (7 samples, 0.03%)</title><rect x="1108.0" y="533" width="0.4" height="15.0" fill="rgb(207,184,22)" rx="2" ry="2" />
|
|
<text x="1110.96" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.02%)</title><rect x="1003.4" y="597" width="0.3" height="15.0" fill="rgb(219,146,25)" rx="2" ry="2" />
|
|
<text x="1006.38" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (4 samples, 0.02%)</title><rect x="914.7" y="501" width="0.3" height="15.0" fill="rgb(238,203,29)" rx="2" ry="2" />
|
|
<text x="917.73" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (5 samples, 0.02%)</title><rect x="808.3" y="725" width="0.3" height="15.0" fill="rgb(234,184,38)" rx="2" ry="2" />
|
|
<text x="811.27" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1133.8" y="485" width="0.2" height="15.0" fill="rgb(219,9,12)" rx="2" ry="2" />
|
|
<text x="1136.85" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (5 samples, 0.02%)</title><rect x="1175.5" y="597" width="0.3" height="15.0" fill="rgb(244,94,54)" rx="2" ry="2" />
|
|
<text x="1178.49" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1172.8" y="517" width="0.2" height="15.0" fill="rgb(250,208,43)" rx="2" ry="2" />
|
|
<text x="1175.84" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="1127.8" y="421" width="0.2" height="15.0" fill="rgb(215,132,11)" rx="2" ry="2" />
|
|
<text x="1130.83" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="1175.5" y="485" width="0.3" height="15.0" fill="rgb(218,49,16)" rx="2" ry="2" />
|
|
<text x="1178.55" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="908.6" y="261" width="0.3" height="15.0" fill="rgb(227,46,2)" rx="2" ry="2" />
|
|
<text x="911.60" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="1174.5" y="453" width="0.2" height="15.0" fill="rgb(207,141,30)" rx="2" ry="2" />
|
|
<text x="1177.55" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (19 samples, 0.09%)</title><rect x="1000.3" y="485" width="1.1" height="15.0" fill="rgb(223,31,34)" rx="2" ry="2" />
|
|
<text x="1003.31" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (8 samples, 0.04%)</title><rect x="911.5" y="629" width="0.5" height="15.0" fill="rgb(237,98,6)" rx="2" ry="2" />
|
|
<text x="914.49" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAPTURE_UDP_PACKET_ENTRY (6 samples, 0.03%)</title><rect x="1126.7" y="517" width="0.3" height="15.0" fill="rgb(237,159,19)" rx="2" ry="2" />
|
|
<text x="1129.65" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (2 samples, 0.01%)</title><rect x="978.0" y="533" width="0.1" height="15.0" fill="rgb(228,21,44)" rx="2" ry="2" />
|
|
<text x="981.02" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>IEEE_8021_entry (34 samples, 0.17%)</title><rect x="1186.9" y="677" width="2.0" height="15.0" fill="rgb(226,116,8)" rx="2" ry="2" />
|
|
<text x="1189.93" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (14 samples, 0.07%)</title><rect x="906.2" y="613" width="0.9" height="15.0" fill="rgb(207,101,29)" rx="2" ry="2" />
|
|
<text x="909.24" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (3 samples, 0.01%)</title><rect x="911.3" y="533" width="0.2" height="15.0" fill="rgb(205,39,48)" rx="2" ry="2" />
|
|
<text x="914.31" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (22 samples, 0.11%)</title><rect x="918.7" y="645" width="1.3" height="15.0" fill="rgb(215,176,17)" rx="2" ry="2" />
|
|
<text x="921.74" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (35 samples, 0.17%)</title><rect x="907.9" y="453" width="2.1" height="15.0" fill="rgb(212,119,14)" rx="2" ry="2" />
|
|
<text x="910.89" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="921.6" y="693" width="0.2" height="15.0" fill="rgb(247,142,52)" rx="2" ry="2" />
|
|
<text x="924.63" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (4 samples, 0.02%)</title><rect x="1155.6" y="501" width="0.2" height="15.0" fill="rgb(211,28,47)" rx="2" ry="2" />
|
|
<text x="1158.55" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="966.8" y="533" width="0.1" height="15.0" fill="rgb(246,62,32)" rx="2" ry="2" />
|
|
<text x="969.81" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fw_ssl_entry (6 samples, 0.03%)</title><rect x="916.6" y="373" width="0.4" height="15.0" fill="rgb(205,160,50)" rx="2" ry="2" />
|
|
<text x="919.62" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (4 samples, 0.02%)</title><rect x="918.5" y="453" width="0.2" height="15.0" fill="rgb(216,217,34)" rx="2" ry="2" />
|
|
<text x="921.50" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (36 samples, 0.18%)</title><rect x="912.6" y="597" width="2.1" height="15.0" fill="rgb(207,120,15)" rx="2" ry="2" />
|
|
<text x="915.61" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qsort_r (2 samples, 0.01%)</title><rect x="841.0" y="709" width="0.1" height="15.0" fill="rgb(245,38,47)" rx="2" ry="2" />
|
|
<text x="844.00" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (5 samples, 0.02%)</title><rect x="968.0" y="565" width="0.3" height="15.0" fill="rgb(219,137,32)" rx="2" ry="2" />
|
|
<text x="971.05" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (25 samples, 0.12%)</title><rect x="1168.8" y="629" width="1.4" height="15.0" fill="rgb(210,132,45)" rx="2" ry="2" />
|
|
<text x="1171.77" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="910.6" y="341" width="0.1" height="15.0" fill="rgb(224,52,13)" rx="2" ry="2" />
|
|
<text x="913.60" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (6 samples, 0.03%)</title><rect x="907.1" y="581" width="0.3" height="15.0" fill="rgb(243,13,25)" rx="2" ry="2" />
|
|
<text x="910.06" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="915.6" y="165" width="0.3" height="15.0" fill="rgb(211,67,8)" rx="2" ry="2" />
|
|
<text x="918.61" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.05%)</title><rect x="1131.6" y="581" width="0.7" height="15.0" fill="rgb(232,92,34)" rx="2" ry="2" />
|
|
<text x="1134.61" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="1168.4" y="597" width="0.3" height="15.0" fill="rgb(241,207,23)" rx="2" ry="2" />
|
|
<text x="1171.41" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_l7_protocol_name2id (3 samples, 0.01%)</title><rect x="976.0" y="469" width="0.1" height="15.0" fill="rgb(218,211,26)" rx="2" ry="2" />
|
|
<text x="978.95" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (3 samples, 0.01%)</title><rect x="971.3" y="501" width="0.2" height="15.0" fill="rgb(220,52,27)" rx="2" ry="2" />
|
|
<text x="974.29" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (4 samples, 0.02%)</title><rect x="1174.1" y="549" width="0.3" height="15.0" fill="rgb(205,16,46)" rx="2" ry="2" />
|
|
<text x="1177.13" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (4 samples, 0.02%)</title><rect x="918.5" y="485" width="0.2" height="15.0" fill="rgb(238,5,33)" rx="2" ry="2" />
|
|
<text x="921.50" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (9 samples, 0.04%)</title><rect x="1178.6" y="565" width="0.5" height="15.0" fill="rgb(253,142,4)" rx="2" ry="2" />
|
|
<text x="1181.56" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (13 samples, 0.06%)</title><rect x="1173.0" y="661" width="0.8" height="15.0" fill="rgb(208,186,35)" rx="2" ry="2" />
|
|
<text x="1176.01" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_ddos_sketch.so] (12 samples, 0.06%)</title><rect x="1002.6" y="549" width="0.7" height="15.0" fill="rgb(237,138,28)" rx="2" ry="2" />
|
|
<text x="1005.55" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (15 samples, 0.07%)</title><rect x="1099.8" y="469" width="0.8" height="15.0" fill="rgb(239,130,6)" rx="2" ry="2" />
|
|
<text x="1102.76" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (3 samples, 0.01%)</title><rect x="1098.2" y="325" width="0.1" height="15.0" fill="rgb(244,11,48)" rx="2" ry="2" />
|
|
<text x="1101.16" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="909.6" y="341" width="0.1" height="15.0" fill="rgb(221,162,10)" rx="2" ry="2" />
|
|
<text x="912.60" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_free (2 samples, 0.01%)</title><rect x="940.5" y="565" width="0.1" height="15.0" fill="rgb(224,114,41)" rx="2" ry="2" />
|
|
<text x="943.50" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_type_by_id (14 samples, 0.07%)</title><rect x="845.8" y="741" width="0.9" height="15.0" fill="rgb(218,55,49)" rx="2" ry="2" />
|
|
<text x="848.84" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (6 samples, 0.03%)</title><rect x="1129.8" y="469" width="0.3" height="15.0" fill="rgb(223,4,11)" rx="2" ry="2" />
|
|
<text x="1132.78" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_addr_list_ntop (2 samples, 0.01%)</title><rect x="1188.9" y="629" width="0.2" height="15.0" fill="rgb(228,210,9)" rx="2" ry="2" />
|
|
<text x="1191.94" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (5 samples, 0.02%)</title><rect x="975.8" y="501" width="0.3" height="15.0" fill="rgb(248,82,33)" rx="2" ry="2" />
|
|
<text x="978.84" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="912.0" y="581" width="0.2" height="15.0" fill="rgb(208,102,26)" rx="2" ry="2" />
|
|
<text x="914.96" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (4 samples, 0.02%)</title><rect x="918.0" y="453" width="0.2" height="15.0" fill="rgb(229,140,47)" rx="2" ry="2" />
|
|
<text x="920.97" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithCnntcloseData (2 samples, 0.01%)</title><rect x="1096.3" y="421" width="0.1" height="15.0" fill="rgb(208,227,10)" rx="2" ry="2" />
|
|
<text x="1099.28" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_parser_execute (3 samples, 0.01%)</title><rect x="1101.5" y="453" width="0.2" height="15.0" fill="rgb(229,7,25)" rx="2" ry="2" />
|
|
<text x="1104.53" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_create_per_stream (2 samples, 0.01%)</title><rect x="949.7" y="533" width="0.1" height="15.0" fill="rgb(220,218,43)" rx="2" ry="2" />
|
|
<text x="952.71" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (15 samples, 0.07%)</title><rect x="1147.2" y="533" width="0.9" height="15.0" fill="rgb(213,94,14)" rx="2" ry="2" />
|
|
<text x="1150.18" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ret_from_intr (2 samples, 0.01%)</title><rect x="808.1" y="709" width="0.2" height="15.0" fill="rgb(224,95,32)" rx="2" ry="2" />
|
|
<text x="811.15" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="906.6" y="245" width="0.1" height="15.0" fill="rgb(217,25,30)" rx="2" ry="2" />
|
|
<text x="909.59" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (15 samples, 0.07%)</title><rect x="1099.8" y="453" width="0.8" height="15.0" fill="rgb(220,61,26)" rx="2" ry="2" />
|
|
<text x="1102.76" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_OBJECT_new (2 samples, 0.01%)</title><rect x="915.7" y="85" width="0.2" height="15.0" fill="rgb(231,115,16)" rx="2" ry="2" />
|
|
<text x="918.73" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>system_capture_packet_entry (20 samples, 0.10%)</title><rect x="987.9" y="549" width="1.1" height="15.0" fill="rgb(223,37,31)" rx="2" ry="2" />
|
|
<text x="990.87" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (2 samples, 0.01%)</title><rect x="1168.3" y="629" width="0.1" height="15.0" fill="rgb(240,110,48)" rx="2" ry="2" />
|
|
<text x="1171.29" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_app_properties_policy (3 samples, 0.01%)</title><rect x="917.1" y="501" width="0.2" height="15.0" fill="rgb(245,128,26)" rx="2" ry="2" />
|
|
<text x="920.09" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (93 samples, 0.46%)</title><rect x="1151.0" y="549" width="5.4" height="15.0" fill="rgb(208,209,2)" rx="2" ry="2" />
|
|
<text x="1153.95" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (2 samples, 0.01%)</title><rect x="1179.4" y="709" width="0.2" height="15.0" fill="rgb(219,177,52)" rx="2" ry="2" />
|
|
<text x="1182.44" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (2 samples, 0.01%)</title><rect x="883.9" y="693" width="0.1" height="15.0" fill="rgb(248,112,46)" rx="2" ry="2" />
|
|
<text x="886.88" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (4 samples, 0.02%)</title><rect x="912.3" y="597" width="0.2" height="15.0" fill="rgb(205,170,42)" rx="2" ry="2" />
|
|
<text x="915.25" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_ip_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="1180.6" y="629" width="0.2" height="15.0" fill="rgb(231,73,16)" rx="2" ry="2" />
|
|
<text x="1183.56" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (4 samples, 0.02%)</title><rect x="1105.2" y="517" width="0.3" height="15.0" fill="rgb(238,74,43)" rx="2" ry="2" />
|
|
<text x="1108.24" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="942.9" y="597" width="0.1" height="15.0" fill="rgb(228,5,35)" rx="2" ry="2" />
|
|
<text x="945.86" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (3 samples, 0.01%)</title><rect x="809.4" y="677" width="0.2" height="15.0" fill="rgb(245,226,47)" rx="2" ry="2" />
|
|
<text x="812.45" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CStringMatch::check_match_mode@plt (109 samples, 0.54%)</title><rect x="225.8" y="741" width="6.4" height="15.0" fill="rgb(217,7,30)" rx="2" ry="2" />
|
|
<text x="228.82" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (5 samples, 0.02%)</title><rect x="813.2" y="549" width="0.3" height="15.0" fill="rgb(241,46,54)" rx="2" ry="2" />
|
|
<text x="816.22" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>X509V3_EXT_d2i (2 samples, 0.01%)</title><rect x="1188.2" y="405" width="0.1" height="15.0" fill="rgb(225,42,28)" rx="2" ry="2" />
|
|
<text x="1191.23" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (25 samples, 0.12%)</title><rect x="1168.8" y="613" width="1.4" height="15.0" fill="rgb(208,37,16)" rx="2" ry="2" />
|
|
<text x="1171.77" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_umts_user_info (4 samples, 0.02%)</title><rect x="959.5" y="453" width="0.2" height="15.0" fill="rgb(252,75,8)" rx="2" ry="2" />
|
|
<text x="962.50" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (10 samples, 0.05%)</title><rect x="1176.4" y="597" width="0.6" height="15.0" fill="rgb(240,62,30)" rx="2" ry="2" />
|
|
<text x="1179.43" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (14 samples, 0.07%)</title><rect x="1187.9" y="613" width="0.9" height="15.0" fill="rgb(211,209,53)" rx="2" ry="2" />
|
|
<text x="1190.94" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="1175.3" y="485" width="0.1" height="15.0" fill="rgb(211,2,21)" rx="2" ry="2" />
|
|
<text x="1178.31" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="813.6" y="597" width="0.3" height="15.0" fill="rgb(240,192,54)" rx="2" ry="2" />
|
|
<text x="816.63" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (6 samples, 0.03%)</title><rect x="920.7" y="645" width="0.3" height="15.0" fill="rgb(228,139,15)" rx="2" ry="2" />
|
|
<text x="923.69" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rulescan_search (352 samples, 1.76%)</title><rect x="860.8" y="725" width="20.7" height="15.0" fill="rgb(237,188,2)" rx="2" ry="2" />
|
|
<text x="863.76" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="909.5" y="229" width="0.1" height="15.0" fill="rgb(211,108,35)" rx="2" ry="2" />
|
|
<text x="912.48" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (7 samples, 0.03%)</title><rect x="907.1" y="645" width="0.4" height="15.0" fill="rgb(234,56,39)" rx="2" ry="2" />
|
|
<text x="910.06" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_free (41 samples, 0.20%)</title><rect x="1163.3" y="693" width="2.4" height="15.0" fill="rgb(210,126,54)" rx="2" ry="2" />
|
|
<text x="1166.28" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (2 samples, 0.01%)</title><rect x="1132.4" y="565" width="0.1" height="15.0" fill="rgb(205,50,40)" rx="2" ry="2" />
|
|
<text x="1135.37" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="1172.2" y="645" width="0.2" height="15.0" fill="rgb(246,61,7)" rx="2" ry="2" />
|
|
<text x="1175.25" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_ip_entry (4 samples, 0.02%)</title><rect x="977.9" y="549" width="0.2" height="15.0" fill="rgb(228,106,43)" rx="2" ry="2" />
|
|
<text x="980.90" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_tripleMatching (3 samples, 0.01%)</title><rect x="1175.3" y="581" width="0.2" height="15.0" fill="rgb(253,146,32)" rx="2" ry="2" />
|
|
<text x="1178.31" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (14 samples, 0.07%)</title><rect x="906.2" y="645" width="0.9" height="15.0" fill="rgb(206,162,39)" rx="2" ry="2" />
|
|
<text x="909.24" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (18 samples, 0.09%)</title><rect x="943.8" y="597" width="1.1" height="15.0" fill="rgb(248,212,50)" rx="2" ry="2" />
|
|
<text x="946.81" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (14 samples, 0.07%)</title><rect x="966.2" y="565" width="0.8" height="15.0" fill="rgb(234,150,46)" rx="2" ry="2" />
|
|
<text x="969.22" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (3 samples, 0.01%)</title><rect x="950.9" y="453" width="0.2" height="15.0" fill="rgb(248,166,34)" rx="2" ry="2" />
|
|
<text x="953.89" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="1172.1" y="629" width="0.1" height="15.0" fill="rgb(237,61,5)" rx="2" ry="2" />
|
|
<text x="1175.13" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="1186.0" y="741" width="0.2" height="15.0" fill="rgb(233,67,35)" rx="2" ry="2" />
|
|
<text x="1189.05" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="948.7" y="501" width="0.1" height="15.0" fill="rgb(230,105,49)" rx="2" ry="2" />
|
|
<text x="951.70" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (6 samples, 0.03%)</title><rect x="954.1" y="325" width="0.4" height="15.0" fill="rgb(212,109,44)" rx="2" ry="2" />
|
|
<text x="957.13" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (9 samples, 0.04%)</title><rect x="981.7" y="533" width="0.6" height="15.0" fill="rgb(211,130,5)" rx="2" ry="2" />
|
|
<text x="984.73" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (4 samples, 0.02%)</title><rect x="896.4" y="709" width="0.3" height="15.0" fill="rgb(248,214,25)" rx="2" ry="2" />
|
|
<text x="899.45" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (232 samples, 1.16%)</title><rect x="1142.9" y="597" width="13.7" height="15.0" fill="rgb(240,214,54)" rx="2" ry="2" />
|
|
<text x="1145.93" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseSsl (49 samples, 0.24%)</title><rect x="907.9" y="501" width="2.9" height="15.0" fill="rgb(213,29,42)" rx="2" ry="2" />
|
|
<text x="910.89" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="1122.7" y="501" width="0.5" height="15.0" fill="rgb(229,108,1)" rx="2" ry="2" />
|
|
<text x="1125.70" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (2 samples, 0.01%)</title><rect x="1168.3" y="613" width="0.1" height="15.0" fill="rgb(205,19,7)" rx="2" ry="2" />
|
|
<text x="1171.29" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpReqResHeader (7 samples, 0.03%)</title><rect x="1175.1" y="613" width="0.4" height="15.0" fill="rgb(227,47,36)" rx="2" ry="2" />
|
|
<text x="1178.08" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sk_pop_free (2 samples, 0.01%)</title><rect x="909.5" y="261" width="0.1" height="15.0" fill="rgb(241,46,54)" rx="2" ry="2" />
|
|
<text x="912.48" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="1188.9" y="661" width="0.2" height="15.0" fill="rgb(244,86,37)" rx="2" ry="2" />
|
|
<text x="1191.94" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (9 samples, 0.04%)</title><rect x="986.0" y="533" width="0.6" height="15.0" fill="rgb(248,71,24)" rx="2" ry="2" />
|
|
<text x="989.04" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_addr_list_ntop_outward (2 samples, 0.01%)</title><rect x="1186.0" y="581" width="0.2" height="15.0" fill="rgb(224,42,31)" rx="2" ry="2" />
|
|
<text x="1189.05" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>memcmp@plt (3 samples, 0.01%)</title><rect x="1155.4" y="485" width="0.2" height="15.0" fill="rgb(227,211,51)" rx="2" ry="2" />
|
|
<text x="1158.38" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (73 samples, 0.36%)</title><rect x="809.6" y="693" width="4.3" height="15.0" fill="rgb(230,187,6)" rx="2" ry="2" />
|
|
<text x="812.62" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="917.1" y="469" width="0.2" height="15.0" fill="rgb(251,104,22)" rx="2" ry="2" />
|
|
<text x="920.15" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMV_sketch.so.2.1] (2 samples, 0.01%)</title><rect x="981.5" y="421" width="0.1" height="15.0" fill="rgb(211,221,45)" rx="2" ry="2" />
|
|
<text x="984.50" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_umts_user_info (5 samples, 0.02%)</title><rect x="973.3" y="469" width="0.3" height="15.0" fill="rgb(230,4,6)" rx="2" ry="2" />
|
|
<text x="976.30" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (4 samples, 0.02%)</title><rect x="912.3" y="533" width="0.2" height="15.0" fill="rgb(230,181,16)" rx="2" ry="2" />
|
|
<text x="915.25" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (9 samples, 0.04%)</title><rect x="1098.0" y="389" width="0.6" height="15.0" fill="rgb(249,95,29)" rx="2" ry="2" />
|
|
<text x="1101.05" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="1102.9" y="421" width="0.2" height="15.0" fill="rgb(220,16,34)" rx="2" ry="2" />
|
|
<text x="1105.94" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (2 samples, 0.01%)</title><rect x="917.7" y="469" width="0.1" height="15.0" fill="rgb(225,154,19)" rx="2" ry="2" />
|
|
<text x="920.68" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (36 samples, 0.18%)</title><rect x="1148.5" y="549" width="2.2" height="15.0" fill="rgb(210,41,42)" rx="2" ry="2" />
|
|
<text x="1151.54" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (15 samples, 0.07%)</title><rect x="1134.7" y="565" width="0.9" height="15.0" fill="rgb(228,222,6)" rx="2" ry="2" />
|
|
<text x="1137.73" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_handle_runtime_log (4 samples, 0.02%)</title><rect x="809.0" y="581" width="0.3" height="15.0" fill="rgb(246,87,6)" rx="2" ry="2" />
|
|
<text x="812.03" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="910.5" y="405" width="0.3" height="15.0" fill="rgb(245,35,40)" rx="2" ry="2" />
|
|
<text x="913.48" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv6_entry (9 samples, 0.04%)</title><rect x="918.2" y="645" width="0.5" height="15.0" fill="rgb(216,104,38)" rx="2" ry="2" />
|
|
<text x="921.21" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lpi_guess_protocol (10 samples, 0.05%)</title><rect x="980.4" y="501" width="0.6" height="15.0" fill="rgb(229,200,21)" rx="2" ry="2" />
|
|
<text x="983.38" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (5 samples, 0.02%)</title><rect x="1173.8" y="693" width="0.3" height="15.0" fill="rgb(250,145,18)" rx="2" ry="2" />
|
|
<text x="1176.84" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asn1_ex_c2i (2 samples, 0.01%)</title><rect x="906.8" y="261" width="0.1" height="15.0" fill="rgb(207,149,49)" rx="2" ry="2" />
|
|
<text x="909.83" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::inc_reference_count (16 samples, 0.08%)</title><rect x="829.3" y="709" width="0.9" height="15.0" fill="rgb(241,33,3)" rx="2" ry="2" />
|
|
<text x="832.26" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="917.7" y="565" width="0.1" height="15.0" fill="rgb(249,206,28)" rx="2" ry="2" />
|
|
<text x="920.68" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>docanalyze_parsestream (5 samples, 0.02%)</title><rect x="1096.7" y="373" width="0.3" height="15.0" fill="rgb(234,4,9)" rx="2" ry="2" />
|
|
<text x="1099.69" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="968.2" y="533" width="0.1" height="15.0" fill="rgb(220,193,16)" rx="2" ry="2" />
|
|
<text x="971.23" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (2 samples, 0.01%)</title><rect x="1168.3" y="645" width="0.1" height="15.0" fill="rgb(253,185,9)" rx="2" ry="2" />
|
|
<text x="1171.29" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::search_expr (8 samples, 0.04%)</title><rect x="842.4" y="693" width="0.4" height="15.0" fill="rgb(220,146,42)" rx="2" ry="2" />
|
|
<text x="845.36" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (17 samples, 0.08%)</title><rect x="962.1" y="533" width="1.0" height="15.0" fill="rgb(253,186,18)" rx="2" ry="2" />
|
|
<text x="965.09" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new[] (1,319 samples, 6.59%)</title><rect x="509.8" y="693" width="77.8" height="15.0" fill="rgb(214,112,31)" rx="2" ry="2" />
|
|
<text x="512.82" y="703.5" >operator..</text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (5 samples, 0.02%)</title><rect x="1124.6" y="565" width="0.3" height="15.0" fill="rgb(233,202,33)" rx="2" ry="2" />
|
|
<text x="1127.65" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (6 samples, 0.03%)</title><rect x="809.0" y="661" width="0.4" height="15.0" fill="rgb(220,196,2)" rx="2" ry="2" />
|
|
<text x="812.03" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (10 samples, 0.05%)</title><rect x="1145.5" y="533" width="0.6" height="15.0" fill="rgb(240,12,11)" rx="2" ry="2" />
|
|
<text x="1148.53" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CRefCountManager::dec_reference_count (13 samples, 0.06%)</title><rect x="828.5" y="709" width="0.8" height="15.0" fill="rgb(232,114,1)" rx="2" ry="2" />
|
|
<text x="831.50" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_location (2 samples, 0.01%)</title><rect x="1103.1" y="453" width="0.1" height="15.0" fill="rgb(242,186,21)" rx="2" ry="2" />
|
|
<text x="1106.06" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_softirq (2 samples, 0.01%)</title><rect x="808.1" y="645" width="0.2" height="15.0" fill="rgb(241,0,0)" rx="2" ry="2" />
|
|
<text x="811.15" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.02%)</title><rect x="912.0" y="613" width="0.3" height="15.0" fill="rgb(251,65,38)" rx="2" ry="2" />
|
|
<text x="914.96" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify_udp_v6 (2 samples, 0.01%)</title><rect x="979.5" y="565" width="0.1" height="15.0" fill="rgb(208,0,13)" rx="2" ry="2" />
|
|
<text x="982.49" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="1126.3" y="501" width="0.3" height="15.0" fill="rgb(205,12,26)" rx="2" ry="2" />
|
|
<text x="1129.30" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="1174.5" y="533" width="0.2" height="15.0" fill="rgb(238,226,43)" rx="2" ry="2" />
|
|
<text x="1177.55" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_stream_info_to_heap (4 samples, 0.02%)</title><rect x="966.6" y="549" width="0.2" height="15.0" fill="rgb(214,140,40)" rx="2" ry="2" />
|
|
<text x="969.58" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>frags_create (3 samples, 0.01%)</title><rect x="1003.8" y="629" width="0.2" height="15.0" fill="rgb(242,221,44)" rx="2" ry="2" />
|
|
<text x="1006.79" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_AnalyseCertificate (7 samples, 0.03%)</title><rect x="1187.9" y="437" width="0.4" height="15.0" fill="rgb(229,47,42)" rx="2" ry="2" />
|
|
<text x="1190.94" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_TCPALL_ENTRY (6 samples, 0.03%)</title><rect x="965.5" y="501" width="0.4" height="15.0" fill="rgb(233,197,49)" rx="2" ry="2" />
|
|
<text x="968.51" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (4 samples, 0.02%)</title><rect x="1126.4" y="453" width="0.2" height="15.0" fill="rgb(240,19,42)" rx="2" ry="2" />
|
|
<text x="1129.36" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (6 samples, 0.03%)</title><rect x="976.7" y="453" width="0.3" height="15.0" fill="rgb(233,163,9)" rx="2" ry="2" />
|
|
<text x="979.66" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_new (3 samples, 0.01%)</title><rect x="907.1" y="261" width="0.1" height="15.0" fill="rgb(230,137,39)" rx="2" ry="2" />
|
|
<text x="910.06" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (133 samples, 0.66%)</title><rect x="969.3" y="565" width="7.9" height="15.0" fill="rgb(222,127,31)" rx="2" ry="2" />
|
|
<text x="972.35" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (3 samples, 0.01%)</title><rect x="1100.6" y="469" width="0.2" height="15.0" fill="rgb(232,51,36)" rx="2" ry="2" />
|
|
<text x="1103.64" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (15 samples, 0.07%)</title><rect x="1175.1" y="629" width="0.9" height="15.0" fill="rgb(245,128,38)" rx="2" ry="2" />
|
|
<text x="1178.08" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libMESA_htable.so] (8 samples, 0.04%)</title><rect x="940.8" y="613" width="0.5" height="15.0" fill="rgb(205,157,40)" rx="2" ry="2" />
|
|
<text x="943.80" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (24 samples, 0.12%)</title><rect x="1102.3" y="501" width="1.4" height="15.0" fill="rgb(242,32,17)" rx="2" ry="2" />
|
|
<text x="1105.29" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (27 samples, 0.13%)</title><rect x="1168.8" y="741" width="1.6" height="15.0" fill="rgb(239,191,54)" rx="2" ry="2" />
|
|
<text x="1171.77" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (8 samples, 0.04%)</title><rect x="1181.3" y="597" width="0.4" height="15.0" fill="rgb(233,188,40)" rx="2" ry="2" />
|
|
<text x="1184.27" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="907.1" y="373" width="0.2" height="15.0" fill="rgb(206,107,23)" rx="2" ry="2" />
|
|
<text x="910.06" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (144 samples, 0.72%)</title><rect x="950.1" y="517" width="8.5" height="15.0" fill="rgb(238,168,24)" rx="2" ry="2" />
|
|
<text x="953.12" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (3 samples, 0.01%)</title><rect x="1183.1" y="613" width="0.2" height="15.0" fill="rgb(232,129,26)" rx="2" ry="2" />
|
|
<text x="1186.10" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="954.1" y="373" width="0.4" height="15.0" fill="rgb(225,178,25)" rx="2" ry="2" />
|
|
<text x="957.13" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>fn_pGetSSLInfo (2 samples, 0.01%)</title><rect x="948.0" y="389" width="0.1" height="15.0" fill="rgb(213,114,21)" rx="2" ry="2" />
|
|
<text x="951.00" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (47 samples, 0.23%)</title><rect x="915.1" y="629" width="2.8" height="15.0" fill="rgb(233,161,24)" rx="2" ry="2" />
|
|
<text x="918.14" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (3 samples, 0.01%)</title><rect x="991.2" y="517" width="0.2" height="15.0" fill="rgb(249,191,14)" rx="2" ry="2" />
|
|
<text x="994.23" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (3 samples, 0.01%)</title><rect x="977.5" y="517" width="0.2" height="15.0" fill="rgb(230,96,37)" rx="2" ry="2" />
|
|
<text x="980.49" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="911.0" y="469" width="0.1" height="15.0" fill="rgb(210,75,6)" rx="2" ry="2" />
|
|
<text x="913.95" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scaling_bloom_check (72 samples, 0.36%)</title><rect x="1136.6" y="597" width="4.3" height="15.0" fill="rgb(211,229,46)" rx="2" ry="2" />
|
|
<text x="1139.62" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1132.9" y="485" width="0.1" height="15.0" fill="rgb(245,9,51)" rx="2" ry="2" />
|
|
<text x="1135.91" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (3 samples, 0.01%)</title><rect x="1003.4" y="565" width="0.2" height="15.0" fill="rgb(235,87,36)" rx="2" ry="2" />
|
|
<text x="1006.38" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (29 samples, 0.14%)</title><rect x="1028.0" y="517" width="1.7" height="15.0" fill="rgb(247,171,4)" rx="2" ry="2" />
|
|
<text x="1030.98" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (6 samples, 0.03%)</title><rect x="915.2" y="453" width="0.4" height="15.0" fill="rgb(211,52,49)" rx="2" ry="2" />
|
|
<text x="918.20" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[fw_ssl_plug.so] (2 samples, 0.01%)</title><rect x="1186.0" y="645" width="0.2" height="15.0" fill="rgb(225,220,18)" rx="2" ry="2" />
|
|
<text x="1189.05" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FW_DNS_PLUG_ENTRY (41 samples, 0.20%)</title><rect x="1182.2" y="677" width="2.4" height="15.0" fill="rgb(241,27,38)" rx="2" ry="2" />
|
|
<text x="1185.16" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="1127.4" y="485" width="0.1" height="15.0" fill="rgb(221,87,17)" rx="2" ry="2" />
|
|
<text x="1130.42" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="1188.9" y="533" width="0.2" height="15.0" fill="rgb(246,26,39)" rx="2" ry="2" />
|
|
<text x="1191.94" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (3 samples, 0.01%)</title><rect x="920.5" y="677" width="0.2" height="15.0" fill="rgb(246,38,37)" rx="2" ry="2" />
|
|
<text x="923.51" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (34 samples, 0.17%)</title><rect x="1186.9" y="741" width="2.0" height="15.0" fill="rgb(216,205,51)" rx="2" ry="2" />
|
|
<text x="1189.93" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (36 samples, 0.18%)</title><rect x="979.6" y="549" width="2.1" height="15.0" fill="rgb(245,136,53)" rx="2" ry="2" />
|
|
<text x="982.61" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (42 samples, 0.21%)</title><rect x="1105.5" y="517" width="2.5" height="15.0" fill="rgb(245,181,4)" rx="2" ry="2" />
|
|
<text x="1108.48" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (9 samples, 0.04%)</title><rect x="1098.0" y="373" width="0.6" height="15.0" fill="rgb(244,27,20)" rx="2" ry="2" />
|
|
<text x="1101.05" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="907.1" y="389" width="0.2" height="15.0" fill="rgb(251,77,53)" rx="2" ry="2" />
|
|
<text x="910.06" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hash_func (50 samples, 0.25%)</title><rect x="1137.9" y="565" width="3.0" height="15.0" fill="rgb(212,54,20)" rx="2" ry="2" />
|
|
<text x="1140.92" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>del_stream_by_time (20 samples, 0.10%)</title><rect x="982.3" y="597" width="1.2" height="15.0" fill="rgb(239,29,3)" rx="2" ry="2" />
|
|
<text x="985.32" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>parse_dns_protocol (109 samples, 0.54%)</title><rect x="1179.6" y="757" width="6.4" height="15.0" fill="rgb(252,39,39)" rx="2" ry="2" />
|
|
<text x="1182.56" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="1174.9" y="757" width="0.2" height="15.0" fill="rgb(220,176,47)" rx="2" ry="2" />
|
|
<text x="1177.90" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_thread (34 samples, 0.17%)</title><rect x="1186.9" y="757" width="2.0" height="15.0" fill="rgb(240,96,50)" rx="2" ry="2" />
|
|
<text x="1189.93" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (17 samples, 0.08%)</title><rect x="920.0" y="693" width="1.0" height="15.0" fill="rgb(216,154,38)" rx="2" ry="2" />
|
|
<text x="923.04" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="972.9" y="421" width="0.2" height="15.0" fill="rgb(243,73,4)" rx="2" ry="2" />
|
|
<text x="975.95" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1172.1" y="613" width="0.1" height="15.0" fill="rgb(229,68,17)" rx="2" ry="2" />
|
|
<text x="1175.13" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (14 samples, 0.07%)</title><rect x="906.2" y="565" width="0.9" height="15.0" fill="rgb(223,4,12)" rx="2" ry="2" />
|
|
<text x="909.24" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseHandShake (49 samples, 0.24%)</title><rect x="907.9" y="485" width="2.9" height="15.0" fill="rgb(251,219,40)" rx="2" ry="2" />
|
|
<text x="910.89" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (5 samples, 0.02%)</title><rect x="918.4" y="613" width="0.3" height="15.0" fill="rgb(254,74,27)" rx="2" ry="2" />
|
|
<text x="921.45" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>HTTP_ENTRY (673 samples, 3.36%)</title><rect x="1033.0" y="469" width="39.7" height="15.0" fill="rgb(245,182,50)" rx="2" ry="2" />
|
|
<text x="1036.05" y="479.5" >HTT..</text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (12 samples, 0.06%)</title><rect x="1015.2" y="597" width="0.7" height="15.0" fill="rgb(230,173,31)" rx="2" ry="2" />
|
|
<text x="1018.24" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1180.1" y="645" width="0.2" height="15.0" fill="rgb(245,170,29)" rx="2" ry="2" />
|
|
<text x="1183.09" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="1175.1" y="549" width="0.2" height="15.0" fill="rgb(212,108,15)" rx="2" ry="2" />
|
|
<text x="1178.08" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>marsio_buff_ctrlzone (85 samples, 0.42%)</title><rect x="1158.3" y="693" width="5.0" height="15.0" fill="rgb(233,219,30)" rx="2" ry="2" />
|
|
<text x="1161.27" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (157 samples, 0.78%)</title><rect x="1081.2" y="517" width="9.3" height="15.0" fill="rgb(225,96,48)" rx="2" ry="2" />
|
|
<text x="1084.24" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_destroy (6 samples, 0.03%)</title><rect x="962.5" y="501" width="0.4" height="15.0" fill="rgb(207,68,11)" rx="2" ry="2" />
|
|
<text x="965.51" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (21 samples, 0.10%)</title><rect x="1128.2" y="485" width="1.3" height="15.0" fill="rgb(216,91,1)" rx="2" ry="2" />
|
|
<text x="1131.25" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_bridge_sync_data_put (2 samples, 0.01%)</title><rect x="1129.5" y="501" width="0.2" height="15.0" fill="rgb(250,184,39)" rx="2" ry="2" />
|
|
<text x="1132.54" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (22 samples, 0.11%)</title><rect x="918.7" y="661" width="1.3" height="15.0" fill="rgb(232,145,51)" rx="2" ry="2" />
|
|
<text x="921.74" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (3 samples, 0.01%)</title><rect x="1172.8" y="629" width="0.2" height="15.0" fill="rgb(234,115,32)" rx="2" ry="2" />
|
|
<text x="1175.84" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_analyseStream (25 samples, 0.12%)</title><rect x="915.6" y="517" width="1.4" height="15.0" fill="rgb(226,206,9)" rx="2" ry="2" />
|
|
<text x="918.56" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free (7 samples, 0.03%)</title><rect x="1029.7" y="517" width="0.4" height="15.0" fill="rgb(231,219,11)" rx="2" ry="2" />
|
|
<text x="1032.69" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_make_outer_status (121 samples, 0.60%)</title><rect x="885.9" y="725" width="7.2" height="15.0" fill="rgb(237,164,49)" rx="2" ry="2" />
|
|
<text x="888.95" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="809.0" y="629" width="0.4" height="15.0" fill="rgb(216,111,10)" rx="2" ry="2" />
|
|
<text x="812.03" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="911.1" y="517" width="0.2" height="15.0" fill="rgb(244,219,30)" rx="2" ry="2" />
|
|
<text x="914.13" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ipv4_entry (14 samples, 0.07%)</title><rect x="808.6" y="693" width="0.8" height="15.0" fill="rgb(235,60,47)" rx="2" ry="2" />
|
|
<text x="811.56" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (7 samples, 0.03%)</title><rect x="979.8" y="517" width="0.4" height="15.0" fill="rgb(222,164,45)" rx="2" ry="2" />
|
|
<text x="982.79" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="915.6" y="213" width="0.4" height="15.0" fill="rgb(216,32,15)" rx="2" ry="2" />
|
|
<text x="918.56" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MV_Sketch_update (4 samples, 0.02%)</title><rect x="1103.3" y="437" width="0.2" height="15.0" fill="rgb(240,2,33)" rx="2" ry="2" />
|
|
<text x="1106.30" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="1091.5" y="453" width="0.1" height="15.0" fill="rgb(226,46,17)" rx="2" ry="2" />
|
|
<text x="1094.50" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_d2i (7 samples, 0.03%)</title><rect x="1186.9" y="405" width="0.4" height="15.0" fill="rgb(251,63,5)" rx="2" ry="2" />
|
|
<text x="1189.93" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="1186.0" y="613" width="0.2" height="15.0" fill="rgb(251,139,14)" rx="2" ry="2" />
|
|
<text x="1189.05" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="918.4" y="549" width="0.3" height="15.0" fill="rgb(235,192,24)" rx="2" ry="2" />
|
|
<text x="921.45" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lrustream (3 samples, 0.01%)</title><rect x="918.3" y="613" width="0.1" height="15.0" fill="rgb(209,1,18)" rx="2" ry="2" />
|
|
<text x="921.27" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="911.1" y="501" width="0.2" height="15.0" fill="rgb(224,70,48)" rx="2" ry="2" />
|
|
<text x="914.13" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_primitive_new (3 samples, 0.01%)</title><rect x="908.2" y="149" width="0.2" height="15.0" fill="rgb(213,103,18)" rx="2" ry="2" />
|
|
<text x="911.18" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (85 samples, 0.42%)</title><rect x="1125.9" y="549" width="5.0" height="15.0" fill="rgb(242,194,48)" rx="2" ry="2" />
|
|
<text x="1128.89" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_req_get_struct (12 samples, 0.06%)</title><rect x="987.2" y="549" width="0.7" height="15.0" fill="rgb(224,166,39)" rx="2" ry="2" />
|
|
<text x="990.16" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="981.0" y="485" width="0.2" height="15.0" fill="rgb(252,34,52)" rx="2" ry="2" />
|
|
<text x="983.97" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (36 samples, 0.18%)</title><rect x="979.6" y="533" width="2.1" height="15.0" fill="rgb(245,1,8)" rx="2" ry="2" />
|
|
<text x="982.61" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_send_log (5 samples, 0.02%)</title><rect x="920.2" y="517" width="0.3" height="15.0" fill="rgb(241,152,38)" rx="2" ry="2" />
|
|
<text x="923.16" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (10 samples, 0.05%)</title><rect x="906.2" y="309" width="0.6" height="15.0" fill="rgb(242,214,6)" rx="2" ry="2" />
|
|
<text x="909.24" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_stream_list_free (3 samples, 0.01%)</title><rect x="941.1" y="581" width="0.2" height="15.0" fill="rgb(240,227,2)" rx="2" ry="2" />
|
|
<text x="944.09" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>project_requirement_create (2 samples, 0.01%)</title><rect x="966.8" y="549" width="0.1" height="15.0" fill="rgb(225,115,6)" rx="2" ry="2" />
|
|
<text x="969.81" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>print_spent_time (2 samples, 0.01%)</title><rect x="813.5" y="549" width="0.1" height="15.0" fill="rgb(217,36,0)" rx="2" ry="2" />
|
|
<text x="816.52" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify_udp_v6 (82 samples, 0.41%)</title><rect x="1136.0" y="613" width="4.9" height="15.0" fill="rgb(226,3,24)" rx="2" ry="2" />
|
|
<text x="1139.03" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="908.1" y="133" width="0.1" height="15.0" fill="rgb(252,211,18)" rx="2" ry="2" />
|
|
<text x="911.06" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>FS_operate (2 samples, 0.01%)</title><rect x="959.9" y="437" width="0.1" height="15.0" fill="rgb(237,118,1)" rx="2" ry="2" />
|
|
<text x="962.91" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>gtp_entry (85 samples, 0.42%)</title><rect x="907.5" y="661" width="5.0" height="15.0" fill="rgb(235,92,6)" rx="2" ry="2" />
|
|
<text x="910.47" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="991.6" y="501" width="0.2" height="15.0" fill="rgb(241,146,5)" rx="2" ry="2" />
|
|
<text x="994.64" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="951.5" y="341" width="0.1" height="15.0" fill="rgb(207,79,53)" rx="2" ry="2" />
|
|
<text x="954.48" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (4 samples, 0.02%)</title><rect x="918.5" y="501" width="0.2" height="15.0" fill="rgb(213,10,15)" rx="2" ry="2" />
|
|
<text x="921.50" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (22 samples, 0.11%)</title><rect x="918.7" y="629" width="1.3" height="15.0" fill="rgb(227,78,34)" rx="2" ry="2" />
|
|
<text x="921.74" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (25 samples, 0.12%)</title><rect x="1168.8" y="549" width="1.4" height="15.0" fill="rgb(239,114,3)" rx="2" ry="2" />
|
|
<text x="1171.77" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="1179.1" y="613" width="0.3" height="15.0" fill="rgb(244,2,48)" rx="2" ry="2" />
|
|
<text x="1182.15" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_decompressed_name (2 samples, 0.01%)</title><rect x="1184.6" y="709" width="0.1" height="15.0" fill="rgb(240,51,24)" rx="2" ry="2" />
|
|
<text x="1187.57" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_TCP_PLUG_ENTRY (7 samples, 0.03%)</title><rect x="907.5" y="533" width="0.4" height="15.0" fill="rgb(210,223,8)" rx="2" ry="2" />
|
|
<text x="910.47" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_get_child_id@plt (2 samples, 0.01%)</title><rect x="855.2" y="725" width="0.1" height="15.0" fill="rgb(222,101,39)" rx="2" ry="2" />
|
|
<text x="858.22" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator delete (3 samples, 0.01%)</title><rect x="234.3" y="741" width="0.2" height="15.0" fill="rgb(234,172,34)" rx="2" ry="2" />
|
|
<text x="237.31" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1099.3" y="277" width="0.1" height="15.0" fill="rgb(212,83,47)" rx="2" ry="2" />
|
|
<text x="1102.29" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_location (5 samples, 0.02%)</title><rect x="1180.5" y="645" width="0.3" height="15.0" fill="rgb(221,6,48)" rx="2" ry="2" />
|
|
<text x="1183.50" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (11 samples, 0.05%)</title><rect x="978.4" y="581" width="0.7" height="15.0" fill="rgb(240,88,10)" rx="2" ry="2" />
|
|
<text x="981.43" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (5 samples, 0.02%)</title><rect x="1097.0" y="437" width="0.3" height="15.0" fill="rgb(219,22,24)" rx="2" ry="2" />
|
|
<text x="1099.98" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_heap_stream_info (2 samples, 0.01%)</title><rect x="1109.3" y="501" width="0.1" height="15.0" fill="rgb(242,149,5)" rx="2" ry="2" />
|
|
<text x="1112.25" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_htable_add (7 samples, 0.03%)</title><rect x="940.3" y="629" width="0.4" height="15.0" fill="rgb(245,89,20)" rx="2" ry="2" />
|
|
<text x="943.33" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4udppkt (9 samples, 0.04%)</title><rect x="921.0" y="693" width="0.6" height="15.0" fill="rgb(215,159,27)" rx="2" ry="2" />
|
|
<text x="924.04" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_dup_pkt_identify_udp_v4 (2 samples, 0.01%)</title><rect x="983.5" y="613" width="0.1" height="15.0" fill="rgb(250,222,27)" rx="2" ry="2" />
|
|
<text x="986.50" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (20 samples, 0.10%)</title><rect x="964.9" y="517" width="1.2" height="15.0" fill="rgb(219,23,43)" rx="2" ry="2" />
|
|
<text x="967.92" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="907.3" y="517" width="0.1" height="15.0" fill="rgb(247,15,46)" rx="2" ry="2" />
|
|
<text x="910.30" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>expiry_dablooms_search (2 samples, 0.01%)</title><rect x="963.1" y="533" width="0.1" height="15.0" fill="rgb(245,177,3)" rx="2" ry="2" />
|
|
<text x="966.10" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (7 samples, 0.03%)</title><rect x="920.1" y="661" width="0.4" height="15.0" fill="rgb(205,48,39)" rx="2" ry="2" />
|
|
<text x="923.10" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (6 samples, 0.03%)</title><rect x="1135.2" y="517" width="0.4" height="15.0" fill="rgb(251,51,1)" rx="2" ry="2" />
|
|
<text x="1138.21" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (10 samples, 0.05%)</title><rect x="980.4" y="485" width="0.6" height="15.0" fill="rgb(249,117,48)" rx="2" ry="2" />
|
|
<text x="983.38" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TSG_MASTER_UDP_ENTRY (41 samples, 0.20%)</title><rect x="971.5" y="517" width="2.4" height="15.0" fill="rgb(250,7,3)" rx="2" ry="2" />
|
|
<text x="974.47" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseHttpConnection (98 samples, 0.49%)</title><rect x="1091.7" y="469" width="5.8" height="15.0" fill="rgb(218,149,48)" rx="2" ry="2" />
|
|
<text x="1094.74" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_proto_identify.so] (99 samples, 0.49%)</title><rect x="1150.7" y="565" width="5.8" height="15.0" fill="rgb(251,4,40)" rx="2" ry="2" />
|
|
<text x="1153.66" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="1186.9" y="325" width="0.4" height="15.0" fill="rgb(229,169,44)" rx="2" ry="2" />
|
|
<text x="1189.93" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (27 samples, 0.13%)</title><rect x="1168.8" y="757" width="1.6" height="15.0" fill="rgb(222,179,15)" rx="2" ry="2" />
|
|
<text x="1171.77" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="907.1" y="325" width="0.2" height="15.0" fill="rgb(225,135,12)" rx="2" ry="2" />
|
|
<text x="910.06" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>APP_SKETCH_UDP_PLUG_ENTRY (36 samples, 0.18%)</title><rect x="912.6" y="613" width="2.1" height="15.0" fill="rgb(210,166,44)" rx="2" ry="2" />
|
|
<text x="915.61" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (7 samples, 0.03%)</title><rect x="907.1" y="661" width="0.4" height="15.0" fill="rgb(248,54,25)" rx="2" ry="2" />
|
|
<text x="910.06" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithEntity (13 samples, 0.06%)</title><rect x="1096.2" y="437" width="0.8" height="15.0" fill="rgb(247,142,1)" rx="2" ry="2" />
|
|
<text x="1099.22" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="963.1" y="517" width="0.1" height="15.0" fill="rgb(223,121,43)" rx="2" ry="2" />
|
|
<text x="966.10" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (1,771 samples, 8.85%)</title><rect x="1018.8" y="581" width="104.4" height="15.0" fill="rgb(252,23,26)" rx="2" ry="2" />
|
|
<text x="1021.77" y="591.5" >dealipv4tcppkt</text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="912.0" y="533" width="0.2" height="15.0" fill="rgb(236,60,24)" rx="2" ry="2" />
|
|
<text x="915.02" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tcp_free_stream (3 samples, 0.01%)</title><rect x="911.3" y="565" width="0.2" height="15.0" fill="rgb(252,37,21)" rx="2" ry="2" />
|
|
<text x="914.31" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (8 samples, 0.04%)</title><rect x="1172.4" y="613" width="0.4" height="15.0" fill="rgb(206,40,40)" rx="2" ry="2" />
|
|
<text x="1175.36" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (41 samples, 0.20%)</title><rect x="1182.2" y="709" width="2.4" height="15.0" fill="rgb(232,34,35)" rx="2" ry="2" />
|
|
<text x="1185.16" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="979.8" y="501" width="0.4" height="15.0" fill="rgb(222,5,30)" rx="2" ry="2" />
|
|
<text x="982.79" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_subscribe_id (16 samples, 0.08%)</title><rect x="1180.8" y="645" width="0.9" height="15.0" fill="rgb(250,150,33)" rx="2" ry="2" />
|
|
<text x="1183.80" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CInflate2::fn_iDecodeHuffmanCodeBlock (4 samples, 0.02%)</title><rect x="1096.7" y="293" width="0.2" height="15.0" fill="rgb(237,114,7)" rx="2" ry="2" />
|
|
<text x="1099.69" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (14 samples, 0.07%)</title><rect x="1032.2" y="453" width="0.8" height="15.0" fill="rgb(253,124,43)" rx="2" ry="2" />
|
|
<text x="1035.22" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inet_ntop (4 samples, 0.02%)</title><rect x="917.4" y="485" width="0.2" height="15.0" fill="rgb(211,60,24)" rx="2" ry="2" />
|
|
<text x="920.38" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithEntity (6 samples, 0.03%)</title><rect x="951.7" y="453" width="0.4" height="15.0" fill="rgb(244,10,0)" rx="2" ry="2" />
|
|
<text x="954.71" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_ddos_sketch_tcpall_entry (8 samples, 0.04%)</title><rect x="1103.2" y="485" width="0.5" height="15.0" fill="rgb(232,11,1)" rx="2" ry="2" />
|
|
<text x="1106.24" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_scan_proto_addr (899 samples, 4.49%)</title><rect x="842.8" y="757" width="53.1" height="15.0" fill="rgb(230,189,10)" rx="2" ry="2" />
|
|
<text x="845.83" y="767.5" >Maat_..</text>
|
|
</g>
|
|
<g >
|
|
<title>[libprotoident.so] (92 samples, 0.46%)</title><rect x="1151.0" y="533" width="5.4" height="15.0" fill="rgb(226,225,26)" rx="2" ry="2" />
|
|
<text x="1154.01" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_location (3 samples, 0.01%)</title><rect x="1101.9" y="453" width="0.2" height="15.0" fill="rgb(208,189,44)" rx="2" ry="2" />
|
|
<text x="1104.88" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (197 samples, 0.98%)</title><rect x="1090.7" y="517" width="11.6" height="15.0" fill="rgb(247,60,4)" rx="2" ry="2" />
|
|
<text x="1093.67" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (3 samples, 0.01%)</title><rect x="1170.1" y="533" width="0.1" height="15.0" fill="rgb(206,80,28)" rx="2" ry="2" />
|
|
<text x="1173.06" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_default_xsputn (2 samples, 0.01%)</title><rect x="915.0" y="501" width="0.1" height="15.0" fill="rgb(234,129,52)" rx="2" ry="2" />
|
|
<text x="918.02" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_free (6 samples, 0.03%)</title><rect x="954.1" y="389" width="0.4" height="15.0" fill="rgb(207,57,12)" rx="2" ry="2" />
|
|
<text x="957.13" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_scan_nesting_addr (5 samples, 0.02%)</title><rect x="917.4" y="517" width="0.3" height="15.0" fill="rgb(246,199,10)" rx="2" ry="2" />
|
|
<text x="920.38" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcmp_sse4_1 (4 samples, 0.02%)</title><rect x="1155.1" y="485" width="0.3" height="15.0" fill="rgb(234,6,28)" rx="2" ry="2" />
|
|
<text x="1158.14" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (17 samples, 0.08%)</title><rect x="1141.2" y="597" width="1.0" height="15.0" fill="rgb(214,16,41)" rx="2" ry="2" />
|
|
<text x="1144.22" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_findAndDoWithRegion (5 samples, 0.02%)</title><rect x="1097.0" y="453" width="0.3" height="15.0" fill="rgb(238,180,48)" rx="2" ry="2" />
|
|
<text x="1099.98" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_i2d (3 samples, 0.01%)</title><rect x="954.9" y="341" width="0.2" height="15.0" fill="rgb(232,169,9)" rx="2" ry="2" />
|
|
<text x="957.90" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (9 samples, 0.04%)</title><rect x="907.9" y="261" width="0.5" height="15.0" fill="rgb(251,13,49)" rx="2" ry="2" />
|
|
<text x="910.89" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="1004.6" y="629" width="0.1" height="15.0" fill="rgb(212,137,26)" rx="2" ry="2" />
|
|
<text x="1007.56" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="906.9" y="485" width="0.2" height="15.0" fill="rgb(252,14,50)" rx="2" ry="2" />
|
|
<text x="909.94" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (2 samples, 0.01%)</title><rect x="943.0" y="581" width="0.1" height="15.0" fill="rgb(245,168,40)" rx="2" ry="2" />
|
|
<text x="945.98" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv6udppkt (74 samples, 0.37%)</title><rect x="809.6" y="725" width="4.4" height="15.0" fill="rgb(245,151,1)" rx="2" ry="2" />
|
|
<text x="812.62" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (731 samples, 3.65%)</title><rect x="1030.3" y="517" width="43.1" height="15.0" fill="rgb(249,193,29)" rx="2" ry="2" />
|
|
<text x="1033.28" y="527.5" >stre..</text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_table_runtime_perf_stat (3 samples, 0.01%)</title><rect x="1180.1" y="613" width="0.2" height="15.0" fill="rgb(208,110,7)" rx="2" ry="2" />
|
|
<text x="1183.09" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (5 samples, 0.02%)</title><rect x="813.6" y="661" width="0.3" height="15.0" fill="rgb(206,137,28)" rx="2" ry="2" />
|
|
<text x="816.63" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (7 samples, 0.03%)</title><rect x="910.0" y="357" width="0.4" height="15.0" fill="rgb(234,215,33)" rx="2" ry="2" />
|
|
<text x="912.95" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TLD_append (2 samples, 0.01%)</title><rect x="917.3" y="485" width="0.1" height="15.0" fill="rgb(247,5,27)" rx="2" ry="2" />
|
|
<text x="920.27" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (4 samples, 0.02%)</title><rect x="917.4" y="453" width="0.2" height="15.0" fill="rgb(241,60,54)" rx="2" ry="2" />
|
|
<text x="920.38" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="1099.3" y="309" width="0.2" height="15.0" fill="rgb(214,136,26)" rx="2" ry="2" />
|
|
<text x="1102.29" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="1176.1" y="613" width="0.3" height="15.0" fill="rgb(234,77,37)" rx="2" ry="2" />
|
|
<text x="1179.08" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="907.1" y="277" width="0.2" height="15.0" fill="rgb(209,183,12)" rx="2" ry="2" />
|
|
<text x="910.06" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CPortIndex::Find (13 samples, 0.06%)</title><rect x="903.5" y="725" width="0.8" height="15.0" fill="rgb(223,132,34)" rx="2" ry="2" />
|
|
<text x="906.52" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[librulescan.so.2.2] (7 samples, 0.03%)</title><rect x="877.4" y="693" width="0.4" height="15.0" fill="rgb(244,12,9)" rx="2" ry="2" />
|
|
<text x="880.39" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="907.1" y="309" width="0.2" height="15.0" fill="rgb(250,119,52)" rx="2" ry="2" />
|
|
<text x="910.06" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="1003.9" y="613" width="0.1" height="15.0" fill="rgb(233,74,21)" rx="2" ry="2" />
|
|
<text x="1006.85" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CStringMatch::check_match_mode (1,188 samples, 5.94%)</title><rect x="155.7" y="741" width="70.1" height="15.0" fill="rgb(254,205,5)" rx="2" ry="2" />
|
|
<text x="158.75" y="751.5" >CString..</text>
|
|
</g>
|
|
<g >
|
|
<title>MESA_stream_list_cmp (3 samples, 0.01%)</title><rect x="940.9" y="597" width="0.2" height="15.0" fill="rgb(249,146,25)" rx="2" ry="2" />
|
|
<text x="943.92" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="977.3" y="469" width="0.1" height="15.0" fill="rgb(226,104,0)" rx="2" ry="2" />
|
|
<text x="980.25" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="915.6" y="309" width="1.0" height="15.0" fill="rgb(253,221,40)" rx="2" ry="2" />
|
|
<text x="918.56" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SSL_ENTRY (7 samples, 0.03%)</title><rect x="1187.9" y="501" width="0.4" height="15.0" fill="rgb(230,53,3)" rx="2" ry="2" />
|
|
<text x="1190.94" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (7 samples, 0.03%)</title><rect x="907.5" y="517" width="0.4" height="15.0" fill="rgb(249,208,33)" rx="2" ry="2" />
|
|
<text x="910.47" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="921.7" y="597" width="0.1" height="15.0" fill="rgb(207,205,37)" rx="2" ry="2" />
|
|
<text x="924.69" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CBoolExprMatch::get_mapped_id (18 samples, 0.09%)</title><rect x="880.2" y="661" width="1.1" height="15.0" fill="rgb(215,8,16)" rx="2" ry="2" />
|
|
<text x="883.22" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (10 samples, 0.05%)</title><rect x="988.5" y="533" width="0.5" height="15.0" fill="rgb(214,79,30)" rx="2" ry="2" />
|
|
<text x="991.46" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (3 samples, 0.01%)</title><rect x="1133.8" y="549" width="0.2" height="15.0" fill="rgb(229,160,35)" rx="2" ry="2" />
|
|
<text x="1136.79" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>IEEE_8021_entry (213 samples, 1.06%)</title><rect x="907.5" y="709" width="12.5" height="15.0" fill="rgb(253,52,35)" rx="2" ry="2" />
|
|
<text x="910.47" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="907.1" y="405" width="0.2" height="15.0" fill="rgb(226,33,8)" rx="2" ry="2" />
|
|
<text x="910.06" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfprintf (5 samples, 0.02%)</title><rect x="1186.6" y="709" width="0.3" height="15.0" fill="rgb(229,30,1)" rx="2" ry="2" />
|
|
<text x="1189.64" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="975.7" y="501" width="0.1" height="15.0" fill="rgb(239,135,29)" rx="2" ry="2" />
|
|
<text x="978.72" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sprintf (4 samples, 0.02%)</title><rect x="917.4" y="469" width="0.2" height="15.0" fill="rgb(216,74,10)" rx="2" ry="2" />
|
|
<text x="920.38" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_mem_malloc (3 samples, 0.01%)</title><rect x="1079.2" y="501" width="0.1" height="15.0" fill="rgb(229,195,12)" rx="2" ry="2" />
|
|
<text x="1082.17" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ssl_releaseSslStream (2 samples, 0.01%)</title><rect x="1099.6" y="469" width="0.2" height="15.0" fill="rgb(215,39,17)" rx="2" ry="2" />
|
|
<text x="1102.64" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="1172.2" y="629" width="0.2" height="15.0" fill="rgb(236,214,16)" rx="2" ry="2" />
|
|
<text x="1175.25" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="951.5" y="389" width="0.1" height="15.0" fill="rgb(233,118,0)" rx="2" ry="2" />
|
|
<text x="954.48" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_free (3 samples, 0.01%)</title><rect x="1109.5" y="453" width="0.2" height="15.0" fill="rgb(249,82,36)" rx="2" ry="2" />
|
|
<text x="1112.49" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (8 samples, 0.04%)</title><rect x="808.6" y="645" width="0.4" height="15.0" fill="rgb(209,175,49)" rx="2" ry="2" />
|
|
<text x="811.56" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>checkstreamorder (13 samples, 0.06%)</title><rect x="967.2" y="549" width="0.8" height="15.0" fill="rgb(252,206,38)" rx="2" ry="2" />
|
|
<text x="970.22" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_template_free (3 samples, 0.01%)</title><rect x="1098.7" y="293" width="0.2" height="15.0" fill="rgb(247,0,53)" rx="2" ry="2" />
|
|
<text x="1101.70" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="957.1" y="437" width="0.1" height="15.0" fill="rgb(241,11,16)" rx="2" ry="2" />
|
|
<text x="960.08" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__irqentry_text_start (2 samples, 0.01%)</title><rect x="808.1" y="693" width="0.2" height="15.0" fill="rgb(239,83,49)" rx="2" ry="2" />
|
|
<text x="811.15" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (20 samples, 0.10%)</title><rect x="1170.9" y="645" width="1.2" height="15.0" fill="rgb(209,166,28)" rx="2" ry="2" />
|
|
<text x="1173.89" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsnprintf (6 samples, 0.03%)</title><rect x="1186.6" y="725" width="0.3" height="15.0" fill="rgb(218,119,8)" rx="2" ry="2" />
|
|
<text x="1189.58" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_doWithDefaultData (2 samples, 0.01%)</title><rect x="1174.5" y="565" width="0.2" height="15.0" fill="rgb(207,81,47)" rx="2" ry="2" />
|
|
<text x="1177.55" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process (5 samples, 0.02%)</title><rect x="917.9" y="597" width="0.3" height="15.0" fill="rgb(211,205,2)" rx="2" ry="2" />
|
|
<text x="920.91" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_set_scan_status (5 samples, 0.02%)</title><rect x="1168.4" y="581" width="0.3" height="15.0" fill="rgb(211,133,28)" rx="2" ry="2" />
|
|
<text x="1171.41" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.02%)</title><rect x="986.6" y="533" width="0.3" height="15.0" fill="rgb(210,136,51)" rx="2" ry="2" />
|
|
<text x="989.63" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="1124.9" y="533" width="0.2" height="15.0" fill="rgb(248,210,49)" rx="2" ry="2" />
|
|
<text x="1127.94" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_hierarchy_compile_mid_has_NOT_clause (2 samples, 0.01%)</title><rect x="815.7" y="741" width="0.1" height="15.0" fill="rgb(226,198,25)" rx="2" ry="2" />
|
|
<text x="818.70" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (5 samples, 0.02%)</title><rect x="915.6" y="197" width="0.3" height="15.0" fill="rgb(211,166,17)" rx="2" ry="2" />
|
|
<text x="918.56" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (5 samples, 0.02%)</title><rect x="1168.4" y="693" width="0.3" height="15.0" fill="rgb(223,175,22)" rx="2" ry="2" />
|
|
<text x="1171.41" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="920.2" y="501" width="0.1" height="15.0" fill="rgb(220,95,14)" rx="2" ry="2" />
|
|
<text x="923.16" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>plugin_process_pending (5 samples, 0.02%)</title><rect x="910.5" y="421" width="0.3" height="15.0" fill="rgb(210,80,49)" rx="2" ry="2" />
|
|
<text x="913.48" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="1003.3" y="565" width="0.1" height="15.0" fill="rgb(212,1,24)" rx="2" ry="2" />
|
|
<text x="1006.26" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__do_softirq (2 samples, 0.01%)</title><rect x="808.1" y="629" width="0.2" height="15.0" fill="rgb(211,52,16)" rx="2" ry="2" />
|
|
<text x="811.15" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (7 samples, 0.03%)</title><rect x="1136.1" y="581" width="0.5" height="15.0" fill="rgb(247,66,1)" rx="2" ry="2" />
|
|
<text x="1139.15" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dealipv4tcppkt (13 samples, 0.06%)</title><rect x="1187.9" y="597" width="0.8" height="15.0" fill="rgb(220,112,13)" rx="2" ry="2" />
|
|
<text x="1190.94" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="908.0" y="181" width="0.4" height="15.0" fill="rgb(211,152,44)" rx="2" ry="2" />
|
|
<text x="911.01" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (34 samples, 0.17%)</title><rect x="989.9" y="549" width="2.0" height="15.0" fill="rgb(223,204,15)" rx="2" ry="2" />
|
|
<text x="992.93" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp (7 samples, 0.03%)</title><rect x="1174.4" y="677" width="0.4" height="15.0" fill="rgb(211,151,29)" rx="2" ry="2" />
|
|
<text x="1177.37" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>eth_entry (63 samples, 0.31%)</title><rect x="1170.4" y="757" width="3.7" height="15.0" fill="rgb(212,109,27)" rx="2" ry="2" />
|
|
<text x="1173.42" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_tcp_allpkt (3 samples, 0.01%)</title><rect x="962.9" y="501" width="0.1" height="15.0" fill="rgb(242,100,29)" rx="2" ry="2" />
|
|
<text x="965.86" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_thread (4,173 samples, 20.86%)</title><rect x="922.1" y="741" width="246.1" height="15.0" fill="rgb(212,225,16)" rx="2" ry="2" />
|
|
<text x="925.10" y="751.5" >start_thread</text>
|
|
</g>
|
|
<g >
|
|
<title>stream_process_udp (327 samples, 1.63%)</title><rect x="984.1" y="613" width="19.3" height="15.0" fill="rgb(222,34,21)" rx="2" ry="2" />
|
|
<text x="987.09" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_analyseACompleteRegion (2 samples, 0.01%)</title><rect x="952.1" y="437" width="0.1" height="15.0" fill="rgb(251,186,6)" rx="2" ry="2" />
|
|
<text x="955.07" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ASN1_item_ex_d2i (5 samples, 0.02%)</title><rect x="1099.2" y="341" width="0.3" height="15.0" fill="rgb(246,123,17)" rx="2" ry="2" />
|
|
<text x="1102.23" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Maat_clean_status (4 samples, 0.02%)</title><rect x="1109.5" y="469" width="0.2" height="15.0" fill="rgb(212,163,46)" rx="2" ry="2" />
|
|
<text x="1112.49" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_vsprintf (4 samples, 0.02%)</title><rect x="918.0" y="469" width="0.2" height="15.0" fill="rgb(209,145,16)" rx="2" ry="2" />
|
|
<text x="920.97" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>http_callPluginField (4 samples, 0.02%)</title><rect x="1175.5" y="533" width="0.3" height="15.0" fill="rgb(236,199,54)" rx="2" ry="2" />
|
|
<text x="1178.55" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="1132.8" y="501" width="0.5" height="15.0" fill="rgb(208,109,12)" rx="2" ry="2" />
|
|
<text x="1135.85" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (2 samples, 0.01%)</title><rect x="1102.3" y="469" width="0.1" height="15.0" fill="rgb(226,167,40)" rx="2" ry="2" />
|
|
<text x="1105.29" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sapp_get_platform_opt (2 samples, 0.01%)</title><rect x="965.7" y="469" width="0.2" height="15.0" fill="rgb(235,217,44)" rx="2" ry="2" />
|
|
<text x="968.75" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[sapp] (2 samples, 0.01%)</title><rect x="808.4" y="645" width="0.1" height="15.0" fill="rgb(250,10,13)" rx="2" ry="2" />
|
|
<text x="811.38" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAhoCorasick::SearchMem (5,961 samples, 29.80%)</title><rect x="236.1" y="725" width="351.6" height="15.0" fill="rgb(219,68,43)" rx="2" ry="2" />
|
|
<text x="239.08" y="735.5" >CAhoCorasick::SearchMem</text>
|
|
</g>
|
|
<g >
|
|
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="1101.8" y="453" width="0.1" height="15.0" fill="rgb(210,190,16)" rx="2" ry="2" />
|
|
<text x="1104.76" y="463.5" ></text>
|
|
</g>
|
|
</g>
|
|
</svg>
|