Files
geedge-jira/attachment/27723/XJ-192.175-perf-cpu-6.svg
2025-09-14 22:00:20 +00:00

12849 lines
580 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="774" onload="init(evt)" viewBox="0 0 1200 774" 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="774.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="757" > </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="757" > </text>
<g id="frames">
<g >
<title>fw_ssl_entry (4 samples, 0.02%)</title><rect x="712.7" y="341" width="0.3" height="15.0" fill="rgb(223,23,25)" rx="2" ry="2" />
<text x="715.72" y="351.5" ></text>
</g>
<g >
<title>malloc_consolidate (3 samples, 0.01%)</title><rect x="365.3" y="357" width="0.1" height="15.0" fill="rgb(219,145,22)" rx="2" ry="2" />
<text x="368.25" y="367.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="346.3" y="453" width="0.1" height="15.0" fill="rgb(206,123,28)" rx="2" ry="2" />
<text x="349.26" y="463.5" ></text>
</g>
<g >
<title>[wire_graft_plug.so] (6 samples, 0.03%)</title><rect x="374.7" y="485" width="0.3" height="15.0" fill="rgb(212,194,47)" rx="2" ry="2" />
<text x="377.69" y="495.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (12 samples, 0.06%)</title><rect x="169.8" y="533" width="0.7" height="15.0" fill="rgb(245,128,28)" rx="2" ry="2" />
<text x="172.84" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="290.1" y="277" width="0.2" height="15.0" fill="rgb(241,1,21)" rx="2" ry="2" />
<text x="293.11" y="287.5" ></text>
</g>
<g >
<title>ret_from_intr (6 samples, 0.03%)</title><rect x="1177.2" y="629" width="0.4" height="15.0" fill="rgb(212,161,24)" rx="2" ry="2" />
<text x="1180.20" y="639.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (58 samples, 0.29%)</title><rect x="693.6" y="677" width="3.4" height="15.0" fill="rgb(244,228,38)" rx="2" ry="2" />
<text x="696.60" y="687.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="460.4" y="453" width="0.2" height="15.0" fill="rgb(244,2,4)" rx="2" ry="2" />
<text x="463.45" y="463.5" ></text>
</g>
<g >
<title>__do_page_fault (2 samples, 0.01%)</title><rect x="366.8" y="421" width="0.1" height="15.0" fill="rgb(205,213,32)" rx="2" ry="2" />
<text x="369.78" y="431.5" ></text>
</g>
<g >
<title>change_protection_range (10 samples, 0.05%)</title><rect x="248.8" y="389" width="0.6" height="15.0" fill="rgb(229,95,47)" rx="2" ry="2" />
<text x="251.82" y="399.5" ></text>
</g>
<g >
<title>PROT_PROCESS (39 samples, 0.19%)</title><rect x="289.6" y="373" width="2.3" height="15.0" fill="rgb(240,46,53)" rx="2" ry="2" />
<text x="292.64" y="383.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="168.8" y="453" width="0.1" height="15.0" fill="rgb(234,29,49)" rx="2" ry="2" />
<text x="171.78" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="10.1" y="533" width="0.1" height="15.0" fill="rgb(226,113,27)" rx="2" ry="2" />
<text x="13.06" y="543.5" ></text>
</g>
<g >
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="512.9" y="437" width="0.1" height="15.0" fill="rgb(208,54,46)" rx="2" ry="2" />
<text x="515.88" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="706.3" y="501" width="0.1" height="15.0" fill="rgb(242,60,34)" rx="2" ry="2" />
<text x="709.29" y="511.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (5 samples, 0.02%)</title><rect x="541.7" y="437" width="0.3" height="15.0" fill="rgb(214,159,24)" rx="2" ry="2" />
<text x="544.73" y="447.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="251.5" y="357" width="0.1" height="15.0" fill="rgb(219,31,42)" rx="2" ry="2" />
<text x="254.47" y="367.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="690.2" y="405" width="0.2" height="15.0" fill="rgb(220,140,53)" rx="2" ry="2" />
<text x="693.24" y="415.5" ></text>
</g>
<g >
<title>change_prot_numa (15 samples, 0.07%)</title><rect x="688.8" y="533" width="0.9" height="15.0" fill="rgb(233,31,23)" rx="2" ry="2" />
<text x="691.77" y="543.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="168.1" y="293" width="0.1" height="15.0" fill="rgb(216,79,21)" rx="2" ry="2" />
<text x="171.07" y="303.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="287.9" y="293" width="0.1" height="15.0" fill="rgb(243,166,26)" rx="2" ry="2" />
<text x="290.87" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="366.8" y="405" width="0.1" height="15.0" fill="rgb(242,78,2)" rx="2" ry="2" />
<text x="369.78" y="415.5" ></text>
</g>
<g >
<title>qm_malloc_default (2 samples, 0.01%)</title><rect x="708.6" y="693" width="0.1" height="15.0" fill="rgb(246,135,11)" rx="2" ry="2" />
<text x="711.59" y="703.5" ></text>
</g>
<g >
<title>plugin_process_data (5 samples, 0.02%)</title><rect x="256.3" y="341" width="0.2" height="15.0" fill="rgb(211,7,7)" rx="2" ry="2" />
<text x="259.25" y="351.5" ></text>
</g>
<g >
<title>sys_write (2 samples, 0.01%)</title><rect x="295.2" y="213" width="0.2" height="15.0" fill="rgb(211,57,18)" rx="2" ry="2" />
<text x="298.24" y="223.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="177.8" y="373" width="0.2" height="15.0" fill="rgb(247,94,23)" rx="2" ry="2" />
<text x="180.80" y="383.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="366.1" y="389" width="0.2" height="15.0" fill="rgb(223,174,38)" rx="2" ry="2" />
<text x="369.14" y="399.5" ></text>
</g>
<g >
<title>counting_bloom_add (118 samples, 0.59%)</title><rect x="404.0" y="485" width="7.0" height="15.0" fill="rgb(213,70,46)" rx="2" ry="2" />
<text x="407.00" y="495.5" ></text>
</g>
<g >
<title>printaddr (7 samples, 0.03%)</title><rect x="466.0" y="485" width="0.4" height="15.0" fill="rgb(234,129,30)" rx="2" ry="2" />
<text x="468.99" y="495.5" ></text>
</g>
<g >
<title>stream_process_tcp (8 samples, 0.04%)</title><rect x="181.8" y="677" width="0.5" height="15.0" fill="rgb(249,149,37)" rx="2" ry="2" />
<text x="184.82" y="687.5" ></text>
</g>
<g >
<title>stream_process (56 samples, 0.28%)</title><rect x="693.7" y="613" width="3.3" height="15.0" fill="rgb(218,203,32)" rx="2" ry="2" />
<text x="696.66" y="623.5" ></text>
</g>
<g >
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (18 samples, 0.09%)</title><rect x="372.2" y="421" width="1.0" height="15.0" fill="rgb(217,184,47)" rx="2" ry="2" />
<text x="375.15" y="431.5" ></text>
</g>
<g >
<title>PROT_PROCESS (158 samples, 0.79%)</title><rect x="697.2" y="661" width="9.3" height="15.0" fill="rgb(227,145,21)" rx="2" ry="2" />
<text x="700.20" y="671.5" ></text>
</g>
<g >
<title>CIntervalMatch::search_rule (10 samples, 0.05%)</title><rect x="112.6" y="645" width="0.6" height="15.0" fill="rgb(223,88,21)" rx="2" ry="2" />
<text x="115.63" y="655.5" ></text>
</g>
<g >
<title>[libmarsio.so.4.3] (139 samples, 0.69%)</title><rect x="206.4" y="645" width="8.2" height="15.0" fill="rgb(253,146,33)" rx="2" ry="2" />
<text x="209.35" y="655.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="291.3" y="245" width="0.3" height="15.0" fill="rgb(246,10,38)" rx="2" ry="2" />
<text x="294.35" y="255.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="172.9" y="277" width="0.4" height="15.0" fill="rgb(248,24,47)" rx="2" ry="2" />
<text x="175.85" y="287.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="99.7" y="533" width="0.1" height="15.0" fill="rgb(217,99,30)" rx="2" ry="2" />
<text x="102.71" y="543.5" ></text>
</g>
<g >
<title>__printf_fp (10 samples, 0.05%)</title><rect x="467.3" y="373" width="0.6" height="15.0" fill="rgb(233,133,47)" rx="2" ry="2" />
<text x="470.35" y="383.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (13 samples, 0.06%)</title><rect x="250.6" y="325" width="0.8" height="15.0" fill="rgb(233,160,3)" rx="2" ry="2" />
<text x="253.65" y="335.5" ></text>
</g>
<g >
<title>tsg_record_ssl_entry (9 samples, 0.04%)</title><rect x="329.4" y="325" width="0.6" height="15.0" fill="rgb(211,169,47)" rx="2" ry="2" />
<text x="332.45" y="335.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (7 samples, 0.03%)</title><rect x="693.7" y="581" width="0.4" height="15.0" fill="rgb(213,190,29)" rx="2" ry="2" />
<text x="696.66" y="591.5" ></text>
</g>
<g >
<title>OBJ_obj2txt (2 samples, 0.01%)</title><rect x="254.8" y="373" width="0.2" height="15.0" fill="rgb(231,207,43)" rx="2" ry="2" />
<text x="257.84" y="383.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (16 samples, 0.08%)</title><rect x="299.4" y="309" width="0.9" height="15.0" fill="rgb(248,6,36)" rx="2" ry="2" />
<text x="302.37" y="319.5" ></text>
</g>
<g >
<title>vfprintf (4 samples, 0.02%)</title><rect x="182.4" y="565" width="0.2" height="15.0" fill="rgb(208,210,14)" rx="2" ry="2" />
<text x="185.41" y="575.5" ></text>
</g>
<g >
<title>rulescan_search (53 samples, 0.26%)</title><rect x="107.7" y="677" width="3.1" height="15.0" fill="rgb(247,134,42)" rx="2" ry="2" />
<text x="110.67" y="687.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (24 samples, 0.12%)</title><rect x="348.4" y="421" width="1.5" height="15.0" fill="rgb(249,210,40)" rx="2" ry="2" />
<text x="351.44" y="431.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="306.9" y="325" width="0.1" height="15.0" fill="rgb(247,182,31)" rx="2" ry="2" />
<text x="309.86" y="335.5" ></text>
</g>
<g >
<title>__mbrtowc (2 samples, 0.01%)</title><rect x="695.5" y="373" width="0.1" height="15.0" fill="rgb(245,11,35)" rx="2" ry="2" />
<text x="698.49" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (7 samples, 0.03%)</title><rect x="142.4" y="597" width="0.4" height="15.0" fill="rgb(210,175,11)" rx="2" ry="2" />
<text x="145.42" y="607.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="287.1" y="357" width="0.3" height="15.0" fill="rgb(206,38,41)" rx="2" ry="2" />
<text x="290.10" y="367.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (4 samples, 0.02%)</title><rect x="696.6" y="405" width="0.2" height="15.0" fill="rgb(249,159,5)" rx="2" ry="2" />
<text x="699.61" y="415.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="166.1" y="341" width="0.1" height="15.0" fill="rgb(210,131,12)" rx="2" ry="2" />
<text x="169.07" y="351.5" ></text>
</g>
<g >
<title>do_page_fault (3 samples, 0.01%)</title><rect x="105.3" y="597" width="0.1" height="15.0" fill="rgb(239,224,49)" rx="2" ry="2" />
<text x="108.26" y="607.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (12 samples, 0.06%)</title><rect x="172.1" y="421" width="0.8" height="15.0" fill="rgb(250,187,36)" rx="2" ry="2" />
<text x="175.14" y="431.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="294.8" y="293" width="0.1" height="15.0" fill="rgb(206,7,10)" rx="2" ry="2" />
<text x="297.83" y="303.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="141.8" y="613" width="0.1" height="15.0" fill="rgb(250,25,9)" rx="2" ry="2" />
<text x="144.77" y="623.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="395.7" y="357" width="0.2" height="15.0" fill="rgb(215,134,22)" rx="2" ry="2" />
<text x="398.69" y="367.5" ></text>
</g>
<g >
<title>pthread_spin_lock (7 samples, 0.03%)</title><rect x="708.2" y="693" width="0.4" height="15.0" fill="rgb(242,165,9)" rx="2" ry="2" />
<text x="711.17" y="703.5" ></text>
</g>
<g >
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="485.0" y="517" width="0.2" height="15.0" fill="rgb(207,120,26)" rx="2" ry="2" />
<text x="488.04" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="328.2" y="389" width="0.1" height="15.0" fill="rgb(234,38,23)" rx="2" ry="2" />
<text x="331.21" y="399.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="288.6" y="309" width="0.4" height="15.0" fill="rgb(225,207,41)" rx="2" ry="2" />
<text x="291.63" y="319.5" ></text>
</g>
<g >
<title>rdk:broker64 (2 samples, 0.01%)</title><rect x="15.2" y="709" width="0.2" height="15.0" fill="rgb(212,93,7)" rx="2" ry="2" />
<text x="18.25" y="719.5" ></text>
</g>
<g >
<title>project_req_get_struct (6 samples, 0.03%)</title><rect x="477.0" y="469" width="0.3" height="15.0" fill="rgb(208,60,30)" rx="2" ry="2" />
<text x="479.96" y="479.5" ></text>
</g>
<g >
<title>eth_entry (46 samples, 0.23%)</title><rect x="166.1" y="645" width="2.7" height="15.0" fill="rgb(212,64,31)" rx="2" ry="2" />
<text x="169.07" y="655.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (9 samples, 0.04%)</title><rect x="318.3" y="181" width="0.5" height="15.0" fill="rgb(229,33,12)" rx="2" ry="2" />
<text x="321.30" y="191.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="690.0" y="661" width="0.2" height="15.0" fill="rgb(206,149,44)" rx="2" ry="2" />
<text x="693.01" y="671.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="179.5" y="421" width="0.1" height="15.0" fill="rgb(212,153,0)" rx="2" ry="2" />
<text x="182.46" y="431.5" ></text>
</g>
<g >
<title>ASN1_template_free (9 samples, 0.04%)</title><rect x="324.9" y="293" width="0.5" height="15.0" fill="rgb(250,39,40)" rx="2" ry="2" />
<text x="327.91" y="303.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (10 samples, 0.05%)</title><rect x="548.7" y="565" width="0.6" height="15.0" fill="rgb(228,63,12)" rx="2" ry="2" />
<text x="551.74" y="575.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (46 samples, 0.23%)</title><rect x="690.2" y="565" width="2.7" height="15.0" fill="rgb(238,144,20)" rx="2" ry="2" />
<text x="693.18" y="575.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="168.3" y="309" width="0.1" height="15.0" fill="rgb(216,47,26)" rx="2" ry="2" />
<text x="171.31" y="319.5" ></text>
</g>
<g >
<title>ASN1_STRING_set (3 samples, 0.01%)</title><rect x="255.0" y="197" width="0.1" height="15.0" fill="rgb(206,220,26)" rx="2" ry="2" />
<text x="257.95" y="207.5" ></text>
</g>
<g >
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="168.3" y="437" width="0.1" height="15.0" fill="rgb(212,126,54)" rx="2" ry="2" />
<text x="171.31" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="309.7" y="437" width="0.3" height="15.0" fill="rgb(240,139,19)" rx="2" ry="2" />
<text x="312.75" y="447.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="174.2" y="437" width="0.2" height="15.0" fill="rgb(225,183,13)" rx="2" ry="2" />
<text x="177.21" y="447.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_serve (4 samples, 0.02%)</title><rect x="14.7" y="597" width="0.2" height="15.0" fill="rgb(234,228,37)" rx="2" ry="2" />
<text x="17.66" y="607.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.03%)</title><rect x="324.0" y="261" width="0.4" height="15.0" fill="rgb(249,45,7)" rx="2" ry="2" />
<text x="327.02" y="271.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (28 samples, 0.14%)</title><rect x="252.4" y="245" width="1.6" height="15.0" fill="rgb(229,57,50)" rx="2" ry="2" />
<text x="255.36" y="255.5" ></text>
</g>
<g >
<title>set_transport_addr (17 samples, 0.08%)</title><rect x="441.6" y="549" width="1.0" height="15.0" fill="rgb(243,23,41)" rx="2" ry="2" />
<text x="444.63" y="559.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="694.1" y="501" width="0.1" height="15.0" fill="rgb(225,213,10)" rx="2" ry="2" />
<text x="697.08" y="511.5" ></text>
</g>
<g >
<title>PROT_PROCESS (5 samples, 0.02%)</title><rect x="173.7" y="437" width="0.3" height="15.0" fill="rgb(229,156,25)" rx="2" ry="2" />
<text x="176.68" y="447.5" ></text>
</g>
<g >
<title>del_stream_by_time (3 samples, 0.01%)</title><rect x="693.0" y="613" width="0.1" height="15.0" fill="rgb(226,141,1)" rx="2" ry="2" />
<text x="695.96" y="623.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="369.5" y="453" width="0.2" height="15.0" fill="rgb(206,221,43)" rx="2" ry="2" />
<text x="372.50" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="320.8" y="133" width="0.2" height="15.0" fill="rgb(213,107,6)" rx="2" ry="2" />
<text x="323.84" y="143.5" ></text>
</g>
<g >
<title>process_one_work (2 samples, 0.01%)</title><rect x="10.1" y="645" width="0.1" height="15.0" fill="rgb(223,119,3)" rx="2" ry="2" />
<text x="13.06" y="655.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="694.3" y="389" width="0.1" height="15.0" fill="rgb(229,176,6)" rx="2" ry="2" />
<text x="697.31" y="399.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (2 samples, 0.01%)</title><rect x="182.5" y="549" width="0.1" height="15.0" fill="rgb(209,41,24)" rx="2" ry="2" />
<text x="185.52" y="559.5" ></text>
</g>
<g >
<title>[sapp] (8,289 samples, 41.43%)</title><rect x="200.7" y="661" width="489.0" height="15.0" fill="rgb(253,172,40)" rx="2" ry="2" />
<text x="203.75" y="671.5" >[sapp]</text>
</g>
<g >
<title>OBJ_dup (5 samples, 0.02%)</title><rect x="322.0" y="229" width="0.3" height="15.0" fill="rgb(214,189,16)" rx="2" ry="2" />
<text x="324.96" y="239.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (23 samples, 0.11%)</title><rect x="170.7" y="341" width="1.3" height="15.0" fill="rgb(247,63,25)" rx="2" ry="2" />
<text x="173.67" y="351.5" ></text>
</g>
<g >
<title>Maat_scan_proto_addr (3 samples, 0.01%)</title><rect x="456.8" y="469" width="0.2" height="15.0" fill="rgb(244,71,25)" rx="2" ry="2" />
<text x="459.85" y="479.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (4 samples, 0.02%)</title><rect x="394.2" y="453" width="0.2" height="15.0" fill="rgb(244,154,13)" rx="2" ry="2" />
<text x="397.21" y="463.5" ></text>
</g>
<g >
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="703.0" y="549" width="0.5" height="15.0" fill="rgb(240,185,25)" rx="2" ry="2" />
<text x="705.98" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="168.8" y="373" width="0.1" height="15.0" fill="rgb(239,24,6)" rx="2" ry="2" />
<text x="171.78" y="383.5" ></text>
</g>
<g >
<title>TLD_append (4 samples, 0.02%)</title><rect x="545.3" y="469" width="0.2" height="15.0" fill="rgb(230,174,17)" rx="2" ry="2" />
<text x="548.26" y="479.5" ></text>
</g>
<g >
<title>raw_ip_frag_list_stream_attach (6 samples, 0.03%)</title><rect x="443.0" y="533" width="0.3" height="15.0" fill="rgb(226,57,27)" rx="2" ry="2" />
<text x="445.99" y="543.5" ></text>
</g>
<g >
<title>file_is_tar (2 samples, 0.01%)</title><rect x="695.6" y="357" width="0.1" height="15.0" fill="rgb(208,107,17)" rx="2" ry="2" />
<text x="698.61" y="367.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="292.3" y="341" width="0.2" height="15.0" fill="rgb(213,16,48)" rx="2" ry="2" />
<text x="295.35" y="351.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_by_id (60 samples, 0.30%)</title><rect x="120.8" y="661" width="3.6" height="15.0" fill="rgb(237,226,51)" rx="2" ry="2" />
<text x="123.83" y="671.5" ></text>
</g>
<g >
<title>plugin_process_close (23 samples, 0.11%)</title><rect x="170.7" y="437" width="1.3" height="15.0" fill="rgb(254,132,33)" rx="2" ry="2" />
<text x="173.67" y="447.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (4 samples, 0.02%)</title><rect x="276.5" y="405" width="0.2" height="15.0" fill="rgb(208,34,13)" rx="2" ry="2" />
<text x="279.48" y="415.5" ></text>
</g>
<g >
<title>tsg_record_ssl_entry (13 samples, 0.06%)</title><rect x="330.6" y="341" width="0.7" height="15.0" fill="rgb(219,213,21)" rx="2" ry="2" />
<text x="333.57" y="351.5" ></text>
</g>
<g >
<title>plugin_call_appentry (97 samples, 0.48%)</title><rect x="700.8" y="629" width="5.7" height="15.0" fill="rgb(244,170,52)" rx="2" ry="2" />
<text x="703.80" y="639.5" ></text>
</g>
<g >
<title>[unknown] (306 samples, 1.53%)</title><rect x="182.7" y="693" width="18.0" height="15.0" fill="rgb(239,142,1)" rx="2" ry="2" />
<text x="185.70" y="703.5" ></text>
</g>
<g >
<title>stream_process (16 samples, 0.08%)</title><rect x="178.3" y="597" width="1.0" height="15.0" fill="rgb(243,152,12)" rx="2" ry="2" />
<text x="181.34" y="607.5" ></text>
</g>
<g >
<title>start_thread (2 samples, 0.01%)</title><rect x="15.8" y="677" width="0.2" height="15.0" fill="rgb(234,221,3)" rx="2" ry="2" />
<text x="18.84" y="687.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (2 samples, 0.01%)</title><rect x="12.9" y="645" width="0.1" height="15.0" fill="rgb(245,48,4)" rx="2" ry="2" />
<text x="15.89" y="655.5" ></text>
</g>
<g >
<title>MV_Sketch_update (6 samples, 0.03%)</title><rect x="379.2" y="421" width="0.3" height="15.0" fill="rgb(207,72,29)" rx="2" ry="2" />
<text x="382.17" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="704.9" y="501" width="0.1" height="15.0" fill="rgb(235,216,11)" rx="2" ry="2" />
<text x="707.87" y="511.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_mark_v4 (10 samples, 0.05%)</title><rect x="495.2" y="549" width="0.6" height="15.0" fill="rgb(231,137,34)" rx="2" ry="2" />
<text x="498.19" y="559.5" ></text>
</g>
<g >
<title>grab_mid (180 samples, 0.90%)</title><rect x="127.6" y="677" width="10.6" height="15.0" fill="rgb(234,77,1)" rx="2" ry="2" />
<text x="130.61" y="687.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="691.0" y="453" width="0.1" height="15.0" fill="rgb(234,226,16)" rx="2" ry="2" />
<text x="693.95" y="463.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="712.5" y="197" width="0.2" height="15.0" fill="rgb(243,210,50)" rx="2" ry="2" />
<text x="715.54" y="207.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (4 samples, 0.02%)</title><rect x="180.0" y="581" width="0.3" height="15.0" fill="rgb(217,147,51)" rx="2" ry="2" />
<text x="183.05" y="591.5" ></text>
</g>
<g >
<title>stream_process (24 samples, 0.12%)</title><rect x="176.0" y="565" width="1.5" height="15.0" fill="rgb(211,58,25)" rx="2" ry="2" />
<text x="179.04" y="575.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="392.0" y="341" width="0.1" height="15.0" fill="rgb(236,38,2)" rx="2" ry="2" />
<text x="395.03" y="351.5" ></text>
</g>
<g >
<title>sapp_fs2_fuzzy_latency_update_per_entry (2 samples, 0.01%)</title><rect x="396.0" y="453" width="0.2" height="15.0" fill="rgb(224,141,8)" rx="2" ry="2" />
<text x="399.04" y="463.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (2 samples, 0.01%)</title><rect x="379.3" y="389" width="0.2" height="15.0" fill="rgb(208,52,23)" rx="2" ry="2" />
<text x="382.35" y="399.5" ></text>
</g>
<g >
<title>CZipFormat::AddOneSection (2 samples, 0.01%)</title><rect x="295.4" y="325" width="0.1" height="15.0" fill="rgb(253,36,18)" rx="2" ry="2" />
<text x="298.42" y="335.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (24 samples, 0.12%)</title><rect x="174.6" y="533" width="1.4" height="15.0" fill="rgb(245,179,19)" rx="2" ry="2" />
<text x="177.62" y="543.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="538.0" y="453" width="0.1" height="15.0" fill="rgb(244,209,24)" rx="2" ry="2" />
<text x="541.01" y="463.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="174.1" y="453" width="0.1" height="15.0" fill="rgb(242,225,50)" rx="2" ry="2" />
<text x="177.09" y="463.5" ></text>
</g>
<g >
<title>do_sys_poll (2 samples, 0.01%)</title><rect x="10.8" y="629" width="0.1" height="15.0" fill="rgb(242,57,42)" rx="2" ry="2" />
<text x="13.83" y="639.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (5 samples, 0.02%)</title><rect x="328.9" y="341" width="0.3" height="15.0" fill="rgb(210,202,45)" rx="2" ry="2" />
<text x="331.86" y="351.5" ></text>
</g>
<g >
<title>rdk:broker8 (3 samples, 0.01%)</title><rect x="16.4" y="709" width="0.1" height="15.0" fill="rgb(246,49,4)" rx="2" ry="2" />
<text x="19.37" y="719.5" ></text>
</g>
<g >
<title>CIPv4Match::search_rule (2 samples, 0.01%)</title><rect x="125.4" y="629" width="0.1" height="15.0" fill="rgb(239,71,37)" rx="2" ry="2" />
<text x="128.43" y="639.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="696.0" y="437" width="0.1" height="15.0" fill="rgb(205,110,18)" rx="2" ry="2" />
<text x="699.02" y="447.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_new (3 samples, 0.01%)</title><rect x="102.6" y="661" width="0.2" height="15.0" fill="rgb(223,24,53)" rx="2" ry="2" />
<text x="105.60" y="671.5" ></text>
</g>
<g >
<title>mirror_record_link_info_tcpall_entry_raw (2 samples, 0.01%)</title><rect x="469.8" y="501" width="0.1" height="15.0" fill="rgb(242,175,54)" rx="2" ry="2" />
<text x="472.77" y="511.5" ></text>
</g>
<g >
<title>stream_bridge_async_data_get (2 samples, 0.01%)</title><rect x="167.7" y="309" width="0.1" height="15.0" fill="rgb(239,6,41)" rx="2" ry="2" />
<text x="170.72" y="319.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (2 samples, 0.01%)</title><rect x="11.5" y="661" width="0.2" height="15.0" fill="rgb(210,202,43)" rx="2" ry="2" />
<text x="14.53" y="671.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="301.7" y="389" width="0.1" height="15.0" fill="rgb(243,99,54)" rx="2" ry="2" />
<text x="304.67" y="399.5" ></text>
</g>
<g >
<title>http_doWithEntity (3 samples, 0.01%)</title><rect x="169.0" y="469" width="0.2" height="15.0" fill="rgb(244,49,54)" rx="2" ry="2" />
<text x="172.02" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="294.1" y="293" width="0.7" height="15.0" fill="rgb(234,103,15)" rx="2" ry="2" />
<text x="297.12" y="303.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (5 samples, 0.02%)</title><rect x="179.6" y="581" width="0.3" height="15.0" fill="rgb(229,21,41)" rx="2" ry="2" />
<text x="182.57" y="591.5" ></text>
</g>
<g >
<title>get_rr_str2json (9 samples, 0.04%)</title><rect x="700.3" y="581" width="0.5" height="15.0" fill="rgb(211,144,14)" rx="2" ry="2" />
<text x="703.27" y="591.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (32 samples, 0.16%)</title><rect x="360.6" y="421" width="1.9" height="15.0" fill="rgb(207,225,4)" rx="2" ry="2" />
<text x="363.59" y="431.5" ></text>
</g>
<g >
<title>[http.so] (3 samples, 0.01%)</title><rect x="292.3" y="437" width="0.2" height="15.0" fill="rgb(214,172,22)" rx="2" ry="2" />
<text x="295.29" y="447.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="173.2" y="69" width="0.1" height="15.0" fill="rgb(254,174,49)" rx="2" ry="2" />
<text x="176.20" y="79.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (2 samples, 0.01%)</title><rect x="10.9" y="645" width="0.2" height="15.0" fill="rgb(232,219,54)" rx="2" ry="2" />
<text x="13.94" y="655.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (6 samples, 0.03%)</title><rect x="694.2" y="405" width="0.3" height="15.0" fill="rgb(215,202,30)" rx="2" ry="2" />
<text x="697.19" y="415.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="397.2" y="389" width="0.1" height="15.0" fill="rgb(235,104,41)" rx="2" ry="2" />
<text x="400.16" y="399.5" ></text>
</g>
<g >
<title>vfs_write (30 samples, 0.15%)</title><rect x="190.4" y="629" width="1.8" height="15.0" fill="rgb(232,59,14)" rx="2" ry="2" />
<text x="193.43" y="639.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="643.0" y="517" width="0.1" height="15.0" fill="rgb(251,157,19)" rx="2" ry="2" />
<text x="646.00" y="527.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (5 samples, 0.02%)</title><rect x="287.1" y="341" width="0.3" height="15.0" fill="rgb(226,87,23)" rx="2" ry="2" />
<text x="290.10" y="351.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="288.9" y="261" width="0.1" height="15.0" fill="rgb(231,65,36)" rx="2" ry="2" />
<text x="291.87" y="271.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (2 samples, 0.01%)</title><rect x="141.9" y="661" width="0.1" height="15.0" fill="rgb(242,160,42)" rx="2" ry="2" />
<text x="144.88" y="671.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (2 samples, 0.01%)</title><rect x="712.5" y="437" width="0.2" height="15.0" fill="rgb(219,81,38)" rx="2" ry="2" />
<text x="715.54" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="329.2" y="373" width="0.1" height="15.0" fill="rgb(214,32,10)" rx="2" ry="2" />
<text x="332.21" y="383.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="171.6" y="277" width="0.2" height="15.0" fill="rgb(238,197,52)" rx="2" ry="2" />
<text x="174.61" y="287.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="478.9" y="453" width="0.1" height="15.0" fill="rgb(246,119,50)" rx="2" ry="2" />
<text x="481.85" y="463.5" ></text>
</g>
<g >
<title>BIO_vsnprintf (2 samples, 0.01%)</title><rect x="254.8" y="341" width="0.2" height="15.0" fill="rgb(250,225,51)" rx="2" ry="2" />
<text x="257.84" y="351.5" ></text>
</g>
<g >
<title>malloc (6 samples, 0.03%)</title><rect x="342.7" y="437" width="0.4" height="15.0" fill="rgb(245,185,16)" rx="2" ry="2" />
<text x="345.72" y="447.5" ></text>
</g>
<g >
<title>del_stream_by_time (10 samples, 0.05%)</title><rect x="177.5" y="581" width="0.5" height="15.0" fill="rgb(248,216,6)" rx="2" ry="2" />
<text x="180.45" y="591.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="256.8" y="469" width="0.1" height="15.0" fill="rgb(239,72,47)" rx="2" ry="2" />
<text x="259.78" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="198.6" y="677" width="0.1" height="15.0" fill="rgb(212,198,7)" rx="2" ry="2" />
<text x="201.57" y="687.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="301.8" y="405" width="0.2" height="15.0" fill="rgb(215,101,43)" rx="2" ry="2" />
<text x="304.79" y="415.5" ></text>
</g>
<g >
<title>_IO_default_uflow (3 samples, 0.01%)</title><rect x="468.4" y="373" width="0.1" height="15.0" fill="rgb(210,44,1)" rx="2" ry="2" />
<text x="471.35" y="383.5" ></text>
</g>
<g >
<title>http_resetHttpStream (4 samples, 0.02%)</title><rect x="306.2" y="453" width="0.2" height="15.0" fill="rgb(244,89,26)" rx="2" ry="2" />
<text x="309.21" y="463.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (5 samples, 0.02%)</title><rect x="259.5" y="501" width="0.3" height="15.0" fill="rgb(217,76,47)" rx="2" ry="2" />
<text x="262.50" y="511.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="690.5" y="373" width="0.2" height="15.0" fill="rgb(249,107,22)" rx="2" ry="2" />
<text x="693.54" y="383.5" ></text>
</g>
<g >
<title>sapp_fs2_fuzzy_latency_update_per_entry (2 samples, 0.01%)</title><rect x="257.0" y="469" width="0.1" height="15.0" fill="rgb(242,109,5)" rx="2" ry="2" />
<text x="260.02" y="479.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (2 samples, 0.01%)</title><rect x="15.2" y="645" width="0.2" height="15.0" fill="rgb(209,92,28)" rx="2" ry="2" />
<text x="18.25" y="655.5" ></text>
</g>
<g >
<title>TLD_append (10 samples, 0.05%)</title><rect x="330.6" y="325" width="0.6" height="15.0" fill="rgb(213,181,0)" rx="2" ry="2" />
<text x="333.63" y="335.5" ></text>
</g>
<g >
<title>file_trycdf (2 samples, 0.01%)</title><rect x="693.4" y="581" width="0.1" height="15.0" fill="rgb(209,212,1)" rx="2" ry="2" />
<text x="696.43" y="591.5" ></text>
</g>
<g >
<title>checkstreamorder (11 samples, 0.05%)</title><rect x="389.6" y="517" width="0.7" height="15.0" fill="rgb(251,216,15)" rx="2" ry="2" />
<text x="392.61" y="527.5" ></text>
</g>
<g >
<title>set_session_attributes (4 samples, 0.02%)</title><rect x="703.9" y="533" width="0.2" height="15.0" fill="rgb(218,173,38)" rx="2" ry="2" />
<text x="706.87" y="543.5" ></text>
</g>
<g >
<title>ASN1_STRING_type_new (4 samples, 0.02%)</title><rect x="321.5" y="213" width="0.2" height="15.0" fill="rgb(231,220,42)" rx="2" ry="2" />
<text x="324.49" y="223.5" ></text>
</g>
<g >
<title>rulescan_searchstream (29 samples, 0.14%)</title><rect x="125.3" y="645" width="1.7" height="15.0" fill="rgb(210,57,6)" rx="2" ry="2" />
<text x="128.31" y="655.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (17 samples, 0.08%)</title><rect x="166.3" y="501" width="1.0" height="15.0" fill="rgb(251,82,1)" rx="2" ry="2" />
<text x="169.30" y="511.5" ></text>
</g>
<g >
<title>http_doWithACompleteRegion (17 samples, 0.08%)</title><rect x="695.8" y="517" width="1.0" height="15.0" fill="rgb(254,212,9)" rx="2" ry="2" />
<text x="698.85" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (19 samples, 0.09%)</title><rect x="324.8" y="309" width="1.2" height="15.0" fill="rgb(235,156,48)" rx="2" ry="2" />
<text x="327.85" y="319.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="301.7" y="341" width="0.1" height="15.0" fill="rgb(251,133,19)" rx="2" ry="2" />
<text x="304.67" y="351.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="287.1" y="309" width="0.3" height="15.0" fill="rgb(246,20,44)" rx="2" ry="2" />
<text x="290.10" y="319.5" ></text>
</g>
<g >
<title>stream_make_hash (2 samples, 0.01%)</title><rect x="493.1" y="549" width="0.1" height="15.0" fill="rgb(228,140,38)" rx="2" ry="2" />
<text x="496.12" y="559.5" ></text>
</g>
<g >
<title>TLD_append (15 samples, 0.07%)</title><rect x="357.7" y="437" width="0.9" height="15.0" fill="rgb(235,5,35)" rx="2" ry="2" />
<text x="360.70" y="447.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="359.1" y="405" width="0.2" height="15.0" fill="rgb(232,44,0)" rx="2" ry="2" />
<text x="362.06" y="415.5" ></text>
</g>
<g >
<title>http_doWithStartLine (4 samples, 0.02%)</title><rect x="179.3" y="565" width="0.3" height="15.0" fill="rgb(212,137,52)" rx="2" ry="2" />
<text x="182.34" y="575.5" ></text>
</g>
<g >
<title>cJSON_CreateNumber (2 samples, 0.01%)</title><rect x="538.0" y="469" width="0.1" height="15.0" fill="rgb(251,23,22)" rx="2" ry="2" />
<text x="541.01" y="479.5" ></text>
</g>
<g >
<title>sprintf (15 samples, 0.07%)</title><rect x="701.7" y="501" width="0.9" height="15.0" fill="rgb(209,40,51)" rx="2" ry="2" />
<text x="704.69" y="511.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (211 samples, 1.05%)</title><rect x="355.1" y="469" width="12.5" height="15.0" fill="rgb(219,197,46)" rx="2" ry="2" />
<text x="358.11" y="479.5" ></text>
</g>
<g >
<title>stream_process_tcp (3 samples, 0.01%)</title><rect x="168.8" y="645" width="0.2" height="15.0" fill="rgb(209,87,30)" rx="2" ry="2" />
<text x="171.78" y="655.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (2 samples, 0.01%)</title><rect x="168.3" y="453" width="0.1" height="15.0" fill="rgb(207,193,1)" rx="2" ry="2" />
<text x="171.31" y="463.5" ></text>
</g>
<g >
<title>ret_from_fork (2 samples, 0.01%)</title><rect x="10.1" y="693" width="0.1" height="15.0" fill="rgb(225,100,53)" rx="2" ry="2" />
<text x="13.06" y="703.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (115 samples, 0.57%)</title><rect x="183.5" y="629" width="6.8" height="15.0" fill="rgb(227,207,44)" rx="2" ry="2" />
<text x="186.53" y="639.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (9 samples, 0.04%)</title><rect x="169.2" y="453" width="0.5" height="15.0" fill="rgb(217,165,3)" rx="2" ry="2" />
<text x="172.19" y="463.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_new (47 samples, 0.23%)</title><rect x="128.3" y="661" width="2.8" height="15.0" fill="rgb(223,205,37)" rx="2" ry="2" />
<text x="131.32" y="671.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (28 samples, 0.14%)</title><rect x="643.4" y="629" width="1.6" height="15.0" fill="rgb(207,34,9)" rx="2" ry="2" />
<text x="646.35" y="639.5" ></text>
</g>
<g >
<title>ASN1_primitive_free (3 samples, 0.01%)</title><rect x="254.5" y="261" width="0.2" height="15.0" fill="rgb(249,118,8)" rx="2" ry="2" />
<text x="257.48" y="271.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (7 samples, 0.03%)</title><rect x="180.7" y="517" width="0.4" height="15.0" fill="rgb(234,22,15)" rx="2" ry="2" />
<text x="183.69" y="527.5" ></text>
</g>
<g >
<title>tsg_record_ssl_entry (9 samples, 0.04%)</title><rect x="315.5" y="341" width="0.5" height="15.0" fill="rgb(233,8,32)" rx="2" ry="2" />
<text x="318.47" y="351.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="253.7" y="101" width="0.1" height="15.0" fill="rgb(254,44,41)" rx="2" ry="2" />
<text x="256.66" y="111.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="708.0" y="677" width="0.1" height="15.0" fill="rgb(215,88,9)" rx="2" ry="2" />
<text x="711.00" y="687.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="361.7" y="389" width="0.2" height="15.0" fill="rgb(238,221,53)" rx="2" ry="2" />
<text x="364.65" y="399.5" ></text>
</g>
<g >
<title>page_fault (2 samples, 0.01%)</title><rect x="393.2" y="421" width="0.1" height="15.0" fill="rgb(233,20,7)" rx="2" ry="2" />
<text x="396.21" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="172.9" y="181" width="0.4" height="15.0" fill="rgb(207,206,11)" rx="2" ry="2" />
<text x="175.85" y="191.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new (7 samples, 0.03%)</title><rect x="294.9" y="293" width="0.5" height="15.0" fill="rgb(216,33,2)" rx="2" ry="2" />
<text x="297.94" y="303.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="693.3" y="645" width="0.2" height="15.0" fill="rgb(227,17,18)" rx="2" ry="2" />
<text x="696.25" y="655.5" ></text>
</g>
<g >
<title>__clone (2 samples, 0.01%)</title><rect x="10.9" y="693" width="0.2" height="15.0" fill="rgb(236,215,11)" rx="2" ry="2" />
<text x="13.94" y="703.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="168.1" y="69" width="0.1" height="15.0" fill="rgb(254,30,7)" rx="2" ry="2" />
<text x="171.07" y="79.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (13 samples, 0.06%)</title><rect x="512.4" y="517" width="0.8" height="15.0" fill="rgb(248,70,51)" rx="2" ry="2" />
<text x="515.41" y="527.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (5 samples, 0.02%)</title><rect x="322.0" y="213" width="0.3" height="15.0" fill="rgb(247,106,2)" rx="2" ry="2" />
<text x="324.96" y="223.5" ></text>
</g>
<g >
<title>stream_process_tcp (121 samples, 0.60%)</title><rect x="250.4" y="517" width="7.1" height="15.0" fill="rgb(222,171,19)" rx="2" ry="2" />
<text x="253.41" y="527.5" ></text>
</g>
<g >
<title>ssl_callPlugins (5 samples, 0.02%)</title><rect x="173.7" y="453" width="0.3" height="15.0" fill="rgb(252,132,8)" rx="2" ry="2" />
<text x="176.68" y="463.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (4 samples, 0.02%)</title><rect x="106.1" y="613" width="0.2" height="15.0" fill="rgb(210,48,31)" rx="2" ry="2" />
<text x="109.08" y="623.5" ></text>
</g>
<g >
<title>plugin_process_pending (5 samples, 0.02%)</title><rect x="173.7" y="421" width="0.3" height="15.0" fill="rgb(230,11,34)" rx="2" ry="2" />
<text x="176.68" y="431.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (23 samples, 0.11%)</title><rect x="170.7" y="405" width="1.3" height="15.0" fill="rgb(212,168,53)" rx="2" ry="2" />
<text x="173.67" y="415.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="522.9" y="453" width="0.1" height="15.0" fill="rgb(212,92,5)" rx="2" ry="2" />
<text x="525.91" y="463.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="173.2" y="85" width="0.1" height="15.0" fill="rgb(217,88,1)" rx="2" ry="2" />
<text x="176.20" y="95.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (3 samples, 0.01%)</title><rect x="167.1" y="405" width="0.1" height="15.0" fill="rgb(234,83,14)" rx="2" ry="2" />
<text x="170.07" y="415.5" ></text>
</g>
<g >
<title>http_doWithDefaultData (11 samples, 0.05%)</title><rect x="695.2" y="517" width="0.6" height="15.0" fill="rgb(251,182,48)" rx="2" ry="2" />
<text x="698.20" y="527.5" ></text>
</g>
<g >
<title>http_callPluginField (6 samples, 0.03%)</title><rect x="696.5" y="469" width="0.3" height="15.0" fill="rgb(247,138,5)" rx="2" ry="2" />
<text x="699.50" y="479.5" ></text>
</g>
<g >
<title>pipe_write (6 samples, 0.03%)</title><rect x="146.0" y="613" width="0.4" height="15.0" fill="rgb(214,191,14)" rx="2" ry="2" />
<text x="149.01" y="623.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (11 samples, 0.05%)</title><rect x="695.2" y="501" width="0.6" height="15.0" fill="rgb(253,13,19)" rx="2" ry="2" />
<text x="698.20" y="511.5" ></text>
</g>
<g >
<title>raw_ip_frag_list_stream_detach (2 samples, 0.01%)</title><rect x="270.1" y="517" width="0.1" height="15.0" fill="rgb(219,102,30)" rx="2" ry="2" />
<text x="273.05" y="527.5" ></text>
</g>
<g >
<title>strncmp_one_word_mesa (3 samples, 0.01%)</title><rect x="308.5" y="437" width="0.2" height="15.0" fill="rgb(225,160,3)" rx="2" ry="2" />
<text x="311.51" y="447.5" ></text>
</g>
<g >
<title>http_callPluginField (39 samples, 0.19%)</title><rect x="289.6" y="389" width="2.3" height="15.0" fill="rgb(218,221,47)" rx="2" ry="2" />
<text x="292.64" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="486.6" y="405" width="0.2" height="15.0" fill="rgb(253,43,23)" rx="2" ry="2" />
<text x="489.64" y="415.5" ></text>
</g>
<g >
<title>bsearch (2 samples, 0.01%)</title><rect x="277.1" y="421" width="0.1" height="15.0" fill="rgb(232,180,20)" rx="2" ry="2" />
<text x="280.13" y="431.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (4 samples, 0.02%)</title><rect x="182.1" y="597" width="0.2" height="15.0" fill="rgb(224,44,34)" rx="2" ry="2" />
<text x="185.05" y="607.5" ></text>
</g>
<g >
<title>ASN1_item_new (7 samples, 0.03%)</title><rect x="321.1" y="229" width="0.4" height="15.0" fill="rgb(227,19,54)" rx="2" ry="2" />
<text x="324.07" y="239.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="178.5" y="517" width="0.2" height="15.0" fill="rgb(226,137,30)" rx="2" ry="2" />
<text x="181.51" y="527.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="170.3" y="501" width="0.1" height="15.0" fill="rgb(233,208,33)" rx="2" ry="2" />
<text x="173.31" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="254.1" y="293" width="0.2" height="15.0" fill="rgb(221,2,51)" rx="2" ry="2" />
<text x="257.13" y="303.5" ></text>
</g>
<g >
<title>CAPTURE_UDP_PACKET_ENTRY (35 samples, 0.17%)</title><rect x="514.3" y="517" width="2.1" height="15.0" fill="rgb(221,138,23)" rx="2" ry="2" />
<text x="517.30" y="527.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (18 samples, 0.09%)</title><rect x="250.6" y="453" width="1.1" height="15.0" fill="rgb(238,160,23)" rx="2" ry="2" />
<text x="253.65" y="463.5" ></text>
</g>
<g >
<title>http_findAndDoWithRegion (3 samples, 0.01%)</title><rect x="179.9" y="581" width="0.1" height="15.0" fill="rgb(248,43,0)" rx="2" ry="2" />
<text x="182.87" y="591.5" ></text>
</g>
<g >
<title>rd_kafka_ProduceRequest (2 samples, 0.01%)</title><rect x="12.4" y="597" width="0.1" height="15.0" fill="rgb(226,4,16)" rx="2" ry="2" />
<text x="15.42" y="607.5" ></text>
</g>
<g >
<title>TLD_append (10 samples, 0.05%)</title><rect x="702.9" y="565" width="0.6" height="15.0" fill="rgb(209,176,18)" rx="2" ry="2" />
<text x="705.92" y="575.5" ></text>
</g>
<g >
<title>Maat_table_get_child_id (8 samples, 0.04%)</title><rect x="120.2" y="661" width="0.5" height="15.0" fill="rgb(210,141,51)" rx="2" ry="2" />
<text x="123.24" y="671.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="166.1" y="277" width="0.1" height="15.0" fill="rgb(248,218,51)" rx="2" ry="2" />
<text x="169.07" y="287.5" ></text>
</g>
<g >
<title>cJSON_AddNumberToObject (8 samples, 0.04%)</title><rect x="705.6" y="565" width="0.5" height="15.0" fill="rgb(224,99,26)" rx="2" ry="2" />
<text x="708.58" y="575.5" ></text>
</g>
<g >
<title>__st_pkt_proc_context_check_timeout (155 samples, 0.77%)</title><rect x="664.0" y="629" width="9.1" height="15.0" fill="rgb(254,161,8)" rx="2" ry="2" />
<text x="667.00" y="639.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (4 samples, 0.02%)</title><rect x="485.5" y="501" width="0.2" height="15.0" fill="rgb(238,101,6)" rx="2" ry="2" />
<text x="488.46" y="511.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="16.4" y="693" width="0.1" height="15.0" fill="rgb(235,47,18)" rx="2" ry="2" />
<text x="19.37" y="703.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="292.3" y="389" width="0.2" height="15.0" fill="rgb(247,144,39)" rx="2" ry="2" />
<text x="295.35" y="399.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="269.2" y="517" width="0.1" height="15.0" fill="rgb(243,27,44)" rx="2" ry="2" />
<text x="272.17" y="527.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="168.8" y="501" width="0.1" height="15.0" fill="rgb(246,16,29)" rx="2" ry="2" />
<text x="171.78" y="511.5" ></text>
</g>
<g >
<title>rdk:broker47 (2 samples, 0.01%)</title><rect x="13.7" y="709" width="0.1" height="15.0" fill="rgb(247,103,8)" rx="2" ry="2" />
<text x="16.72" y="719.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="327.9" y="373" width="0.3" height="15.0" fill="rgb(233,145,13)" rx="2" ry="2" />
<text x="330.86" y="383.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="254.4" y="357" width="0.4" height="15.0" fill="rgb(221,212,30)" rx="2" ry="2" />
<text x="257.36" y="367.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="637.5" y="581" width="0.1" height="15.0" fill="rgb(210,212,39)" rx="2" ry="2" />
<text x="640.45" y="591.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="304.3" y="357" width="0.1" height="15.0" fill="rgb(205,25,38)" rx="2" ry="2" />
<text x="307.26" y="367.5" ></text>
</g>
<g >
<title>http_doWithHost (4 samples, 0.02%)</title><rect x="304.1" y="405" width="0.3" height="15.0" fill="rgb(220,18,45)" rx="2" ry="2" />
<text x="307.14" y="415.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (16 samples, 0.08%)</title><rect x="697.4" y="581" width="0.9" height="15.0" fill="rgb(244,30,27)" rx="2" ry="2" />
<text x="700.38" y="591.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="394.7" y="277" width="0.2" height="15.0" fill="rgb(222,215,13)" rx="2" ry="2" />
<text x="397.74" y="287.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="179.6" y="517" width="0.1" height="15.0" fill="rgb(232,69,44)" rx="2" ry="2" />
<text x="182.57" y="527.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (17 samples, 0.08%)</title><rect x="166.3" y="517" width="1.0" height="15.0" fill="rgb(250,101,6)" rx="2" ry="2" />
<text x="169.30" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="254.8" y="325" width="0.2" height="15.0" fill="rgb(241,64,19)" rx="2" ry="2" />
<text x="257.84" y="335.5" ></text>
</g>
<g >
<title>malloc (4 samples, 0.02%)</title><rect x="545.3" y="437" width="0.2" height="15.0" fill="rgb(219,199,23)" rx="2" ry="2" />
<text x="548.26" y="447.5" ></text>
</g>
<g >
<title>set_session_attributes (6 samples, 0.03%)</title><rect x="175.7" y="453" width="0.3" height="15.0" fill="rgb(244,192,0)" rx="2" ry="2" />
<text x="178.68" y="463.5" ></text>
</g>
<g >
<title>[tsg_master.so] (21 samples, 0.10%)</title><rect x="399.2" y="373" width="1.3" height="15.0" fill="rgb(239,97,5)" rx="2" ry="2" />
<text x="402.22" y="383.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (2 samples, 0.01%)</title><rect x="696.8" y="533" width="0.2" height="15.0" fill="rgb(252,114,47)" rx="2" ry="2" />
<text x="699.85" y="543.5" ></text>
</g>
<g >
<title>http_updatePktOffset (3 samples, 0.01%)</title><rect x="302.1" y="437" width="0.2" height="15.0" fill="rgb(225,152,17)" rx="2" ry="2" />
<text x="305.08" y="447.5" ></text>
</g>
<g >
<title>capture_packet_entry@plt (2 samples, 0.01%)</title><rect x="457.1" y="485" width="0.1" height="15.0" fill="rgb(218,164,46)" rx="2" ry="2" />
<text x="460.09" y="495.5" ></text>
</g>
<g >
<title>app_proto_worke_process (17 samples, 0.08%)</title><rect x="276.9" y="453" width="1.0" height="15.0" fill="rgb(227,69,3)" rx="2" ry="2" />
<text x="279.89" y="463.5" ></text>
</g>
<g >
<title>kthread (2 samples, 0.01%)</title><rect x="10.1" y="677" width="0.1" height="15.0" fill="rgb(208,114,48)" rx="2" ry="2" />
<text x="13.06" y="687.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="695.8" y="421" width="0.2" height="15.0" fill="rgb(245,112,29)" rx="2" ry="2" />
<text x="698.85" y="431.5" ></text>
</g>
<g >
<title>PROT_PROCESS (7 samples, 0.03%)</title><rect x="303.7" y="357" width="0.4" height="15.0" fill="rgb(209,68,29)" rx="2" ry="2" />
<text x="306.73" y="367.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (79 samples, 0.39%)</title><rect x="251.9" y="405" width="4.6" height="15.0" fill="rgb(237,76,52)" rx="2" ry="2" />
<text x="254.89" y="415.5" ></text>
</g>
<g >
<title>tcp_free_stream (122 samples, 0.61%)</title><rect x="635.9" y="613" width="7.2" height="15.0" fill="rgb(247,77,17)" rx="2" ry="2" />
<text x="638.92" y="623.5" ></text>
</g>
<g >
<title>_IO_vsprintf (15 samples, 0.07%)</title><rect x="176.0" y="453" width="0.9" height="15.0" fill="rgb(208,29,6)" rx="2" ry="2" />
<text x="179.04" y="463.5" ></text>
</g>
<g >
<title>set_session_attributes (2 samples, 0.01%)</title><rect x="172.6" y="341" width="0.1" height="15.0" fill="rgb(242,92,25)" rx="2" ry="2" />
<text x="175.61" y="351.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="105.3" y="581" width="0.1" height="15.0" fill="rgb(207,87,26)" rx="2" ry="2" />
<text x="108.26" y="591.5" ></text>
</g>
<g >
<title>magic_buffer (2 samples, 0.01%)</title><rect x="693.4" y="613" width="0.1" height="15.0" fill="rgb(212,59,48)" rx="2" ry="2" />
<text x="696.43" y="623.5" ></text>
</g>
<g >
<title>http_initHttpCommonInfor (2 samples, 0.01%)</title><rect x="305.5" y="421" width="0.1" height="15.0" fill="rgb(216,1,48)" rx="2" ry="2" />
<text x="308.50" y="431.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (6 samples, 0.03%)</title><rect x="324.0" y="293" width="0.4" height="15.0" fill="rgb(214,211,41)" rx="2" ry="2" />
<text x="327.02" y="303.5" ></text>
</g>
<g >
<title>ssl_doWithCertificateDetail (2 samples, 0.01%)</title><rect x="168.2" y="437" width="0.1" height="15.0" fill="rgb(215,165,39)" rx="2" ry="2" />
<text x="171.19" y="447.5" ></text>
</g>
<g >
<title>[fw_ssl_plug.so] (10 samples, 0.05%)</title><rect x="314.6" y="325" width="0.6" height="15.0" fill="rgb(254,58,45)" rx="2" ry="2" />
<text x="317.58" y="335.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (80 samples, 0.40%)</title><rect x="251.8" y="437" width="4.7" height="15.0" fill="rgb(208,212,43)" rx="2" ry="2" />
<text x="254.83" y="447.5" ></text>
</g>
<g >
<title>CRYPTO_free (2 samples, 0.01%)</title><rect x="325.5" y="293" width="0.1" height="15.0" fill="rgb(219,163,12)" rx="2" ry="2" />
<text x="328.50" y="303.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (2 samples, 0.01%)</title><rect x="255.5" y="245" width="0.1" height="15.0" fill="rgb(234,139,38)" rx="2" ry="2" />
<text x="258.48" y="255.5" ></text>
</g>
<g >
<title>sapp_fs2_fuzzy_latency_update_per_entry (4 samples, 0.02%)</title><rect x="517.2" y="437" width="0.2" height="15.0" fill="rgb(208,131,28)" rx="2" ry="2" />
<text x="520.19" y="447.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="10.5" y="693" width="0.2" height="15.0" fill="rgb(236,139,52)" rx="2" ry="2" />
<text x="13.53" y="703.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (15 samples, 0.07%)</title><rect x="346.0" y="469" width="0.8" height="15.0" fill="rgb(239,15,48)" rx="2" ry="2" />
<text x="348.96" y="479.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (2 samples, 0.01%)</title><rect x="181.7" y="405" width="0.1" height="15.0" fill="rgb(243,8,47)" rx="2" ry="2" />
<text x="184.70" y="415.5" ></text>
</g>
<g >
<title>wake_up_q (2 samples, 0.01%)</title><rect x="10.1" y="565" width="0.1" height="15.0" fill="rgb(225,62,38)" rx="2" ry="2" />
<text x="13.06" y="575.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="696.0" y="485" width="0.1" height="15.0" fill="rgb(214,91,26)" rx="2" ry="2" />
<text x="699.02" y="495.5" ></text>
</g>
<g >
<title>[sapp] (9 samples, 0.04%)</title><rect x="501.7" y="549" width="0.5" height="15.0" fill="rgb(233,105,50)" rx="2" ry="2" />
<text x="504.68" y="559.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="169.0" y="357" width="0.2" height="15.0" fill="rgb(217,27,10)" rx="2" ry="2" />
<text x="172.02" y="367.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (42 samples, 0.21%)</title><rect x="276.0" y="485" width="2.5" height="15.0" fill="rgb(211,124,14)" rx="2" ry="2" />
<text x="279.01" y="495.5" ></text>
</g>
<g >
<title>_int_realloc (2 samples, 0.01%)</title><rect x="399.6" y="325" width="0.1" height="15.0" fill="rgb(241,50,30)" rx="2" ry="2" />
<text x="402.58" y="335.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="166.2" y="357" width="0.1" height="15.0" fill="rgb(234,125,41)" rx="2" ry="2" />
<text x="169.19" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="374.8" y="453" width="0.2" height="15.0" fill="rgb(208,135,1)" rx="2" ry="2" />
<text x="377.81" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="699.7" y="501" width="0.1" height="15.0" fill="rgb(243,107,49)" rx="2" ry="2" />
<text x="702.68" y="511.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="181.9" y="485" width="0.2" height="15.0" fill="rgb(246,117,44)" rx="2" ry="2" />
<text x="184.93" y="495.5" ></text>
</g>
<g >
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="295.6" y="325" width="0.2" height="15.0" fill="rgb(232,48,2)" rx="2" ry="2" />
<text x="298.59" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="319.1" y="197" width="0.1" height="15.0" fill="rgb(213,68,18)" rx="2" ry="2" />
<text x="322.07" y="207.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="170.4" y="501" width="0.1" height="15.0" fill="rgb(239,77,16)" rx="2" ry="2" />
<text x="173.43" y="511.5" ></text>
</g>
<g >
<title>__do_page_fault (12 samples, 0.06%)</title><rect x="267.7" y="453" width="0.7" height="15.0" fill="rgb(217,7,7)" rx="2" ry="2" />
<text x="270.69" y="463.5" ></text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="169.5" y="405" width="0.2" height="15.0" fill="rgb(205,217,40)" rx="2" ry="2" />
<text x="172.55" y="415.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="518.0" y="485" width="0.1" height="15.0" fill="rgb(253,86,24)" rx="2" ry="2" />
<text x="521.01" y="495.5" ></text>
</g>
<g >
<title>tsg_app_id2name (2 samples, 0.01%)</title><rect x="177.5" y="405" width="0.1" height="15.0" fill="rgb(224,49,45)" rx="2" ry="2" />
<text x="180.51" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="289.0" y="293" width="0.3" height="15.0" fill="rgb(240,169,24)" rx="2" ry="2" />
<text x="291.99" y="303.5" ></text>
</g>
<g >
<title>inet_ntop (3 samples, 0.01%)</title><rect x="174.2" y="485" width="0.2" height="15.0" fill="rgb(229,188,33)" rx="2" ry="2" />
<text x="177.21" y="495.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="254.2" y="261" width="0.1" height="15.0" fill="rgb(222,217,42)" rx="2" ry="2" />
<text x="257.19" y="271.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="478.8" y="501" width="0.3" height="15.0" fill="rgb(219,25,44)" rx="2" ry="2" />
<text x="481.79" y="511.5" ></text>
</g>
<g >
<title>rd_kafka_msg_sticky_partition (2 samples, 0.01%)</title><rect x="705.2" y="517" width="0.1" height="15.0" fill="rgb(241,125,54)" rx="2" ry="2" />
<text x="708.17" y="527.5" ></text>
</g>
<g >
<title>http_callPlugin (4 samples, 0.02%)</title><rect x="303.5" y="389" width="0.2" height="15.0" fill="rgb(240,134,27)" rx="2" ry="2" />
<text x="306.50" y="399.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (340 samples, 1.70%)</title><rect x="286.4" y="469" width="20.0" height="15.0" fill="rgb(214,142,5)" rx="2" ry="2" />
<text x="289.39" y="479.5" ></text>
</g>
<g >
<title>asn1_ex_i2c (3 samples, 0.01%)</title><rect x="322.7" y="117" width="0.1" height="15.0" fill="rgb(251,2,3)" rx="2" ry="2" />
<text x="325.67" y="127.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="547.3" y="517" width="0.2" height="15.0" fill="rgb(252,143,47)" rx="2" ry="2" />
<text x="550.33" y="527.5" ></text>
</g>
<g >
<title>vfprintf (5 samples, 0.02%)</title><rect x="175.2" y="421" width="0.2" height="15.0" fill="rgb(233,92,30)" rx="2" ry="2" />
<text x="178.15" y="431.5" ></text>
</g>
<g >
<title>l2tp_protocol_entry (2 samples, 0.01%)</title><rect x="538.8" y="517" width="0.1" height="15.0" fill="rgb(224,11,34)" rx="2" ry="2" />
<text x="541.78" y="527.5" ></text>
</g>
<g >
<title>tsg_send_log (23 samples, 0.11%)</title><rect x="170.7" y="357" width="1.3" height="15.0" fill="rgb(250,16,44)" rx="2" ry="2" />
<text x="173.67" y="367.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="181.7" y="549" width="0.1" height="15.0" fill="rgb(251,53,46)" rx="2" ry="2" />
<text x="184.70" y="559.5" ></text>
</g>
<g >
<title>del_stream_by_time (370 samples, 1.85%)</title><rect x="621.3" y="629" width="21.8" height="15.0" fill="rgb(250,164,5)" rx="2" ry="2" />
<text x="624.29" y="639.5" >d..</text>
</g>
<g >
<title>http_doWithCnntcloseData (3 samples, 0.01%)</title><rect x="691.0" y="501" width="0.1" height="15.0" fill="rgb(208,154,19)" rx="2" ry="2" />
<text x="693.95" y="511.5" ></text>
</g>
<g >
<title>__clone (2 samples, 0.01%)</title><rect x="15.2" y="693" width="0.2" height="15.0" fill="rgb(222,217,42)" rx="2" ry="2" />
<text x="18.25" y="703.5" ></text>
</g>
<g >
<title>BN_bin2bn (4 samples, 0.02%)</title><rect x="327.9" y="229" width="0.3" height="15.0" fill="rgb(218,107,44)" rx="2" ry="2" />
<text x="330.91" y="239.5" ></text>
</g>
<g >
<title>set_transport_addr (12 samples, 0.06%)</title><rect x="501.5" y="565" width="0.7" height="15.0" fill="rgb(210,150,29)" rx="2" ry="2" />
<text x="504.50" y="575.5" ></text>
</g>
<g >
<title>sprintf (15 samples, 0.07%)</title><rect x="467.1" y="421" width="0.9" height="15.0" fill="rgb(234,32,10)" rx="2" ry="2" />
<text x="470.11" y="431.5" ></text>
</g>
<g >
<title>printaddr (2 samples, 0.01%)</title><rect x="485.8" y="485" width="0.1" height="15.0" fill="rgb(214,204,19)" rx="2" ry="2" />
<text x="488.81" y="495.5" ></text>
</g>
<g >
<title>vfs_write (8 samples, 0.04%)</title><rect x="146.0" y="645" width="0.4" height="15.0" fill="rgb(252,100,53)" rx="2" ry="2" />
<text x="148.95" y="655.5" ></text>
</g>
<g >
<title>rdk:broker6 (2 samples, 0.01%)</title><rect x="16.1" y="709" width="0.1" height="15.0" fill="rgb(222,62,11)" rx="2" ry="2" />
<text x="19.08" y="719.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (3 samples, 0.01%)</title><rect x="255.9" y="357" width="0.2" height="15.0" fill="rgb(229,168,0)" rx="2" ry="2" />
<text x="258.90" y="367.5" ></text>
</g>
<g >
<title>X509_PUBKEY_get (8 samples, 0.04%)</title><rect x="255.4" y="373" width="0.5" height="15.0" fill="rgb(227,215,22)" rx="2" ry="2" />
<text x="258.43" y="383.5" ></text>
</g>
<g >
<title>task_numa_work (10 samples, 0.05%)</title><rect x="248.8" y="437" width="0.6" height="15.0" fill="rgb(226,138,44)" rx="2" ry="2" />
<text x="251.82" y="447.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="699.4" y="533" width="0.4" height="15.0" fill="rgb(222,225,31)" rx="2" ry="2" />
<text x="702.39" y="543.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="253.1" y="133" width="0.1" height="15.0" fill="rgb(234,84,9)" rx="2" ry="2" />
<text x="256.07" y="143.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="358.7" y="421" width="0.1" height="15.0" fill="rgb(253,213,53)" rx="2" ry="2" />
<text x="361.70" y="431.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (2 samples, 0.01%)</title><rect x="12.9" y="661" width="0.1" height="15.0" fill="rgb(233,9,14)" rx="2" ry="2" />
<text x="15.89" y="671.5" ></text>
</g>
<g >
<title>rdk:broker24 (2 samples, 0.01%)</title><rect x="11.4" y="709" width="0.1" height="15.0" fill="rgb(228,139,16)" rx="2" ry="2" />
<text x="14.36" y="719.5" ></text>
</g>
<g >
<title>TLD_append (5 samples, 0.02%)</title><rect x="291.3" y="293" width="0.3" height="15.0" fill="rgb(212,131,27)" rx="2" ry="2" />
<text x="294.35" y="303.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="251.5" y="309" width="0.1" height="15.0" fill="rgb(237,174,24)" rx="2" ry="2" />
<text x="254.47" y="319.5" ></text>
</g>
<g >
<title>grab_mid (6 samples, 0.03%)</title><rect x="102.5" y="677" width="0.4" height="15.0" fill="rgb(249,87,12)" rx="2" ry="2" />
<text x="105.54" y="687.5" ></text>
</g>
<g >
<title>plugin_process_pending (15 samples, 0.07%)</title><rect x="694.2" y="453" width="0.9" height="15.0" fill="rgb(217,20,49)" rx="2" ry="2" />
<text x="697.19" y="463.5" ></text>
</g>
<g >
<title>ip_queue_xmit (2 samples, 0.01%)</title><rect x="1177.4" y="261" width="0.1" height="15.0" fill="rgb(216,12,43)" rx="2" ry="2" />
<text x="1180.38" y="271.5" ></text>
</g>
<g >
<title>__snprintf (30 samples, 0.15%)</title><rect x="710.7" y="677" width="1.8" height="15.0" fill="rgb(228,159,45)" rx="2" ry="2" />
<text x="713.71" y="687.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="705.6" y="517" width="0.2" height="15.0" fill="rgb(233,164,35)" rx="2" ry="2" />
<text x="708.58" y="527.5" ></text>
</g>
<g >
<title>qmdpi_hit_path_list (17 samples, 0.08%)</title><rect x="166.3" y="469" width="1.0" height="15.0" fill="rgb(230,181,7)" rx="2" ry="2" />
<text x="169.30" y="479.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (27 samples, 0.13%)</title><rect x="348.4" y="453" width="1.6" height="15.0" fill="rgb(219,80,29)" rx="2" ry="2" />
<text x="351.44" y="463.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="141.5" y="677" width="0.1" height="15.0" fill="rgb(228,216,36)" rx="2" ry="2" />
<text x="144.53" y="687.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="486.9" y="421" width="0.1" height="15.0" fill="rgb(227,138,37)" rx="2" ry="2" />
<text x="489.87" y="431.5" ></text>
</g>
<g >
<title>set_session_attributes (2 samples, 0.01%)</title><rect x="178.2" y="469" width="0.1" height="15.0" fill="rgb(243,226,40)" rx="2" ry="2" />
<text x="181.22" y="479.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="172.9" y="421" width="0.4" height="15.0" fill="rgb(226,214,45)" rx="2" ry="2" />
<text x="175.85" y="431.5" ></text>
</g>
<g >
<title>project_req_get_struct (5 samples, 0.02%)</title><rect x="280.1" y="453" width="0.3" height="15.0" fill="rgb(232,43,21)" rx="2" ry="2" />
<text x="283.08" y="463.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="346.1" y="437" width="0.2" height="15.0" fill="rgb(227,56,12)" rx="2" ry="2" />
<text x="349.08" y="447.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (20 samples, 0.10%)</title><rect x="172.9" y="501" width="1.1" height="15.0" fill="rgb(238,156,47)" rx="2" ry="2" />
<text x="175.85" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="705.8" y="501" width="0.3" height="15.0" fill="rgb(215,131,7)" rx="2" ry="2" />
<text x="708.76" y="511.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (4 samples, 0.02%)</title><rect x="180.0" y="565" width="0.3" height="15.0" fill="rgb(248,122,44)" rx="2" ry="2" />
<text x="183.05" y="575.5" ></text>
</g>
<g >
<title>plugin_process_data (9 samples, 0.04%)</title><rect x="516.9" y="469" width="0.5" height="15.0" fill="rgb(209,100,35)" rx="2" ry="2" />
<text x="519.89" y="479.5" ></text>
</g>
<g >
<title>TLD_append (5 samples, 0.02%)</title><rect x="289.0" y="309" width="0.3" height="15.0" fill="rgb(237,121,15)" rx="2" ry="2" />
<text x="291.99" y="319.5" ></text>
</g>
<g >
<title>sapp_fs2_fuzzy_latency_update_per_entry (5 samples, 0.02%)</title><rect x="315.2" y="341" width="0.3" height="15.0" fill="rgb(234,7,52)" rx="2" ry="2" />
<text x="318.17" y="351.5" ></text>
</g>
<g >
<title>file_softmagic (2 samples, 0.01%)</title><rect x="695.7" y="357" width="0.1" height="15.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text x="698.73" y="367.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="693.0" y="485" width="0.1" height="15.0" fill="rgb(239,44,47)" rx="2" ry="2" />
<text x="695.96" y="495.5" ></text>
</g>
<g >
<title>cJSON_CreateString (2 samples, 0.01%)</title><rect x="700.5" y="549" width="0.1" height="15.0" fill="rgb(236,110,7)" rx="2" ry="2" />
<text x="703.51" y="559.5" ></text>
</g>
<g >
<title>ASN1_STRING_type_new (3 samples, 0.01%)</title><rect x="327.0" y="213" width="0.1" height="15.0" fill="rgb(254,83,1)" rx="2" ry="2" />
<text x="329.97" y="223.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (13 samples, 0.06%)</title><rect x="288.6" y="341" width="0.8" height="15.0" fill="rgb(223,127,35)" rx="2" ry="2" />
<text x="291.63" y="351.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="99.7" y="613" width="0.1" height="15.0" fill="rgb(235,75,28)" rx="2" ry="2" />
<text x="102.71" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (32 samples, 0.16%)</title><rect x="363.9" y="405" width="1.9" height="15.0" fill="rgb(249,158,30)" rx="2" ry="2" />
<text x="366.89" y="415.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (47 samples, 0.23%)</title><rect x="694.1" y="565" width="2.7" height="15.0" fill="rgb(227,175,27)" rx="2" ry="2" />
<text x="697.08" y="575.5" ></text>
</g>
<g >
<title>[sapp] (5 samples, 0.02%)</title><rect x="392.0" y="501" width="0.3" height="15.0" fill="rgb(213,203,23)" rx="2" ry="2" />
<text x="395.03" y="511.5" ></text>
</g>
<g >
<title>do_softirq (6 samples, 0.03%)</title><rect x="1177.2" y="581" width="0.4" height="15.0" fill="rgb(239,163,6)" rx="2" ry="2" />
<text x="1180.20" y="591.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="307.1" y="293" width="0.1" height="15.0" fill="rgb(208,138,25)" rx="2" ry="2" />
<text x="310.09" y="303.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="327.0" y="181" width="0.1" height="15.0" fill="rgb(237,74,45)" rx="2" ry="2" />
<text x="329.97" y="191.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (2 samples, 0.01%)</title><rect x="183.4" y="645" width="0.1" height="15.0" fill="rgb(228,0,30)" rx="2" ry="2" />
<text x="186.41" y="655.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (4 samples, 0.02%)</title><rect x="166.1" y="453" width="0.2" height="15.0" fill="rgb(242,35,29)" rx="2" ry="2" />
<text x="169.07" y="463.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="392.0" y="261" width="0.1" height="15.0" fill="rgb(252,68,31)" rx="2" ry="2" />
<text x="395.03" y="271.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="303.3" y="357" width="0.1" height="15.0" fill="rgb(237,181,2)" rx="2" ry="2" />
<text x="306.26" y="367.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="712.5" y="501" width="0.2" height="15.0" fill="rgb(233,38,15)" rx="2" ry="2" />
<text x="715.54" y="511.5" ></text>
</g>
<g >
<title>sapp_fs2_fuzzy_latency_update_per_entry (45 samples, 0.22%)</title><rect x="351.6" y="485" width="2.7" height="15.0" fill="rgb(245,170,36)" rx="2" ry="2" />
<text x="354.63" y="495.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="292.3" y="405" width="0.2" height="15.0" fill="rgb(230,132,27)" rx="2" ry="2" />
<text x="295.35" y="415.5" ></text>
</g>
<g >
<title>ipv4_entry (51 samples, 0.25%)</title><rect x="690.2" y="677" width="3.0" height="15.0" fill="rgb(221,124,47)" rx="2" ry="2" />
<text x="693.18" y="687.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="318.4" y="117" width="0.1" height="15.0" fill="rgb(235,207,22)" rx="2" ry="2" />
<text x="321.42" y="127.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (8 samples, 0.04%)</title><rect x="370.3" y="453" width="0.4" height="15.0" fill="rgb(246,57,43)" rx="2" ry="2" />
<text x="373.26" y="463.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="398.5" y="341" width="0.2" height="15.0" fill="rgb(225,69,33)" rx="2" ry="2" />
<text x="401.52" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="358.2" y="389" width="0.3" height="15.0" fill="rgb(243,0,44)" rx="2" ry="2" />
<text x="361.23" y="399.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (13 samples, 0.06%)</title><rect x="184.1" y="597" width="0.7" height="15.0" fill="rgb(251,8,19)" rx="2" ry="2" />
<text x="187.06" y="607.5" ></text>
</g>
<g >
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="298.7" y="309" width="0.1" height="15.0" fill="rgb(230,211,17)" rx="2" ry="2" />
<text x="301.72" y="319.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="173.4" y="341" width="0.2" height="15.0" fill="rgb(234,77,30)" rx="2" ry="2" />
<text x="176.44" y="351.5" ></text>
</g>
<g >
<title>docanalyze_parsestream (4 samples, 0.02%)</title><rect x="295.4" y="357" width="0.2" height="15.0" fill="rgb(216,149,23)" rx="2" ry="2" />
<text x="298.36" y="367.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.01%)</title><rect x="295.2" y="229" width="0.2" height="15.0" fill="rgb(253,197,52)" rx="2" ry="2" />
<text x="298.24" y="239.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (5 samples, 0.02%)</title><rect x="692.6" y="533" width="0.3" height="15.0" fill="rgb(215,59,52)" rx="2" ry="2" />
<text x="695.60" y="543.5" ></text>
</g>
<g >
<title>http_initHttpConnection (21 samples, 0.10%)</title><rect x="305.0" y="453" width="1.2" height="15.0" fill="rgb(254,207,38)" rx="2" ry="2" />
<text x="307.97" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.03%)</title><rect x="141.2" y="661" width="0.3" height="15.0" fill="rgb(216,24,18)" rx="2" ry="2" />
<text x="144.18" y="671.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (12 samples, 0.06%)</title><rect x="318.3" y="245" width="0.7" height="15.0" fill="rgb(249,153,43)" rx="2" ry="2" />
<text x="321.30" y="255.5" ></text>
</g>
<g >
<title>plugin_process_pending (15 samples, 0.07%)</title><rect x="331.3" y="373" width="0.9" height="15.0" fill="rgb(222,196,14)" rx="2" ry="2" />
<text x="334.34" y="383.5" ></text>
</g>
<g >
<title>tcp_free_stream (3 samples, 0.01%)</title><rect x="259.8" y="517" width="0.2" height="15.0" fill="rgb(224,120,20)" rx="2" ry="2" />
<text x="262.79" y="527.5" ></text>
</g>
<g >
<title>ASN1_primitive_new (4 samples, 0.02%)</title><rect x="321.5" y="229" width="0.2" height="15.0" fill="rgb(237,78,54)" rx="2" ry="2" />
<text x="324.49" y="239.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="168.1" y="405" width="0.1" height="15.0" fill="rgb(224,71,18)" rx="2" ry="2" />
<text x="171.07" y="415.5" ></text>
</g>
<g >
<title>find_vma (4 samples, 0.02%)</title><rect x="137.6" y="565" width="0.2" height="15.0" fill="rgb(230,185,39)" rx="2" ry="2" />
<text x="140.58" y="575.5" ></text>
</g>
<g >
<title>[tsg_master.so] (48 samples, 0.24%)</title><rect x="341.0" y="469" width="2.8" height="15.0" fill="rgb(232,88,43)" rx="2" ry="2" />
<text x="344.01" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (132 samples, 0.66%)</title><rect x="519.1" y="501" width="7.8" height="15.0" fill="rgb(245,68,34)" rx="2" ry="2" />
<text x="522.14" y="511.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (27 samples, 0.13%)</title><rect x="701.3" y="581" width="1.6" height="15.0" fill="rgb(247,218,23)" rx="2" ry="2" />
<text x="704.33" y="591.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (9 samples, 0.04%)</title><rect x="178.7" y="533" width="0.6" height="15.0" fill="rgb(235,17,43)" rx="2" ry="2" />
<text x="181.75" y="543.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (9 samples, 0.04%)</title><rect x="177.5" y="437" width="0.5" height="15.0" fill="rgb(234,109,21)" rx="2" ry="2" />
<text x="180.51" y="447.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (42 samples, 0.21%)</title><rect x="292.9" y="325" width="2.5" height="15.0" fill="rgb(229,38,2)" rx="2" ry="2" />
<text x="295.88" y="335.5" ></text>
</g>
<g >
<title>http_callPluginField (4 samples, 0.02%)</title><rect x="179.3" y="517" width="0.3" height="15.0" fill="rgb(240,90,18)" rx="2" ry="2" />
<text x="182.34" y="527.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="707.8" y="581" width="0.1" height="15.0" fill="rgb(252,31,40)" rx="2" ry="2" />
<text x="710.76" y="591.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (6 samples, 0.03%)</title><rect x="285.8" y="453" width="0.4" height="15.0" fill="rgb(226,90,34)" rx="2" ry="2" />
<text x="288.80" y="463.5" ></text>
</g>
<g >
<title>[tsg_master.so] (78 samples, 0.39%)</title><rect x="370.1" y="485" width="4.6" height="15.0" fill="rgb(249,209,46)" rx="2" ry="2" />
<text x="373.09" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (11 samples, 0.05%)</title><rect x="326.5" y="293" width="0.6" height="15.0" fill="rgb(236,197,35)" rx="2" ry="2" />
<text x="329.50" y="303.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="172.9" y="197" width="0.4" height="15.0" fill="rgb(209,211,54)" rx="2" ry="2" />
<text x="175.85" y="207.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (10 samples, 0.05%)</title><rect x="322.3" y="213" width="0.6" height="15.0" fill="rgb(233,76,4)" rx="2" ry="2" />
<text x="325.31" y="223.5" ></text>
</g>
<g >
<title>TLD_append (6 samples, 0.03%)</title><rect x="397.9" y="373" width="0.3" height="15.0" fill="rgb(237,50,29)" rx="2" ry="2" />
<text x="400.87" y="383.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="168.1" y="325" width="0.1" height="15.0" fill="rgb(228,8,15)" rx="2" ry="2" />
<text x="171.07" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (13 samples, 0.06%)</title><rect x="513.4" y="469" width="0.8" height="15.0" fill="rgb(209,92,33)" rx="2" ry="2" />
<text x="516.41" y="479.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (5 samples, 0.02%)</title><rect x="277.5" y="421" width="0.3" height="15.0" fill="rgb(235,38,28)" rx="2" ry="2" />
<text x="280.54" y="431.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (9 samples, 0.04%)</title><rect x="552.5" y="501" width="0.5" height="15.0" fill="rgb(224,218,28)" rx="2" ry="2" />
<text x="555.46" y="511.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="269.2" y="501" width="0.1" height="15.0" fill="rgb(229,67,41)" rx="2" ry="2" />
<text x="272.17" y="511.5" ></text>
</g>
<g >
<title>http_analyseACompleteRegion (3 samples, 0.01%)</title><rect x="179.9" y="565" width="0.1" height="15.0" fill="rgb(216,39,17)" rx="2" ry="2" />
<text x="182.87" y="575.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (160 samples, 0.80%)</title><rect x="182.8" y="677" width="9.4" height="15.0" fill="rgb(208,50,28)" rx="2" ry="2" />
<text x="185.76" y="687.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="168.2" y="405" width="0.1" height="15.0" fill="rgb(245,209,40)" rx="2" ry="2" />
<text x="171.19" y="415.5" ></text>
</g>
<g >
<title>ssl_doWithServerHello (15 samples, 0.07%)</title><rect x="331.3" y="421" width="0.9" height="15.0" fill="rgb(229,169,12)" rx="2" ry="2" />
<text x="334.34" y="431.5" ></text>
</g>
<g >
<title>rd_slice_crc32c (2 samples, 0.01%)</title><rect x="14.2" y="565" width="0.2" height="15.0" fill="rgb(229,49,6)" rx="2" ry="2" />
<text x="17.25" y="575.5" ></text>
</g>
<g >
<title>http_callPluginField (24 samples, 0.12%)</title><rect x="691.1" y="453" width="1.4" height="15.0" fill="rgb(213,170,52)" rx="2" ry="2" />
<text x="694.13" y="463.5" ></text>
</g>
<g >
<title>_IO_vsprintf (16 samples, 0.08%)</title><rect x="166.3" y="437" width="0.9" height="15.0" fill="rgb(242,35,32)" rx="2" ry="2" />
<text x="169.30" y="447.5" ></text>
</g>
<g >
<title>__libc_calloc (2 samples, 0.01%)</title><rect x="379.9" y="453" width="0.1" height="15.0" fill="rgb(244,57,20)" rx="2" ry="2" />
<text x="382.88" y="463.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap_single_layer (8 samples, 0.04%)</title><rect x="259.3" y="517" width="0.5" height="15.0" fill="rgb(237,161,1)" rx="2" ry="2" />
<text x="262.32" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="169.2" y="389" width="0.3" height="15.0" fill="rgb(222,116,7)" rx="2" ry="2" />
<text x="172.19" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (18 samples, 0.09%)</title><rect x="139.8" y="629" width="1.0" height="15.0" fill="rgb(236,217,9)" rx="2" ry="2" />
<text x="142.76" y="639.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="638.0" y="533" width="0.2" height="15.0" fill="rgb(223,190,36)" rx="2" ry="2" />
<text x="641.04" y="543.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="535.8" y="501" width="0.1" height="15.0" fill="rgb(220,89,3)" rx="2" ry="2" />
<text x="538.83" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (12 samples, 0.06%)</title><rect x="318.3" y="229" width="0.7" height="15.0" fill="rgb(245,52,2)" rx="2" ry="2" />
<text x="321.30" y="239.5" ></text>
</g>
<g >
<title>http_callPluginField (6 samples, 0.03%)</title><rect x="690.2" y="485" width="0.3" height="15.0" fill="rgb(226,90,29)" rx="2" ry="2" />
<text x="693.18" y="495.5" ></text>
</g>
<g >
<title>rd_kafka_msg_partitioner (6 samples, 0.03%)</title><rect x="705.0" y="533" width="0.4" height="15.0" fill="rgb(229,212,1)" rx="2" ry="2" />
<text x="708.05" y="543.5" ></text>
</g>
<g >
<title>APP_SKETCH_SSL_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="696.8" y="437" width="0.2" height="15.0" fill="rgb(247,148,30)" rx="2" ry="2" />
<text x="699.85" y="447.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="260.3" y="517" width="0.1" height="15.0" fill="rgb(233,60,18)" rx="2" ry="2" />
<text x="263.32" y="527.5" ></text>
</g>
<g >
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="712.5" y="485" width="0.2" height="15.0" fill="rgb(251,111,10)" rx="2" ry="2" />
<text x="715.54" y="495.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="690.0" y="629" width="0.2" height="15.0" fill="rgb(238,0,34)" rx="2" ry="2" />
<text x="693.01" y="639.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="379.5" y="437" width="0.2" height="15.0" fill="rgb(225,66,35)" rx="2" ry="2" />
<text x="382.52" y="447.5" ></text>
</g>
<g >
<title>rd_kafka_buf_new_request0 (2 samples, 0.01%)</title><rect x="12.4" y="565" width="0.1" height="15.0" fill="rgb(211,54,33)" rx="2" ry="2" />
<text x="15.42" y="575.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (40 samples, 0.20%)</title><rect x="251.9" y="341" width="2.4" height="15.0" fill="rgb(246,15,17)" rx="2" ry="2" />
<text x="254.95" y="351.5" ></text>
</g>
<g >
<title>http_callPlugin (72 samples, 0.36%)</title><rect x="296.1" y="389" width="4.3" height="15.0" fill="rgb(205,14,0)" rx="2" ry="2" />
<text x="299.12" y="399.5" ></text>
</g>
<g >
<title>SSL_ENTRY (4 samples, 0.02%)</title><rect x="180.0" y="613" width="0.3" height="15.0" fill="rgb(236,203,50)" rx="2" ry="2" />
<text x="183.05" y="623.5" ></text>
</g>
<g >
<title>http_resetHttpStream (5 samples, 0.02%)</title><rect x="287.1" y="437" width="0.3" height="15.0" fill="rgb(252,109,43)" rx="2" ry="2" />
<text x="290.10" y="447.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="174.7" y="437" width="0.2" height="15.0" fill="rgb(220,117,53)" rx="2" ry="2" />
<text x="177.68" y="447.5" ></text>
</g>
<g >
<title>SSH_ENTRY (11 samples, 0.05%)</title><rect x="309.3" y="485" width="0.7" height="15.0" fill="rgb(207,51,0)" rx="2" ry="2" />
<text x="312.34" y="495.5" ></text>
</g>
<g >
<title>rdk:broker7 (2 samples, 0.01%)</title><rect x="16.3" y="709" width="0.1" height="15.0" fill="rgb(233,45,27)" rx="2" ry="2" />
<text x="19.25" y="719.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="174.0" y="517" width="0.2" height="15.0" fill="rgb(205,37,41)" rx="2" ry="2" />
<text x="177.03" y="527.5" ></text>
</g>
<g >
<title>plugin_call_appentry (13 samples, 0.06%)</title><rect x="250.6" y="357" width="0.8" height="15.0" fill="rgb(212,156,54)" rx="2" ry="2" />
<text x="253.65" y="367.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="179.5" y="389" width="0.1" height="15.0" fill="rgb(221,160,36)" rx="2" ry="2" />
<text x="182.46" y="399.5" ></text>
</g>
<g >
<title>free (6 samples, 0.03%)</title><rect x="370.4" y="437" width="0.3" height="15.0" fill="rgb(235,110,31)" rx="2" ry="2" />
<text x="373.38" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="253.1" y="117" width="0.1" height="15.0" fill="rgb(213,11,41)" rx="2" ry="2" />
<text x="256.07" y="127.5" ></text>
</g>
<g >
<title>fw_ssl_entry (2 samples, 0.01%)</title><rect x="713.0" y="357" width="0.1" height="15.0" fill="rgb(211,112,51)" rx="2" ry="2" />
<text x="715.95" y="367.5" ></text>
</g>
<g >
<title>sprintf (2 samples, 0.01%)</title><rect x="698.9" y="517" width="0.1" height="15.0" fill="rgb(246,177,30)" rx="2" ry="2" />
<text x="701.91" y="527.5" ></text>
</g>
<g >
<title>ssl_analyseStream (3 samples, 0.01%)</title><rect x="395.0" y="437" width="0.2" height="15.0" fill="rgb(243,92,18)" rx="2" ry="2" />
<text x="397.98" y="447.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (2 samples, 0.01%)</title><rect x="10.4" y="629" width="0.1" height="15.0" fill="rgb(227,42,49)" rx="2" ry="2" />
<text x="13.41" y="639.5" ></text>
</g>
<g >
<title>__mpn_divrem (2 samples, 0.01%)</title><rect x="702.3" y="421" width="0.1" height="15.0" fill="rgb(245,141,51)" rx="2" ry="2" />
<text x="705.28" y="431.5" ></text>
</g>
<g >
<title>__clone (2 samples, 0.01%)</title><rect x="16.0" y="693" width="0.1" height="15.0" fill="rgb(212,192,49)" rx="2" ry="2" />
<text x="18.96" y="703.5" ></text>
</g>
<g >
<title>plugin_call_appentry (9 samples, 0.04%)</title><rect x="707.4" y="693" width="0.5" height="15.0" fill="rgb(206,130,9)" rx="2" ry="2" />
<text x="710.41" y="703.5" ></text>
</g>
<g >
<title>rd_kafka_topic_partition_available (2 samples, 0.01%)</title><rect x="705.2" y="501" width="0.1" height="15.0" fill="rgb(220,149,26)" rx="2" ry="2" />
<text x="708.17" y="511.5" ></text>
</g>
<g >
<title>project_requirement_destroy (20 samples, 0.10%)</title><rect x="392.7" y="501" width="1.2" height="15.0" fill="rgb(240,141,54)" rx="2" ry="2" />
<text x="395.74" y="511.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (7 samples, 0.03%)</title><rect x="379.1" y="437" width="0.4" height="15.0" fill="rgb(243,171,34)" rx="2" ry="2" />
<text x="382.11" y="447.5" ></text>
</g>
<g >
<title>lrustream (176 samples, 0.88%)</title><rect x="390.7" y="549" width="10.4" height="15.0" fill="rgb(226,71,36)" rx="2" ry="2" />
<text x="393.73" y="559.5" ></text>
</g>
<g >
<title>cJSON_CreateNumber (4 samples, 0.02%)</title><rect x="468.9" y="453" width="0.2" height="15.0" fill="rgb(223,54,43)" rx="2" ry="2" />
<text x="471.88" y="463.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (6 samples, 0.03%)</title><rect x="375.6" y="421" width="0.4" height="15.0" fill="rgb(233,223,49)" rx="2" ry="2" />
<text x="378.63" y="431.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="486.3" y="437" width="0.2" height="15.0" fill="rgb(210,150,49)" rx="2" ry="2" />
<text x="489.34" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (13 samples, 0.06%)</title><rect x="316.6" y="405" width="0.8" height="15.0" fill="rgb(240,219,47)" rx="2" ry="2" />
<text x="319.65" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (23 samples, 0.11%)</title><rect x="337.4" y="453" width="1.4" height="15.0" fill="rgb(233,44,21)" rx="2" ry="2" />
<text x="340.41" y="463.5" ></text>
</g>
<g >
<title>malloc (6 samples, 0.03%)</title><rect x="324.0" y="277" width="0.4" height="15.0" fill="rgb(249,70,26)" rx="2" ry="2" />
<text x="327.02" y="287.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (154 samples, 0.77%)</title><rect x="169.0" y="629" width="9.0" height="15.0" fill="rgb(241,184,42)" rx="2" ry="2" />
<text x="171.96" y="639.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="392.0" y="325" width="0.1" height="15.0" fill="rgb(216,199,6)" rx="2" ry="2" />
<text x="395.03" y="335.5" ></text>
</g>
<g >
<title>FW_DNS_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="697.2" y="613" width="0.2" height="15.0" fill="rgb(210,123,20)" rx="2" ry="2" />
<text x="700.20" y="623.5" ></text>
</g>
<g >
<title>file_buffer (2 samples, 0.01%)</title><rect x="693.4" y="597" width="0.1" height="15.0" fill="rgb(209,73,7)" rx="2" ry="2" />
<text x="696.43" y="607.5" ></text>
</g>
<g >
<title>Maat_table_runtime_get@plt (2 samples, 0.01%)</title><rect x="124.5" y="661" width="0.2" height="15.0" fill="rgb(215,211,41)" rx="2" ry="2" />
<text x="127.54" y="671.5" ></text>
</g>
<g >
<title>sapp_fs2_fuzzy_latency_update_per_thread (32 samples, 0.16%)</title><rect x="554.2" y="613" width="1.9" height="15.0" fill="rgb(216,15,26)" rx="2" ry="2" />
<text x="557.17" y="623.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="712.5" y="373" width="0.2" height="15.0" fill="rgb(218,96,23)" rx="2" ry="2" />
<text x="715.54" y="383.5" ></text>
</g>
<g >
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="696.5" y="421" width="0.3" height="15.0" fill="rgb(231,189,37)" rx="2" ry="2" />
<text x="699.50" y="431.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="167.9" y="389" width="0.2" height="15.0" fill="rgb(234,80,52)" rx="2" ry="2" />
<text x="170.90" y="399.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (12 samples, 0.06%)</title><rect x="172.1" y="405" width="0.8" height="15.0" fill="rgb(207,200,45)" rx="2" ry="2" />
<text x="175.14" y="415.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="169.2" y="341" width="0.3" height="15.0" fill="rgb(230,41,16)" rx="2" ry="2" />
<text x="172.19" y="351.5" ></text>
</g>
<g >
<title>sys_write (8 samples, 0.04%)</title><rect x="146.0" y="661" width="0.4" height="15.0" fill="rgb(238,57,33)" rx="2" ry="2" />
<text x="148.95" y="671.5" ></text>
</g>
<g >
<title>rdk:broker65 (2 samples, 0.01%)</title><rect x="15.4" y="709" width="0.1" height="15.0" fill="rgb(244,94,49)" rx="2" ry="2" />
<text x="18.37" y="719.5" ></text>
</g>
<g >
<title>system_call_fastpath (77 samples, 0.38%)</title><rect x="141.9" y="677" width="4.5" height="15.0" fill="rgb(230,85,51)" rx="2" ry="2" />
<text x="144.88" y="687.5" ></text>
</g>
<g >
<title>napi_gro_receive (4 samples, 0.02%)</title><rect x="1177.3" y="485" width="0.3" height="15.0" fill="rgb(212,227,48)" rx="2" ry="2" />
<text x="1180.32" y="495.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="168.4" y="389" width="0.2" height="15.0" fill="rgb(221,126,35)" rx="2" ry="2" />
<text x="171.43" y="399.5" ></text>
</g>
<g >
<title>[libmarsio.so.4.3] (3 samples, 0.01%)</title><rect x="567.3" y="613" width="0.1" height="15.0" fill="rgb(223,212,43)" rx="2" ry="2" />
<text x="570.26" y="623.5" ></text>
</g>
<g >
<title>malloc (4 samples, 0.02%)</title><rect x="175.7" y="389" width="0.3" height="15.0" fill="rgb(232,104,15)" rx="2" ry="2" />
<text x="178.74" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="469.0" y="405" width="0.1" height="15.0" fill="rgb(230,43,54)" rx="2" ry="2" />
<text x="472.00" y="415.5" ></text>
</g>
<g >
<title>sapp_get_platform_opt (11 samples, 0.05%)</title><rect x="366.9" y="453" width="0.7" height="15.0" fill="rgb(245,175,9)" rx="2" ry="2" />
<text x="369.90" y="463.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="172.9" y="293" width="0.4" height="15.0" fill="rgb(236,46,41)" rx="2" ry="2" />
<text x="175.85" y="303.5" ></text>
</g>
<g >
<title>plugin_process_pending (97 samples, 0.48%)</title><rect x="700.8" y="645" width="5.7" height="15.0" fill="rgb(208,114,18)" rx="2" ry="2" />
<text x="703.80" y="655.5" ></text>
</g>
<g >
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="696.1" y="421" width="0.4" height="15.0" fill="rgb(246,176,13)" rx="2" ry="2" />
<text x="699.14" y="431.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_tcpall_entry (75 samples, 0.37%)</title><rect x="375.4" y="485" width="4.4" height="15.0" fill="rgb(208,209,38)" rx="2" ry="2" />
<text x="378.40" y="495.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="306.3" y="421" width="0.1" height="15.0" fill="rgb(249,189,2)" rx="2" ry="2" />
<text x="309.33" y="431.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="694.1" y="517" width="0.1" height="15.0" fill="rgb(205,222,41)" rx="2" ry="2" />
<text x="697.08" y="527.5" ></text>
</g>
<g >
<title>http_callPlugin (4 samples, 0.02%)</title><rect x="179.3" y="533" width="0.3" height="15.0" fill="rgb(214,120,24)" rx="2" ry="2" />
<text x="182.34" y="543.5" ></text>
</g>
<g >
<title>cJSON_Delete (3 samples, 0.01%)</title><rect x="705.4" y="533" width="0.2" height="15.0" fill="rgb(226,176,23)" rx="2" ry="2" />
<text x="708.40" y="543.5" ></text>
</g>
<g >
<title>TLD_append (12 samples, 0.06%)</title><rect x="642.2" y="501" width="0.7" height="15.0" fill="rgb(235,139,48)" rx="2" ry="2" />
<text x="645.17" y="511.5" ></text>
</g>
<g >
<title>plugin_process_data (3 samples, 0.01%)</title><rect x="179.7" y="469" width="0.2" height="15.0" fill="rgb(214,96,51)" rx="2" ry="2" />
<text x="182.69" y="479.5" ></text>
</g>
<g >
<title>hash_func (39 samples, 0.19%)</title><rect x="499.2" y="517" width="2.3" height="15.0" fill="rgb(240,77,54)" rx="2" ry="2" />
<text x="502.20" y="527.5" ></text>
</g>
<g >
<title>tsg_send_log (9 samples, 0.04%)</title><rect x="177.5" y="453" width="0.5" height="15.0" fill="rgb(251,150,52)" rx="2" ry="2" />
<text x="180.51" y="463.5" ></text>
</g>
<g >
<title>sk_free (2 samples, 0.01%)</title><rect x="323.7" y="245" width="0.1" height="15.0" fill="rgb(226,96,4)" rx="2" ry="2" />
<text x="326.73" y="255.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (7 samples, 0.03%)</title><rect x="320.7" y="197" width="0.4" height="15.0" fill="rgb(228,202,24)" rx="2" ry="2" />
<text x="323.66" y="207.5" ></text>
</g>
<g >
<title>sip_stream_init (3 samples, 0.01%)</title><rect x="309.1" y="469" width="0.2" height="15.0" fill="rgb(225,18,28)" rx="2" ry="2" />
<text x="312.10" y="479.5" ></text>
</g>
<g >
<title>http_callPluginField (5 samples, 0.02%)</title><rect x="287.1" y="389" width="0.3" height="15.0" fill="rgb(208,85,15)" rx="2" ry="2" />
<text x="290.10" y="399.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (2 samples, 0.01%)</title><rect x="12.1" y="613" width="0.1" height="15.0" fill="rgb(232,144,17)" rx="2" ry="2" />
<text x="15.06" y="623.5" ></text>
</g>
<g >
<title>http_callPlugin (7 samples, 0.03%)</title><rect x="690.5" y="501" width="0.5" height="15.0" fill="rgb(230,203,48)" rx="2" ry="2" />
<text x="693.54" y="511.5" ></text>
</g>
<g >
<title>tsg_l7_protocol_name2id (3 samples, 0.01%)</title><rect x="346.4" y="453" width="0.2" height="15.0" fill="rgb(238,85,23)" rx="2" ry="2" />
<text x="349.44" y="463.5" ></text>
</g>
<g >
<title>find_vma (3 samples, 0.01%)</title><rect x="268.2" y="437" width="0.1" height="15.0" fill="rgb(251,216,12)" rx="2" ry="2" />
<text x="271.17" y="447.5" ></text>
</g>
<g >
<title>tsg_record_ssl_entry (10 samples, 0.05%)</title><rect x="331.6" y="341" width="0.6" height="15.0" fill="rgb(235,6,15)" rx="2" ry="2" />
<text x="334.63" y="351.5" ></text>
</g>
<g >
<title>APP_SKETCH_HTTP_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="290.0" y="325" width="0.4" height="15.0" fill="rgb(207,222,0)" rx="2" ry="2" />
<text x="293.05" y="335.5" ></text>
</g>
<g >
<title>start_thread (4 samples, 0.02%)</title><rect x="12.3" y="677" width="0.2" height="15.0" fill="rgb(245,53,37)" rx="2" ry="2" />
<text x="15.30" y="687.5" ></text>
</g>
<g >
<title>tsg_record_dns_entry (90 samples, 0.45%)</title><rect x="701.2" y="613" width="5.3" height="15.0" fill="rgb(245,209,26)" rx="2" ry="2" />
<text x="704.21" y="623.5" ></text>
</g>
<g >
<title>dealipv4udppkt (1,147 samples, 5.73%)</title><rect x="481.1" y="581" width="67.6" height="15.0" fill="rgb(244,160,47)" rx="2" ry="2" />
<text x="484.09" y="591.5" >dealipv..</text>
</g>
<g >
<title>[tsg_conn_sketch.so] (9 samples, 0.04%)</title><rect x="167.3" y="373" width="0.5" height="15.0" fill="rgb(247,12,43)" rx="2" ry="2" />
<text x="170.31" y="383.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="167.9" y="421" width="0.2" height="15.0" fill="rgb(250,120,40)" rx="2" ry="2" />
<text x="170.90" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="323.2" y="181" width="0.3" height="15.0" fill="rgb(221,113,46)" rx="2" ry="2" />
<text x="326.20" y="191.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="312.1" y="453" width="0.1" height="15.0" fill="rgb(212,88,9)" rx="2" ry="2" />
<text x="315.11" y="463.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="99.7" y="517" width="0.1" height="15.0" fill="rgb(208,24,8)" rx="2" ry="2" />
<text x="102.71" y="527.5" ></text>
</g>
<g >
<title>plugin_process_data (6 samples, 0.03%)</title><rect x="303.8" y="341" width="0.3" height="15.0" fill="rgb(234,71,30)" rx="2" ry="2" />
<text x="306.79" y="351.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="178.0" y="565" width="0.3" height="15.0" fill="rgb(221,90,32)" rx="2" ry="2" />
<text x="181.04" y="575.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="292.3" y="325" width="0.2" height="15.0" fill="rgb(226,84,52)" rx="2" ry="2" />
<text x="295.35" y="335.5" ></text>
</g>
<g >
<title>http_parser_execute (9 samples, 0.04%)</title><rect x="344.5" y="453" width="0.5" height="15.0" fill="rgb(233,197,40)" rx="2" ry="2" />
<text x="347.49" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (29 samples, 0.14%)</title><rect x="324.7" y="373" width="1.7" height="15.0" fill="rgb(237,58,53)" rx="2" ry="2" />
<text x="327.67" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="396.6" y="357" width="0.1" height="15.0" fill="rgb(230,32,18)" rx="2" ry="2" />
<text x="399.63" y="367.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (5 samples, 0.02%)</title><rect x="287.1" y="453" width="0.3" height="15.0" fill="rgb(225,29,4)" rx="2" ry="2" />
<text x="290.10" y="463.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="179.4" y="453" width="0.2" height="15.0" fill="rgb(218,96,42)" rx="2" ry="2" />
<text x="182.40" y="463.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (12 samples, 0.06%)</title><rect x="179.3" y="613" width="0.7" height="15.0" fill="rgb(226,116,8)" rx="2" ry="2" />
<text x="182.34" y="623.5" ></text>
</g>
<g >
<title>http_doWithEntity (34 samples, 0.17%)</title><rect x="690.5" y="517" width="2.0" height="15.0" fill="rgb(206,115,3)" rx="2" ry="2" />
<text x="693.54" y="527.5" ></text>
</g>
<g >
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="168.2" y="421" width="0.1" height="15.0" fill="rgb(205,124,29)" rx="2" ry="2" />
<text x="171.19" y="431.5" ></text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="691.0" y="437" width="0.1" height="15.0" fill="rgb(246,11,0)" rx="2" ry="2" />
<text x="693.95" y="447.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="168.8" y="357" width="0.1" height="15.0" fill="rgb(251,146,47)" rx="2" ry="2" />
<text x="171.78" y="367.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="704.0" y="469" width="0.1" height="15.0" fill="rgb(213,223,6)" rx="2" ry="2" />
<text x="706.99" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="168.1" y="389" width="0.1" height="15.0" fill="rgb(239,215,27)" rx="2" ry="2" />
<text x="171.07" y="399.5" ></text>
</g>
<g >
<title>__strcasecmp_l_avx (2 samples, 0.01%)</title><rect x="337.7" y="437" width="0.1" height="15.0" fill="rgb(205,20,8)" rx="2" ry="2" />
<text x="340.71" y="447.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (15 samples, 0.07%)</title><rect x="176.0" y="501" width="0.9" height="15.0" fill="rgb(247,210,49)" rx="2" ry="2" />
<text x="179.04" y="511.5" ></text>
</g>
<g >
<title>_IO_vfscanf (4 samples, 0.02%)</title><rect x="698.1" y="469" width="0.2" height="15.0" fill="rgb(205,18,32)" rx="2" ry="2" />
<text x="701.09" y="479.5" ></text>
</g>
<g >
<title>OBJ_bsearch_ex_ (3 samples, 0.01%)</title><rect x="255.2" y="341" width="0.2" height="15.0" fill="rgb(224,165,50)" rx="2" ry="2" />
<text x="258.25" y="351.5" ></text>
</g>
<g >
<title>stream_create_ipv4 (6 samples, 0.03%)</title><rect x="278.0" y="453" width="0.3" height="15.0" fill="rgb(221,34,45)" rx="2" ry="2" />
<text x="280.96" y="463.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (28 samples, 0.14%)</title><rect x="372.0" y="437" width="1.6" height="15.0" fill="rgb(228,98,25)" rx="2" ry="2" />
<text x="374.97" y="447.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCPALL_PLUG_ENTRY (7 samples, 0.03%)</title><rect x="451.7" y="501" width="0.4" height="15.0" fill="rgb(223,132,14)" rx="2" ry="2" />
<text x="454.72" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="169.2" y="165" width="0.3" height="15.0" fill="rgb(241,45,22)" rx="2" ry="2" />
<text x="172.19" y="175.5" ></text>
</g>
<g >
<title>plugin_process_data (61 samples, 0.30%)</title><rect x="697.2" y="645" width="3.6" height="15.0" fill="rgb(229,98,30)" rx="2" ry="2" />
<text x="700.20" y="655.5" ></text>
</g>
<g >
<title>rdk:broker68 (2 samples, 0.01%)</title><rect x="15.8" y="709" width="0.2" height="15.0" fill="rgb(233,220,8)" rx="2" ry="2" />
<text x="18.84" y="719.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (2 samples, 0.01%)</title><rect x="177.3" y="437" width="0.1" height="15.0" fill="rgb(214,178,12)" rx="2" ry="2" />
<text x="180.27" y="447.5" ></text>
</g>
<g >
<title>rdk:broker2 (4 samples, 0.02%)</title><rect x="11.8" y="709" width="0.3" height="15.0" fill="rgb(238,103,13)" rx="2" ry="2" />
<text x="14.83" y="719.5" ></text>
</g>
<g >
<title>quic_protocol_identify (2 samples, 0.01%)</title><rect x="525.7" y="485" width="0.2" height="15.0" fill="rgb(224,137,6)" rx="2" ry="2" />
<text x="528.74" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="172.9" y="133" width="0.4" height="15.0" fill="rgb(244,130,4)" rx="2" ry="2" />
<text x="175.85" y="143.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (5 samples, 0.02%)</title><rect x="255.0" y="341" width="0.2" height="15.0" fill="rgb(220,222,35)" rx="2" ry="2" />
<text x="257.95" y="351.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (8 samples, 0.04%)</title><rect x="172.9" y="437" width="0.4" height="15.0" fill="rgb(225,38,27)" rx="2" ry="2" />
<text x="175.85" y="447.5" ></text>
</g>
<g >
<title>http_findLineEnd_CR (3 samples, 0.01%)</title><rect x="289.5" y="389" width="0.1" height="15.0" fill="rgb(223,228,53)" rx="2" ry="2" />
<text x="292.46" y="399.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="179.9" y="437" width="0.1" height="15.0" fill="rgb(212,17,50)" rx="2" ry="2" />
<text x="182.93" y="447.5" ></text>
</g>
<g >
<title>rdk:broker19 (4 samples, 0.02%)</title><rect x="10.8" y="709" width="0.3" height="15.0" fill="rgb(243,121,4)" rx="2" ry="2" />
<text x="13.83" y="719.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (2 samples, 0.01%)</title><rect x="696.8" y="549" width="0.2" height="15.0" fill="rgb(254,24,46)" rx="2" ry="2" />
<text x="699.85" y="559.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="255.1" y="181" width="0.1" height="15.0" fill="rgb(243,98,10)" rx="2" ry="2" />
<text x="258.13" y="191.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="181.2" y="533" width="0.4" height="15.0" fill="rgb(226,26,27)" rx="2" ry="2" />
<text x="184.23" y="543.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (4 samples, 0.02%)</title><rect x="14.7" y="661" width="0.2" height="15.0" fill="rgb(253,47,36)" rx="2" ry="2" />
<text x="17.66" y="671.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="703.3" y="517" width="0.2" height="15.0" fill="rgb(229,206,4)" rx="2" ry="2" />
<text x="706.28" y="527.5" ></text>
</g>
<g >
<title>project_req_get_struct (4 samples, 0.02%)</title><rect x="345.6" y="469" width="0.2" height="15.0" fill="rgb(206,110,18)" rx="2" ry="2" />
<text x="348.61" y="479.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (23 samples, 0.11%)</title><rect x="641.8" y="549" width="1.3" height="15.0" fill="rgb(238,140,46)" rx="2" ry="2" />
<text x="644.76" y="559.5" ></text>
</g>
<g >
<title>[sapp] (29 samples, 0.14%)</title><rect x="490.5" y="533" width="1.7" height="15.0" fill="rgb(240,99,20)" rx="2" ry="2" />
<text x="493.47" y="543.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="295.2" y="133" width="0.2" height="15.0" fill="rgb(239,173,13)" rx="2" ry="2" />
<text x="298.24" y="143.5" ></text>
</g>
<g >
<title>__clone (2 samples, 0.01%)</title><rect x="10.4" y="693" width="0.1" height="15.0" fill="rgb(206,123,13)" rx="2" ry="2" />
<text x="13.41" y="703.5" ></text>
</g>
<g >
<title>http_releaseHttpStream (12 samples, 0.06%)</title><rect x="172.1" y="517" width="0.8" height="15.0" fill="rgb(220,209,0)" rx="2" ry="2" />
<text x="175.14" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="291.3" y="277" width="0.3" height="15.0" fill="rgb(242,23,32)" rx="2" ry="2" />
<text x="294.35" y="287.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="298.5" y="309" width="0.2" height="15.0" fill="rgb(231,49,47)" rx="2" ry="2" />
<text x="301.54" y="319.5" ></text>
</g>
<g >
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="713.0" y="421" width="0.1" height="15.0" fill="rgb(205,3,26)" rx="2" ry="2" />
<text x="715.95" y="431.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (5 samples, 0.02%)</title><rect x="705.8" y="533" width="0.3" height="15.0" fill="rgb(218,187,37)" rx="2" ry="2" />
<text x="708.76" y="543.5" ></text>
</g>
<g >
<title>sk_pop_free (5 samples, 0.02%)</title><rect x="325.7" y="293" width="0.3" height="15.0" fill="rgb(244,164,28)" rx="2" ry="2" />
<text x="328.67" y="303.5" ></text>
</g>
<g >
<title>http_analyseACompleteRegion (3 samples, 0.01%)</title><rect x="181.9" y="581" width="0.2" height="15.0" fill="rgb(221,165,25)" rx="2" ry="2" />
<text x="184.87" y="591.5" ></text>
</g>
<g >
<title>_IO_vsprintf (4 samples, 0.02%)</title><rect x="640.5" y="485" width="0.3" height="15.0" fill="rgb(211,50,52)" rx="2" ry="2" />
<text x="643.52" y="495.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (4 samples, 0.02%)</title><rect x="255.4" y="341" width="0.3" height="15.0" fill="rgb(253,98,12)" rx="2" ry="2" />
<text x="258.43" y="351.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="253.3" y="213" width="0.1" height="15.0" fill="rgb(219,197,4)" rx="2" ry="2" />
<text x="256.30" y="223.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="323.3" y="117" width="0.1" height="15.0" fill="rgb(253,21,28)" rx="2" ry="2" />
<text x="326.31" y="127.5" ></text>
</g>
<g >
<title>finish_task_switch (51 samples, 0.25%)</title><rect x="142.9" y="581" width="3.0" height="15.0" fill="rgb(236,29,51)" rx="2" ry="2" />
<text x="145.89" y="591.5" ></text>
</g>
<g >
<title>[libprotoident.so] (3 samples, 0.01%)</title><rect x="256.6" y="437" width="0.2" height="15.0" fill="rgb(230,88,54)" rx="2" ry="2" />
<text x="259.61" y="447.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="274.2" y="469" width="0.2" height="15.0" fill="rgb(215,146,52)" rx="2" ry="2" />
<text x="277.24" y="479.5" ></text>
</g>
<g >
<title>ASN1_template_free (8 samples, 0.04%)</title><rect x="254.4" y="309" width="0.4" height="15.0" fill="rgb(240,3,38)" rx="2" ry="2" />
<text x="257.36" y="319.5" ></text>
</g>
<g >
<title>malloc (8 samples, 0.04%)</title><rect x="331.7" y="293" width="0.5" height="15.0" fill="rgb(209,56,20)" rx="2" ry="2" />
<text x="334.75" y="303.5" ></text>
</g>
<g >
<title>vfprintf (4 samples, 0.02%)</title><rect x="180.3" y="469" width="0.2" height="15.0" fill="rgb(231,45,54)" rx="2" ry="2" />
<text x="183.28" y="479.5" ></text>
</g>
<g >
<title>plugin_process_pending (4 samples, 0.02%)</title><rect x="180.0" y="501" width="0.3" height="15.0" fill="rgb(224,44,26)" rx="2" ry="2" />
<text x="183.05" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="255.1" y="149" width="0.1" height="15.0" fill="rgb(223,226,41)" rx="2" ry="2" />
<text x="258.13" y="159.5" ></text>
</g>
<g >
<title>page_fault (2 samples, 0.01%)</title><rect x="449.7" y="517" width="0.1" height="15.0" fill="rgb(236,63,15)" rx="2" ry="2" />
<text x="452.65" y="527.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (2 samples, 0.01%)</title><rect x="644.9" y="581" width="0.1" height="15.0" fill="rgb(216,111,49)" rx="2" ry="2" />
<text x="647.89" y="591.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (2 samples, 0.01%)</title><rect x="10.2" y="661" width="0.2" height="15.0" fill="rgb(208,138,11)" rx="2" ry="2" />
<text x="13.24" y="671.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (2 samples, 0.01%)</title><rect x="712.5" y="453" width="0.2" height="15.0" fill="rgb(237,156,13)" rx="2" ry="2" />
<text x="715.54" y="463.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="292.3" y="293" width="0.2" height="15.0" fill="rgb(218,219,26)" rx="2" ry="2" />
<text x="295.35" y="303.5" ></text>
</g>
<g >
<title>SSL_ENTRY (9 samples, 0.04%)</title><rect x="169.2" y="517" width="0.5" height="15.0" fill="rgb(230,136,23)" rx="2" ry="2" />
<text x="172.19" y="527.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_serve (2 samples, 0.01%)</title><rect x="15.8" y="597" width="0.2" height="15.0" fill="rgb(224,26,18)" rx="2" ry="2" />
<text x="18.84" y="607.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (19 samples, 0.09%)</title><rect x="513.2" y="517" width="1.1" height="15.0" fill="rgb(207,124,8)" rx="2" ry="2" />
<text x="516.18" y="527.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="523.3" y="469" width="0.1" height="15.0" fill="rgb(215,8,45)" rx="2" ry="2" />
<text x="526.26" y="479.5" ></text>
</g>
<g >
<title>inet_ntop (3 samples, 0.01%)</title><rect x="173.8" y="341" width="0.2" height="15.0" fill="rgb(252,226,3)" rx="2" ry="2" />
<text x="176.79" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="333.2" y="405" width="0.1" height="15.0" fill="rgb(207,180,47)" rx="2" ry="2" />
<text x="336.16" y="415.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="693.0" y="437" width="0.1" height="15.0" fill="rgb(216,91,1)" rx="2" ry="2" />
<text x="695.96" y="447.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="359.1" y="389" width="0.2" height="15.0" fill="rgb(230,30,16)" rx="2" ry="2" />
<text x="362.12" y="399.5" ></text>
</g>
<g >
<title>[tsg_master.so] (51 samples, 0.25%)</title><rect x="362.8" y="421" width="3.0" height="15.0" fill="rgb(220,56,47)" rx="2" ry="2" />
<text x="365.83" y="431.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new0 (4 samples, 0.02%)</title><rect x="295.0" y="277" width="0.2" height="15.0" fill="rgb(211,80,44)" rx="2" ry="2" />
<text x="298.00" y="287.5" ></text>
</g>
<g >
<title>APP_L7_PROTOCOL_UDP_RAW_ENTRY (4 samples, 0.02%)</title><rect x="512.2" y="517" width="0.2" height="15.0" fill="rgb(245,46,15)" rx="2" ry="2" />
<text x="515.18" y="527.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="712.5" y="277" width="0.2" height="15.0" fill="rgb(243,118,18)" rx="2" ry="2" />
<text x="715.54" y="287.5" ></text>
</g>
<g >
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="487.0" y="405" width="0.1" height="15.0" fill="rgb(209,151,30)" rx="2" ry="2" />
<text x="489.99" y="415.5" ></text>
</g>
<g >
<title>vfprintf (14 samples, 0.07%)</title><rect x="467.2" y="389" width="0.8" height="15.0" fill="rgb(242,105,24)" rx="2" ry="2" />
<text x="470.17" y="399.5" ></text>
</g>
<g >
<title>ASN1_item_free (2 samples, 0.01%)</title><rect x="326.3" y="341" width="0.1" height="15.0" fill="rgb(251,182,24)" rx="2" ry="2" />
<text x="329.26" y="351.5" ></text>
</g>
<g >
<title>fn_DocFormatCallBack (2 samples, 0.01%)</title><rect x="301.3" y="325" width="0.1" height="15.0" fill="rgb(235,78,19)" rx="2" ry="2" />
<text x="304.31" y="335.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="172.1" y="325" width="0.2" height="15.0" fill="rgb(245,39,8)" rx="2" ry="2" />
<text x="175.14" y="335.5" ></text>
</g>
<g >
<title>do_nanosleep (63 samples, 0.31%)</title><rect x="142.2" y="629" width="3.7" height="15.0" fill="rgb(238,59,22)" rx="2" ry="2" />
<text x="145.18" y="639.5" ></text>
</g>
<g >
<title>[quic.so] (2 samples, 0.01%)</title><rect x="525.7" y="469" width="0.2" height="15.0" fill="rgb(252,32,36)" rx="2" ry="2" />
<text x="528.74" y="479.5" ></text>
</g>
<g >
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="274.3" y="453" width="0.1" height="15.0" fill="rgb(227,67,32)" rx="2" ry="2" />
<text x="277.30" y="463.5" ></text>
</g>
<g >
<title>http_doWithEntity (5 samples, 0.02%)</title><rect x="179.6" y="565" width="0.3" height="15.0" fill="rgb(213,101,11)" rx="2" ry="2" />
<text x="182.57" y="575.5" ></text>
</g>
<g >
<title>gov_queue_work (2 samples, 0.01%)</title><rect x="10.1" y="613" width="0.1" height="15.0" fill="rgb(212,91,38)" rx="2" ry="2" />
<text x="13.06" y="623.5" ></text>
</g>
<g >
<title>start_thread (2 samples, 0.01%)</title><rect x="14.5" y="677" width="0.2" height="15.0" fill="rgb(212,205,24)" rx="2" ry="2" />
<text x="17.54" y="687.5" ></text>
</g>
<g >
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="487.0" y="421" width="0.1" height="15.0" fill="rgb(249,71,19)" rx="2" ry="2" />
<text x="489.99" y="431.5" ></text>
</g>
<g >
<title>http_url_decode (4 samples, 0.02%)</title><rect x="695.2" y="373" width="0.2" height="15.0" fill="rgb(226,138,24)" rx="2" ry="2" />
<text x="698.20" y="383.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="697.5" y="501" width="0.2" height="15.0" fill="rgb(210,27,13)" rx="2" ry="2" />
<text x="700.50" y="511.5" ></text>
</g>
<g >
<title>page_fault (12 samples, 0.06%)</title><rect x="137.5" y="613" width="0.7" height="15.0" fill="rgb(250,215,40)" rx="2" ry="2" />
<text x="140.52" y="623.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="327.9" y="325" width="0.3" height="15.0" fill="rgb(243,116,5)" rx="2" ry="2" />
<text x="330.91" y="335.5" ></text>
</g>
<g >
<title>__schedule (123 samples, 0.61%)</title><rect x="1177.8" y="645" width="7.2" height="15.0" fill="rgb(220,27,1)" rx="2" ry="2" />
<text x="1180.79" y="655.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="168.2" y="373" width="0.1" height="15.0" fill="rgb(243,151,43)" rx="2" ry="2" />
<text x="171.19" y="383.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (16 samples, 0.08%)</title><rect x="697.4" y="549" width="0.9" height="15.0" fill="rgb(215,58,40)" rx="2" ry="2" />
<text x="700.38" y="559.5" ></text>
</g>
<g >
<title>vfprintf (9 samples, 0.04%)</title><rect x="176.9" y="453" width="0.6" height="15.0" fill="rgb(251,156,0)" rx="2" ry="2" />
<text x="179.92" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="172.9" y="405" width="0.4" height="15.0" fill="rgb(242,182,15)" rx="2" ry="2" />
<text x="175.85" y="415.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (5 samples, 0.02%)</title><rect x="326.9" y="229" width="0.2" height="15.0" fill="rgb(250,157,7)" rx="2" ry="2" />
<text x="329.85" y="239.5" ></text>
</g>
<g >
<title>bool_matcher_match (18 samples, 0.09%)</title><rect x="106.6" y="645" width="1.1" height="15.0" fill="rgb(248,63,2)" rx="2" ry="2" />
<text x="109.61" y="655.5" ></text>
</g>
<g >
<title>_IO_vsprintf (4 samples, 0.02%)</title><rect x="466.1" y="437" width="0.2" height="15.0" fill="rgb(236,224,40)" rx="2" ry="2" />
<text x="469.11" y="447.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="303.3" y="341" width="0.1" height="15.0" fill="rgb(249,150,50)" rx="2" ry="2" />
<text x="306.26" y="351.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="486.2" y="421" width="0.1" height="15.0" fill="rgb(229,127,25)" rx="2" ry="2" />
<text x="489.16" y="431.5" ></text>
</g>
<g >
<title>magic_buffer (4 samples, 0.02%)</title><rect x="695.6" y="389" width="0.2" height="15.0" fill="rgb(225,88,3)" rx="2" ry="2" />
<text x="698.61" y="399.5" ></text>
</g>
<g >
<title>__schedule (91 samples, 0.45%)</title><rect x="184.8" y="581" width="5.4" height="15.0" fill="rgb(207,214,25)" rx="2" ry="2" />
<text x="187.82" y="591.5" ></text>
</g>
<g >
<title>tsg_scan_app_properties_policy (2 samples, 0.01%)</title><rect x="523.6" y="469" width="0.1" height="15.0" fill="rgb(207,78,32)" rx="2" ry="2" />
<text x="526.62" y="479.5" ></text>
</g>
<g >
<title>http_callPluginField (5 samples, 0.02%)</title><rect x="692.6" y="501" width="0.3" height="15.0" fill="rgb(207,21,25)" rx="2" ry="2" />
<text x="695.60" y="511.5" ></text>
</g>
<g >
<title>pipe_write (27 samples, 0.13%)</title><rect x="190.5" y="597" width="1.6" height="15.0" fill="rgb(238,185,12)" rx="2" ry="2" />
<text x="193.54" y="607.5" ></text>
</g>
<g >
<title>file_buffer (2 samples, 0.01%)</title><rect x="707.6" y="645" width="0.2" height="15.0" fill="rgb(212,85,2)" rx="2" ry="2" />
<text x="710.64" y="655.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (4 samples, 0.02%)</title><rect x="480.9" y="533" width="0.2" height="15.0" fill="rgb(219,35,31)" rx="2" ry="2" />
<text x="483.86" y="543.5" ></text>
</g>
<g >
<title>sprintf (2 samples, 0.01%)</title><rect x="700.9" y="549" width="0.1" height="15.0" fill="rgb(229,157,10)" rx="2" ry="2" />
<text x="703.92" y="559.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (67 samples, 0.33%)</title><rect x="142.0" y="645" width="4.0" height="15.0" fill="rgb(222,197,46)" rx="2" ry="2" />
<text x="145.00" y="655.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="168.3" y="421" width="0.1" height="15.0" fill="rgb(228,169,49)" rx="2" ry="2" />
<text x="171.31" y="431.5" ></text>
</g>
<g >
<title>plugin_process_data (3 samples, 0.01%)</title><rect x="691.0" y="421" width="0.1" height="15.0" fill="rgb(221,89,13)" rx="2" ry="2" />
<text x="693.95" y="431.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (75 samples, 0.37%)</title><rect x="396.2" y="453" width="4.4" height="15.0" fill="rgb(241,107,41)" rx="2" ry="2" />
<text x="399.16" y="463.5" ></text>
</g>
<g >
<title>ASN1_primitive_free (4 samples, 0.02%)</title><rect x="253.6" y="133" width="0.2" height="15.0" fill="rgb(234,56,40)" rx="2" ry="2" />
<text x="256.60" y="143.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="331.5" y="325" width="0.1" height="15.0" fill="rgb(209,81,34)" rx="2" ry="2" />
<text x="334.45" y="335.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="300.1" y="277" width="0.2" height="15.0" fill="rgb(229,157,10)" rx="2" ry="2" />
<text x="303.13" y="287.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (196 samples, 0.98%)</title><rect x="369.1" y="533" width="11.5" height="15.0" fill="rgb(241,143,51)" rx="2" ry="2" />
<text x="372.08" y="543.5" ></text>
</g>
<g >
<title>vfprintf (4 samples, 0.02%)</title><rect x="640.5" y="469" width="0.3" height="15.0" fill="rgb(209,169,44)" rx="2" ry="2" />
<text x="643.52" y="479.5" ></text>
</g>
<g >
<title>__libc_calloc (2 samples, 0.01%)</title><rect x="344.1" y="453" width="0.1" height="15.0" fill="rgb(253,39,43)" rx="2" ry="2" />
<text x="347.08" y="463.5" ></text>
</g>
<g >
<title>MV_Sketch_update (5 samples, 0.02%)</title><rect x="541.7" y="453" width="0.3" height="15.0" fill="rgb(240,159,32)" rx="2" ry="2" />
<text x="544.73" y="463.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (6 samples, 0.03%)</title><rect x="395.6" y="405" width="0.3" height="15.0" fill="rgb(207,205,3)" rx="2" ry="2" />
<text x="398.57" y="415.5" ></text>
</g>
<g >
<title>plugin_call_appentry (18 samples, 0.09%)</title><rect x="288.3" y="357" width="1.1" height="15.0" fill="rgb(229,94,46)" rx="2" ry="2" />
<text x="291.34" y="367.5" ></text>
</g>
<g >
<title>DNS_TCP_ENTRY (3 samples, 0.01%)</title><rect x="284.3" y="485" width="0.1" height="15.0" fill="rgb(211,75,20)" rx="2" ry="2" />
<text x="287.27" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (56 samples, 0.28%)</title><rect x="134.9" y="629" width="3.3" height="15.0" fill="rgb(210,79,16)" rx="2" ry="2" />
<text x="137.92" y="639.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="303.3" y="325" width="0.1" height="15.0" fill="rgb(253,16,16)" rx="2" ry="2" />
<text x="306.26" y="335.5" ></text>
</g>
<g >
<title>http_callPlugin (48 samples, 0.24%)</title><rect x="292.5" y="421" width="2.9" height="15.0" fill="rgb(236,132,25)" rx="2" ry="2" />
<text x="295.53" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="254.0" y="245" width="0.1" height="15.0" fill="rgb(227,81,38)" rx="2" ry="2" />
<text x="257.01" y="255.5" ></text>
</g>
<g >
<title>http_callPlugin (6 samples, 0.03%)</title><rect x="690.2" y="501" width="0.3" height="15.0" fill="rgb(221,207,33)" rx="2" ry="2" />
<text x="693.18" y="511.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="517.4" y="453" width="0.1" height="15.0" fill="rgb(231,222,15)" rx="2" ry="2" />
<text x="520.42" y="463.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="168.1" y="85" width="0.1" height="15.0" fill="rgb(236,209,39)" rx="2" ry="2" />
<text x="171.07" y="95.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="173.8" y="309" width="0.2" height="15.0" fill="rgb(227,67,36)" rx="2" ry="2" />
<text x="176.79" y="319.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="696.0" y="469" width="0.1" height="15.0" fill="rgb(245,163,45)" rx="2" ry="2" />
<text x="699.02" y="479.5" ></text>
</g>
<g >
<title>operator new (3 samples, 0.01%)</title><rect x="703.3" y="533" width="0.2" height="15.0" fill="rgb(220,51,52)" rx="2" ry="2" />
<text x="706.28" y="543.5" ></text>
</g>
<g >
<title>_IO_old_init (2 samples, 0.01%)</title><rect x="281.3" y="389" width="0.1" height="15.0" fill="rgb(245,89,50)" rx="2" ry="2" />
<text x="284.32" y="399.5" ></text>
</g>
<g >
<title>cpu_startup_entry (8,062 samples, 40.30%)</title><rect x="713.7" y="677" width="475.5" height="15.0" fill="rgb(229,222,27)" rx="2" ry="2" />
<text x="716.66" y="687.5" >cpu_startup_entry</text>
</g>
<g >
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="161.2" y="677" width="0.1" height="15.0" fill="rgb(219,62,37)" rx="2" ry="2" />
<text x="164.23" y="687.5" ></text>
</g>
<g >
<title>qmdpi_result_attr_getnext_with_index (2 samples, 0.01%)</title><rect x="200.3" y="661" width="0.2" height="15.0" fill="rgb(218,110,18)" rx="2" ry="2" />
<text x="203.34" y="671.5" ></text>
</g>
<g >
<title>do_sync_write (7 samples, 0.03%)</title><rect x="146.0" y="629" width="0.4" height="15.0" fill="rgb(245,174,28)" rx="2" ry="2" />
<text x="148.95" y="639.5" ></text>
</g>
<g >
<title>malloc (4 samples, 0.02%)</title><rect x="369.5" y="469" width="0.2" height="15.0" fill="rgb(211,99,19)" rx="2" ry="2" />
<text x="372.50" y="479.5" ></text>
</g>
<g >
<title>[sapp] (88 samples, 0.44%)</title><rect x="482.4" y="565" width="5.2" height="15.0" fill="rgb(243,101,0)" rx="2" ry="2" />
<text x="485.39" y="575.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="318.4" y="165" width="0.4" height="15.0" fill="rgb(219,110,22)" rx="2" ry="2" />
<text x="321.36" y="175.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="181.7" y="485" width="0.1" height="15.0" fill="rgb(231,143,21)" rx="2" ry="2" />
<text x="184.70" y="495.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="700.3" y="533" width="0.1" height="15.0" fill="rgb(216,208,46)" rx="2" ry="2" />
<text x="703.27" y="543.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="700.6" y="549" width="0.1" height="15.0" fill="rgb(239,7,43)" rx="2" ry="2" />
<text x="703.62" y="559.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="290.3" y="277" width="0.1" height="15.0" fill="rgb(251,160,46)" rx="2" ry="2" />
<text x="293.28" y="287.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="171.2" y="325" width="0.2" height="15.0" fill="rgb(234,216,1)" rx="2" ry="2" />
<text x="174.20" y="335.5" ></text>
</g>
<g >
<title>bsearch (4 samples, 0.02%)</title><rect x="104.4" y="645" width="0.2" height="15.0" fill="rgb(252,153,49)" rx="2" ry="2" />
<text x="107.37" y="655.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (17 samples, 0.08%)</title><rect x="180.7" y="645" width="1.0" height="15.0" fill="rgb(213,183,48)" rx="2" ry="2" />
<text x="183.69" y="655.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (9 samples, 0.04%)</title><rect x="176.9" y="469" width="0.6" height="15.0" fill="rgb(244,172,34)" rx="2" ry="2" />
<text x="179.92" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (11 samples, 0.05%)</title><rect x="290.7" y="261" width="0.6" height="15.0" fill="rgb(236,45,41)" rx="2" ry="2" />
<text x="293.70" y="271.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (21 samples, 0.10%)</title><rect x="252.7" y="229" width="1.2" height="15.0" fill="rgb(236,199,3)" rx="2" ry="2" />
<text x="255.65" y="239.5" ></text>
</g>
<g >
<title>__snprintf (50 samples, 0.25%)</title><rect x="280.8" y="437" width="3.0" height="15.0" fill="rgb(212,202,53)" rx="2" ry="2" />
<text x="283.85" y="447.5" ></text>
</g>
<g >
<title>CIPv4Match::SearchIP (31 samples, 0.15%)</title><rect x="163.8" y="677" width="1.9" height="15.0" fill="rgb(216,32,45)" rx="2" ry="2" />
<text x="166.83" y="687.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (5 samples, 0.02%)</title><rect x="394.6" y="453" width="0.3" height="15.0" fill="rgb(244,175,50)" rx="2" ry="2" />
<text x="397.62" y="463.5" ></text>
</g>
<g >
<title>CBoolExprMatch::search_expr (13 samples, 0.06%)</title><rect x="113.6" y="629" width="0.8" height="15.0" fill="rgb(224,97,26)" rx="2" ry="2" />
<text x="116.63" y="639.5" ></text>
</g>
<g >
<title>ASN1_item_free (4 samples, 0.02%)</title><rect x="325.7" y="277" width="0.3" height="15.0" fill="rgb(239,39,33)" rx="2" ry="2" />
<text x="328.73" y="287.5" ></text>
</g>
<g >
<title>http_callPluginField (30 samples, 0.15%)</title><rect x="287.6" y="405" width="1.8" height="15.0" fill="rgb(240,53,44)" rx="2" ry="2" />
<text x="290.63" y="415.5" ></text>
</g>
<g >
<title>inet_ntop (5 samples, 0.02%)</title><rect x="178.7" y="501" width="0.3" height="15.0" fill="rgb(230,64,3)" rx="2" ry="2" />
<text x="181.75" y="511.5" ></text>
</g>
<g >
<title>sscanf (14 samples, 0.07%)</title><rect x="468.0" y="421" width="0.8" height="15.0" fill="rgb(215,49,10)" rx="2" ry="2" />
<text x="471.00" y="431.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (7 samples, 0.03%)</title><rect x="373.2" y="421" width="0.4" height="15.0" fill="rgb(252,97,31)" rx="2" ry="2" />
<text x="376.21" y="431.5" ></text>
</g>
<g >
<title>http_judgeRequestEntityPresent (3 samples, 0.01%)</title><rect x="301.6" y="437" width="0.2" height="15.0" fill="rgb(251,189,48)" rx="2" ry="2" />
<text x="304.61" y="447.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (24 samples, 0.12%)</title><rect x="179.3" y="629" width="1.4" height="15.0" fill="rgb(247,69,12)" rx="2" ry="2" />
<text x="182.28" y="639.5" ></text>
</g>
<g >
<title>fw_ssl_entry (3 samples, 0.01%)</title><rect x="169.5" y="357" width="0.2" height="15.0" fill="rgb(215,199,5)" rx="2" ry="2" />
<text x="172.55" y="367.5" ></text>
</g>
<g >
<title>sprintf (5 samples, 0.02%)</title><rect x="178.7" y="485" width="0.3" height="15.0" fill="rgb(252,224,28)" rx="2" ry="2" />
<text x="181.75" y="495.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="235.3" y="549" width="0.1" height="15.0" fill="rgb(220,184,32)" rx="2" ry="2" />
<text x="238.31" y="559.5" ></text>
</g>
<g >
<title>http_callPluginField (7 samples, 0.03%)</title><rect x="303.7" y="373" width="0.4" height="15.0" fill="rgb(229,94,21)" rx="2" ry="2" />
<text x="306.73" y="383.5" ></text>
</g>
<g >
<title>systemd-journal (3 samples, 0.01%)</title><rect x="1189.8" y="709" width="0.1" height="15.0" fill="rgb(254,156,11)" rx="2" ry="2" />
<text x="1192.76" y="719.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (4 samples, 0.02%)</title><rect x="12.3" y="629" width="0.2" height="15.0" fill="rgb(246,35,25)" rx="2" ry="2" />
<text x="15.30" y="639.5" ></text>
</g>
<g >
<title>fw_ssl_entry (2 samples, 0.01%)</title><rect x="166.2" y="341" width="0.1" height="15.0" fill="rgb(251,155,37)" rx="2" ry="2" />
<text x="169.19" y="351.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (4 samples, 0.02%)</title><rect x="168.1" y="453" width="0.2" height="15.0" fill="rgb(225,229,16)" rx="2" ry="2" />
<text x="171.07" y="463.5" ></text>
</g>
<g >
<title>malloc (4 samples, 0.02%)</title><rect x="703.0" y="533" width="0.3" height="15.0" fill="rgb(218,172,21)" rx="2" ry="2" />
<text x="706.04" y="543.5" ></text>
</g>
<g >
<title>std::_Rb_tree_increment (4 samples, 0.02%)</title><rect x="337.0" y="437" width="0.2" height="15.0" fill="rgb(213,2,46)" rx="2" ry="2" />
<text x="340.00" y="447.5" ></text>
</g>
<g >
<title>vfprintf (13 samples, 0.06%)</title><rect x="348.7" y="373" width="0.8" height="15.0" fill="rgb(248,206,41)" rx="2" ry="2" />
<text x="351.74" y="383.5" ></text>
</g>
<g >
<title>malloc (5 samples, 0.02%)</title><rect x="291.3" y="261" width="0.3" height="15.0" fill="rgb(223,27,23)" rx="2" ry="2" />
<text x="294.35" y="271.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="637.0" y="581" width="0.2" height="15.0" fill="rgb(214,150,11)" rx="2" ry="2" />
<text x="639.98" y="591.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (6 samples, 0.03%)</title><rect x="101.7" y="677" width="0.4" height="15.0" fill="rgb(250,84,22)" rx="2" ry="2" />
<text x="104.72" y="687.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (75 samples, 0.37%)</title><rect x="396.2" y="437" width="4.4" height="15.0" fill="rgb(251,220,38)" rx="2" ry="2" />
<text x="399.16" y="447.5" ></text>
</g>
<g >
<title>[libprotoident.so] (21 samples, 0.10%)</title><rect x="533.8" y="453" width="1.3" height="15.0" fill="rgb(231,224,42)" rx="2" ry="2" />
<text x="536.82" y="463.5" ></text>
</g>
<g >
<title>file_buffer (4 samples, 0.02%)</title><rect x="695.6" y="373" width="0.2" height="15.0" fill="rgb(243,163,26)" rx="2" ry="2" />
<text x="698.61" y="383.5" ></text>
</g>
<g >
<title>[libmagic.so.1.0.0] (2 samples, 0.01%)</title><rect x="707.6" y="597" width="0.2" height="15.0" fill="rgb(241,62,48)" rx="2" ry="2" />
<text x="710.64" y="607.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="255.7" y="341" width="0.2" height="15.0" fill="rgb(228,90,21)" rx="2" ry="2" />
<text x="258.66" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.03%)</title><rect x="300.4" y="277" width="0.3" height="15.0" fill="rgb(254,24,13)" rx="2" ry="2" />
<text x="303.37" y="287.5" ></text>
</g>
<g >
<title>Maat_table_runtime_get (9 samples, 0.04%)</title><rect x="117.4" y="677" width="0.5" height="15.0" fill="rgb(234,180,30)" rx="2" ry="2" />
<text x="120.41" y="687.5" ></text>
</g>
<g >
<title>rdk:broker62 (3 samples, 0.01%)</title><rect x="14.9" y="709" width="0.2" height="15.0" fill="rgb(246,122,39)" rx="2" ry="2" />
<text x="17.90" y="719.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="283.7" y="389" width="0.1" height="15.0" fill="rgb(240,129,25)" rx="2" ry="2" />
<text x="286.68" y="399.5" ></text>
</g>
<g >
<title>asn1_ex_i2c (2 samples, 0.01%)</title><rect x="328.2" y="309" width="0.1" height="15.0" fill="rgb(246,72,18)" rx="2" ry="2" />
<text x="331.21" y="319.5" ></text>
</g>
<g >
<title>stream_process (5 samples, 0.02%)</title><rect x="478.8" y="517" width="0.3" height="15.0" fill="rgb(240,62,22)" rx="2" ry="2" />
<text x="481.79" y="527.5" ></text>
</g>
<g >
<title>wg_mirror_get_linkinfo_from_mac (3 samples, 0.01%)</title><rect x="537.6" y="501" width="0.2" height="15.0" fill="rgb(229,43,36)" rx="2" ry="2" />
<text x="540.60" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="294.5" y="277" width="0.3" height="15.0" fill="rgb(219,181,39)" rx="2" ry="2" />
<text x="297.47" y="287.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (8 samples, 0.04%)</title><rect x="637.7" y="549" width="0.5" height="15.0" fill="rgb(245,108,6)" rx="2" ry="2" />
<text x="640.69" y="559.5" ></text>
</g>
<g >
<title>stream_process_tcp (16 samples, 0.08%)</title><rect x="180.7" y="597" width="0.9" height="15.0" fill="rgb(233,98,15)" rx="2" ry="2" />
<text x="183.69" y="607.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (24 samples, 0.12%)</title><rect x="176.0" y="581" width="1.5" height="15.0" fill="rgb(237,225,40)" rx="2" ry="2" />
<text x="179.04" y="591.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="535.8" y="485" width="0.1" height="15.0" fill="rgb(244,53,33)" rx="2" ry="2" />
<text x="538.83" y="495.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (6 samples, 0.03%)</title><rect x="321.1" y="149" width="0.4" height="15.0" fill="rgb(246,208,16)" rx="2" ry="2" />
<text x="324.13" y="159.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (5 samples, 0.02%)</title><rect x="373.7" y="437" width="0.3" height="15.0" fill="rgb(225,87,43)" rx="2" ry="2" />
<text x="376.68" y="447.5" ></text>
</g>
<g >
<title>vfprintf (14 samples, 0.07%)</title><rect x="701.7" y="469" width="0.9" height="15.0" fill="rgb(233,144,34)" rx="2" ry="2" />
<text x="704.74" y="479.5" ></text>
</g>
<g >
<title>stream_process (107 samples, 0.53%)</title><rect x="169.7" y="565" width="6.3" height="15.0" fill="rgb(248,182,27)" rx="2" ry="2" />
<text x="172.72" y="575.5" ></text>
</g>
<g >
<title>BUF_MEM_new (2 samples, 0.01%)</title><rect x="254.2" y="277" width="0.1" height="15.0" fill="rgb(219,98,11)" rx="2" ry="2" />
<text x="257.19" y="287.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (11 samples, 0.05%)</title><rect x="512.5" y="501" width="0.6" height="15.0" fill="rgb(231,47,21)" rx="2" ry="2" />
<text x="515.47" y="511.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="640.3" y="533" width="0.1" height="15.0" fill="rgb(222,64,0)" rx="2" ry="2" />
<text x="643.28" y="543.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="696.8" y="453" width="0.2" height="15.0" fill="rgb(244,41,53)" rx="2" ry="2" />
<text x="699.85" y="463.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="545.6" y="437" width="0.1" height="15.0" fill="rgb(217,20,43)" rx="2" ry="2" />
<text x="548.56" y="447.5" ></text>
</g>
<g >
<title>rdk:broker39 (2 samples, 0.01%)</title><rect x="12.9" y="709" width="0.1" height="15.0" fill="rgb(208,75,49)" rx="2" ry="2" />
<text x="15.89" y="719.5" ></text>
</g>
<g >
<title>stream_process_udp (5 samples, 0.02%)</title><rect x="178.0" y="597" width="0.3" height="15.0" fill="rgb(205,129,20)" rx="2" ry="2" />
<text x="181.04" y="607.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_serve (2 samples, 0.01%)</title><rect x="14.9" y="597" width="0.1" height="15.0" fill="rgb(237,116,8)" rx="2" ry="2" />
<text x="17.90" y="607.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="694.1" y="437" width="0.1" height="15.0" fill="rgb(221,38,17)" rx="2" ry="2" />
<text x="697.08" y="447.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="322.4" y="197" width="0.5" height="15.0" fill="rgb(238,78,23)" rx="2" ry="2" />
<text x="325.43" y="207.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (2 samples, 0.01%)</title><rect x="12.1" y="661" width="0.1" height="15.0" fill="rgb(230,81,41)" rx="2" ry="2" />
<text x="15.06" y="671.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (2 samples, 0.01%)</title><rect x="467.8" y="357" width="0.1" height="15.0" fill="rgb(246,167,47)" rx="2" ry="2" />
<text x="470.76" y="367.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (5 samples, 0.02%)</title><rect x="173.0" y="117" width="0.3" height="15.0" fill="rgb(238,176,13)" rx="2" ry="2" />
<text x="176.03" y="127.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="694.9" y="405" width="0.2" height="15.0" fill="rgb(217,29,36)" rx="2" ry="2" />
<text x="697.90" y="415.5" ></text>
</g>
<g >
<title>SSL_ENTRY (4 samples, 0.02%)</title><rect x="166.1" y="501" width="0.2" height="15.0" fill="rgb(223,206,5)" rx="2" ry="2" />
<text x="169.07" y="511.5" ></text>
</g>
<g >
<title>[fw_http_plug.so] (2 samples, 0.01%)</title><rect x="693.0" y="405" width="0.1" height="15.0" fill="rgb(224,71,8)" rx="2" ry="2" />
<text x="695.96" y="415.5" ></text>
</g>
<g >
<title>sprintf (2 samples, 0.01%)</title><rect x="512.9" y="453" width="0.1" height="15.0" fill="rgb(252,108,36)" rx="2" ry="2" />
<text x="515.88" y="463.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (20 samples, 0.10%)</title><rect x="118.0" y="677" width="1.2" height="15.0" fill="rgb(246,216,10)" rx="2" ry="2" />
<text x="121.00" y="687.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="168.1" y="101" width="0.1" height="15.0" fill="rgb(211,142,40)" rx="2" ry="2" />
<text x="171.07" y="111.5" ></text>
</g>
<g >
<title>ssl_callPlugins (11 samples, 0.05%)</title><rect x="329.3" y="389" width="0.7" height="15.0" fill="rgb(248,79,1)" rx="2" ry="2" />
<text x="332.33" y="399.5" ></text>
</g>
<g >
<title>http_tripleMatching (15 samples, 0.07%)</title><rect x="694.2" y="517" width="0.9" height="15.0" fill="rgb(241,14,6)" rx="2" ry="2" />
<text x="697.19" y="527.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="379.9" y="469" width="0.1" height="15.0" fill="rgb(254,37,52)" rx="2" ry="2" />
<text x="382.88" y="479.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="141.8" y="677" width="0.1" height="15.0" fill="rgb(239,26,34)" rx="2" ry="2" />
<text x="144.77" y="687.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (623 samples, 3.11%)</title><rect x="510.6" y="533" width="36.7" height="15.0" fill="rgb(253,192,54)" rx="2" ry="2" />
<text x="513.58" y="543.5" >plu..</text>
</g>
<g >
<title>sapp_dup_pkt_mark_v4 (124 samples, 0.62%)</title><rect x="403.6" y="533" width="7.4" height="15.0" fill="rgb(220,225,38)" rx="2" ry="2" />
<text x="406.65" y="543.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (4 samples, 0.02%)</title><rect x="166.1" y="437" width="0.2" height="15.0" fill="rgb(221,118,30)" rx="2" ry="2" />
<text x="169.07" y="447.5" ></text>
</g>
<g >
<title>[libprotoident.so] (38 samples, 0.19%)</title><rect x="334.8" y="437" width="2.2" height="15.0" fill="rgb(218,43,12)" rx="2" ry="2" />
<text x="337.76" y="447.5" ></text>
</g>
<g >
<title>app_proto_worke_process (17 samples, 0.08%)</title><rect x="166.3" y="485" width="1.0" height="15.0" fill="rgb(223,173,9)" rx="2" ry="2" />
<text x="169.30" y="495.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_by_id (2 samples, 0.01%)</title><rect x="111.0" y="677" width="0.2" height="15.0" fill="rgb(225,2,14)" rx="2" ry="2" />
<text x="114.04" y="687.5" ></text>
</g>
<g >
<title>ssl_doWithServerHello (3 samples, 0.01%)</title><rect x="168.4" y="453" width="0.2" height="15.0" fill="rgb(236,208,1)" rx="2" ry="2" />
<text x="171.43" y="463.5" ></text>
</g>
<g >
<title>[libprotoident.so] (111 samples, 0.55%)</title><rect x="529.2" y="485" width="6.5" height="15.0" fill="rgb(215,83,35)" rx="2" ry="2" />
<text x="532.16" y="495.5" ></text>
</g>
<g >
<title>[libqmbundle.so] (259 samples, 1.29%)</title><rect x="146.4" y="693" width="15.3" height="15.0" fill="rgb(237,115,29)" rx="2" ry="2" />
<text x="149.43" y="703.5" ></text>
</g>
<g >
<title>stream_process (112 samples, 0.56%)</title><rect x="394.0" y="485" width="6.6" height="15.0" fill="rgb(222,147,6)" rx="2" ry="2" />
<text x="396.97" y="495.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="469.1" y="437" width="0.1" height="15.0" fill="rgb(238,7,43)" rx="2" ry="2" />
<text x="472.12" y="447.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="350.0" y="405" width="0.2" height="15.0" fill="rgb(234,30,1)" rx="2" ry="2" />
<text x="353.03" y="415.5" ></text>
</g>
<g >
<title>set_session_attributes (6 samples, 0.03%)</title><rect x="177.7" y="421" width="0.3" height="15.0" fill="rgb(205,165,21)" rx="2" ry="2" />
<text x="180.69" y="431.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="168.4" y="357" width="0.2" height="15.0" fill="rgb(211,35,51)" rx="2" ry="2" />
<text x="171.43" y="367.5" ></text>
</g>
<g >
<title>finish_task_switch (89 samples, 0.44%)</title><rect x="184.8" y="565" width="5.3" height="15.0" fill="rgb(222,187,11)" rx="2" ry="2" />
<text x="187.82" y="575.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (2 samples, 0.01%)</title><rect x="125.5" y="629" width="0.2" height="15.0" fill="rgb(217,35,23)" rx="2" ry="2" />
<text x="128.55" y="639.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="523.3" y="453" width="0.1" height="15.0" fill="rgb(216,150,54)" rx="2" ry="2" />
<text x="526.26" y="463.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="180.3" y="485" width="0.2" height="15.0" fill="rgb(209,65,28)" rx="2" ry="2" />
<text x="183.28" y="495.5" ></text>
</g>
<g >
<title>stream_process_tcp (5 samples, 0.02%)</title><rect x="392.0" y="485" width="0.3" height="15.0" fill="rgb(209,195,41)" rx="2" ry="2" />
<text x="395.03" y="495.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="303.8" y="325" width="0.3" height="15.0" fill="rgb(224,197,31)" rx="2" ry="2" />
<text x="306.85" y="335.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="172.9" y="165" width="0.4" height="15.0" fill="rgb(217,138,9)" rx="2" ry="2" />
<text x="175.85" y="175.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="301.8" y="373" width="0.2" height="15.0" fill="rgb(223,60,37)" rx="2" ry="2" />
<text x="304.79" y="383.5" ></text>
</g>
<g >
<title>__clone (4 samples, 0.02%)</title><rect x="16.6" y="693" width="0.2" height="15.0" fill="rgb(250,47,24)" rx="2" ry="2" />
<text x="19.61" y="703.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (70 samples, 0.35%)</title><rect x="375.4" y="453" width="4.1" height="15.0" fill="rgb(242,99,14)" rx="2" ry="2" />
<text x="378.40" y="463.5" ></text>
</g>
<g >
<title>__irqentry_text_start (6 samples, 0.03%)</title><rect x="1177.2" y="613" width="0.4" height="15.0" fill="rgb(226,106,45)" rx="2" ry="2" />
<text x="1180.20" y="623.5" ></text>
</g>
<g >
<title>free (4 samples, 0.02%)</title><rect x="293.9" y="277" width="0.2" height="15.0" fill="rgb(209,190,8)" rx="2" ry="2" />
<text x="296.88" y="287.5" ></text>
</g>
<g >
<title>stream_bridge_create_per_stream (2 samples, 0.01%)</title><rect x="269.2" y="533" width="0.1" height="15.0" fill="rgb(243,91,29)" rx="2" ry="2" />
<text x="272.17" y="543.5" ></text>
</g>
<g >
<title>inet_ntop (2 samples, 0.01%)</title><rect x="181.7" y="469" width="0.1" height="15.0" fill="rgb(254,4,24)" rx="2" ry="2" />
<text x="184.70" y="479.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="179.5" y="405" width="0.1" height="15.0" fill="rgb(205,206,17)" rx="2" ry="2" />
<text x="182.46" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.03%)</title><rect x="371.3" y="437" width="0.4" height="15.0" fill="rgb(246,156,15)" rx="2" ry="2" />
<text x="374.33" y="447.5" ></text>
</g>
<g >
<title>stream_process (8 samples, 0.04%)</title><rect x="181.8" y="661" width="0.5" height="15.0" fill="rgb(225,6,25)" rx="2" ry="2" />
<text x="184.82" y="671.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="326.9" y="165" width="0.1" height="15.0" fill="rgb(238,115,11)" rx="2" ry="2" />
<text x="329.85" y="175.5" ></text>
</g>
<g >
<title>handle_mm_fault (7 samples, 0.03%)</title><rect x="137.8" y="565" width="0.4" height="15.0" fill="rgb(232,148,21)" rx="2" ry="2" />
<text x="140.81" y="575.5" ></text>
</g>
<g >
<title>http_doWithGzipData (20 samples, 0.10%)</title><rect x="300.4" y="389" width="1.1" height="15.0" fill="rgb(217,189,24)" rx="2" ry="2" />
<text x="303.37" y="399.5" ></text>
</g>
<g >
<title>hash_func (45 samples, 0.22%)</title><rect x="439.0" y="469" width="2.6" height="15.0" fill="rgb(251,56,29)" rx="2" ry="2" />
<text x="441.98" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (11 samples, 0.05%)</title><rect x="364.8" y="373" width="0.6" height="15.0" fill="rgb(225,6,0)" rx="2" ry="2" />
<text x="367.78" y="383.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="695.8" y="469" width="0.2" height="15.0" fill="rgb(230,161,20)" rx="2" ry="2" />
<text x="698.85" y="479.5" ></text>
</g>
<g >
<title>[libqmengine.so] (36 samples, 0.18%)</title><rect x="161.7" y="693" width="2.1" height="15.0" fill="rgb(247,23,29)" rx="2" ry="2" />
<text x="164.70" y="703.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="712.5" y="549" width="0.2" height="15.0" fill="rgb(218,153,17)" rx="2" ry="2" />
<text x="715.54" y="559.5" ></text>
</g>
<g >
<title>free_heap_stream_info (8 samples, 0.04%)</title><rect x="636.2" y="597" width="0.5" height="15.0" fill="rgb(246,114,30)" rx="2" ry="2" />
<text x="639.22" y="607.5" ></text>
</g>
<g >
<title>arch_cpu_idle (7,863 samples, 39.30%)</title><rect x="713.8" y="661" width="463.8" height="15.0" fill="rgb(244,61,44)" rx="2" ry="2" />
<text x="716.78" y="671.5" >arch_cpu_idle</text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="365.5" y="373" width="0.2" height="15.0" fill="rgb(207,178,6)" rx="2" ry="2" />
<text x="368.49" y="383.5" ></text>
</g>
<g >
<title>http_callPlugin (5 samples, 0.02%)</title><rect x="394.6" y="405" width="0.3" height="15.0" fill="rgb(231,114,20)" rx="2" ry="2" />
<text x="397.62" y="415.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (5 samples, 0.02%)</title><rect x="175.2" y="437" width="0.2" height="15.0" fill="rgb(219,199,5)" rx="2" ry="2" />
<text x="178.15" y="447.5" ></text>
</g>
<g >
<title>cJSON_AddNumberToObject (6 samples, 0.03%)</title><rect x="350.0" y="453" width="0.4" height="15.0" fill="rgb(244,44,21)" rx="2" ry="2" />
<text x="353.03" y="463.5" ></text>
</g>
<g >
<title>start_thread (2 samples, 0.01%)</title><rect x="10.9" y="677" width="0.2" height="15.0" fill="rgb(226,187,52)" rx="2" ry="2" />
<text x="13.94" y="687.5" ></text>
</g>
<g >
<title>PROT_PROCESS (5 samples, 0.02%)</title><rect x="693.3" y="677" width="0.2" height="15.0" fill="rgb(229,183,39)" rx="2" ry="2" />
<text x="696.25" y="687.5" ></text>
</g>
<g >
<title>__do_page_fault (2 samples, 0.01%)</title><rect x="250.1" y="469" width="0.1" height="15.0" fill="rgb(218,61,29)" rx="2" ry="2" />
<text x="253.12" y="479.5" ></text>
</g>
<g >
<title>__printf_fp (3 samples, 0.01%)</title><rect x="395.7" y="325" width="0.2" height="15.0" fill="rgb(230,2,0)" rx="2" ry="2" />
<text x="398.69" y="335.5" ></text>
</g>
<g >
<title>[sapp] (8 samples, 0.04%)</title><rect x="546.8" y="485" width="0.5" height="15.0" fill="rgb(238,141,1)" rx="2" ry="2" />
<text x="549.80" y="495.5" ></text>
</g>
<g >
<title>__strncasecmp_l_avx (5 samples, 0.02%)</title><rect x="308.8" y="453" width="0.3" height="15.0" fill="rgb(228,181,50)" rx="2" ry="2" />
<text x="311.80" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="260.4" y="501" width="0.2" height="15.0" fill="rgb(208,25,33)" rx="2" ry="2" />
<text x="263.44" y="511.5" ></text>
</g>
<g >
<title>native_safe_halt (7,857 samples, 39.27%)</title><rect x="713.8" y="629" width="463.4" height="15.0" fill="rgb(246,83,35)" rx="2" ry="2" />
<text x="716.78" y="639.5" >native_safe_halt</text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="322.0" y="181" width="0.3" height="15.0" fill="rgb(224,157,1)" rx="2" ry="2" />
<text x="324.96" y="191.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (13 samples, 0.06%)</title><rect x="326.5" y="325" width="0.8" height="15.0" fill="rgb(219,68,20)" rx="2" ry="2" />
<text x="329.50" y="335.5" ></text>
</g>
<g >
<title>__do_page_fault (2 samples, 0.01%)</title><rect x="705.9" y="453" width="0.2" height="15.0" fill="rgb(215,10,54)" rx="2" ry="2" />
<text x="708.93" y="463.5" ></text>
</g>
<g >
<title>cJSON_ParseWithOpts (3 samples, 0.01%)</title><rect x="487.1" y="421" width="0.2" height="15.0" fill="rgb(229,169,34)" rx="2" ry="2" />
<text x="490.11" y="431.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new0 (2 samples, 0.01%)</title><rect x="366.1" y="405" width="0.2" height="15.0" fill="rgb(230,92,43)" rx="2" ry="2" />
<text x="369.14" y="415.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="166.2" y="389" width="0.1" height="15.0" fill="rgb(222,48,8)" rx="2" ry="2" />
<text x="169.19" y="399.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="537.8" y="421" width="0.2" height="15.0" fill="rgb(217,3,51)" rx="2" ry="2" />
<text x="540.77" y="431.5" ></text>
</g>
<g >
<title>ssl_analyseStream (4 samples, 0.02%)</title><rect x="180.0" y="597" width="0.3" height="15.0" fill="rgb(233,94,27)" rx="2" ry="2" />
<text x="183.05" y="607.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (6 samples, 0.03%)</title><rect x="290.0" y="309" width="0.4" height="15.0" fill="rgb(238,68,9)" rx="2" ry="2" />
<text x="293.05" y="319.5" ></text>
</g>
<g >
<title>sk_insert (2 samples, 0.01%)</title><rect x="323.9" y="277" width="0.1" height="15.0" fill="rgb(205,125,42)" rx="2" ry="2" />
<text x="326.90" y="287.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="166.1" y="325" width="0.1" height="15.0" fill="rgb(235,226,31)" rx="2" ry="2" />
<text x="169.07" y="335.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="180.3" y="581" width="0.4" height="15.0" fill="rgb(228,92,51)" rx="2" ry="2" />
<text x="183.28" y="591.5" ></text>
</g>
<g >
<title>stream_process (47 samples, 0.23%)</title><rect x="690.2" y="597" width="2.8" height="15.0" fill="rgb(247,92,38)" rx="2" ry="2" />
<text x="693.18" y="607.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="277.7" y="357" width="0.1" height="15.0" fill="rgb(237,117,41)" rx="2" ry="2" />
<text x="280.66" y="367.5" ></text>
</g>
<g >
<title>plugin_process_data (3 samples, 0.01%)</title><rect x="179.9" y="469" width="0.1" height="15.0" fill="rgb(251,72,37)" rx="2" ry="2" />
<text x="182.87" y="479.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (73 samples, 0.36%)</title><rect x="279.5" y="469" width="4.3" height="15.0" fill="rgb(249,116,43)" rx="2" ry="2" />
<text x="282.49" y="479.5" ></text>
</g>
<g >
<title>tcp_write_xmit (3 samples, 0.01%)</title><rect x="1177.3" y="293" width="0.2" height="15.0" fill="rgb(219,199,37)" rx="2" ry="2" />
<text x="1180.32" y="303.5" ></text>
</g>
<g >
<title>http_doWithConnection (2 samples, 0.01%)</title><rect x="303.1" y="405" width="0.1" height="15.0" fill="rgb(245,96,7)" rx="2" ry="2" />
<text x="306.08" y="415.5" ></text>
</g>
<g >
<title>start_thread (4 samples, 0.02%)</title><rect x="14.1" y="677" width="0.3" height="15.0" fill="rgb(215,135,33)" rx="2" ry="2" />
<text x="17.13" y="687.5" ></text>
</g>
<g >
<title>free_polling_inject_context (3 samples, 0.01%)</title><rect x="392.6" y="501" width="0.1" height="15.0" fill="rgb(237,5,27)" rx="2" ry="2" />
<text x="395.56" y="511.5" ></text>
</g>
<g >
<title>QUIC_ENTRY (18 samples, 0.09%)</title><rect x="516.5" y="517" width="1.1" height="15.0" fill="rgb(216,1,47)" rx="2" ry="2" />
<text x="519.54" y="527.5" ></text>
</g>
<g >
<title>http_doWithDefaultData (24 samples, 0.12%)</title><rect x="691.1" y="501" width="1.4" height="15.0" fill="rgb(213,144,23)" rx="2" ry="2" />
<text x="694.13" y="511.5" ></text>
</g>
<g >
<title>malloc (129 samples, 0.64%)</title><rect x="260.8" y="517" width="7.6" height="15.0" fill="rgb(215,158,44)" rx="2" ry="2" />
<text x="263.79" y="527.5" ></text>
</g>
<g >
<title>stream_process_tcp (3 samples, 0.01%)</title><rect x="693.0" y="581" width="0.1" height="15.0" fill="rgb(240,44,14)" rx="2" ry="2" />
<text x="695.96" y="591.5" ></text>
</g>
<g >
<title>CZipFormat::AddDocData (5 samples, 0.02%)</title><rect x="301.1" y="357" width="0.3" height="15.0" fill="rgb(224,152,39)" rx="2" ry="2" />
<text x="304.14" y="367.5" ></text>
</g>
<g >
<title>cJSON_CreateNumber (5 samples, 0.02%)</title><rect x="705.8" y="549" width="0.3" height="15.0" fill="rgb(236,25,8)" rx="2" ry="2" />
<text x="708.76" y="559.5" ></text>
</g>
<g >
<title>change_prot_numa (10 samples, 0.05%)</title><rect x="248.8" y="421" width="0.6" height="15.0" fill="rgb(212,43,53)" rx="2" ry="2" />
<text x="251.82" y="431.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.01%)</title><rect x="644.9" y="613" width="0.1" height="15.0" fill="rgb(205,197,23)" rx="2" ry="2" />
<text x="647.89" y="623.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (7 samples, 0.03%)</title><rect x="693.7" y="565" width="0.4" height="15.0" fill="rgb(231,49,37)" rx="2" ry="2" />
<text x="696.66" y="575.5" ></text>
</g>
<g >
<title>CUNZIP::fn_iUnGZ (3 samples, 0.01%)</title><rect x="301.1" y="325" width="0.2" height="15.0" fill="rgb(247,89,34)" rx="2" ry="2" />
<text x="304.14" y="335.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="324.4" y="325" width="0.3" height="15.0" fill="rgb(213,5,35)" rx="2" ry="2" />
<text x="327.43" y="335.5" ></text>
</g>
<g >
<title>Maat_clean_status (9 samples, 0.04%)</title><rect x="637.6" y="565" width="0.6" height="15.0" fill="rgb(227,4,5)" rx="2" ry="2" />
<text x="640.63" y="575.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="373.0" y="389" width="0.2" height="15.0" fill="rgb(229,157,18)" rx="2" ry="2" />
<text x="375.98" y="399.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="168.8" y="485" width="0.1" height="15.0" fill="rgb(225,132,53)" rx="2" ry="2" />
<text x="171.78" y="495.5" ></text>
</g>
<g >
<title>page_fault (3 samples, 0.01%)</title><rect x="306.0" y="389" width="0.2" height="15.0" fill="rgb(209,223,44)" rx="2" ry="2" />
<text x="309.03" y="399.5" ></text>
</g>
<g >
<title>ssl_analyseStream (9 samples, 0.04%)</title><rect x="168.1" y="501" width="0.5" height="15.0" fill="rgb(246,177,22)" rx="2" ry="2" />
<text x="171.07" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="175.7" y="405" width="0.3" height="15.0" fill="rgb(224,141,48)" rx="2" ry="2" />
<text x="178.74" y="415.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (31 samples, 0.15%)</title><rect x="252.2" y="293" width="1.8" height="15.0" fill="rgb(211,123,25)" rx="2" ry="2" />
<text x="255.18" y="303.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="179.6" y="389" width="0.1" height="15.0" fill="rgb(219,103,31)" rx="2" ry="2" />
<text x="182.57" y="399.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (2 samples, 0.01%)</title><rect x="10.9" y="661" width="0.2" height="15.0" fill="rgb(240,159,12)" rx="2" ry="2" />
<text x="13.94" y="671.5" ></text>
</g>
<g >
<title>[tsg_master.so] (24 samples, 0.12%)</title><rect x="176.0" y="533" width="1.5" height="15.0" fill="rgb(214,123,5)" rx="2" ry="2" />
<text x="179.04" y="543.5" ></text>
</g>
<g >
<title>__do_page_fault (4 samples, 0.02%)</title><rect x="268.9" y="437" width="0.3" height="15.0" fill="rgb(243,2,32)" rx="2" ry="2" />
<text x="271.93" y="447.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="179.6" y="469" width="0.1" height="15.0" fill="rgb(213,163,28)" rx="2" ry="2" />
<text x="182.57" y="479.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (2 samples, 0.01%)</title><rect x="14.9" y="645" width="0.1" height="15.0" fill="rgb(237,94,28)" rx="2" ry="2" />
<text x="17.90" y="655.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="168.6" y="469" width="0.1" height="15.0" fill="rgb(245,196,17)" rx="2" ry="2" />
<text x="171.60" y="479.5" ></text>
</g>
<g >
<title>sprintf (5 samples, 0.02%)</title><rect x="697.8" y="501" width="0.3" height="15.0" fill="rgb(230,152,24)" rx="2" ry="2" />
<text x="700.79" y="511.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="179.6" y="421" width="0.1" height="15.0" fill="rgb(218,164,17)" rx="2" ry="2" />
<text x="182.57" y="431.5" ></text>
</g>
<g >
<title>Maat_table_runtime_get (3 samples, 0.01%)</title><rect x="101.4" y="677" width="0.2" height="15.0" fill="rgb(243,175,52)" rx="2" ry="2" />
<text x="104.42" y="687.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="179.6" y="501" width="0.1" height="15.0" fill="rgb(232,85,44)" rx="2" ry="2" />
<text x="182.57" y="511.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (6 samples, 0.03%)</title><rect x="182.9" y="645" width="0.3" height="15.0" fill="rgb(238,11,2)" rx="2" ry="2" />
<text x="185.88" y="655.5" ></text>
</g>
<g >
<title>fw_ssl_entry (2 samples, 0.01%)</title><rect x="168.3" y="373" width="0.1" height="15.0" fill="rgb(252,11,51)" rx="2" ry="2" />
<text x="171.31" y="383.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (2 samples, 0.01%)</title><rect x="190.1" y="565" width="0.1" height="15.0" fill="rgb(208,178,28)" rx="2" ry="2" />
<text x="193.07" y="575.5" ></text>
</g>
<g >
<title>tsg_record_ssl_entry (5 samples, 0.02%)</title><rect x="256.3" y="309" width="0.2" height="15.0" fill="rgb(252,209,11)" rx="2" ry="2" />
<text x="259.25" y="319.5" ></text>
</g>
<g >
<title>plugin_process_close (9 samples, 0.04%)</title><rect x="167.3" y="421" width="0.5" height="15.0" fill="rgb(252,195,15)" rx="2" ry="2" />
<text x="170.31" y="431.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="358.8" y="421" width="0.1" height="15.0" fill="rgb(248,155,21)" rx="2" ry="2" />
<text x="361.82" y="431.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (13 samples, 0.06%)</title><rect x="328.4" y="373" width="0.8" height="15.0" fill="rgb(241,137,36)" rx="2" ry="2" />
<text x="331.39" y="383.5" ></text>
</g>
<g >
<title>http_doWithChunkedData (4 samples, 0.02%)</title><rect x="295.4" y="421" width="0.2" height="15.0" fill="rgb(213,173,11)" rx="2" ry="2" />
<text x="298.36" y="431.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (2 samples, 0.01%)</title><rect x="12.1" y="629" width="0.1" height="15.0" fill="rgb(251,153,52)" rx="2" ry="2" />
<text x="15.06" y="639.5" ></text>
</g>
<g >
<title>http_doWithEntity (2 samples, 0.01%)</title><rect x="99.7" y="645" width="0.1" height="15.0" fill="rgb(231,69,34)" rx="2" ry="2" />
<text x="102.71" y="655.5" ></text>
</g>
<g >
<title>change_protection (15 samples, 0.07%)</title><rect x="688.8" y="517" width="0.9" height="15.0" fill="rgb(244,145,42)" rx="2" ry="2" />
<text x="691.77" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="318.5" y="117" width="0.2" height="15.0" fill="rgb(213,93,37)" rx="2" ry="2" />
<text x="321.54" y="127.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="307.6" y="293" width="0.2" height="15.0" fill="rgb(254,155,13)" rx="2" ry="2" />
<text x="310.57" y="303.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="705.6" y="533" width="0.2" height="15.0" fill="rgb(225,178,25)" rx="2" ry="2" />
<text x="708.58" y="543.5" ></text>
</g>
<g >
<title>expiry_dablooms_add (10 samples, 0.05%)</title><rect x="495.2" y="533" width="0.6" height="15.0" fill="rgb(249,56,38)" rx="2" ry="2" />
<text x="498.19" y="543.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (7 samples, 0.03%)</title><rect x="641.0" y="485" width="0.4" height="15.0" fill="rgb(212,83,48)" rx="2" ry="2" />
<text x="643.99" y="495.5" ></text>
</g>
<g >
<title>CRYPTO_free (2 samples, 0.01%)</title><rect x="323.7" y="229" width="0.1" height="15.0" fill="rgb(237,179,22)" rx="2" ry="2" />
<text x="326.73" y="239.5" ></text>
</g>
<g >
<title>SSL_ENTRY (20 samples, 0.10%)</title><rect x="172.9" y="533" width="1.1" height="15.0" fill="rgb(236,215,34)" rx="2" ry="2" />
<text x="175.85" y="543.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (9 samples, 0.04%)</title><rect x="400.6" y="501" width="0.5" height="15.0" fill="rgb(227,99,24)" rx="2" ry="2" />
<text x="403.58" y="511.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="326.6" y="261" width="0.1" height="15.0" fill="rgb(243,97,54)" rx="2" ry="2" />
<text x="329.62" y="271.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="256.1" y="373" width="0.1" height="15.0" fill="rgb(219,67,52)" rx="2" ry="2" />
<text x="259.07" y="383.5" ></text>
</g>
<g >
<title>realloc (2 samples, 0.01%)</title><rect x="699.6" y="501" width="0.1" height="15.0" fill="rgb(252,16,48)" rx="2" ry="2" />
<text x="702.56" y="511.5" ></text>
</g>
<g >
<title>stream_process (41 samples, 0.20%)</title><rect x="166.3" y="549" width="2.4" height="15.0" fill="rgb(224,202,39)" rx="2" ry="2" />
<text x="169.30" y="559.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (3 samples, 0.01%)</title><rect x="178.5" y="533" width="0.2" height="15.0" fill="rgb(241,75,50)" rx="2" ry="2" />
<text x="181.51" y="543.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (23 samples, 0.11%)</title><rect x="330.0" y="421" width="1.3" height="15.0" fill="rgb(226,120,8)" rx="2" ry="2" />
<text x="332.98" y="431.5" ></text>
</g>
<g >
<title>__clone (2 samples, 0.01%)</title><rect x="14.9" y="693" width="0.1" height="15.0" fill="rgb(224,78,35)" rx="2" ry="2" />
<text x="17.90" y="703.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (4 samples, 0.02%)</title><rect x="166.1" y="469" width="0.2" height="15.0" fill="rgb(253,79,43)" rx="2" ry="2" />
<text x="169.07" y="479.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="169.0" y="405" width="0.2" height="15.0" fill="rgb(254,38,21)" rx="2" ry="2" />
<text x="172.02" y="415.5" ></text>
</g>
<g >
<title>c2i_ASN1_OBJECT (2 samples, 0.01%)</title><rect x="321.0" y="181" width="0.1" height="15.0" fill="rgb(216,189,9)" rx="2" ry="2" />
<text x="323.95" y="191.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="397.5" y="325" width="0.1" height="15.0" fill="rgb(205,179,44)" rx="2" ry="2" />
<text x="400.51" y="335.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_serve (2 samples, 0.01%)</title><rect x="13.9" y="597" width="0.1" height="15.0" fill="rgb(246,114,21)" rx="2" ry="2" />
<text x="16.89" y="607.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="173.0" y="37" width="0.2" height="15.0" fill="rgb(230,190,37)" rx="2" ry="2" />
<text x="176.03" y="47.5" ></text>
</g>
<g >
<title>inet_ntop (3 samples, 0.01%)</title><rect x="180.5" y="501" width="0.2" height="15.0" fill="rgb(233,178,43)" rx="2" ry="2" />
<text x="183.52" y="511.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="307.7" y="277" width="0.1" height="15.0" fill="rgb(205,48,18)" rx="2" ry="2" />
<text x="310.68" y="287.5" ></text>
</g>
<g >
<title>__clock_gettime (10 samples, 0.05%)</title><rect x="538.1" y="517" width="0.6" height="15.0" fill="rgb(217,99,30)" rx="2" ry="2" />
<text x="541.13" y="527.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (3 samples, 0.01%)</title><rect x="392.0" y="405" width="0.2" height="15.0" fill="rgb(224,11,9)" rx="2" ry="2" />
<text x="395.03" y="415.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (4 samples, 0.02%)</title><rect x="179.0" y="517" width="0.3" height="15.0" fill="rgb(226,1,34)" rx="2" ry="2" />
<text x="182.04" y="527.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="293.7" y="277" width="0.1" height="15.0" fill="rgb(237,114,5)" rx="2" ry="2" />
<text x="296.70" y="287.5" ></text>
</g>
<g >
<title>malloc_consolidate (7 samples, 0.03%)</title><rect x="548.9" y="517" width="0.4" height="15.0" fill="rgb(252,163,9)" rx="2" ry="2" />
<text x="551.92" y="527.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (27 samples, 0.13%)</title><rect x="698.3" y="581" width="1.6" height="15.0" fill="rgb(235,138,23)" rx="2" ry="2" />
<text x="701.32" y="591.5" ></text>
</g>
<g >
<title>task_work_run (15 samples, 0.07%)</title><rect x="688.8" y="565" width="0.9" height="15.0" fill="rgb(229,76,49)" rx="2" ry="2" />
<text x="691.77" y="575.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="169.5" y="373" width="0.2" height="15.0" fill="rgb(235,164,32)" rx="2" ry="2" />
<text x="172.55" y="383.5" ></text>
</g>
<g >
<title>findstreamindex (96 samples, 0.48%)</title><rect x="487.6" y="565" width="5.6" height="15.0" fill="rgb(235,49,41)" rx="2" ry="2" />
<text x="490.58" y="575.5" ></text>
</g>
<g >
<title>[fw_http_plug.so] (5 samples, 0.02%)</title><rect x="695.2" y="389" width="0.3" height="15.0" fill="rgb(241,113,1)" rx="2" ry="2" />
<text x="698.20" y="399.5" ></text>
</g>
<g >
<title>__printf_fp (2 samples, 0.01%)</title><rect x="537.8" y="389" width="0.2" height="15.0" fill="rgb(209,68,17)" rx="2" ry="2" />
<text x="540.83" y="399.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (3 samples, 0.01%)</title><rect x="691.0" y="485" width="0.1" height="15.0" fill="rgb(239,45,1)" rx="2" ry="2" />
<text x="693.95" y="495.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="174.1" y="485" width="0.1" height="15.0" fill="rgb(225,181,14)" rx="2" ry="2" />
<text x="177.09" y="495.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="332.6" y="453" width="0.1" height="15.0" fill="rgb(232,169,13)" rx="2" ry="2" />
<text x="335.57" y="463.5" ></text>
</g>
<g >
<title>malloc (9 samples, 0.04%)</title><rect x="371.1" y="453" width="0.6" height="15.0" fill="rgb(241,73,53)" rx="2" ry="2" />
<text x="374.15" y="463.5" ></text>
</g>
<g >
<title>rdk:broker29 (2 samples, 0.01%)</title><rect x="11.7" y="709" width="0.1" height="15.0" fill="rgb(240,182,13)" rx="2" ry="2" />
<text x="14.71" y="719.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="694.9" y="373" width="0.1" height="15.0" fill="rgb(248,92,24)" rx="2" ry="2" />
<text x="697.90" y="383.5" ></text>
</g>
<g >
<title>__do_page_fault (2 samples, 0.01%)</title><rect x="393.2" y="389" width="0.1" height="15.0" fill="rgb(226,225,8)" rx="2" ry="2" />
<text x="396.21" y="399.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="318.4" y="101" width="0.1" height="15.0" fill="rgb(246,219,41)" rx="2" ry="2" />
<text x="321.42" y="111.5" ></text>
</g>
<g >
<title>Maat_clean_status (4 samples, 0.02%)</title><rect x="692.6" y="421" width="0.2" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text x="695.60" y="431.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="166.1" y="165" width="0.1" height="15.0" fill="rgb(251,96,19)" rx="2" ry="2" />
<text x="169.07" y="175.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="292.3" y="357" width="0.2" height="15.0" fill="rgb(224,227,52)" rx="2" ry="2" />
<text x="295.35" y="367.5" ></text>
</g>
<g >
<title>[libprotoident.so] (9 samples, 0.04%)</title><rect x="336.3" y="421" width="0.5" height="15.0" fill="rgb(250,215,9)" rx="2" ry="2" />
<text x="339.29" y="431.5" ></text>
</g>
<g >
<title>CBoolExprMatch::find_matched_result (3 samples, 0.01%)</title><rect x="113.7" y="613" width="0.2" height="15.0" fill="rgb(242,42,38)" rx="2" ry="2" />
<text x="116.69" y="623.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="254.2" y="245" width="0.1" height="15.0" fill="rgb(223,224,53)" rx="2" ry="2" />
<text x="257.19" y="255.5" ></text>
</g>
<g >
<title>ASN1_template_free (2 samples, 0.01%)</title><rect x="325.7" y="245" width="0.2" height="15.0" fill="rgb(239,109,35)" rx="2" ry="2" />
<text x="328.73" y="255.5" ></text>
</g>
<g >
<title>malloc (11 samples, 0.05%)</title><rect x="364.8" y="389" width="0.6" height="15.0" fill="rgb(253,155,4)" rx="2" ry="2" />
<text x="367.78" y="399.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="168.1" y="181" width="0.1" height="15.0" fill="rgb(224,127,16)" rx="2" ry="2" />
<text x="171.07" y="191.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="548.6" y="517" width="0.1" height="15.0" fill="rgb(241,15,51)" rx="2" ry="2" />
<text x="551.63" y="527.5" ></text>
</g>
<g >
<title>__memset_sse2 (2 samples, 0.01%)</title><rect x="311.6" y="453" width="0.2" height="15.0" fill="rgb(239,130,9)" rx="2" ry="2" />
<text x="314.64" y="463.5" ></text>
</g>
<g >
<title>vfprintf (5 samples, 0.02%)</title><rect x="283.9" y="437" width="0.3" height="15.0" fill="rgb(236,128,48)" rx="2" ry="2" />
<text x="286.91" y="447.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="327.9" y="277" width="0.3" height="15.0" fill="rgb(245,96,41)" rx="2" ry="2" />
<text x="330.91" y="287.5" ></text>
</g>
<g >
<title>malloc (13 samples, 0.06%)</title><rect x="513.4" y="485" width="0.8" height="15.0" fill="rgb(251,123,41)" rx="2" ry="2" />
<text x="516.41" y="495.5" ></text>
</g>
<g >
<title>http_readChunkedData (4 samples, 0.02%)</title><rect x="295.4" y="405" width="0.2" height="15.0" fill="rgb(218,141,36)" rx="2" ry="2" />
<text x="298.36" y="415.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="286.2" y="437" width="0.2" height="15.0" fill="rgb(221,61,27)" rx="2" ry="2" />
<text x="289.16" y="447.5" ></text>
</g>
<g >
<title>stream_process (24 samples, 0.12%)</title><rect x="179.3" y="645" width="1.4" height="15.0" fill="rgb(226,141,13)" rx="2" ry="2" />
<text x="182.28" y="655.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_by_id (12 samples, 0.06%)</title><rect x="100.7" y="677" width="0.7" height="15.0" fill="rgb(211,110,40)" rx="2" ry="2" />
<text x="103.71" y="687.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="169.7" y="437" width="0.1" height="15.0" fill="rgb(210,51,38)" rx="2" ry="2" />
<text x="172.72" y="447.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (50 samples, 0.25%)</title><rect x="376.1" y="421" width="3.0" height="15.0" fill="rgb(234,83,33)" rx="2" ry="2" />
<text x="379.10" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="349.9" y="421" width="0.1" height="15.0" fill="rgb(247,172,48)" rx="2" ry="2" />
<text x="352.86" y="431.5" ></text>
</g>
<g >
<title>malloc_consolidate (3 samples, 0.01%)</title><rect x="514.0" y="453" width="0.2" height="15.0" fill="rgb(240,111,54)" rx="2" ry="2" />
<text x="517.00" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="255.0" y="277" width="0.2" height="15.0" fill="rgb(205,114,9)" rx="2" ry="2" />
<text x="257.95" y="287.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="359.3" y="373" width="0.1" height="15.0" fill="rgb(240,144,15)" rx="2" ry="2" />
<text x="362.29" y="383.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="166.1" y="245" width="0.1" height="15.0" fill="rgb(243,110,26)" rx="2" ry="2" />
<text x="169.07" y="255.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="294.6" y="261" width="0.1" height="15.0" fill="rgb(226,75,35)" rx="2" ry="2" />
<text x="297.59" y="271.5" ></text>
</g>
<g >
<title>bitmap_check (46 samples, 0.23%)</title><rect x="496.5" y="517" width="2.7" height="15.0" fill="rgb(234,9,49)" rx="2" ry="2" />
<text x="499.49" y="527.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="537.8" y="485" width="0.2" height="15.0" fill="rgb(224,71,33)" rx="2" ry="2" />
<text x="540.77" y="495.5" ></text>
</g>
<g >
<title>_itoa_word (4 samples, 0.02%)</title><rect x="176.7" y="421" width="0.2" height="15.0" fill="rgb(221,208,10)" rx="2" ry="2" />
<text x="179.68" y="431.5" ></text>
</g>
<g >
<title>get_rr_str2json (15 samples, 0.07%)</title><rect x="705.6" y="581" width="0.9" height="15.0" fill="rgb(214,91,1)" rx="2" ry="2" />
<text x="708.58" y="591.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="485.9" y="453" width="0.2" height="15.0" fill="rgb(249,30,40)" rx="2" ry="2" />
<text x="488.93" y="463.5" ></text>
</g>
<g >
<title>vfs_write (2 samples, 0.01%)</title><rect x="295.2" y="197" width="0.2" height="15.0" fill="rgb(230,211,34)" rx="2" ry="2" />
<text x="298.24" y="207.5" ></text>
</g>
<g >
<title>[ftp.so] (5 samples, 0.02%)</title><rect x="333.0" y="453" width="0.3" height="15.0" fill="rgb(227,143,22)" rx="2" ry="2" />
<text x="335.99" y="463.5" ></text>
</g>
<g >
<title>bitmap_increment (9 samples, 0.04%)</title><rect x="495.2" y="485" width="0.6" height="15.0" fill="rgb(209,201,11)" rx="2" ry="2" />
<text x="498.25" y="495.5" ></text>
</g>
<g >
<title>malloc (6 samples, 0.03%)</title><rect x="289.6" y="341" width="0.4" height="15.0" fill="rgb(209,13,42)" rx="2" ry="2" />
<text x="292.64" y="351.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="693.0" y="469" width="0.1" height="15.0" fill="rgb(240,24,10)" rx="2" ry="2" />
<text x="695.96" y="479.5" ></text>
</g>
<g >
<title>plugin_process_pending (18 samples, 0.09%)</title><rect x="288.3" y="373" width="1.1" height="15.0" fill="rgb(221,212,0)" rx="2" ry="2" />
<text x="291.34" y="383.5" ></text>
</g>
<g >
<title>double_memchr (2 samples, 0.01%)</title><rect x="289.5" y="373" width="0.1" height="15.0" fill="rgb(237,208,12)" rx="2" ry="2" />
<text x="292.52" y="383.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (24 samples, 0.12%)</title><rect x="174.6" y="517" width="1.4" height="15.0" fill="rgb(224,11,46)" rx="2" ry="2" />
<text x="177.62" y="527.5" ></text>
</g>
<g >
<title>free_polling_inject_context (9 samples, 0.04%)</title><rect x="636.7" y="597" width="0.5" height="15.0" fill="rgb(253,50,0)" rx="2" ry="2" />
<text x="639.69" y="607.5" ></text>
</g>
<g >
<title>plugin_process_close (25 samples, 0.12%)</title><rect x="306.6" y="405" width="1.5" height="15.0" fill="rgb(251,57,3)" rx="2" ry="2" />
<text x="309.62" y="415.5" ></text>
</g>
<g >
<title>cJSON_Delete (5 samples, 0.02%)</title><rect x="700.0" y="581" width="0.3" height="15.0" fill="rgb(238,72,3)" rx="2" ry="2" />
<text x="702.98" y="591.5" ></text>
</g>
<g >
<title>TLD_append (7 samples, 0.03%)</title><rect x="397.3" y="389" width="0.4" height="15.0" fill="rgb(226,138,13)" rx="2" ry="2" />
<text x="400.34" y="399.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="365.9" y="421" width="0.1" height="15.0" fill="rgb(242,30,6)" rx="2" ry="2" />
<text x="368.90" y="431.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="181.7" y="613" width="0.1" height="15.0" fill="rgb(237,138,5)" rx="2" ry="2" />
<text x="184.70" y="623.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (9 samples, 0.04%)</title><rect x="168.1" y="469" width="0.5" height="15.0" fill="rgb(229,85,41)" rx="2" ry="2" />
<text x="171.07" y="479.5" ></text>
</g>
<g >
<title>system_call_fastpath (150 samples, 0.75%)</title><rect x="183.3" y="661" width="8.9" height="15.0" fill="rgb(233,149,53)" rx="2" ry="2" />
<text x="186.35" y="671.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="181.7" y="533" width="0.1" height="15.0" fill="rgb(248,80,54)" rx="2" ry="2" />
<text x="184.70" y="543.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (4 samples, 0.02%)</title><rect x="180.0" y="549" width="0.3" height="15.0" fill="rgb(230,78,48)" rx="2" ry="2" />
<text x="183.05" y="559.5" ></text>
</g>
<g >
<title>stream_process_ipv4 (36 samples, 0.18%)</title><rect x="551.0" y="565" width="2.1" height="15.0" fill="rgb(247,68,11)" rx="2" ry="2" />
<text x="553.99" y="575.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="301.0" y="293" width="0.1" height="15.0" fill="rgb(244,156,25)" rx="2" ry="2" />
<text x="304.02" y="303.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (27 samples, 0.13%)</title><rect x="170.5" y="517" width="1.6" height="15.0" fill="rgb(229,189,13)" rx="2" ry="2" />
<text x="173.55" y="527.5" ></text>
</g>
<g >
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="469.1" y="453" width="0.1" height="15.0" fill="rgb(240,186,37)" rx="2" ry="2" />
<text x="472.12" y="463.5" ></text>
</g>
<g >
<title>stream_make_hash (8 samples, 0.04%)</title><rect x="390.3" y="533" width="0.4" height="15.0" fill="rgb(237,145,40)" rx="2" ry="2" />
<text x="393.26" y="543.5" ></text>
</g>
<g >
<title>ssl_doWithCertificateDetail (4 samples, 0.02%)</title><rect x="712.7" y="421" width="0.3" height="15.0" fill="rgb(236,74,34)" rx="2" ry="2" />
<text x="715.72" y="431.5" ></text>
</g>
<g >
<title>plugin_process_data (49 samples, 0.24%)</title><rect x="297.4" y="341" width="2.9" height="15.0" fill="rgb(239,133,2)" rx="2" ry="2" />
<text x="300.42" y="351.5" ></text>
</g>
<g >
<title>expiry_dablooms_search (15 samples, 0.07%)</title><rect x="402.8" y="533" width="0.8" height="15.0" fill="rgb(205,153,19)" rx="2" ry="2" />
<text x="405.76" y="543.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (9 samples, 0.04%)</title><rect x="167.3" y="325" width="0.5" height="15.0" fill="rgb(222,54,35)" rx="2" ry="2" />
<text x="170.31" y="335.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="486.6" y="437" width="0.2" height="15.0" fill="rgb(216,105,41)" rx="2" ry="2" />
<text x="489.64" y="447.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (5 samples, 0.02%)</title><rect x="700.9" y="597" width="0.3" height="15.0" fill="rgb(252,2,14)" rx="2" ry="2" />
<text x="703.86" y="607.5" ></text>
</g>
<g >
<title>auditsys (2 samples, 0.01%)</title><rect x="182.8" y="661" width="0.1" height="15.0" fill="rgb(249,177,41)" rx="2" ry="2" />
<text x="185.76" y="671.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (58 samples, 0.29%)</title><rect x="697.4" y="597" width="3.4" height="15.0" fill="rgb(229,122,7)" rx="2" ry="2" />
<text x="700.38" y="607.5" ></text>
</g>
<g >
<title>malloc_consolidate (4 samples, 0.02%)</title><rect x="300.5" y="261" width="0.2" height="15.0" fill="rgb(230,61,32)" rx="2" ry="2" />
<text x="303.49" y="271.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (6 samples, 0.03%)</title><rect x="395.6" y="389" width="0.3" height="15.0" fill="rgb(214,223,25)" rx="2" ry="2" />
<text x="398.57" y="399.5" ></text>
</g>
<g >
<title>default_idle (7,863 samples, 39.30%)</title><rect x="713.8" y="645" width="463.8" height="15.0" fill="rgb(210,17,8)" rx="2" ry="2" />
<text x="716.78" y="655.5" >default_idle</text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (12 samples, 0.06%)</title><rect x="318.3" y="213" width="0.7" height="15.0" fill="rgb(229,18,9)" rx="2" ry="2" />
<text x="321.30" y="223.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="169.7" y="453" width="0.1" height="15.0" fill="rgb(212,101,21)" rx="2" ry="2" />
<text x="172.72" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="545.3" y="421" width="0.2" height="15.0" fill="rgb(234,209,15)" rx="2" ry="2" />
<text x="548.26" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="712.5" y="341" width="0.2" height="15.0" fill="rgb(206,112,51)" rx="2" ry="2" />
<text x="715.54" y="351.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="253.5" y="165" width="0.4" height="15.0" fill="rgb(253,191,43)" rx="2" ry="2" />
<text x="256.54" y="175.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="691.0" y="389" width="0.1" height="15.0" fill="rgb(209,119,44)" rx="2" ry="2" />
<text x="693.95" y="399.5" ></text>
</g>
<g >
<title>plugin_process_data (6 samples, 0.03%)</title><rect x="696.5" y="437" width="0.3" height="15.0" fill="rgb(207,229,16)" rx="2" ry="2" />
<text x="699.50" y="447.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (16 samples, 0.08%)</title><rect x="513.2" y="501" width="1.0" height="15.0" fill="rgb(217,101,31)" rx="2" ry="2" />
<text x="516.24" y="511.5" ></text>
</g>
<g >
<title>http_doWithStartLine (17 samples, 0.08%)</title><rect x="694.1" y="533" width="1.0" height="15.0" fill="rgb(228,86,20)" rx="2" ry="2" />
<text x="697.08" y="543.5" ></text>
</g>
<g >
<title>page_fault (2 samples, 0.01%)</title><rect x="639.1" y="565" width="0.1" height="15.0" fill="rgb(227,89,29)" rx="2" ry="2" />
<text x="642.11" y="575.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (201 samples, 1.00%)</title><rect x="317.5" y="405" width="11.8" height="15.0" fill="rgb(247,50,27)" rx="2" ry="2" />
<text x="320.47" y="415.5" ></text>
</g>
<g >
<title>swapper (8,072 samples, 40.35%)</title><rect x="713.7" y="709" width="476.1" height="15.0" fill="rgb(205,183,30)" rx="2" ry="2" />
<text x="716.66" y="719.5" >swapper</text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="344.3" y="453" width="0.1" height="15.0" fill="rgb(212,208,35)" rx="2" ry="2" />
<text x="347.31" y="463.5" ></text>
</g>
<g >
<title>X509_NAME_oneline (5 samples, 0.02%)</title><rect x="317.5" y="341" width="0.3" height="15.0" fill="rgb(240,84,46)" rx="2" ry="2" />
<text x="320.53" y="351.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="695.8" y="485" width="0.2" height="15.0" fill="rgb(217,141,18)" rx="2" ry="2" />
<text x="698.85" y="495.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="347.3" y="469" width="0.1" height="15.0" fill="rgb(215,85,3)" rx="2" ry="2" />
<text x="350.32" y="479.5" ></text>
</g>
<g >
<title>http_doWithDefaultData (3 samples, 0.01%)</title><rect x="251.5" y="405" width="0.2" height="15.0" fill="rgb(231,190,49)" rx="2" ry="2" />
<text x="254.47" y="415.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_by_id (2 samples, 0.01%)</title><rect x="372.0" y="421" width="0.1" height="15.0" fill="rgb(211,143,7)" rx="2" ry="2" />
<text x="374.97" y="431.5" ></text>
</g>
<g >
<title>BIO_snprintf (2 samples, 0.01%)</title><rect x="254.8" y="357" width="0.2" height="15.0" fill="rgb(232,135,19)" rx="2" ry="2" />
<text x="257.84" y="367.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (13 samples, 0.06%)</title><rect x="105.6" y="629" width="0.7" height="15.0" fill="rgb(212,21,39)" rx="2" ry="2" />
<text x="108.55" y="639.5" ></text>
</g>
<g >
<title>bitmap_increment (98 samples, 0.49%)</title><rect x="404.4" y="469" width="5.7" height="15.0" fill="rgb(205,161,21)" rx="2" ry="2" />
<text x="407.36" y="479.5" ></text>
</g>
<g >
<title>__libc_calloc (8 samples, 0.04%)</title><rect x="141.1" y="677" width="0.4" height="15.0" fill="rgb(229,201,39)" rx="2" ry="2" />
<text x="144.06" y="687.5" ></text>
</g>
<g >
<title>inet_ntop (4 samples, 0.02%)</title><rect x="466.1" y="469" width="0.2" height="15.0" fill="rgb(227,141,40)" rx="2" ry="2" />
<text x="469.11" y="479.5" ></text>
</g>
<g >
<title>stream_process_tcp (41 samples, 0.20%)</title><rect x="166.3" y="565" width="2.4" height="15.0" fill="rgb(242,99,40)" rx="2" ry="2" />
<text x="169.30" y="575.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="255.1" y="165" width="0.1" height="15.0" fill="rgb(232,190,12)" rx="2" ry="2" />
<text x="258.13" y="175.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="169.2" y="229" width="0.3" height="15.0" fill="rgb(250,170,11)" rx="2" ry="2" />
<text x="172.19" y="239.5" ></text>
</g>
<g >
<title>start_thread (4 samples, 0.02%)</title><rect x="14.7" y="677" width="0.2" height="15.0" fill="rgb(230,40,18)" rx="2" ry="2" />
<text x="17.66" y="687.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (2 samples, 0.01%)</title><rect x="14.5" y="645" width="0.2" height="15.0" fill="rgb(214,89,13)" rx="2" ry="2" />
<text x="17.54" y="655.5" ></text>
</g>
<g >
<title>eth_entry (5,572 samples, 27.85%)</title><rect x="225.0" y="613" width="328.6" height="15.0" fill="rgb(218,67,14)" rx="2" ry="2" />
<text x="227.99" y="623.5" >eth_entry</text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (10 samples, 0.05%)</title><rect x="552.4" y="533" width="0.6" height="15.0" fill="rgb(241,221,41)" rx="2" ry="2" />
<text x="555.40" y="543.5" ></text>
</g>
<g >
<title>dealipv4udppkt (21 samples, 0.10%)</title><rect x="178.0" y="629" width="1.3" height="15.0" fill="rgb(237,86,49)" rx="2" ry="2" />
<text x="181.04" y="639.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="323.0" y="213" width="0.1" height="15.0" fill="rgb(208,152,23)" rx="2" ry="2" />
<text x="325.96" y="223.5" ></text>
</g>
<g >
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="712.7" y="389" width="0.3" height="15.0" fill="rgb(238,14,51)" rx="2" ry="2" />
<text x="715.72" y="399.5" ></text>
</g>
<g >
<title>qmdpi_hit_path_list (6 samples, 0.03%)</title><rect x="512.6" y="469" width="0.4" height="15.0" fill="rgb(221,64,20)" rx="2" ry="2" />
<text x="515.65" y="479.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_udpate (45 samples, 0.22%)</title><rect x="138.2" y="661" width="2.7" height="15.0" fill="rgb(218,130,52)" rx="2" ry="2" />
<text x="141.23" y="671.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (2 samples, 0.01%)</title><rect x="696.8" y="517" width="0.2" height="15.0" fill="rgb(216,117,27)" rx="2" ry="2" />
<text x="699.85" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="705.6" y="501" width="0.2" height="15.0" fill="rgb(246,178,36)" rx="2" ry="2" />
<text x="708.58" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (11 samples, 0.05%)</title><rect x="290.7" y="293" width="0.6" height="15.0" fill="rgb(247,182,26)" rx="2" ry="2" />
<text x="293.70" y="303.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (2 samples, 0.01%)</title><rect x="16.0" y="661" width="0.1" height="15.0" fill="rgb(209,72,28)" rx="2" ry="2" />
<text x="18.96" y="671.5" ></text>
</g>
<g >
<title>http_doWithContentType (2 samples, 0.01%)</title><rect x="696.0" y="501" width="0.1" height="15.0" fill="rgb(246,74,47)" rx="2" ry="2" />
<text x="699.02" y="511.5" ></text>
</g>
<g >
<title>stream_process_tcp (112 samples, 0.56%)</title><rect x="394.0" y="501" width="6.6" height="15.0" fill="rgb(252,159,8)" rx="2" ry="2" />
<text x="396.97" y="511.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="179.6" y="453" width="0.1" height="15.0" fill="rgb(245,43,17)" rx="2" ry="2" />
<text x="182.57" y="463.5" ></text>
</g>
<g >
<title>http_reseaseHttpInfor (2 samples, 0.01%)</title><rect x="302.0" y="437" width="0.1" height="15.0" fill="rgb(228,91,15)" rx="2" ry="2" />
<text x="304.96" y="447.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (2 samples, 0.01%)</title><rect x="712.5" y="389" width="0.2" height="15.0" fill="rgb(249,54,22)" rx="2" ry="2" />
<text x="715.54" y="399.5" ></text>
</g>
<g >
<title>__clone (4 samples, 0.02%)</title><rect x="12.3" y="693" width="0.2" height="15.0" fill="rgb(210,47,4)" rx="2" ry="2" />
<text x="15.30" y="703.5" ></text>
</g>
<g >
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="394.7" y="357" width="0.2" height="15.0" fill="rgb(248,4,15)" rx="2" ry="2" />
<text x="397.68" y="367.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (4 samples, 0.02%)</title><rect x="321.5" y="197" width="0.2" height="15.0" fill="rgb(228,111,5)" rx="2" ry="2" />
<text x="324.49" y="207.5" ></text>
</g>
<g >
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="360.0" y="405" width="0.5" height="15.0" fill="rgb(238,53,54)" rx="2" ry="2" />
<text x="363.00" y="415.5" ></text>
</g>
<g >
<title>plugin_call_appentry (31 samples, 0.15%)</title><rect x="314.2" y="357" width="1.8" height="15.0" fill="rgb(252,101,50)" rx="2" ry="2" />
<text x="317.17" y="367.5" ></text>
</g>
<g >
<title>docanalyze_parsestream (19 samples, 0.09%)</title><rect x="300.4" y="373" width="1.1" height="15.0" fill="rgb(237,97,43)" rx="2" ry="2" />
<text x="303.37" y="383.5" ></text>
</g>
<g >
<title>counting_bloom_check (195 samples, 0.97%)</title><rect x="411.4" y="517" width="11.5" height="15.0" fill="rgb(249,79,30)" rx="2" ry="2" />
<text x="414.43" y="527.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="175.5" y="405" width="0.1" height="15.0" fill="rgb(216,158,11)" rx="2" ry="2" />
<text x="178.50" y="415.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="705.6" y="549" width="0.2" height="15.0" fill="rgb(211,210,9)" rx="2" ry="2" />
<text x="708.58" y="559.5" ></text>
</g>
<g >
<title>find_vma (2 samples, 0.01%)</title><rect x="269.0" y="421" width="0.1" height="15.0" fill="rgb(220,151,16)" rx="2" ry="2" />
<text x="271.99" y="431.5" ></text>
</g>
<g >
<title>http_doWithContentType (4 samples, 0.02%)</title><rect x="303.5" y="405" width="0.2" height="15.0" fill="rgb(213,118,19)" rx="2" ry="2" />
<text x="306.50" y="415.5" ></text>
</g>
<g >
<title>Maat_clean_status (7 samples, 0.03%)</title><rect x="314.6" y="309" width="0.4" height="15.0" fill="rgb(239,160,24)" rx="2" ry="2" />
<text x="317.58" y="319.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (20 samples, 0.10%)</title><rect x="545.0" y="485" width="1.1" height="15.0" fill="rgb(215,117,5)" rx="2" ry="2" />
<text x="547.97" y="495.5" ></text>
</g>
<g >
<title>_IO_vsscanf (14 samples, 0.07%)</title><rect x="468.0" y="405" width="0.8" height="15.0" fill="rgb(215,54,17)" rx="2" ry="2" />
<text x="471.00" y="415.5" ></text>
</g>
<g >
<title>TSG_MASTER_TCPALL_ENTRY (6 samples, 0.03%)</title><rect x="369.7" y="485" width="0.4" height="15.0" fill="rgb(219,188,0)" rx="2" ry="2" />
<text x="372.73" y="495.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="288.1" y="309" width="0.1" height="15.0" fill="rgb(218,193,25)" rx="2" ry="2" />
<text x="291.10" y="319.5" ></text>
</g>
<g >
<title>[sapp] (12 samples, 0.06%)</title><rect x="712.5" y="581" width="0.7" height="15.0" fill="rgb(232,148,26)" rx="2" ry="2" />
<text x="715.54" y="591.5" ></text>
</g>
<g >
<title>[sapp] (9 samples, 0.04%)</title><rect x="367.6" y="453" width="0.5" height="15.0" fill="rgb(221,225,26)" rx="2" ry="2" />
<text x="370.61" y="463.5" ></text>
</g>
<g >
<title>__clone (2 samples, 0.01%)</title><rect x="11.5" y="693" width="0.2" height="15.0" fill="rgb(250,4,36)" rx="2" ry="2" />
<text x="14.53" y="703.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="169.2" y="133" width="0.3" height="15.0" fill="rgb(238,203,36)" rx="2" ry="2" />
<text x="172.19" y="143.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (4 samples, 0.02%)</title><rect x="174.4" y="501" width="0.2" height="15.0" fill="rgb(231,71,30)" rx="2" ry="2" />
<text x="177.38" y="511.5" ></text>
</g>
<g >
<title>call_softirq (6 samples, 0.03%)</title><rect x="1177.2" y="565" width="0.4" height="15.0" fill="rgb(230,27,11)" rx="2" ry="2" />
<text x="1180.20" y="575.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="397.5" y="357" width="0.1" height="15.0" fill="rgb(239,168,29)" rx="2" ry="2" />
<text x="400.51" y="367.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (2 samples, 0.01%)</title><rect x="292.3" y="421" width="0.2" height="15.0" fill="rgb(211,208,9)" rx="2" ry="2" />
<text x="295.35" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="253.0" y="197" width="0.2" height="15.0" fill="rgb(208,191,8)" rx="2" ry="2" />
<text x="256.01" y="207.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="167.9" y="373" width="0.2" height="15.0" fill="rgb(215,39,28)" rx="2" ry="2" />
<text x="170.90" y="383.5" ></text>
</g>
<g >
<title>ssl_callPlugins (3 samples, 0.01%)</title><rect x="168.4" y="437" width="0.2" height="15.0" fill="rgb(211,207,36)" rx="2" ry="2" />
<text x="171.43" y="447.5" ></text>
</g>
<g >
<title>do_notify_resume (15 samples, 0.07%)</title><rect x="688.8" y="581" width="0.9" height="15.0" fill="rgb(249,120,13)" rx="2" ry="2" />
<text x="691.77" y="591.5" ></text>
</g>
<g >
<title>[sapp] (57 samples, 0.28%)</title><rect x="693.6" y="645" width="3.4" height="15.0" fill="rgb(241,163,9)" rx="2" ry="2" />
<text x="696.60" y="655.5" ></text>
</g>
<g >
<title>tsg_send_log (15 samples, 0.07%)</title><rect x="486.6" y="453" width="0.9" height="15.0" fill="rgb(220,134,4)" rx="2" ry="2" />
<text x="489.64" y="463.5" ></text>
</g>
<g >
<title>ssl_callPlugins (4 samples, 0.02%)</title><rect x="180.0" y="533" width="0.3" height="15.0" fill="rgb(209,30,10)" rx="2" ry="2" />
<text x="183.05" y="543.5" ></text>
</g>
<g >
<title>tcp_rcv_established (4 samples, 0.02%)</title><rect x="1177.3" y="325" width="0.3" height="15.0" fill="rgb(215,77,19)" rx="2" ry="2" />
<text x="1180.32" y="335.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="328.2" y="357" width="0.1" height="15.0" fill="rgb(248,144,11)" rx="2" ry="2" />
<text x="331.21" y="367.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (98 samples, 0.49%)</title><rect x="318.1" y="277" width="5.8" height="15.0" fill="rgb(252,210,7)" rx="2" ry="2" />
<text x="321.12" y="287.5" ></text>
</g>
<g >
<title>X509_NAME_get_text_by_NID (2 samples, 0.01%)</title><rect x="327.3" y="389" width="0.1" height="15.0" fill="rgb(222,167,28)" rx="2" ry="2" />
<text x="330.27" y="399.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="179.6" y="533" width="0.1" height="15.0" fill="rgb(228,31,27)" rx="2" ry="2" />
<text x="182.57" y="543.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="307.0" y="309" width="0.2" height="15.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text x="310.03" y="319.5" ></text>
</g>
<g >
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="642.2" y="485" width="0.7" height="15.0" fill="rgb(211,52,40)" rx="2" ry="2" />
<text x="645.17" y="495.5" ></text>
</g>
<g >
<title>[ssh.so] (11 samples, 0.05%)</title><rect x="309.3" y="469" width="0.7" height="15.0" fill="rgb(222,38,35)" rx="2" ry="2" />
<text x="312.34" y="479.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="692.7" y="389" width="0.1" height="15.0" fill="rgb(218,120,54)" rx="2" ry="2" />
<text x="695.72" y="399.5" ></text>
</g>
<g >
<title>bitmap_check (105 samples, 0.52%)</title><rect x="412.1" y="501" width="6.2" height="15.0" fill="rgb(228,53,26)" rx="2" ry="2" />
<text x="415.08" y="511.5" ></text>
</g>
<g >
<title>MESA_htable_search (2 samples, 0.01%)</title><rect x="235.3" y="581" width="0.1" height="15.0" fill="rgb(241,70,37)" rx="2" ry="2" />
<text x="238.31" y="591.5" ></text>
</g>
<g >
<title>__errno_location (4 samples, 0.02%)</title><rect x="478.4" y="453" width="0.2" height="15.0" fill="rgb(214,80,28)" rx="2" ry="2" />
<text x="481.38" y="463.5" ></text>
</g>
<g >
<title>inet_ntop (4 samples, 0.02%)</title><rect x="347.6" y="453" width="0.3" height="15.0" fill="rgb(249,120,15)" rx="2" ry="2" />
<text x="350.61" y="463.5" ></text>
</g>
<g >
<title>__memset_sse2 (2 samples, 0.01%)</title><rect x="141.1" y="661" width="0.1" height="15.0" fill="rgb(235,92,32)" rx="2" ry="2" />
<text x="144.06" y="671.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="637.3" y="581" width="0.2" height="15.0" fill="rgb(234,174,16)" rx="2" ry="2" />
<text x="640.34" y="591.5" ></text>
</g>
<g >
<title>http_host_parser (18 samples, 0.09%)</title><rect x="344.1" y="469" width="1.0" height="15.0" fill="rgb(223,203,32)" rx="2" ry="2" />
<text x="347.08" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="292.3" y="261" width="0.2" height="15.0" fill="rgb(252,149,22)" rx="2" ry="2" />
<text x="295.35" y="271.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.01%)</title><rect x="198.6" y="629" width="0.1" height="15.0" fill="rgb(253,179,5)" rx="2" ry="2" />
<text x="201.57" y="639.5" ></text>
</g>
<g >
<title>tsg_send_log (7 samples, 0.03%)</title><rect x="180.3" y="565" width="0.4" height="15.0" fill="rgb(253,24,49)" rx="2" ry="2" />
<text x="183.28" y="575.5" ></text>
</g>
<g >
<title>__clone (2 samples, 0.01%)</title><rect x="14.5" y="693" width="0.2" height="15.0" fill="rgb(216,44,0)" rx="2" ry="2" />
<text x="17.54" y="703.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="260.3" y="485" width="0.1" height="15.0" fill="rgb(250,202,46)" rx="2" ry="2" />
<text x="263.32" y="495.5" ></text>
</g>
<g >
<title>_int_free (35 samples, 0.17%)</title><rect x="454.4" y="453" width="2.1" height="15.0" fill="rgb(214,201,53)" rx="2" ry="2" />
<text x="457.43" y="463.5" ></text>
</g>
<g >
<title>asn1_enc_save (2 samples, 0.01%)</title><rect x="254.0" y="293" width="0.1" height="15.0" fill="rgb(251,190,39)" rx="2" ry="2" />
<text x="257.01" y="303.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new0 (3 samples, 0.01%)</title><rect x="704.9" y="533" width="0.1" height="15.0" fill="rgb(253,204,43)" rx="2" ry="2" />
<text x="707.87" y="543.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="712.5" y="245" width="0.2" height="15.0" fill="rgb(243,15,27)" rx="2" ry="2" />
<text x="715.54" y="255.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="179.5" y="437" width="0.1" height="15.0" fill="rgb(207,218,45)" rx="2" ry="2" />
<text x="182.46" y="447.5" ></text>
</g>
<g >
<title>socks_rough_rec (2 samples, 0.01%)</title><rect x="351.2" y="469" width="0.1" height="15.0" fill="rgb(244,46,1)" rx="2" ry="2" />
<text x="354.15" y="479.5" ></text>
</g>
<g >
<title>plugin_process_data (4 samples, 0.02%)</title><rect x="712.7" y="373" width="0.3" height="15.0" fill="rgb(245,129,32)" rx="2" ry="2" />
<text x="715.72" y="383.5" ></text>
</g>
<g >
<title>UTF8_putc (3 samples, 0.01%)</title><rect x="320.0" y="149" width="0.2" height="15.0" fill="rgb(228,221,12)" rx="2" ry="2" />
<text x="323.01" y="159.5" ></text>
</g>
<g >
<title>app_proto_destroy_stream (2 samples, 0.01%)</title><rect x="276.8" y="453" width="0.1" height="15.0" fill="rgb(217,178,19)" rx="2" ry="2" />
<text x="279.78" y="463.5" ></text>
</g>
<g >
<title>stream_process_udp (37 samples, 0.18%)</title><rect x="485.3" y="549" width="2.2" height="15.0" fill="rgb(222,151,25)" rx="2" ry="2" />
<text x="488.34" y="559.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (7 samples, 0.03%)</title><rect x="698.7" y="549" width="0.4" height="15.0" fill="rgb(248,108,53)" rx="2" ry="2" />
<text x="701.68" y="559.5" ></text>
</g>
<g >
<title>eth_entry (51 samples, 0.25%)</title><rect x="690.2" y="693" width="3.0" height="15.0" fill="rgb(215,56,8)" rx="2" ry="2" />
<text x="693.18" y="703.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="392.0" y="229" width="0.1" height="15.0" fill="rgb(222,101,0)" rx="2" ry="2" />
<text x="395.03" y="239.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (6 samples, 0.03%)</title><rect x="341.2" y="453" width="0.3" height="15.0" fill="rgb(237,212,7)" rx="2" ry="2" />
<text x="344.19" y="463.5" ></text>
</g>
<g >
<title>fw_ssl_entry (5 samples, 0.02%)</title><rect x="173.7" y="389" width="0.3" height="15.0" fill="rgb(250,22,47)" rx="2" ry="2" />
<text x="176.68" y="399.5" ></text>
</g>
<g >
<title>stream_process_udp (768 samples, 3.84%)</title><rect x="502.2" y="565" width="45.3" height="15.0" fill="rgb(218,182,30)" rx="2" ry="2" />
<text x="505.21" y="575.5" >stre..</text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (11 samples, 0.05%)</title><rect x="695.2" y="405" width="0.6" height="15.0" fill="rgb(228,82,38)" rx="2" ry="2" />
<text x="698.20" y="415.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (40 samples, 0.20%)</title><rect x="251.9" y="357" width="2.4" height="15.0" fill="rgb(253,142,53)" rx="2" ry="2" />
<text x="254.95" y="367.5" ></text>
</g>
<g >
<title>__clone (2 samples, 0.01%)</title><rect x="12.9" y="693" width="0.1" height="15.0" fill="rgb(212,18,23)" rx="2" ry="2" />
<text x="15.89" y="703.5" ></text>
</g>
<g >
<title>set_cpu_sd_state_idle (2 samples, 0.01%)</title><rect x="1188.2" y="645" width="0.1" height="15.0" fill="rgb(221,153,5)" rx="2" ry="2" />
<text x="1191.17" y="655.5" ></text>
</g>
<g >
<title>CInflate2::fn_iDecode (3 samples, 0.01%)</title><rect x="301.1" y="309" width="0.2" height="15.0" fill="rgb(215,155,17)" rx="2" ry="2" />
<text x="304.14" y="319.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (4 samples, 0.02%)</title><rect x="485.5" y="469" width="0.2" height="15.0" fill="rgb(218,137,26)" rx="2" ry="2" />
<text x="488.46" y="479.5" ></text>
</g>
<g >
<title>http_callPluginField (4 samples, 0.02%)</title><rect x="295.6" y="373" width="0.2" height="15.0" fill="rgb(233,38,4)" rx="2" ry="2" />
<text x="298.59" y="383.5" ></text>
</g>
<g >
<title>page_fault (2 samples, 0.01%)</title><rect x="260.5" y="485" width="0.1" height="15.0" fill="rgb(249,184,22)" rx="2" ry="2" />
<text x="263.50" y="495.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (4 samples, 0.02%)</title><rect x="14.7" y="629" width="0.2" height="15.0" fill="rgb(214,205,7)" rx="2" ry="2" />
<text x="17.66" y="639.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="172.9" y="325" width="0.4" height="15.0" fill="rgb(227,213,10)" rx="2" ry="2" />
<text x="175.85" y="335.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (40 samples, 0.20%)</title><rect x="251.9" y="373" width="2.4" height="15.0" fill="rgb(240,73,38)" rx="2" ry="2" />
<text x="254.95" y="383.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="168.8" y="517" width="0.1" height="15.0" fill="rgb(213,78,8)" rx="2" ry="2" />
<text x="171.78" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="255.0" y="149" width="0.1" height="15.0" fill="rgb(219,225,26)" rx="2" ry="2" />
<text x="257.95" y="159.5" ></text>
</g>
<g >
<title>rd_kafka_recv (2 samples, 0.01%)</title><rect x="14.7" y="565" width="0.1" height="15.0" fill="rgb(240,68,43)" rx="2" ry="2" />
<text x="17.66" y="575.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="691.0" y="405" width="0.1" height="15.0" fill="rgb(218,102,47)" rx="2" ry="2" />
<text x="693.95" y="415.5" ></text>
</g>
<g >
<title>CBoolExprMatch::get_mapped_id (9 samples, 0.04%)</title><rect x="113.9" y="613" width="0.5" height="15.0" fill="rgb(244,225,24)" rx="2" ry="2" />
<text x="116.87" y="623.5" ></text>
</g>
<g >
<title>http_callPluginField (68 samples, 0.34%)</title><rect x="296.4" y="373" width="4.0" height="15.0" fill="rgb(229,166,0)" rx="2" ry="2" />
<text x="299.36" y="383.5" ></text>
</g>
<g >
<title>MurmurHash3_x64_128 (15 samples, 0.07%)</title><rect x="422.1" y="485" width="0.8" height="15.0" fill="rgb(248,184,36)" rx="2" ry="2" />
<text x="425.05" y="495.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (5 samples, 0.02%)</title><rect x="526.5" y="469" width="0.3" height="15.0" fill="rgb(254,114,53)" rx="2" ry="2" />
<text x="529.51" y="479.5" ></text>
</g>
<g >
<title>malloc (4 samples, 0.02%)</title><rect x="369.8" y="469" width="0.2" height="15.0" fill="rgb(238,40,11)" rx="2" ry="2" />
<text x="372.79" y="479.5" ></text>
</g>
<g >
<title>plugin_call_appentry (15 samples, 0.07%)</title><rect x="694.2" y="437" width="0.9" height="15.0" fill="rgb(252,35,26)" rx="2" ry="2" />
<text x="697.19" y="447.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (30 samples, 0.15%)</title><rect x="252.2" y="261" width="1.8" height="15.0" fill="rgb(230,157,43)" rx="2" ry="2" />
<text x="255.24" y="271.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new0 (2 samples, 0.01%)</title><rect x="307.9" y="293" width="0.1" height="15.0" fill="rgb(208,70,35)" rx="2" ry="2" />
<text x="310.92" y="303.5" ></text>
</g>
<g >
<title>http_deleteEmptyRow (3 samples, 0.01%)</title><rect x="302.9" y="405" width="0.2" height="15.0" fill="rgb(220,60,39)" rx="2" ry="2" />
<text x="305.91" y="415.5" ></text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="179.9" y="485" width="0.1" height="15.0" fill="rgb(218,165,47)" rx="2" ry="2" />
<text x="182.87" y="495.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (9 samples, 0.04%)</title><rect x="707.4" y="677" width="0.5" height="15.0" fill="rgb(210,70,52)" rx="2" ry="2" />
<text x="710.41" y="687.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="289.8" y="325" width="0.2" height="15.0" fill="rgb(206,199,1)" rx="2" ry="2" />
<text x="292.81" y="335.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="326.6" y="277" width="0.1" height="15.0" fill="rgb(243,76,53)" rx="2" ry="2" />
<text x="329.56" y="287.5" ></text>
</g>
<g >
<title>vfprintf (15 samples, 0.07%)</title><rect x="176.0" y="437" width="0.9" height="15.0" fill="rgb(226,80,14)" rx="2" ry="2" />
<text x="179.04" y="447.5" ></text>
</g>
<g >
<title>http_analyseACompleteRegion (17 samples, 0.08%)</title><rect x="695.8" y="533" width="1.0" height="15.0" fill="rgb(212,36,54)" rx="2" ry="2" />
<text x="698.85" y="543.5" ></text>
</g>
<g >
<title>ipv4_entry (58 samples, 0.29%)</title><rect x="693.6" y="693" width="3.4" height="15.0" fill="rgb(243,182,8)" rx="2" ry="2" />
<text x="696.60" y="703.5" ></text>
</g>
<g >
<title>sys_nanosleep (2 samples, 0.01%)</title><rect x="644.9" y="597" width="0.1" height="15.0" fill="rgb(217,139,2)" rx="2" ry="2" />
<text x="647.89" y="607.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (236 samples, 1.18%)</title><rect x="354.3" y="485" width="13.9" height="15.0" fill="rgb(222,136,14)" rx="2" ry="2" />
<text x="357.28" y="495.5" ></text>
</g>
<g >
<title>do_page_fault (5 samples, 0.02%)</title><rect x="140.5" y="597" width="0.3" height="15.0" fill="rgb(250,56,27)" rx="2" ry="2" />
<text x="143.53" y="607.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (2 samples, 0.01%)</title><rect x="175.3" y="405" width="0.1" height="15.0" fill="rgb(236,47,53)" rx="2" ry="2" />
<text x="178.27" y="415.5" ></text>
</g>
<g >
<title>plugin_process_pending (3 samples, 0.01%)</title><rect x="182.1" y="517" width="0.1" height="15.0" fill="rgb(214,120,33)" rx="2" ry="2" />
<text x="185.05" y="527.5" ></text>
</g>
<g >
<title>lpi_guess_protocol (3 samples, 0.01%)</title><rect x="256.6" y="453" width="0.2" height="15.0" fill="rgb(230,206,30)" rx="2" ry="2" />
<text x="259.61" y="463.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (39 samples, 0.19%)</title><rect x="170.5" y="533" width="2.4" height="15.0" fill="rgb(246,88,36)" rx="2" ry="2" />
<text x="173.55" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="291.6" y="261" width="0.2" height="15.0" fill="rgb(244,215,6)" rx="2" ry="2" />
<text x="294.64" y="271.5" ></text>
</g>
<g >
<title>stream_process_tcp (3 samples, 0.01%)</title><rect x="690.0" y="645" width="0.2" height="15.0" fill="rgb(222,59,27)" rx="2" ry="2" />
<text x="693.01" y="655.5" ></text>
</g>
<g >
<title>TSG_MASTER_TCP_ENTRY (4 samples, 0.02%)</title><rect x="333.3" y="485" width="0.3" height="15.0" fill="rgb(252,139,40)" rx="2" ry="2" />
<text x="336.34" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="326.7" y="277" width="0.4" height="15.0" fill="rgb(213,79,47)" rx="2" ry="2" />
<text x="329.73" y="287.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="12.7" y="693" width="0.1" height="15.0" fill="rgb(230,19,30)" rx="2" ry="2" />
<text x="15.71" y="703.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="486.8" y="421" width="0.1" height="15.0" fill="rgb(211,175,4)" rx="2" ry="2" />
<text x="489.75" y="431.5" ></text>
</g>
<g >
<title>http_callPlugin (6 samples, 0.03%)</title><rect x="696.1" y="485" width="0.4" height="15.0" fill="rgb(207,23,14)" rx="2" ry="2" />
<text x="699.14" y="495.5" ></text>
</g>
<g >
<title>ssl_analyseStream (4 samples, 0.02%)</title><rect x="166.1" y="485" width="0.2" height="15.0" fill="rgb(237,157,14)" rx="2" ry="2" />
<text x="169.07" y="495.5" ></text>
</g>
<g >
<title>worker_thread (2 samples, 0.01%)</title><rect x="10.1" y="661" width="0.1" height="15.0" fill="rgb(212,11,54)" rx="2" ry="2" />
<text x="13.06" y="671.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="301.7" y="373" width="0.1" height="15.0" fill="rgb(241,108,32)" rx="2" ry="2" />
<text x="304.67" y="383.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="255.0" y="181" width="0.1" height="15.0" fill="rgb(243,228,21)" rx="2" ry="2" />
<text x="257.95" y="191.5" ></text>
</g>
<g >
<title>ASN1_STRING_to_UTF8 (13 samples, 0.06%)</title><rect x="319.4" y="229" width="0.8" height="15.0" fill="rgb(207,214,20)" rx="2" ry="2" />
<text x="322.42" y="239.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="172.9" y="229" width="0.4" height="15.0" fill="rgb(249,107,0)" rx="2" ry="2" />
<text x="175.85" y="239.5" ></text>
</g>
<g >
<title>http_findAndDoWithRegion (17 samples, 0.08%)</title><rect x="695.8" y="549" width="1.0" height="15.0" fill="rgb(208,28,54)" rx="2" ry="2" />
<text x="698.85" y="559.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="349.9" y="437" width="0.1" height="15.0" fill="rgb(223,193,22)" rx="2" ry="2" />
<text x="352.86" y="447.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (18 samples, 0.09%)</title><rect x="250.6" y="469" width="1.1" height="15.0" fill="rgb(218,105,35)" rx="2" ry="2" />
<text x="253.65" y="479.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="180.5" y="453" width="0.2" height="15.0" fill="rgb(223,99,34)" rx="2" ry="2" />
<text x="183.52" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="350.2" y="389" width="0.2" height="15.0" fill="rgb(216,50,35)" rx="2" ry="2" />
<text x="353.15" y="399.5" ></text>
</g>
<g >
<title>PROT_PROCESS (61 samples, 0.30%)</title><rect x="296.7" y="357" width="3.6" height="15.0" fill="rgb(232,143,53)" rx="2" ry="2" />
<text x="299.71" y="367.5" ></text>
</g>
<g >
<title>[wire_graft_plug.so] (75 samples, 0.37%)</title><rect x="464.8" y="501" width="4.4" height="15.0" fill="rgb(219,41,37)" rx="2" ry="2" />
<text x="467.81" y="511.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (4 samples, 0.02%)</title><rect x="1177.3" y="341" width="0.3" height="15.0" fill="rgb(245,165,12)" rx="2" ry="2" />
<text x="1180.32" y="351.5" ></text>
</g>
<g >
<title>__printf_fp (11 samples, 0.05%)</title><rect x="701.8" y="453" width="0.7" height="15.0" fill="rgb(207,42,54)" rx="2" ry="2" />
<text x="704.80" y="463.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (9 samples, 0.04%)</title><rect x="694.5" y="421" width="0.6" height="15.0" fill="rgb(206,75,1)" rx="2" ry="2" />
<text x="697.55" y="431.5" ></text>
</g>
<g >
<title>read_app_id_expression (2 samples, 0.01%)</title><rect x="180.2" y="421" width="0.1" height="15.0" fill="rgb(246,39,41)" rx="2" ry="2" />
<text x="183.16" y="431.5" ></text>
</g>
<g >
<title>stream_process_tcp (47 samples, 0.23%)</title><rect x="690.2" y="613" width="2.8" height="15.0" fill="rgb(211,64,45)" rx="2" ry="2" />
<text x="693.18" y="623.5" ></text>
</g>
<g >
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="700.9" y="533" width="0.1" height="15.0" fill="rgb(247,194,34)" rx="2" ry="2" />
<text x="703.92" y="543.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_udpate (60 samples, 0.30%)</title><rect x="103.0" y="661" width="3.6" height="15.0" fill="rgb(250,128,34)" rx="2" ry="2" />
<text x="106.02" y="671.5" ></text>
</g>
<g >
<title>[sapp] (45 samples, 0.22%)</title><rect x="166.1" y="581" width="2.6" height="15.0" fill="rgb(210,227,28)" rx="2" ry="2" />
<text x="169.07" y="591.5" ></text>
</g>
<g >
<title>do_nanosleep (110 samples, 0.55%)</title><rect x="183.7" y="613" width="6.5" height="15.0" fill="rgb(248,207,33)" rx="2" ry="2" />
<text x="186.70" y="623.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (3 samples, 0.01%)</title><rect x="169.0" y="501" width="0.2" height="15.0" fill="rgb(229,82,50)" rx="2" ry="2" />
<text x="172.02" y="511.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (9 samples, 0.04%)</title><rect x="178.7" y="565" width="0.6" height="15.0" fill="rgb(249,117,15)" rx="2" ry="2" />
<text x="181.75" y="575.5" ></text>
</g>
<g >
<title>stream_bridge_async_data_get (2 samples, 0.01%)</title><rect x="640.8" y="533" width="0.1" height="15.0" fill="rgb(214,6,29)" rx="2" ry="2" />
<text x="643.82" y="543.5" ></text>
</g>
<g >
<title>ssl_callPlugins (3 samples, 0.01%)</title><rect x="395.0" y="421" width="0.2" height="15.0" fill="rgb(227,38,21)" rx="2" ry="2" />
<text x="397.98" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (97 samples, 0.48%)</title><rect x="318.2" y="261" width="5.7" height="15.0" fill="rgb(243,60,13)" rx="2" ry="2" />
<text x="321.18" y="271.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="393.0" y="437" width="0.1" height="15.0" fill="rgb(240,85,10)" rx="2" ry="2" />
<text x="396.03" y="447.5" ></text>
</g>
<g >
<title>set_session_attributes (2 samples, 0.01%)</title><rect x="168.8" y="389" width="0.1" height="15.0" fill="rgb(235,44,12)" rx="2" ry="2" />
<text x="171.78" y="399.5" ></text>
</g>
<g >
<title>DNS_UDP_ENTRY (3 samples, 0.01%)</title><rect x="516.4" y="517" width="0.1" height="15.0" fill="rgb(246,120,4)" rx="2" ry="2" />
<text x="519.36" y="527.5" ></text>
</g>
<g >
<title>MurmurHash3_x64_128 (11 samples, 0.05%)</title><rect x="441.0" y="453" width="0.6" height="15.0" fill="rgb(211,144,9)" rx="2" ry="2" />
<text x="443.98" y="463.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="394.7" y="325" width="0.2" height="15.0" fill="rgb(245,53,37)" rx="2" ry="2" />
<text x="397.68" y="335.5" ></text>
</g>
<g >
<title>http_doWithEntity (3 samples, 0.01%)</title><rect x="392.0" y="389" width="0.2" height="15.0" fill="rgb(243,203,20)" rx="2" ry="2" />
<text x="395.03" y="399.5" ></text>
</g>
<g >
<title>http_callPluginField (9 samples, 0.04%)</title><rect x="167.3" y="437" width="0.5" height="15.0" fill="rgb(239,131,51)" rx="2" ry="2" />
<text x="170.31" y="447.5" ></text>
</g>
<g >
<title>malloc (9 samples, 0.04%)</title><rect x="337.8" y="437" width="0.6" height="15.0" fill="rgb(218,0,45)" rx="2" ry="2" />
<text x="340.82" y="447.5" ></text>
</g>
<g >
<title>tsg_record_udp_entry (87 samples, 0.43%)</title><rect x="542.1" y="517" width="5.2" height="15.0" fill="rgb(216,112,13)" rx="2" ry="2" />
<text x="545.14" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (11 samples, 0.05%)</title><rect x="322.3" y="229" width="0.6" height="15.0" fill="rgb(224,190,41)" rx="2" ry="2" />
<text x="325.25" y="239.5" ></text>
</g>
<g >
<title>region_compile (46 samples, 0.23%)</title><rect x="138.2" y="677" width="2.7" height="15.0" fill="rgb(252,90,19)" rx="2" ry="2" />
<text x="141.23" y="687.5" ></text>
</g>
<g >
<title>sapp_mem_free (2 samples, 0.01%)</title><rect x="636.6" y="581" width="0.1" height="15.0" fill="rgb(251,120,45)" rx="2" ry="2" />
<text x="639.57" y="591.5" ></text>
</g>
<g >
<title>ssl_releaseStructClientHello (2 samples, 0.01%)</title><rect x="332.8" y="453" width="0.1" height="15.0" fill="rgb(248,123,39)" rx="2" ry="2" />
<text x="335.81" y="463.5" ></text>
</g>
<g >
<title>fw_ssl_entry (10 samples, 0.05%)</title><rect x="314.6" y="341" width="0.6" height="15.0" fill="rgb(212,74,17)" rx="2" ry="2" />
<text x="317.58" y="351.5" ></text>
</g>
<g >
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="699.1" y="549" width="0.7" height="15.0" fill="rgb(216,26,2)" rx="2" ry="2" />
<text x="702.09" y="559.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="707.5" y="645" width="0.1" height="15.0" fill="rgb(210,182,34)" rx="2" ry="2" />
<text x="710.47" y="655.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (7 samples, 0.03%)</title><rect x="108.6" y="645" width="0.4" height="15.0" fill="rgb(212,69,24)" rx="2" ry="2" />
<text x="111.62" y="655.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="548.6" y="533" width="0.1" height="15.0" fill="rgb(216,185,10)" rx="2" ry="2" />
<text x="551.63" y="543.5" ></text>
</g>
<g >
<title>PROT_PROCESS (11 samples, 0.05%)</title><rect x="695.2" y="453" width="0.6" height="15.0" fill="rgb(207,5,11)" rx="2" ry="2" />
<text x="698.20" y="463.5" ></text>
</g>
<g >
<title>http_doWithGzipData (4 samples, 0.02%)</title><rect x="295.4" y="373" width="0.2" height="15.0" fill="rgb(237,139,32)" rx="2" ry="2" />
<text x="298.36" y="383.5" ></text>
</g>
<g >
<title>http_doWithEntity (17 samples, 0.08%)</title><rect x="250.6" y="421" width="1.1" height="15.0" fill="rgb(239,93,40)" rx="2" ry="2" />
<text x="253.65" y="431.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="99.7" y="469" width="0.1" height="15.0" fill="rgb(246,58,13)" rx="2" ry="2" />
<text x="102.71" y="479.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="169.2" y="181" width="0.3" height="15.0" fill="rgb(239,223,40)" rx="2" ry="2" />
<text x="172.19" y="191.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="254.0" y="277" width="0.1" height="15.0" fill="rgb(206,47,45)" rx="2" ry="2" />
<text x="257.01" y="287.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_event (3 samples, 0.01%)</title><rect x="14.7" y="581" width="0.1" height="15.0" fill="rgb(218,47,3)" rx="2" ry="2" />
<text x="17.66" y="591.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (101 samples, 0.50%)</title><rect x="318.1" y="293" width="5.9" height="15.0" fill="rgb(224,34,32)" rx="2" ry="2" />
<text x="321.06" y="303.5" ></text>
</g>
<g >
<title>page_fault (4 samples, 0.02%)</title><rect x="267.5" y="469" width="0.2" height="15.0" fill="rgb(217,107,21)" rx="2" ry="2" />
<text x="270.46" y="479.5" ></text>
</g>
<g >
<title>TLD_cancel (5 samples, 0.02%)</title><rect x="293.8" y="293" width="0.3" height="15.0" fill="rgb(235,159,14)" rx="2" ry="2" />
<text x="296.82" y="303.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="301.6" y="421" width="0.2" height="15.0" fill="rgb(220,155,46)" rx="2" ry="2" />
<text x="304.61" y="431.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (10 samples, 0.05%)</title><rect x="177.5" y="485" width="0.5" height="15.0" fill="rgb(207,175,49)" rx="2" ry="2" />
<text x="180.45" y="495.5" ></text>
</g>
<g >
<title>[sapp] (254 samples, 1.27%)</title><rect x="165.7" y="677" width="15.0" height="15.0" fill="rgb(219,180,25)" rx="2" ry="2" />
<text x="168.71" y="687.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (8 samples, 0.04%)</title><rect x="374.2" y="453" width="0.5" height="15.0" fill="rgb(249,206,34)" rx="2" ry="2" />
<text x="377.22" y="463.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="256.1" y="357" width="0.1" height="15.0" fill="rgb(245,130,18)" rx="2" ry="2" />
<text x="259.07" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (10 samples, 0.05%)</title><rect x="548.7" y="533" width="0.6" height="15.0" fill="rgb(226,164,39)" rx="2" ry="2" />
<text x="551.74" y="543.5" ></text>
</g>
<g >
<title>http_callPluginField (15 samples, 0.07%)</title><rect x="694.2" y="485" width="0.9" height="15.0" fill="rgb(238,165,8)" rx="2" ry="2" />
<text x="697.19" y="495.5" ></text>
</g>
<g >
<title>__libc_calloc (2 samples, 0.01%)</title><rect x="102.8" y="645" width="0.1" height="15.0" fill="rgb(217,190,35)" rx="2" ry="2" />
<text x="105.78" y="655.5" ></text>
</g>
<g >
<title>rd_kafka_transport_poll (2 samples, 0.01%)</title><rect x="15.8" y="581" width="0.2" height="15.0" fill="rgb(218,209,25)" rx="2" ry="2" />
<text x="18.84" y="591.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_type (12 samples, 0.06%)</title><rect x="123.6" y="645" width="0.7" height="15.0" fill="rgb(244,38,33)" rx="2" ry="2" />
<text x="126.60" y="655.5" ></text>
</g>
<g >
<title>http_releaseHttpStream (3 samples, 0.01%)</title><rect x="167.9" y="501" width="0.2" height="15.0" fill="rgb(221,228,54)" rx="2" ry="2" />
<text x="170.90" y="511.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (3 samples, 0.01%)</title><rect x="535.1" y="453" width="0.1" height="15.0" fill="rgb(207,44,2)" rx="2" ry="2" />
<text x="538.06" y="463.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="392.7" y="469" width="0.2" height="15.0" fill="rgb(245,13,27)" rx="2" ry="2" />
<text x="395.74" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="326.8" y="245" width="0.3" height="15.0" fill="rgb(232,195,2)" rx="2" ry="2" />
<text x="329.79" y="255.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (3 samples, 0.01%)</title><rect x="541.5" y="453" width="0.2" height="15.0" fill="rgb(228,13,40)" rx="2" ry="2" />
<text x="544.49" y="463.5" ></text>
</g>
<g >
<title>plugin_process_close (5 samples, 0.02%)</title><rect x="287.1" y="373" width="0.3" height="15.0" fill="rgb(229,90,54)" rx="2" ry="2" />
<text x="290.10" y="383.5" ></text>
</g>
<g >
<title>operator new (2 samples, 0.01%)</title><rect x="400.3" y="357" width="0.2" height="15.0" fill="rgb(249,150,2)" rx="2" ry="2" />
<text x="403.34" y="367.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (8 samples, 0.04%)</title><rect x="181.8" y="645" width="0.5" height="15.0" fill="rgb(205,164,21)" rx="2" ry="2" />
<text x="184.82" y="655.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (2 samples, 0.01%)</title><rect x="713.0" y="437" width="0.1" height="15.0" fill="rgb(213,210,29)" rx="2" ry="2" />
<text x="715.95" y="447.5" ></text>
</g>
<g >
<title>sapp_fs2_fuzzy_latency_update_per_entry (66 samples, 0.33%)</title><rect x="470.4" y="501" width="3.8" height="15.0" fill="rgb(226,43,13)" rx="2" ry="2" />
<text x="473.36" y="511.5" ></text>
</g>
<g >
<title>page_fault (3 samples, 0.01%)</title><rect x="338.2" y="405" width="0.2" height="15.0" fill="rgb(242,218,30)" rx="2" ry="2" />
<text x="341.18" y="415.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (24 samples, 0.12%)</title><rect x="176.0" y="517" width="1.5" height="15.0" fill="rgb(223,70,16)" rx="2" ry="2" />
<text x="179.04" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="323.0" y="181" width="0.1" height="15.0" fill="rgb(210,163,22)" rx="2" ry="2" />
<text x="325.96" y="191.5" ></text>
</g>
<g >
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="394.7" y="293" width="0.2" height="15.0" fill="rgb(222,18,0)" rx="2" ry="2" />
<text x="397.74" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="307.1" y="277" width="0.1" height="15.0" fill="rgb(247,179,35)" rx="2" ry="2" />
<text x="310.09" y="287.5" ></text>
</g>
<g >
<title>expiry_dablooms_add (124 samples, 0.62%)</title><rect x="403.6" y="517" width="7.4" height="15.0" fill="rgb(224,78,53)" rx="2" ry="2" />
<text x="406.65" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="254.8" y="309" width="0.2" height="15.0" fill="rgb(208,53,1)" rx="2" ry="2" />
<text x="257.84" y="319.5" ></text>
</g>
<g >
<title>[wire_graft_plug.so] (10 samples, 0.05%)</title><rect x="395.4" y="453" width="0.6" height="15.0" fill="rgb(249,71,7)" rx="2" ry="2" />
<text x="398.45" y="463.5" ></text>
</g>
<g >
<title>_int_free (6 samples, 0.03%)</title><rect x="636.2" y="581" width="0.4" height="15.0" fill="rgb(252,135,19)" rx="2" ry="2" />
<text x="639.22" y="591.5" ></text>
</g>
<g >
<title>vfprintf (4 samples, 0.02%)</title><rect x="179.0" y="469" width="0.3" height="15.0" fill="rgb(252,32,26)" rx="2" ry="2" />
<text x="182.04" y="479.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="172.9" y="373" width="0.4" height="15.0" fill="rgb(251,200,9)" rx="2" ry="2" />
<text x="175.85" y="383.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (23 samples, 0.11%)</title><rect x="486.2" y="469" width="1.3" height="15.0" fill="rgb(234,22,43)" rx="2" ry="2" />
<text x="489.16" y="479.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (4 samples, 0.02%)</title><rect x="182.1" y="581" width="0.2" height="15.0" fill="rgb(220,99,0)" rx="2" ry="2" />
<text x="185.05" y="591.5" ></text>
</g>
<g >
<title>schedule_preempt_disabled (125 samples, 0.62%)</title><rect x="1177.7" y="661" width="7.4" height="15.0" fill="rgb(248,117,11)" rx="2" ry="2" />
<text x="1180.73" y="671.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.02%)</title><rect x="638.5" y="581" width="0.3" height="15.0" fill="rgb(211,168,10)" rx="2" ry="2" />
<text x="641.46" y="591.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (8 samples, 0.04%)</title><rect x="259.3" y="533" width="0.5" height="15.0" fill="rgb(206,208,23)" rx="2" ry="2" />
<text x="262.32" y="543.5" ></text>
</g>
<g >
<title>tcp_free_stream (10 samples, 0.05%)</title><rect x="177.5" y="565" width="0.5" height="15.0" fill="rgb(228,104,50)" rx="2" ry="2" />
<text x="180.45" y="575.5" ></text>
</g>
<g >
<title>http_findLineEnd_CR (3 samples, 0.01%)</title><rect x="304.5" y="389" width="0.2" height="15.0" fill="rgb(249,20,0)" rx="2" ry="2" />
<text x="307.50" y="399.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="522.8" y="485" width="0.1" height="15.0" fill="rgb(210,39,32)" rx="2" ry="2" />
<text x="525.79" y="495.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="251.5" y="341" width="0.1" height="15.0" fill="rgb(242,213,40)" rx="2" ry="2" />
<text x="254.47" y="351.5" ></text>
</g>
<g >
<title>set_session_attributes (4 samples, 0.02%)</title><rect x="182.4" y="629" width="0.2" height="15.0" fill="rgb(209,122,43)" rx="2" ry="2" />
<text x="185.41" y="639.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.03%)</title><rect x="288.6" y="277" width="0.4" height="15.0" fill="rgb(213,215,28)" rx="2" ry="2" />
<text x="291.63" y="287.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (56 samples, 0.28%)</title><rect x="693.7" y="597" width="3.3" height="15.0" fill="rgb(231,2,52)" rx="2" ry="2" />
<text x="696.66" y="607.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1189.8" y="693" width="0.1" height="15.0" fill="rgb(242,206,6)" rx="2" ry="2" />
<text x="1192.82" y="703.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="167.9" y="469" width="0.2" height="15.0" fill="rgb(224,48,52)" rx="2" ry="2" />
<text x="170.90" y="479.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (2 samples, 0.01%)</title><rect x="712.5" y="405" width="0.2" height="15.0" fill="rgb(240,80,1)" rx="2" ry="2" />
<text x="715.54" y="415.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="169.2" y="293" width="0.3" height="15.0" fill="rgb(207,180,35)" rx="2" ry="2" />
<text x="172.19" y="303.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="174.2" y="453" width="0.2" height="15.0" fill="rgb(226,204,23)" rx="2" ry="2" />
<text x="177.21" y="463.5" ></text>
</g>
<g >
<title>stream_process_tcp (13 samples, 0.06%)</title><rect x="169.0" y="565" width="0.7" height="15.0" fill="rgb(240,181,4)" rx="2" ry="2" />
<text x="171.96" y="575.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (26 samples, 0.13%)</title><rect x="701.3" y="533" width="1.6" height="15.0" fill="rgb(239,130,47)" rx="2" ry="2" />
<text x="704.33" y="543.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="170.8" y="309" width="0.2" height="15.0" fill="rgb(251,187,37)" rx="2" ry="2" />
<text x="173.79" y="319.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (2 samples, 0.01%)</title><rect x="168.8" y="597" width="0.1" height="15.0" fill="rgb(227,108,11)" rx="2" ry="2" />
<text x="171.78" y="607.5" ></text>
</g>
<g >
<title>__printf_fp (10 samples, 0.05%)</title><rect x="348.9" y="357" width="0.5" height="15.0" fill="rgb(233,114,37)" rx="2" ry="2" />
<text x="351.85" y="367.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (3 samples, 0.01%)</title><rect x="182.1" y="453" width="0.1" height="15.0" fill="rgb(219,72,46)" rx="2" ry="2" />
<text x="185.05" y="463.5" ></text>
</g>
<g >
<title>findstreamindex (169 samples, 0.84%)</title><rect x="380.8" y="549" width="9.9" height="15.0" fill="rgb(237,28,44)" rx="2" ry="2" />
<text x="383.76" y="559.5" ></text>
</g>
<g >
<title>realloc (4 samples, 0.02%)</title><rect x="256.3" y="277" width="0.2" height="15.0" fill="rgb(226,49,25)" rx="2" ry="2" />
<text x="259.31" y="287.5" ></text>
</g>
<g >
<title>sip_stream_init (3 samples, 0.01%)</title><rect x="518.0" y="501" width="0.1" height="15.0" fill="rgb(224,190,10)" rx="2" ry="2" />
<text x="520.96" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="174.0" y="533" width="0.6" height="15.0" fill="rgb(210,220,40)" rx="2" ry="2" />
<text x="177.03" y="543.5" ></text>
</g>
<g >
<title>PROT_PROCESS (23 samples, 0.11%)</title><rect x="330.0" y="389" width="1.3" height="15.0" fill="rgb(219,58,28)" rx="2" ry="2" />
<text x="332.98" y="399.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="321.0" y="149" width="0.1" height="15.0" fill="rgb(250,141,32)" rx="2" ry="2" />
<text x="323.95" y="159.5" ></text>
</g>
<g >
<title>cJSON_Delete (5 samples, 0.02%)</title><rect x="700.0" y="533" width="0.3" height="15.0" fill="rgb(246,54,8)" rx="2" ry="2" />
<text x="702.98" y="543.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (107 samples, 0.53%)</title><rect x="169.7" y="549" width="6.3" height="15.0" fill="rgb(213,51,6)" rx="2" ry="2" />
<text x="172.72" y="559.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="395.2" y="421" width="0.1" height="15.0" fill="rgb(226,3,17)" rx="2" ry="2" />
<text x="398.15" y="431.5" ></text>
</g>
<g >
<title>http_add_proto_tag (14 samples, 0.07%)</title><rect x="285.6" y="469" width="0.8" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text x="288.57" y="479.5" ></text>
</g>
<g >
<title>rdk:broker54 (4 samples, 0.02%)</title><rect x="13.8" y="709" width="0.3" height="15.0" fill="rgb(254,64,50)" rx="2" ry="2" />
<text x="16.83" y="719.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="641.2" y="453" width="0.1" height="15.0" fill="rgb(227,156,45)" rx="2" ry="2" />
<text x="644.17" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="328.0" y="149" width="0.2" height="15.0" fill="rgb(214,173,46)" rx="2" ry="2" />
<text x="331.03" y="159.5" ></text>
</g>
<g >
<title>rulescan_computeresult (22 samples, 0.11%)</title><rect x="125.7" y="629" width="1.3" height="15.0" fill="rgb(211,193,33)" rx="2" ry="2" />
<text x="128.72" y="639.5" ></text>
</g>
<g >
<title>rd_kafka_msg_partitioner (2 samples, 0.01%)</title><rect x="295.2" y="277" width="0.2" height="15.0" fill="rgb(238,212,36)" rx="2" ry="2" />
<text x="298.24" y="287.5" ></text>
</g>
<g >
<title>cJSON_Delete (3 samples, 0.01%)</title><rect x="705.4" y="565" width="0.2" height="15.0" fill="rgb(238,51,3)" rx="2" ry="2" />
<text x="708.40" y="575.5" ></text>
</g>
<g >
<title>[sapp] (8 samples, 0.04%)</title><rect x="442.2" y="533" width="0.4" height="15.0" fill="rgb(210,106,11)" rx="2" ry="2" />
<text x="445.16" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="380.3" y="469" width="0.3" height="15.0" fill="rgb(216,106,41)" rx="2" ry="2" />
<text x="383.35" y="479.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (17 samples, 0.08%)</title><rect x="250.6" y="437" width="1.1" height="15.0" fill="rgb(233,81,37)" rx="2" ry="2" />
<text x="253.65" y="447.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="178.2" y="453" width="0.1" height="15.0" fill="rgb(221,11,51)" rx="2" ry="2" />
<text x="181.22" y="463.5" ></text>
</g>
<g >
<title>wg_mirror_linkinfo_ntop (33 samples, 0.16%)</title><rect x="348.4" y="469" width="2.0" height="15.0" fill="rgb(235,194,50)" rx="2" ry="2" />
<text x="351.44" y="479.5" ></text>
</g>
<g >
<title>project_req_get_struct (33 samples, 0.16%)</title><rect x="523.8" y="485" width="1.9" height="15.0" fill="rgb(234,153,33)" rx="2" ry="2" />
<text x="526.79" y="495.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (155 samples, 0.77%)</title><rect x="527.0" y="517" width="9.2" height="15.0" fill="rgb(237,148,8)" rx="2" ry="2" />
<text x="530.04" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="307.7" y="261" width="0.1" height="15.0" fill="rgb(218,171,12)" rx="2" ry="2" />
<text x="310.68" y="271.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="292.3" y="309" width="0.2" height="15.0" fill="rgb(244,224,50)" rx="2" ry="2" />
<text x="295.35" y="319.5" ></text>
</g>
<g >
<title>tsg_send_log (5 samples, 0.02%)</title><rect x="287.1" y="293" width="0.3" height="15.0" fill="rgb(244,156,5)" rx="2" ry="2" />
<text x="290.10" y="303.5" ></text>
</g>
<g >
<title>__snprintf (3 samples, 0.01%)</title><rect x="171.4" y="325" width="0.2" height="15.0" fill="rgb(233,225,37)" rx="2" ry="2" />
<text x="174.38" y="335.5" ></text>
</g>
<g >
<title>smtp_entry_fun (5 samples, 0.02%)</title><rect x="308.4" y="469" width="0.3" height="15.0" fill="rgb(238,204,41)" rx="2" ry="2" />
<text x="311.39" y="479.5" ></text>
</g>
<g >
<title>imap4_entry_fun (2 samples, 0.01%)</title><rect x="308.2" y="469" width="0.1" height="15.0" fill="rgb(217,44,1)" rx="2" ry="2" />
<text x="311.21" y="479.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="224.0" y="613" width="0.2" height="15.0" fill="rgb(248,51,9)" rx="2" ry="2" />
<text x="226.99" y="623.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (7 samples, 0.03%)</title><rect x="395.6" y="421" width="0.4" height="15.0" fill="rgb(228,34,35)" rx="2" ry="2" />
<text x="398.57" y="431.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="700.0" y="517" width="0.1" height="15.0" fill="rgb(206,114,26)" rx="2" ry="2" />
<text x="702.98" y="527.5" ></text>
</g>
<g >
<title>rd_kafka_msg_partitioner (2 samples, 0.01%)</title><rect x="699.8" y="533" width="0.1" height="15.0" fill="rgb(242,42,24)" rx="2" ry="2" />
<text x="702.80" y="543.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="255.0" y="261" width="0.2" height="15.0" fill="rgb(219,165,36)" rx="2" ry="2" />
<text x="257.95" y="271.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (2 samples, 0.01%)</title><rect x="169.4" y="101" width="0.1" height="15.0" fill="rgb(205,117,24)" rx="2" ry="2" />
<text x="172.43" y="111.5" ></text>
</g>
<g >
<title>cycle_pkt_dump_by_classify (8 samples, 0.04%)</title><rect x="224.5" y="613" width="0.5" height="15.0" fill="rgb(211,178,54)" rx="2" ry="2" />
<text x="227.52" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="487.3" y="421" width="0.2" height="15.0" fill="rgb(236,60,47)" rx="2" ry="2" />
<text x="490.34" y="431.5" ></text>
</g>
<g >
<title>ssl_releaseSslStream (3 samples, 0.01%)</title><rect x="395.2" y="437" width="0.1" height="15.0" fill="rgb(228,65,1)" rx="2" ry="2" />
<text x="398.15" y="447.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (46 samples, 0.23%)</title><rect x="166.1" y="613" width="2.7" height="15.0" fill="rgb(224,23,20)" rx="2" ry="2" />
<text x="169.07" y="623.5" ></text>
</g>
<g >
<title>find_vma (2 samples, 0.01%)</title><rect x="260.5" y="437" width="0.1" height="15.0" fill="rgb(251,170,11)" rx="2" ry="2" />
<text x="263.50" y="447.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="99.7" y="581" width="0.1" height="15.0" fill="rgb(247,4,51)" rx="2" ry="2" />
<text x="102.71" y="591.5" ></text>
</g>
<g >
<title>plugin_call_appentry (12 samples, 0.06%)</title><rect x="287.6" y="357" width="0.7" height="15.0" fill="rgb(222,153,34)" rx="2" ry="2" />
<text x="290.63" y="367.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (3 samples, 0.01%)</title><rect x="169.0" y="485" width="0.2" height="15.0" fill="rgb(251,124,8)" rx="2" ry="2" />
<text x="172.02" y="495.5" ></text>
</g>
<g >
<title>plugin_process_close (3 samples, 0.01%)</title><rect x="167.9" y="437" width="0.2" height="15.0" fill="rgb(218,94,17)" rx="2" ry="2" />
<text x="170.90" y="447.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="696.8" y="421" width="0.2" height="15.0" fill="rgb(216,219,40)" rx="2" ry="2" />
<text x="699.85" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="293.5" y="245" width="0.2" height="15.0" fill="rgb(246,27,48)" rx="2" ry="2" />
<text x="296.53" y="255.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="168.1" y="261" width="0.1" height="15.0" fill="rgb(246,50,45)" rx="2" ry="2" />
<text x="171.07" y="271.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (4 samples, 0.02%)</title><rect x="12.3" y="645" width="0.2" height="15.0" fill="rgb(251,208,13)" rx="2" ry="2" />
<text x="15.30" y="655.5" ></text>
</g>
<g >
<title>ip_local_deliver (4 samples, 0.02%)</title><rect x="1177.3" y="389" width="0.3" height="15.0" fill="rgb(217,63,47)" rx="2" ry="2" />
<text x="1180.32" y="399.5" ></text>
</g>
<g >
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="696.5" y="453" width="0.3" height="15.0" fill="rgb(239,97,16)" rx="2" ry="2" />
<text x="699.50" y="463.5" ></text>
</g>
<g >
<title>stream_process_tcp (4 samples, 0.02%)</title><rect x="166.1" y="549" width="0.2" height="15.0" fill="rgb(208,144,35)" rx="2" ry="2" />
<text x="169.07" y="559.5" ></text>
</g>
<g >
<title>free (3 samples, 0.01%)</title><rect x="638.3" y="565" width="0.2" height="15.0" fill="rgb(242,109,34)" rx="2" ry="2" />
<text x="641.28" y="575.5" ></text>
</g>
<g >
<title>rdk:broker1 (4 samples, 0.02%)</title><rect x="11.1" y="709" width="0.2" height="15.0" fill="rgb(213,51,37)" rx="2" ry="2" />
<text x="14.06" y="719.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="256.3" y="293" width="0.2" height="15.0" fill="rgb(238,196,15)" rx="2" ry="2" />
<text x="259.25" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (2 samples, 0.01%)</title><rect x="699.6" y="485" width="0.1" height="15.0" fill="rgb(211,0,46)" rx="2" ry="2" />
<text x="702.56" y="495.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (50 samples, 0.25%)</title><rect x="690.2" y="661" width="2.9" height="15.0" fill="rgb(242,188,16)" rx="2" ry="2" />
<text x="693.18" y="671.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (7 samples, 0.03%)</title><rect x="178.3" y="565" width="0.4" height="15.0" fill="rgb(210,123,39)" rx="2" ry="2" />
<text x="181.34" y="575.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="252.9" y="213" width="0.3" height="15.0" fill="rgb(230,104,32)" rx="2" ry="2" />
<text x="255.95" y="223.5" ></text>
</g>
<g >
<title>cJSON_ParseWithOpts (3 samples, 0.01%)</title><rect x="172.3" y="341" width="0.2" height="15.0" fill="rgb(253,116,45)" rx="2" ry="2" />
<text x="175.32" y="351.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (11 samples, 0.05%)</title><rect x="326.5" y="309" width="0.6" height="15.0" fill="rgb(212,128,10)" rx="2" ry="2" />
<text x="329.50" y="319.5" ></text>
</g>
<g >
<title>Maat_table_get_type_by_id (14 samples, 0.07%)</title><rect x="116.5" y="677" width="0.8" height="15.0" fill="rgb(248,68,19)" rx="2" ry="2" />
<text x="119.52" y="687.5" ></text>
</g>
<g >
<title>start_thread (2 samples, 0.01%)</title><rect x="11.5" y="677" width="0.2" height="15.0" fill="rgb(215,174,35)" rx="2" ry="2" />
<text x="14.53" y="687.5" ></text>
</g>
<g >
<title>http_releaseHttpStream (26 samples, 0.13%)</title><rect x="306.6" y="469" width="1.6" height="15.0" fill="rgb(236,141,24)" rx="2" ry="2" />
<text x="309.62" y="479.5" ></text>
</g>
<g >
<title>malloc (12 samples, 0.06%)</title><rect x="268.5" y="501" width="0.7" height="15.0" fill="rgb(249,51,27)" rx="2" ry="2" />
<text x="271.46" y="511.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="696.8" y="485" width="0.2" height="15.0" fill="rgb(244,159,29)" rx="2" ry="2" />
<text x="699.85" y="495.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (12 samples, 0.06%)</title><rect x="541.4" y="501" width="0.7" height="15.0" fill="rgb(247,72,53)" rx="2" ry="2" />
<text x="544.43" y="511.5" ></text>
</g>
<g >
<title>APP_SKETCH_POLLING_ENTRY (206 samples, 1.03%)</title><rect x="651.8" y="629" width="12.2" height="15.0" fill="rgb(248,142,33)" rx="2" ry="2" />
<text x="654.85" y="639.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="526.3" y="469" width="0.1" height="15.0" fill="rgb(254,57,54)" rx="2" ry="2" />
<text x="529.27" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="277.5" y="405" width="0.3" height="15.0" fill="rgb(241,135,7)" rx="2" ry="2" />
<text x="280.54" y="415.5" ></text>
</g>
<g >
<title>[sapp] (281 samples, 1.40%)</title><rect x="165.7" y="693" width="16.6" height="15.0" fill="rgb(252,106,3)" rx="2" ry="2" />
<text x="168.71" y="703.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (9 samples, 0.04%)</title><rect x="142.4" y="613" width="0.5" height="15.0" fill="rgb(205,135,35)" rx="2" ry="2" />
<text x="145.36" y="623.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="257.4" y="437" width="0.1" height="15.0" fill="rgb(208,88,0)" rx="2" ry="2" />
<text x="260.43" y="447.5" ></text>
</g>
<g >
<title>ddos_sketch_logging_print (2 samples, 0.01%)</title><rect x="553.0" y="533" width="0.1" height="15.0" fill="rgb(223,19,35)" rx="2" ry="2" />
<text x="555.99" y="543.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="179.9" y="453" width="0.1" height="15.0" fill="rgb(215,22,21)" rx="2" ry="2" />
<text x="182.87" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="360.3" y="373" width="0.2" height="15.0" fill="rgb(206,214,24)" rx="2" ry="2" />
<text x="363.30" y="383.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (4 samples, 0.02%)</title><rect x="1177.3" y="437" width="0.3" height="15.0" fill="rgb(232,170,49)" rx="2" ry="2" />
<text x="1180.32" y="447.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (12 samples, 0.06%)</title><rect x="712.5" y="597" width="0.7" height="15.0" fill="rgb(213,126,13)" rx="2" ry="2" />
<text x="715.54" y="607.5" ></text>
</g>
<g >
<title>CRYPTO_free (2 samples, 0.01%)</title><rect x="323.3" y="133" width="0.1" height="15.0" fill="rgb(207,66,7)" rx="2" ry="2" />
<text x="326.31" y="143.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (26 samples, 0.13%)</title><rect x="170.6" y="501" width="1.5" height="15.0" fill="rgb(241,9,51)" rx="2" ry="2" />
<text x="173.61" y="511.5" ></text>
</g>
<g >
<title>_int_realloc (3 samples, 0.01%)</title><rect x="701.5" y="469" width="0.2" height="15.0" fill="rgb(227,200,54)" rx="2" ry="2" />
<text x="704.51" y="479.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="180.5" y="469" width="0.2" height="15.0" fill="rgb(211,85,23)" rx="2" ry="2" />
<text x="183.52" y="479.5" ></text>
</g>
<g >
<title>stream_process (16 samples, 0.08%)</title><rect x="180.7" y="581" width="0.9" height="15.0" fill="rgb(210,116,48)" rx="2" ry="2" />
<text x="183.69" y="591.5" ></text>
</g>
<g >
<title>project_req_get_struct (10 samples, 0.05%)</title><rect x="367.6" y="469" width="0.5" height="15.0" fill="rgb(218,90,39)" rx="2" ry="2" />
<text x="370.55" y="479.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="330.1" y="309" width="0.1" height="15.0" fill="rgb(226,176,20)" rx="2" ry="2" />
<text x="333.10" y="319.5" ></text>
</g>
<g >
<title>operator new (2 samples, 0.01%)</title><rect x="301.0" y="325" width="0.1" height="15.0" fill="rgb(254,205,22)" rx="2" ry="2" />
<text x="304.02" y="335.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="254.0" y="261" width="0.1" height="15.0" fill="rgb(249,213,30)" rx="2" ry="2" />
<text x="257.01" y="271.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="708.0" y="661" width="0.1" height="15.0" fill="rgb(214,113,25)" rx="2" ry="2" />
<text x="711.00" y="671.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="279.9" y="437" width="0.1" height="15.0" fill="rgb(232,184,22)" rx="2" ry="2" />
<text x="282.90" y="447.5" ></text>
</g>
<g >
<title>start_thread (2 samples, 0.01%)</title><rect x="10.2" y="677" width="0.2" height="15.0" fill="rgb(212,120,44)" rx="2" ry="2" />
<text x="13.24" y="687.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="392.0" y="453" width="0.3" height="15.0" fill="rgb(227,227,27)" rx="2" ry="2" />
<text x="395.03" y="463.5" ></text>
</g>
<g >
<title>http_doWithContentRange (2 samples, 0.01%)</title><rect x="303.4" y="405" width="0.1" height="15.0" fill="rgb(216,154,52)" rx="2" ry="2" />
<text x="306.38" y="415.5" ></text>
</g>
<g >
<title>cJSON_Delete (3 samples, 0.01%)</title><rect x="705.4" y="549" width="0.2" height="15.0" fill="rgb(236,180,38)" rx="2" ry="2" />
<text x="708.40" y="559.5" ></text>
</g>
<g >
<title>__memmove_ssse3_back (2 samples, 0.01%)</title><rect x="161.3" y="677" width="0.2" height="15.0" fill="rgb(254,148,14)" rx="2" ry="2" />
<text x="164.35" y="687.5" ></text>
</g>
<g >
<title>rulescan_search (38 samples, 0.19%)</title><rect x="124.8" y="661" width="2.2" height="15.0" fill="rgb(235,89,11)" rx="2" ry="2" />
<text x="127.78" y="671.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.04%)</title><rect x="128.7" y="629" width="0.4" height="15.0" fill="rgb(213,123,49)" rx="2" ry="2" />
<text x="131.67" y="639.5" ></text>
</g>
<g >
<title>checkstreamorder (16 samples, 0.08%)</title><rect x="492.2" y="533" width="0.9" height="15.0" fill="rgb(242,208,34)" rx="2" ry="2" />
<text x="495.18" y="543.5" ></text>
</g>
<g >
<title>counting_bloom_add (295 samples, 1.47%)</title><rect x="424.2" y="485" width="17.4" height="15.0" fill="rgb(235,67,22)" rx="2" ry="2" />
<text x="427.23" y="495.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (5 samples, 0.02%)</title><rect x="322.5" y="149" width="0.3" height="15.0" fill="rgb(216,42,46)" rx="2" ry="2" />
<text x="325.55" y="159.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (26 samples, 0.13%)</title><rect x="701.3" y="517" width="1.6" height="15.0" fill="rgb(254,101,29)" rx="2" ry="2" />
<text x="704.33" y="527.5" ></text>
</g>
<g >
<title>start_thread (8,289 samples, 41.43%)</title><rect x="200.7" y="677" width="489.0" height="15.0" fill="rgb(237,187,16)" rx="2" ry="2" />
<text x="203.75" y="687.5" >start_thread</text>
</g>
<g >
<title>expiry_dablooms_search (10 samples, 0.05%)</title><rect x="494.6" y="549" width="0.6" height="15.0" fill="rgb(249,14,20)" rx="2" ry="2" />
<text x="497.60" y="559.5" ></text>
</g>
<g >
<title>ssl_initSslStream (2 samples, 0.01%)</title><rect x="332.6" y="469" width="0.1" height="15.0" fill="rgb(215,103,38)" rx="2" ry="2" />
<text x="335.57" y="479.5" ></text>
</g>
<g >
<title>do_sync_write (29 samples, 0.14%)</title><rect x="190.4" y="613" width="1.7" height="15.0" fill="rgb(240,27,28)" rx="2" ry="2" />
<text x="193.43" y="623.5" ></text>
</g>
<g >
<title>start_thread (4 samples, 0.02%)</title><rect x="16.6" y="677" width="0.2" height="15.0" fill="rgb(219,221,30)" rx="2" ry="2" />
<text x="19.61" y="687.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="392.0" y="277" width="0.1" height="15.0" fill="rgb(224,77,5)" rx="2" ry="2" />
<text x="395.03" y="287.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="485.6" y="453" width="0.1" height="15.0" fill="rgb(205,47,28)" rx="2" ry="2" />
<text x="488.57" y="463.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (6 samples, 0.03%)</title><rect x="169.2" y="437" width="0.3" height="15.0" fill="rgb(217,217,30)" rx="2" ry="2" />
<text x="172.19" y="447.5" ></text>
</g>
<g >
<title>dictator_malloc (2 samples, 0.01%)</title><rect x="371.0" y="453" width="0.1" height="15.0" fill="rgb(207,69,41)" rx="2" ry="2" />
<text x="374.03" y="463.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (3 samples, 0.01%)</title><rect x="306.3" y="437" width="0.1" height="15.0" fill="rgb(227,75,30)" rx="2" ry="2" />
<text x="309.27" y="447.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="168.8" y="421" width="0.1" height="15.0" fill="rgb(246,31,9)" rx="2" ry="2" />
<text x="171.78" y="431.5" ></text>
</g>
<g >
<title>page_fault (2 samples, 0.01%)</title><rect x="327.0" y="149" width="0.1" height="15.0" fill="rgb(228,151,9)" rx="2" ry="2" />
<text x="330.03" y="159.5" ></text>
</g>
<g >
<title>page_fault (3 samples, 0.01%)</title><rect x="371.5" y="421" width="0.2" height="15.0" fill="rgb(210,61,18)" rx="2" ry="2" />
<text x="374.50" y="431.5" ></text>
</g>
<g >
<title>CRYPTO_free (3 samples, 0.01%)</title><rect x="253.7" y="117" width="0.1" height="15.0" fill="rgb(245,212,34)" rx="2" ry="2" />
<text x="256.66" y="127.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="198.6" y="661" width="0.1" height="15.0" fill="rgb(210,139,20)" rx="2" ry="2" />
<text x="201.57" y="671.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="321.1" y="213" width="0.4" height="15.0" fill="rgb(209,81,29)" rx="2" ry="2" />
<text x="324.07" y="223.5" ></text>
</g>
<g >
<title>_IO_vsprintf (5 samples, 0.02%)</title><rect x="178.7" y="469" width="0.3" height="15.0" fill="rgb(217,203,20)" rx="2" ry="2" />
<text x="181.75" y="479.5" ></text>
</g>
<g >
<title>[wire_graft_plug.so] (33 samples, 0.16%)</title><rect x="536.2" y="517" width="1.9" height="15.0" fill="rgb(220,70,50)" rx="2" ry="2" />
<text x="539.18" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="486.2" y="437" width="0.1" height="15.0" fill="rgb(238,105,50)" rx="2" ry="2" />
<text x="489.16" y="447.5" ></text>
</g>
<g >
<title>plugin_process_data (3 samples, 0.01%)</title><rect x="695.8" y="437" width="0.2" height="15.0" fill="rgb(251,190,53)" rx="2" ry="2" />
<text x="698.85" y="447.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock (2 samples, 0.01%)</title><rect x="366.5" y="357" width="0.2" height="15.0" fill="rgb(253,170,51)" rx="2" ry="2" />
<text x="369.55" y="367.5" ></text>
</g>
<g >
<title>rdk:broker66 (6 samples, 0.03%)</title><rect x="15.5" y="709" width="0.3" height="15.0" fill="rgb(208,136,17)" rx="2" ry="2" />
<text x="18.49" y="719.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.01%)</title><rect x="11.1" y="677" width="0.1" height="15.0" fill="rgb(224,90,15)" rx="2" ry="2" />
<text x="14.06" y="687.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (2 samples, 0.01%)</title><rect x="168.1" y="437" width="0.1" height="15.0" fill="rgb(250,17,20)" rx="2" ry="2" />
<text x="171.07" y="447.5" ></text>
</g>
<g >
<title>__snprintf (4 samples, 0.02%)</title><rect x="182.4" y="597" width="0.2" height="15.0" fill="rgb(211,189,54)" rx="2" ry="2" />
<text x="185.41" y="607.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="706.1" y="517" width="0.1" height="15.0" fill="rgb(210,221,54)" rx="2" ry="2" />
<text x="709.05" y="527.5" ></text>
</g>
<g >
<title>http_doWithDefaultData (3 samples, 0.01%)</title><rect x="179.7" y="549" width="0.2" height="15.0" fill="rgb(225,58,0)" rx="2" ry="2" />
<text x="182.69" y="559.5" ></text>
</g>
<g >
<title>PROT_PROCESS (11 samples, 0.05%)</title><rect x="516.9" y="485" width="0.6" height="15.0" fill="rgb(237,137,29)" rx="2" ry="2" />
<text x="519.89" y="495.5" ></text>
</g>
<g >
<title>APP_SKETCH_HTTP_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="694.2" y="421" width="0.3" height="15.0" fill="rgb(236,104,46)" rx="2" ry="2" />
<text x="697.19" y="431.5" ></text>
</g>
<g >
<title>tsg_send_log (32 samples, 0.16%)</title><rect x="703.5" y="565" width="1.9" height="15.0" fill="rgb(236,141,53)" rx="2" ry="2" />
<text x="706.51" y="575.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="361.7" y="373" width="0.1" height="15.0" fill="rgb(217,82,49)" rx="2" ry="2" />
<text x="364.65" y="383.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (9 samples, 0.04%)</title><rect x="169.2" y="469" width="0.5" height="15.0" fill="rgb(206,60,20)" rx="2" ry="2" />
<text x="172.19" y="479.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (11 samples, 0.05%)</title><rect x="541.4" y="485" width="0.7" height="15.0" fill="rgb(206,44,24)" rx="2" ry="2" />
<text x="544.43" y="495.5" ></text>
</g>
<g >
<title>http_doWithCnntcloseData (4 samples, 0.02%)</title><rect x="295.6" y="421" width="0.2" height="15.0" fill="rgb(236,61,21)" rx="2" ry="2" />
<text x="298.59" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="706.1" y="501" width="0.1" height="15.0" fill="rgb(236,83,27)" rx="2" ry="2" />
<text x="709.11" y="511.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="518.1" y="485" width="0.2" height="15.0" fill="rgb(247,181,52)" rx="2" ry="2" />
<text x="521.13" y="495.5" ></text>
</g>
<g >
<title>plugin_process_close (3 samples, 0.01%)</title><rect x="395.0" y="405" width="0.2" height="15.0" fill="rgb(215,51,15)" rx="2" ry="2" />
<text x="397.98" y="415.5" ></text>
</g>
<g >
<title>CompareRule (3 samples, 0.01%)</title><rect x="165.5" y="661" width="0.2" height="15.0" fill="rgb(249,56,50)" rx="2" ry="2" />
<text x="168.48" y="671.5" ></text>
</g>
<g >
<title>ddos_sketch_logging_print (3 samples, 0.01%)</title><rect x="379.5" y="453" width="0.2" height="15.0" fill="rgb(233,211,11)" rx="2" ry="2" />
<text x="382.52" y="463.5" ></text>
</g>
<g >
<title>[libqmengine.so] (50 samples, 0.25%)</title><rect x="195.6" y="677" width="3.0" height="15.0" fill="rgb(211,97,54)" rx="2" ry="2" />
<text x="198.62" y="687.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="318.7" y="117" width="0.1" height="15.0" fill="rgb(231,206,40)" rx="2" ry="2" />
<text x="321.65" y="127.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="397.6" y="373" width="0.1" height="15.0" fill="rgb(251,86,39)" rx="2" ry="2" />
<text x="400.63" y="383.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (9 samples, 0.04%)</title><rect x="641.0" y="517" width="0.5" height="15.0" fill="rgb(235,28,2)" rx="2" ry="2" />
<text x="643.99" y="527.5" ></text>
</g>
<g >
<title>[libprotoident.so] (2 samples, 0.01%)</title><rect x="256.7" y="421" width="0.1" height="15.0" fill="rgb(234,96,42)" rx="2" ry="2" />
<text x="259.66" y="431.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="304.3" y="373" width="0.1" height="15.0" fill="rgb(221,229,10)" rx="2" ry="2" />
<text x="307.26" y="383.5" ></text>
</g>
<g >
<title>_raw_qspin_lock (2 samples, 0.01%)</title><rect x="137.9" y="549" width="0.1" height="15.0" fill="rgb(245,186,1)" rx="2" ry="2" />
<text x="140.87" y="559.5" ></text>
</g>
<g >
<title>tsg_send_log (12 samples, 0.06%)</title><rect x="172.1" y="373" width="0.8" height="15.0" fill="rgb(254,3,12)" rx="2" ry="2" />
<text x="175.14" y="383.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="166.1" y="309" width="0.1" height="15.0" fill="rgb(233,93,5)" rx="2" ry="2" />
<text x="169.07" y="319.5" ></text>
</g>
<g >
<title>ASN1_primitive_free (2 samples, 0.01%)</title><rect x="324.7" y="309" width="0.1" height="15.0" fill="rgb(241,197,18)" rx="2" ry="2" />
<text x="327.73" y="319.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="260.3" y="501" width="0.1" height="15.0" fill="rgb(252,189,53)" rx="2" ry="2" />
<text x="263.32" y="511.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="169.2" y="277" width="0.3" height="15.0" fill="rgb(217,54,8)" rx="2" ry="2" />
<text x="172.19" y="287.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (37 samples, 0.18%)</title><rect x="475.1" y="485" width="2.2" height="15.0" fill="rgb(207,219,42)" rx="2" ry="2" />
<text x="478.13" y="495.5" ></text>
</g>
<g >
<title>X509_NAME_get_text_by_OBJ (6 samples, 0.03%)</title><rect x="327.4" y="389" width="0.3" height="15.0" fill="rgb(205,139,8)" rx="2" ry="2" />
<text x="330.38" y="399.5" ></text>
</g>
<g >
<title>APP_SKETCH_SSL_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="330.0" y="341" width="0.4" height="15.0" fill="rgb(248,167,29)" rx="2" ry="2" />
<text x="333.04" y="351.5" ></text>
</g>
<g >
<title>free (3 samples, 0.01%)</title><rect x="700.1" y="517" width="0.2" height="15.0" fill="rgb(218,210,49)" rx="2" ry="2" />
<text x="703.09" y="527.5" ></text>
</g>
<g >
<title>FS_operate (8 samples, 0.04%)</title><rect x="375.5" y="437" width="0.5" height="15.0" fill="rgb(248,216,51)" rx="2" ry="2" />
<text x="378.51" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="259.6" y="469" width="0.2" height="15.0" fill="rgb(237,87,43)" rx="2" ry="2" />
<text x="262.55" y="479.5" ></text>
</g>
<g >
<title>_int_free (10 samples, 0.05%)</title><rect x="249.6" y="517" width="0.6" height="15.0" fill="rgb(211,8,30)" rx="2" ry="2" />
<text x="252.65" y="527.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (9 samples, 0.04%)</title><rect x="534.5" y="437" width="0.6" height="15.0" fill="rgb(207,40,35)" rx="2" ry="2" />
<text x="537.53" y="447.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="690.5" y="389" width="0.2" height="15.0" fill="rgb(224,192,24)" rx="2" ry="2" />
<text x="693.54" y="399.5" ></text>
</g>
<g >
<title>sip_identify (7 samples, 0.03%)</title><rect x="308.7" y="469" width="0.4" height="15.0" fill="rgb(248,92,12)" rx="2" ry="2" />
<text x="311.69" y="479.5" ></text>
</g>
<g >
<title>stream_process (196 samples, 0.98%)</title><rect x="369.1" y="517" width="11.5" height="15.0" fill="rgb(213,14,9)" rx="2" ry="2" />
<text x="372.08" y="527.5" ></text>
</g>
<g >
<title>_IO_str_init_static_internal (5 samples, 0.02%)</title><rect x="281.4" y="405" width="0.3" height="15.0" fill="rgb(206,148,19)" rx="2" ry="2" />
<text x="284.44" y="415.5" ></text>
</g>
<g >
<title>tsg_l7_protocol_id2name (2 samples, 0.01%)</title><rect x="338.4" y="437" width="0.1" height="15.0" fill="rgb(238,71,10)" rx="2" ry="2" />
<text x="341.41" y="447.5" ></text>
</g>
<g >
<title>stream_process (5 samples, 0.02%)</title><rect x="178.0" y="581" width="0.3" height="15.0" fill="rgb(239,60,45)" rx="2" ry="2" />
<text x="181.04" y="591.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="327.9" y="245" width="0.3" height="15.0" fill="rgb(236,37,35)" rx="2" ry="2" />
<text x="330.91" y="255.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="99.7" y="597" width="0.1" height="15.0" fill="rgb(228,150,34)" rx="2" ry="2" />
<text x="102.71" y="607.5" ></text>
</g>
<g >
<title>CBoolExprMatch::get_mapped_id (5 samples, 0.02%)</title><rect x="126.6" y="597" width="0.3" height="15.0" fill="rgb(225,132,32)" rx="2" ry="2" />
<text x="129.61" y="607.5" ></text>
</g>
<g >
<title>stream_bridge_async_data_get (2 samples, 0.01%)</title><rect x="400.8" y="437" width="0.1" height="15.0" fill="rgb(247,35,3)" rx="2" ry="2" />
<text x="403.82" y="447.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (4 samples, 0.02%)</title><rect x="181.8" y="613" width="0.3" height="15.0" fill="rgb(228,11,14)" rx="2" ry="2" />
<text x="184.82" y="623.5" ></text>
</g>
<g >
<title>sk_pop_free (6 samples, 0.03%)</title><rect x="253.5" y="197" width="0.4" height="15.0" fill="rgb(214,98,24)" rx="2" ry="2" />
<text x="256.54" y="207.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="14.4" y="693" width="0.1" height="15.0" fill="rgb(233,216,36)" rx="2" ry="2" />
<text x="17.36" y="703.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (24 samples, 0.12%)</title><rect x="691.1" y="485" width="1.4" height="15.0" fill="rgb(213,138,38)" rx="2" ry="2" />
<text x="694.13" y="495.5" ></text>
</g>
<g >
<title>lrustream (10 samples, 0.05%)</title><rect x="177.5" y="597" width="0.5" height="15.0" fill="rgb(231,114,25)" rx="2" ry="2" />
<text x="180.45" y="607.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="514.2" y="485" width="0.1" height="15.0" fill="rgb(236,125,54)" rx="2" ry="2" />
<text x="517.18" y="495.5" ></text>
</g>
<g >
<title>ASN1_STRING_set (2 samples, 0.01%)</title><rect x="253.1" y="165" width="0.1" height="15.0" fill="rgb(213,49,7)" rx="2" ry="2" />
<text x="256.07" y="175.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (3 samples, 0.01%)</title><rect x="167.9" y="485" width="0.2" height="15.0" fill="rgb(253,108,15)" rx="2" ry="2" />
<text x="170.90" y="495.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (4 samples, 0.02%)</title><rect x="14.1" y="661" width="0.3" height="15.0" fill="rgb(213,67,39)" rx="2" ry="2" />
<text x="17.13" y="671.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (3 samples, 0.01%)</title><rect x="182.1" y="565" width="0.1" height="15.0" fill="rgb(207,205,20)" rx="2" ry="2" />
<text x="185.05" y="575.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="301.6" y="405" width="0.2" height="15.0" fill="rgb(224,74,26)" rx="2" ry="2" />
<text x="304.61" y="415.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="350.0" y="437" width="0.2" height="15.0" fill="rgb(230,167,41)" rx="2" ry="2" />
<text x="353.03" y="447.5" ></text>
</g>
<g >
<title>event_base_loop (280 samples, 1.40%)</title><rect x="673.1" y="629" width="16.6" height="15.0" fill="rgb(228,17,22)" rx="2" ry="2" />
<text x="676.14" y="639.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="707.5" y="629" width="0.1" height="15.0" fill="rgb(251,33,28)" rx="2" ry="2" />
<text x="710.47" y="639.5" ></text>
</g>
<g >
<title>http_callPlugin (25 samples, 0.12%)</title><rect x="306.6" y="437" width="1.5" height="15.0" fill="rgb(245,28,9)" rx="2" ry="2" />
<text x="309.62" y="447.5" ></text>
</g>
<g >
<title>rd_kafka_topic_partition_available (2 samples, 0.01%)</title><rect x="366.3" y="373" width="0.1" height="15.0" fill="rgb(235,157,8)" rx="2" ry="2" />
<text x="369.31" y="383.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="287.1" y="325" width="0.3" height="15.0" fill="rgb(250,180,21)" rx="2" ry="2" />
<text x="290.10" y="335.5" ></text>
</g>
<g >
<title>capture_packet_entry (78 samples, 0.39%)</title><rect x="452.5" y="485" width="4.6" height="15.0" fill="rgb(225,203,48)" rx="2" ry="2" />
<text x="455.49" y="495.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="538.0" y="437" width="0.1" height="15.0" fill="rgb(251,204,39)" rx="2" ry="2" />
<text x="541.01" y="447.5" ></text>
</g>
<g >
<title>malloc (5 samples, 0.02%)</title><rect x="278.0" y="437" width="0.3" height="15.0" fill="rgb(223,47,14)" rx="2" ry="2" />
<text x="281.02" y="447.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (2 samples, 0.01%)</title><rect x="181.7" y="581" width="0.1" height="15.0" fill="rgb(207,13,5)" rx="2" ry="2" />
<text x="184.70" y="591.5" ></text>
</g>
<g >
<title>Maat_clean_status (11 samples, 0.05%)</title><rect x="278.8" y="469" width="0.7" height="15.0" fill="rgb(248,17,7)" rx="2" ry="2" />
<text x="281.84" y="479.5" ></text>
</g>
<g >
<title>vfprintf (12 samples, 0.06%)</title><rect x="328.4" y="357" width="0.8" height="15.0" fill="rgb(232,149,26)" rx="2" ry="2" />
<text x="331.45" y="367.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="397.4" y="373" width="0.1" height="15.0" fill="rgb(229,33,36)" rx="2" ry="2" />
<text x="400.40" y="383.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="706.2" y="533" width="0.2" height="15.0" fill="rgb(233,174,47)" rx="2" ry="2" />
<text x="709.23" y="543.5" ></text>
</g>
<g >
<title>tsg_send_log (7 samples, 0.03%)</title><rect x="181.2" y="501" width="0.4" height="15.0" fill="rgb(234,113,54)" rx="2" ry="2" />
<text x="184.23" y="511.5" ></text>
</g>
<g >
<title>inet_ntop (5 samples, 0.02%)</title><rect x="640.5" y="517" width="0.3" height="15.0" fill="rgb(230,113,33)" rx="2" ry="2" />
<text x="643.46" y="527.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="99.7" y="565" width="0.1" height="15.0" fill="rgb(214,5,36)" rx="2" ry="2" />
<text x="102.71" y="575.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="174.2" y="501" width="0.2" height="15.0" fill="rgb(237,118,20)" rx="2" ry="2" />
<text x="177.21" y="511.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="303.2" y="389" width="0.2" height="15.0" fill="rgb(246,28,20)" rx="2" ry="2" />
<text x="306.20" y="399.5" ></text>
</g>
<g >
<title>[sapp] (6,484 samples, 32.41%)</title><rect x="214.6" y="645" width="382.5" height="15.0" fill="rgb(211,144,5)" rx="2" ry="2" />
<text x="217.61" y="655.5" >[sapp]</text>
</g>
<g >
<title>stream_bridge_async_data_put (2 samples, 0.01%)</title><rect x="348.1" y="469" width="0.1" height="15.0" fill="rgb(217,78,26)" rx="2" ry="2" />
<text x="351.09" y="479.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (7 samples, 0.03%)</title><rect x="178.3" y="549" width="0.4" height="15.0" fill="rgb(231,172,0)" rx="2" ry="2" />
<text x="181.34" y="559.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="712.5" y="181" width="0.2" height="15.0" fill="rgb(235,110,9)" rx="2" ry="2" />
<text x="715.54" y="191.5" ></text>
</g>
<g >
<title>tick_nohz_idle_exit (15 samples, 0.07%)</title><rect x="1188.3" y="661" width="0.9" height="15.0" fill="rgb(206,93,18)" rx="2" ry="2" />
<text x="1191.29" y="671.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="690.0" y="613" width="0.2" height="15.0" fill="rgb(223,172,23)" rx="2" ry="2" />
<text x="693.01" y="623.5" ></text>
</g>
<g >
<title>sk_pop_free (6 samples, 0.03%)</title><rect x="253.5" y="213" width="0.4" height="15.0" fill="rgb(222,196,13)" rx="2" ry="2" />
<text x="256.54" y="223.5" ></text>
</g>
<g >
<title>http_analyseHttpReqResHeader (6 samples, 0.03%)</title><rect x="690.2" y="533" width="0.3" height="15.0" fill="rgb(250,18,44)" rx="2" ry="2" />
<text x="693.18" y="543.5" ></text>
</g>
<g >
<title>sk_pop_free (6 samples, 0.03%)</title><rect x="323.1" y="229" width="0.4" height="15.0" fill="rgb(218,91,53)" rx="2" ry="2" />
<text x="326.14" y="239.5" ></text>
</g>
<g >
<title>file_buffer (3 samples, 0.01%)</title><rect x="179.7" y="405" width="0.2" height="15.0" fill="rgb(209,57,51)" rx="2" ry="2" />
<text x="182.69" y="415.5" ></text>
</g>
<g >
<title>http_callPluginField (25 samples, 0.12%)</title><rect x="306.6" y="421" width="1.5" height="15.0" fill="rgb(210,140,17)" rx="2" ry="2" />
<text x="309.62" y="431.5" ></text>
</g>
<g >
<title>malloc (10 samples, 0.05%)</title><rect x="305.6" y="421" width="0.6" height="15.0" fill="rgb(213,107,43)" rx="2" ry="2" />
<text x="308.62" y="431.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (2 samples, 0.01%)</title><rect x="15.8" y="613" width="0.2" height="15.0" fill="rgb(219,229,6)" rx="2" ry="2" />
<text x="18.84" y="623.5" ></text>
</g>
<g >
<title>pbe_uevent_malloc (6 samples, 0.03%)</title><rect x="706.9" y="693" width="0.3" height="15.0" fill="rgb(218,92,47)" rx="2" ry="2" />
<text x="709.88" y="703.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="537.8" y="469" width="0.2" height="15.0" fill="rgb(218,206,16)" rx="2" ry="2" />
<text x="540.77" y="479.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="301.8" y="309" width="0.2" height="15.0" fill="rgb(241,29,53)" rx="2" ry="2" />
<text x="304.84" y="319.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (3 samples, 0.01%)</title><rect x="13.8" y="613" width="0.2" height="15.0" fill="rgb(242,172,37)" rx="2" ry="2" />
<text x="16.83" y="623.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="328.2" y="293" width="0.1" height="15.0" fill="rgb(231,174,40)" rx="2" ry="2" />
<text x="331.21" y="303.5" ></text>
</g>
<g >
<title>TLD_append (4 samples, 0.02%)</title><rect x="292.9" y="309" width="0.2" height="15.0" fill="rgb(221,59,50)" rx="2" ry="2" />
<text x="295.88" y="319.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="253.1" y="149" width="0.1" height="15.0" fill="rgb(213,63,4)" rx="2" ry="2" />
<text x="256.07" y="159.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="172.9" y="245" width="0.4" height="15.0" fill="rgb(215,172,9)" rx="2" ry="2" />
<text x="175.85" y="255.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (14 samples, 0.07%)</title><rect x="476.1" y="469" width="0.9" height="15.0" fill="rgb(209,98,29)" rx="2" ry="2" />
<text x="479.14" y="479.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="526.0" y="453" width="0.3" height="15.0" fill="rgb(246,224,29)" rx="2" ry="2" />
<text x="529.04" y="463.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (2 samples, 0.01%)</title><rect x="99.7" y="693" width="0.1" height="15.0" fill="rgb(213,105,25)" rx="2" ry="2" />
<text x="102.71" y="703.5" ></text>
</g>
<g >
<title>[fw_http_plug.so] (4 samples, 0.02%)</title><rect x="707.4" y="661" width="0.2" height="15.0" fill="rgb(220,222,17)" rx="2" ry="2" />
<text x="710.41" y="671.5" ></text>
</g>
<g >
<title>stream_process_polling (754 samples, 3.77%)</title><rect x="645.2" y="645" width="44.5" height="15.0" fill="rgb(223,197,48)" rx="2" ry="2" />
<text x="648.18" y="655.5" >stre..</text>
</g>
<g >
<title>marsio_buff_ctrlzone (109 samples, 0.54%)</title><rect x="556.1" y="629" width="6.4" height="15.0" fill="rgb(241,34,32)" rx="2" ry="2" />
<text x="559.06" y="639.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="180.0" y="421" width="0.2" height="15.0" fill="rgb(230,90,29)" rx="2" ry="2" />
<text x="183.05" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="168.1" y="213" width="0.1" height="15.0" fill="rgb(234,138,39)" rx="2" ry="2" />
<text x="171.07" y="223.5" ></text>
</g>
<g >
<title>__snprintf (3 samples, 0.01%)</title><rect x="703.9" y="501" width="0.2" height="15.0" fill="rgb(229,31,21)" rx="2" ry="2" />
<text x="706.93" y="511.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="178.2" y="501" width="0.1" height="15.0" fill="rgb(208,163,34)" rx="2" ry="2" />
<text x="181.22" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (13 samples, 0.06%)</title><rect x="326.5" y="341" width="0.8" height="15.0" fill="rgb(248,182,20)" rx="2" ry="2" />
<text x="329.50" y="351.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="177.9" y="357" width="0.1" height="15.0" fill="rgb(209,23,25)" rx="2" ry="2" />
<text x="180.86" y="367.5" ></text>
</g>
<g >
<title>CInflate2::fn_iDecodeHuffmanCodeBlock (3 samples, 0.01%)</title><rect x="301.1" y="293" width="0.2" height="15.0" fill="rgb(238,185,37)" rx="2" ry="2" />
<text x="304.14" y="303.5" ></text>
</g>
<g >
<title>rulescan_computeresult (17 samples, 0.08%)</title><rect x="113.5" y="645" width="1.0" height="15.0" fill="rgb(218,26,26)" rx="2" ry="2" />
<text x="116.45" y="655.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="173.4" y="357" width="0.2" height="15.0" fill="rgb(210,15,9)" rx="2" ry="2" />
<text x="176.44" y="367.5" ></text>
</g>
<g >
<title>copy_ipport_union_addr (8 samples, 0.04%)</title><rect x="258.8" y="533" width="0.5" height="15.0" fill="rgb(213,100,19)" rx="2" ry="2" />
<text x="261.85" y="543.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="255.5" y="277" width="0.1" height="15.0" fill="rgb(243,105,5)" rx="2" ry="2" />
<text x="258.48" y="287.5" ></text>
</g>
<g >
<title>rdk:broker40 (2 samples, 0.01%)</title><rect x="13.1" y="709" width="0.1" height="15.0" fill="rgb(233,76,3)" rx="2" ry="2" />
<text x="16.07" y="719.5" ></text>
</g>
<g >
<title>sapp_fs2_fuzzy_latency_update_per_entry (3 samples, 0.01%)</title><rect x="641.6" y="549" width="0.2" height="15.0" fill="rgb(222,15,45)" rx="2" ry="2" />
<text x="644.58" y="559.5" ></text>
</g>
<g >
<title>__do_page_fault (2 samples, 0.01%)</title><rect x="401.1" y="517" width="0.1" height="15.0" fill="rgb(208,142,7)" rx="2" ry="2" />
<text x="404.11" y="527.5" ></text>
</g>
<g >
<title>TLD_cancel (3 samples, 0.01%)</title><rect x="315.0" y="309" width="0.2" height="15.0" fill="rgb(209,19,38)" rx="2" ry="2" />
<text x="318.00" y="319.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="168.8" y="405" width="0.1" height="15.0" fill="rgb(239,225,24)" rx="2" ry="2" />
<text x="171.78" y="415.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (2 samples, 0.01%)</title><rect x="14.9" y="661" width="0.1" height="15.0" fill="rgb(227,105,51)" rx="2" ry="2" />
<text x="17.90" y="671.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="172.3" y="309" width="0.2" height="15.0" fill="rgb(212,207,7)" rx="2" ry="2" />
<text x="175.32" y="319.5" ></text>
</g>
<g >
<title>change_protection_range (15 samples, 0.07%)</title><rect x="688.8" y="501" width="0.9" height="15.0" fill="rgb(236,177,42)" rx="2" ry="2" />
<text x="691.77" y="511.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="350.0" y="421" width="0.2" height="15.0" fill="rgb(246,82,44)" rx="2" ry="2" />
<text x="353.03" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="269.2" y="485" width="0.1" height="15.0" fill="rgb(207,202,52)" rx="2" ry="2" />
<text x="272.17" y="495.5" ></text>
</g>
<g >
<title>cJSON_ParseWithOpts (5 samples, 0.02%)</title><rect x="361.6" y="405" width="0.3" height="15.0" fill="rgb(239,143,53)" rx="2" ry="2" />
<text x="364.59" y="415.5" ></text>
</g>
<g >
<title>CRYPTO_free (2 samples, 0.01%)</title><rect x="325.0" y="245" width="0.1" height="15.0" fill="rgb(231,119,38)" rx="2" ry="2" />
<text x="328.02" y="255.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (22 samples, 0.11%)</title><rect x="643.5" y="613" width="1.3" height="15.0" fill="rgb(244,209,23)" rx="2" ry="2" />
<text x="646.53" y="623.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (2 samples, 0.01%)</title><rect x="14.1" y="613" width="0.1" height="15.0" fill="rgb(224,81,48)" rx="2" ry="2" />
<text x="17.13" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="396.5" y="389" width="0.2" height="15.0" fill="rgb(218,197,2)" rx="2" ry="2" />
<text x="399.51" y="399.5" ></text>
</g>
<g >
<title>layer_addr_ntop_r (2 samples, 0.01%)</title><rect x="181.7" y="501" width="0.1" height="15.0" fill="rgb(226,15,41)" rx="2" ry="2" />
<text x="184.70" y="511.5" ></text>
</g>
<g >
<title>http_callPluginField (4 samples, 0.02%)</title><rect x="303.5" y="373" width="0.2" height="15.0" fill="rgb(245,58,26)" rx="2" ry="2" />
<text x="306.50" y="383.5" ></text>
</g>
<g >
<title>sys_nanosleep (2 samples, 0.01%)</title><rect x="198.6" y="613" width="0.1" height="15.0" fill="rgb(212,95,54)" rx="2" ry="2" />
<text x="201.57" y="623.5" ></text>
</g>
<g >
<title>tsg_scan_shared_policy (2 samples, 0.01%)</title><rect x="346.8" y="469" width="0.2" height="15.0" fill="rgb(231,32,46)" rx="2" ry="2" />
<text x="349.85" y="479.5" ></text>
</g>
<g >
<title>sapp_mem_free (4 samples, 0.02%)</title><rect x="249.4" y="501" width="0.2" height="15.0" fill="rgb(221,124,1)" rx="2" ry="2" />
<text x="252.41" y="511.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="99.7" y="437" width="0.1" height="15.0" fill="rgb(224,183,49)" rx="2" ry="2" />
<text x="102.71" y="447.5" ></text>
</g>
<g >
<title>qm_free_default (4 samples, 0.02%)</title><rect x="199.0" y="677" width="0.2" height="15.0" fill="rgb(230,51,35)" rx="2" ry="2" />
<text x="201.98" y="687.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (29 samples, 0.14%)</title><rect x="710.8" y="661" width="1.7" height="15.0" fill="rgb(214,74,35)" rx="2" ry="2" />
<text x="713.77" y="671.5" ></text>
</g>
<g >
<title>TLD_append (9 samples, 0.04%)</title><rect x="170.7" y="325" width="0.5" height="15.0" fill="rgb(205,123,50)" rx="2" ry="2" />
<text x="173.67" y="335.5" ></text>
</g>
<g >
<title>plugin_call_appentry (25 samples, 0.12%)</title><rect x="306.6" y="389" width="1.5" height="15.0" fill="rgb(220,88,45)" rx="2" ry="2" />
<text x="309.62" y="399.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="546.0" y="453" width="0.1" height="15.0" fill="rgb(243,59,29)" rx="2" ry="2" />
<text x="549.03" y="463.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (10 samples, 0.05%)</title><rect x="177.5" y="501" width="0.5" height="15.0" fill="rgb(225,18,17)" rx="2" ry="2" />
<text x="180.45" y="511.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (2 samples, 0.01%)</title><rect x="484.7" y="549" width="0.2" height="15.0" fill="rgb(240,208,20)" rx="2" ry="2" />
<text x="487.75" y="559.5" ></text>
</g>
<g >
<title>__libc_calloc (5 samples, 0.02%)</title><rect x="374.7" y="469" width="0.3" height="15.0" fill="rgb(240,47,43)" rx="2" ry="2" />
<text x="377.75" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="255.5" y="309" width="0.2" height="15.0" fill="rgb(218,217,54)" rx="2" ry="2" />
<text x="258.48" y="319.5" ></text>
</g>
<g >
<title>http_doWithHost (6 samples, 0.03%)</title><rect x="696.5" y="501" width="0.3" height="15.0" fill="rgb(249,222,44)" rx="2" ry="2" />
<text x="699.50" y="511.5" ></text>
</g>
<g >
<title>CBoolExprMatch::search_expr (17 samples, 0.08%)</title><rect x="125.9" y="613" width="1.0" height="15.0" fill="rgb(228,8,11)" rx="2" ry="2" />
<text x="128.90" y="623.5" ></text>
</g>
<g >
<title>memcasemem (2 samples, 0.01%)</title><rect x="291.9" y="405" width="0.2" height="15.0" fill="rgb(249,33,36)" rx="2" ry="2" />
<text x="294.94" y="415.5" ></text>
</g>
<g >
<title>rdk:broker11 (3 samples, 0.01%)</title><rect x="10.4" y="709" width="0.1" height="15.0" fill="rgb(219,29,22)" rx="2" ry="2" />
<text x="13.35" y="719.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (7 samples, 0.03%)</title><rect x="181.2" y="421" width="0.4" height="15.0" fill="rgb(232,25,26)" rx="2" ry="2" />
<text x="184.23" y="431.5" ></text>
</g>
<g >
<title>tick_nohz_idle_enter (54 samples, 0.27%)</title><rect x="1185.1" y="661" width="3.2" height="15.0" fill="rgb(205,189,21)" rx="2" ry="2" />
<text x="1188.10" y="671.5" ></text>
</g>
<g >
<title>TLD_create (2 samples, 0.01%)</title><rect x="168.3" y="357" width="0.1" height="15.0" fill="rgb(210,115,39)" rx="2" ry="2" />
<text x="171.31" y="367.5" ></text>
</g>
<g >
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="181.7" y="629" width="0.1" height="15.0" fill="rgb(234,60,37)" rx="2" ry="2" />
<text x="184.70" y="639.5" ></text>
</g>
<g >
<title>__uflow (2 samples, 0.01%)</title><rect x="468.7" y="373" width="0.1" height="15.0" fill="rgb(254,21,11)" rx="2" ry="2" />
<text x="471.71" y="383.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="304.3" y="389" width="0.1" height="15.0" fill="rgb(215,158,17)" rx="2" ry="2" />
<text x="307.26" y="399.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="712.5" y="293" width="0.2" height="15.0" fill="rgb(245,92,4)" rx="2" ry="2" />
<text x="715.54" y="303.5" ></text>
</g>
<g >
<title>http_readChunkedData (2 samples, 0.01%)</title><rect x="695.1" y="501" width="0.1" height="15.0" fill="rgb(240,163,30)" rx="2" ry="2" />
<text x="698.08" y="511.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="293.1" y="309" width="0.1" height="15.0" fill="rgb(220,209,33)" rx="2" ry="2" />
<text x="296.12" y="319.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="166.1" y="149" width="0.1" height="15.0" fill="rgb(232,176,48)" rx="2" ry="2" />
<text x="169.07" y="159.5" ></text>
</g>
<g >
<title>TLD_append (4 samples, 0.02%)</title><rect x="175.7" y="421" width="0.3" height="15.0" fill="rgb(221,143,33)" rx="2" ry="2" />
<text x="178.74" y="431.5" ></text>
</g>
<g >
<title>std::vector&lt;char, std::allocator&lt;char&gt; &gt;::_M_range_insert&lt;char const*&gt; (6 samples, 0.03%)</title><rect x="300.4" y="325" width="0.3" height="15.0" fill="rgb(222,227,19)" rx="2" ry="2" />
<text x="303.37" y="335.5" ></text>
</g>
<g >
<title>set_session_attributes (3 samples, 0.01%)</title><rect x="398.5" y="373" width="0.2" height="15.0" fill="rgb(231,89,50)" rx="2" ry="2" />
<text x="401.52" y="383.5" ></text>
</g>
<g >
<title>pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="373.8" y="405" width="0.1" height="15.0" fill="rgb(216,62,7)" rx="2" ry="2" />
<text x="376.80" y="415.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (35 samples, 0.17%)</title><rect x="690.5" y="533" width="2.1" height="15.0" fill="rgb(219,151,22)" rx="2" ry="2" />
<text x="693.54" y="543.5" ></text>
</g>
<g >
<title>ssl_get_ja3_fingerprint (57 samples, 0.28%)</title><rect x="709.2" y="693" width="3.3" height="15.0" fill="rgb(211,163,36)" rx="2" ry="2" />
<text x="712.18" y="703.5" ></text>
</g>
<g >
<title>vfprintf (16 samples, 0.08%)</title><rect x="166.3" y="421" width="0.9" height="15.0" fill="rgb(236,3,24)" rx="2" ry="2" />
<text x="169.30" y="431.5" ></text>
</g>
<g >
<title>schedule (91 samples, 0.45%)</title><rect x="184.8" y="597" width="5.4" height="15.0" fill="rgb(213,158,37)" rx="2" ry="2" />
<text x="187.82" y="607.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="343.5" y="453" width="0.2" height="15.0" fill="rgb(240,182,32)" rx="2" ry="2" />
<text x="346.49" y="463.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="317.2" y="389" width="0.2" height="15.0" fill="rgb(215,29,9)" rx="2" ry="2" />
<text x="320.24" y="399.5" ></text>
</g>
<g >
<title>marsio_buff_mtod (2 samples, 0.01%)</title><rect x="567.7" y="629" width="0.1" height="15.0" fill="rgb(233,155,35)" rx="2" ry="2" />
<text x="570.68" y="639.5" ></text>
</g>
<g >
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="179.3" y="501" width="0.3" height="15.0" fill="rgb(241,149,22)" rx="2" ry="2" />
<text x="182.34" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="359.1" y="373" width="0.1" height="15.0" fill="rgb(247,101,0)" rx="2" ry="2" />
<text x="362.12" y="383.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (3 samples, 0.01%)</title><rect x="251.5" y="389" width="0.2" height="15.0" fill="rgb(248,213,35)" rx="2" ry="2" />
<text x="254.47" y="399.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="251.5" y="373" width="0.1" height="15.0" fill="rgb(221,12,11)" rx="2" ry="2" />
<text x="254.47" y="383.5" ></text>
</g>
<g >
<title>ASN1_item_free (2 samples, 0.01%)</title><rect x="254.7" y="261" width="0.1" height="15.0" fill="rgb(214,163,27)" rx="2" ry="2" />
<text x="257.72" y="271.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="287.2" y="277" width="0.1" height="15.0" fill="rgb(235,228,42)" rx="2" ry="2" />
<text x="290.16" y="287.5" ></text>
</g>
<g >
<title>ipv4_entry (12 samples, 0.06%)</title><rect x="712.5" y="613" width="0.7" height="15.0" fill="rgb(249,126,26)" rx="2" ry="2" />
<text x="715.54" y="623.5" ></text>
</g>
<g >
<title>PROT_PROCESS (15 samples, 0.07%)</title><rect x="694.2" y="469" width="0.9" height="15.0" fill="rgb(239,144,5)" rx="2" ry="2" />
<text x="697.19" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="168.1" y="373" width="0.1" height="15.0" fill="rgb(227,205,18)" rx="2" ry="2" />
<text x="171.07" y="383.5" ></text>
</g>
<g >
<title>cJSON_CreateObject (2 samples, 0.01%)</title><rect x="700.6" y="565" width="0.1" height="15.0" fill="rgb(234,35,17)" rx="2" ry="2" />
<text x="703.62" y="575.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (3 samples, 0.01%)</title><rect x="394.2" y="437" width="0.2" height="15.0" fill="rgb(225,132,50)" rx="2" ry="2" />
<text x="397.21" y="447.5" ></text>
</g>
<g >
<title>ssl_doWithCertificateDetail (11 samples, 0.05%)</title><rect x="329.3" y="405" width="0.7" height="15.0" fill="rgb(250,215,25)" rx="2" ry="2" />
<text x="332.33" y="415.5" ></text>
</g>
<g >
<title>stream_process_tcp (56 samples, 0.28%)</title><rect x="693.7" y="629" width="3.3" height="15.0" fill="rgb(250,178,19)" rx="2" ry="2" />
<text x="696.66" y="639.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="255.3" y="325" width="0.1" height="15.0" fill="rgb(207,116,8)" rx="2" ry="2" />
<text x="258.31" y="335.5" ></text>
</g>
<g >
<title>qmdpi_result_attr_getnext (2 samples, 0.01%)</title><rect x="200.3" y="677" width="0.2" height="15.0" fill="rgb(205,80,16)" rx="2" ry="2" />
<text x="203.34" y="687.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="328.2" y="325" width="0.1" height="15.0" fill="rgb(233,94,31)" rx="2" ry="2" />
<text x="331.21" y="335.5" ></text>
</g>
<g >
<title>tcp_transmit_skb (2 samples, 0.01%)</title><rect x="1177.4" y="277" width="0.1" height="15.0" fill="rgb(239,66,3)" rx="2" ry="2" />
<text x="1180.38" y="287.5" ></text>
</g>
<g >
<title>malloc (4 samples, 0.02%)</title><rect x="480.9" y="517" width="0.2" height="15.0" fill="rgb(218,128,54)" rx="2" ry="2" />
<text x="483.86" y="527.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="328.2" y="373" width="0.1" height="15.0" fill="rgb(208,14,8)" rx="2" ry="2" />
<text x="331.21" y="383.5" ></text>
</g>
<g >
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="517.1" y="453" width="0.3" height="15.0" fill="rgb(210,108,29)" rx="2" ry="2" />
<text x="520.07" y="463.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="99.7" y="549" width="0.1" height="15.0" fill="rgb(252,209,41)" rx="2" ry="2" />
<text x="102.71" y="559.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (133 samples, 0.66%)</title><rect x="119.2" y="677" width="7.8" height="15.0" fill="rgb(232,15,18)" rx="2" ry="2" />
<text x="122.18" y="687.5" ></text>
</g>
<g >
<title>Maat_clean_status (9 samples, 0.04%)</title><rect x="392.9" y="469" width="0.5" height="15.0" fill="rgb(227,0,27)" rx="2" ry="2" />
<text x="395.85" y="479.5" ></text>
</g>
<g >
<title>unroll_tree_refs (2 samples, 0.01%)</title><rect x="183.1" y="629" width="0.1" height="15.0" fill="rgb(250,30,28)" rx="2" ry="2" />
<text x="186.11" y="639.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (15 samples, 0.07%)</title><rect x="175.2" y="469" width="0.8" height="15.0" fill="rgb(240,173,42)" rx="2" ry="2" />
<text x="178.15" y="479.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="172.7" y="325" width="0.2" height="15.0" fill="rgb(243,112,7)" rx="2" ry="2" />
<text x="175.73" y="335.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="99.7" y="453" width="0.1" height="15.0" fill="rgb(240,89,3)" rx="2" ry="2" />
<text x="102.71" y="463.5" ></text>
</g>
<g >
<title>cJSON_Delete (5 samples, 0.02%)</title><rect x="700.0" y="565" width="0.3" height="15.0" fill="rgb(205,160,34)" rx="2" ry="2" />
<text x="702.98" y="575.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (9 samples, 0.04%)</title><rect x="167.3" y="389" width="0.5" height="15.0" fill="rgb(239,34,33)" rx="2" ry="2" />
<text x="170.31" y="399.5" ></text>
</g>
<g >
<title>MurmurHash3_x64_128 (3 samples, 0.01%)</title><rect x="410.8" y="453" width="0.2" height="15.0" fill="rgb(242,80,24)" rx="2" ry="2" />
<text x="413.78" y="463.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="347.9" y="453" width="0.1" height="15.0" fill="rgb(240,77,2)" rx="2" ry="2" />
<text x="350.85" y="463.5" ></text>
</g>
<g >
<title>i40e_clean_rx_irq (4 samples, 0.02%)</title><rect x="1177.3" y="501" width="0.3" height="15.0" fill="rgb(244,69,43)" rx="2" ry="2" />
<text x="1180.32" y="511.5" ></text>
</g>
<g >
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="375.0" y="485" width="0.2" height="15.0" fill="rgb(254,155,0)" rx="2" ry="2" />
<text x="378.04" y="495.5" ></text>
</g>
<g >
<title>region_compile (81 samples, 0.40%)</title><rect x="102.9" y="677" width="4.8" height="15.0" fill="rgb(212,198,38)" rx="2" ry="2" />
<text x="105.90" y="687.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="370.8" y="453" width="0.1" height="15.0" fill="rgb(227,164,26)" rx="2" ry="2" />
<text x="373.79" y="463.5" ></text>
</g>
<g >
<title>qmdpi_flow_create (2 samples, 0.01%)</title><rect x="200.0" y="677" width="0.2" height="15.0" fill="rgb(216,105,49)" rx="2" ry="2" />
<text x="203.04" y="687.5" ></text>
</g>
<g >
<title>http_callPluginField (5 samples, 0.02%)</title><rect x="394.6" y="389" width="0.3" height="15.0" fill="rgb(245,101,50)" rx="2" ry="2" />
<text x="397.62" y="399.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (9 samples, 0.04%)</title><rect x="318.3" y="197" width="0.5" height="15.0" fill="rgb(221,100,17)" rx="2" ry="2" />
<text x="321.30" y="207.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="319.9" y="165" width="0.3" height="15.0" fill="rgb(233,172,20)" rx="2" ry="2" />
<text x="322.89" y="175.5" ></text>
</g>
<g >
<title>[libMESA_htable.so] (2 samples, 0.01%)</title><rect x="235.3" y="565" width="0.1" height="15.0" fill="rgb(238,89,0)" rx="2" ry="2" />
<text x="238.31" y="575.5" ></text>
</g>
<g >
<title>cJSON_AddNumberToObject (4 samples, 0.02%)</title><rect x="468.9" y="469" width="0.2" height="15.0" fill="rgb(224,92,8)" rx="2" ry="2" />
<text x="471.88" y="479.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (7 samples, 0.03%)</title><rect x="180.3" y="549" width="0.4" height="15.0" fill="rgb(217,87,0)" rx="2" ry="2" />
<text x="183.28" y="559.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (10 samples, 0.05%)</title><rect x="167.3" y="485" width="0.6" height="15.0" fill="rgb(247,27,20)" rx="2" ry="2" />
<text x="170.31" y="495.5" ></text>
</g>
<g >
<title>http_callPluginField (13 samples, 0.06%)</title><rect x="250.6" y="389" width="0.8" height="15.0" fill="rgb(221,149,38)" rx="2" ry="2" />
<text x="253.65" y="399.5" ></text>
</g>
<g >
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="178.7" y="549" width="0.6" height="15.0" fill="rgb(232,207,54)" rx="2" ry="2" />
<text x="181.75" y="559.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="301.8" y="325" width="0.2" height="15.0" fill="rgb(232,175,52)" rx="2" ry="2" />
<text x="304.79" y="335.5" ></text>
</g>
<g >
<title>expiry_dablooms_add (312 samples, 1.56%)</title><rect x="423.2" y="517" width="18.4" height="15.0" fill="rgb(236,99,40)" rx="2" ry="2" />
<text x="426.23" y="527.5" ></text>
</g>
<g >
<title>stream_process (760 samples, 3.80%)</title><rect x="502.7" y="549" width="44.8" height="15.0" fill="rgb(209,59,24)" rx="2" ry="2" />
<text x="505.68" y="559.5" >stre..</text>
</g>
<g >
<title>TLD_append_streaminfo (6 samples, 0.03%)</title><rect x="182.3" y="645" width="0.3" height="15.0" fill="rgb(214,27,6)" rx="2" ry="2" />
<text x="185.29" y="655.5" ></text>
</g>
<g >
<title>ipv4_entry (46 samples, 0.23%)</title><rect x="166.1" y="629" width="2.7" height="15.0" fill="rgb(244,70,42)" rx="2" ry="2" />
<text x="169.07" y="639.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="693.0" y="565" width="0.1" height="15.0" fill="rgb(226,53,13)" rx="2" ry="2" />
<text x="695.96" y="575.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (8 samples, 0.04%)</title><rect x="392.9" y="453" width="0.5" height="15.0" fill="rgb(253,2,18)" rx="2" ry="2" />
<text x="395.91" y="463.5" ></text>
</g>
<g >
<title>mutex_unlock (2 samples, 0.01%)</title><rect x="10.1" y="597" width="0.1" height="15.0" fill="rgb(238,37,42)" rx="2" ry="2" />
<text x="13.06" y="607.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="180.0" y="437" width="0.3" height="15.0" fill="rgb(239,147,25)" rx="2" ry="2" />
<text x="183.05" y="447.5" ></text>
</g>
<g >
<title>rdk:broker38 (3 samples, 0.01%)</title><rect x="12.7" y="709" width="0.2" height="15.0" fill="rgb(232,48,31)" rx="2" ry="2" />
<text x="15.71" y="719.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="182.1" y="437" width="0.1" height="15.0" fill="rgb(234,82,32)" rx="2" ry="2" />
<text x="185.05" y="447.5" ></text>
</g>
<g >
<title>http_tripleMatching (41 samples, 0.20%)</title><rect x="289.6" y="421" width="2.5" height="15.0" fill="rgb(247,214,16)" rx="2" ry="2" />
<text x="292.64" y="431.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (6 samples, 0.03%)</title><rect x="327.9" y="357" width="0.3" height="15.0" fill="rgb(221,184,27)" rx="2" ry="2" />
<text x="330.86" y="367.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (3 samples, 0.01%)</title><rect x="709.4" y="677" width="0.1" height="15.0" fill="rgb(208,104,54)" rx="2" ry="2" />
<text x="712.35" y="687.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="364.4" y="389" width="0.4" height="15.0" fill="rgb(232,115,31)" rx="2" ry="2" />
<text x="367.42" y="399.5" ></text>
</g>
<g >
<title>page_fault (2 samples, 0.01%)</title><rect x="366.8" y="453" width="0.1" height="15.0" fill="rgb(229,138,36)" rx="2" ry="2" />
<text x="369.78" y="463.5" ></text>
</g>
<g >
<title>rdk:broker58 (2 samples, 0.01%)</title><rect x="14.4" y="709" width="0.1" height="15.0" fill="rgb(215,14,45)" rx="2" ry="2" />
<text x="17.36" y="719.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="641.2" y="437" width="0.1" height="15.0" fill="rgb(224,117,32)" rx="2" ry="2" />
<text x="644.17" y="447.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="360.9" y="389" width="0.5" height="15.0" fill="rgb(231,35,5)" rx="2" ry="2" />
<text x="363.94" y="399.5" ></text>
</g>
<g >
<title>rdk:broker46 (2 samples, 0.01%)</title><rect x="13.6" y="709" width="0.1" height="15.0" fill="rgb(223,101,47)" rx="2" ry="2" />
<text x="16.60" y="719.5" ></text>
</g>
<g >
<title>CZipFormat::AddDocData (3 samples, 0.01%)</title><rect x="295.4" y="341" width="0.1" height="15.0" fill="rgb(215,215,25)" rx="2" ry="2" />
<text x="298.36" y="351.5" ></text>
</g>
<g >
<title>_IO_vsscanf (5 samples, 0.02%)</title><rect x="702.6" y="485" width="0.3" height="15.0" fill="rgb(247,148,43)" rx="2" ry="2" />
<text x="705.57" y="495.5" ></text>
</g>
<g >
<title>all (20,006 samples, 100%)</title><rect x="10.0" y="725" width="1180.0" height="15.0" fill="rgb(214,183,33)" rx="2" ry="2" />
<text x="13.00" y="735.5" ></text>
</g>
<g >
<title>[sapp] (55 samples, 0.27%)</title><rect x="165.7" y="661" width="3.3" height="15.0" fill="rgb(236,92,48)" rx="2" ry="2" />
<text x="168.71" y="671.5" ></text>
</g>
<g >
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="181.7" y="645" width="0.1" height="15.0" fill="rgb(235,152,38)" rx="2" ry="2" />
<text x="184.70" y="655.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="694.1" y="485" width="0.1" height="15.0" fill="rgb(221,223,30)" rx="2" ry="2" />
<text x="697.08" y="495.5" ></text>
</g>
<g >
<title>stream_bridge_async_data_get (2 samples, 0.01%)</title><rect x="362.2" y="405" width="0.2" height="15.0" fill="rgb(235,210,6)" rx="2" ry="2" />
<text x="365.24" y="415.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (3 samples, 0.01%)</title><rect x="301.8" y="357" width="0.2" height="15.0" fill="rgb(232,43,16)" rx="2" ry="2" />
<text x="304.79" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="256.4" y="245" width="0.1" height="15.0" fill="rgb(213,67,20)" rx="2" ry="2" />
<text x="259.37" y="255.5" ></text>
</g>
<g >
<title>lpi_guess_protocol (111 samples, 0.55%)</title><rect x="529.2" y="501" width="6.5" height="15.0" fill="rgb(243,86,23)" rx="2" ry="2" />
<text x="532.16" y="511.5" ></text>
</g>
<g >
<title>do_page_fault (2 samples, 0.01%)</title><rect x="366.8" y="437" width="0.1" height="15.0" fill="rgb(238,207,13)" rx="2" ry="2" />
<text x="369.78" y="447.5" ></text>
</g>
<g >
<title>__do_page_fault (5 samples, 0.02%)</title><rect x="140.5" y="581" width="0.3" height="15.0" fill="rgb(210,99,31)" rx="2" ry="2" />
<text x="143.53" y="591.5" ></text>
</g>
<g >
<title>APP_SKETCH_SSL_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="182.1" y="485" width="0.1" height="15.0" fill="rgb(205,32,0)" rx="2" ry="2" />
<text x="185.05" y="495.5" ></text>
</g>
<g >
<title>page_fault (4 samples, 0.02%)</title><rect x="268.9" y="469" width="0.3" height="15.0" fill="rgb(236,190,4)" rx="2" ry="2" />
<text x="271.93" y="479.5" ></text>
</g>
<g >
<title>http_releaseHttpStream (5 samples, 0.02%)</title><rect x="692.6" y="549" width="0.3" height="15.0" fill="rgb(216,129,33)" rx="2" ry="2" />
<text x="695.60" y="559.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (2 samples, 0.01%)</title><rect x="14.9" y="613" width="0.1" height="15.0" fill="rgb(229,142,53)" rx="2" ry="2" />
<text x="17.90" y="623.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (47 samples, 0.23%)</title><rect x="292.6" y="357" width="2.8" height="15.0" fill="rgb(239,105,30)" rx="2" ry="2" />
<text x="295.58" y="367.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (12 samples, 0.06%)</title><rect x="172.1" y="389" width="0.8" height="15.0" fill="rgb(237,167,5)" rx="2" ry="2" />
<text x="175.14" y="399.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="469.0" y="421" width="0.1" height="15.0" fill="rgb(206,124,1)" rx="2" ry="2" />
<text x="472.00" y="431.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (16 samples, 0.08%)</title><rect x="358.6" y="437" width="0.9" height="15.0" fill="rgb(238,19,4)" rx="2" ry="2" />
<text x="361.59" y="447.5" ></text>
</g>
<g >
<title>malloc (16 samples, 0.08%)</title><rect x="316.5" y="421" width="0.9" height="15.0" fill="rgb(223,49,17)" rx="2" ry="2" />
<text x="319.47" y="431.5" ></text>
</g>
<g >
<title>BUF_MEM_grow (3 samples, 0.01%)</title><rect x="319.0" y="245" width="0.2" height="15.0" fill="rgb(250,122,36)" rx="2" ry="2" />
<text x="322.01" y="255.5" ></text>
</g>
<g >
<title>localeconv@@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="641.1" y="469" width="0.1" height="15.0" fill="rgb(244,21,27)" rx="2" ry="2" />
<text x="644.05" y="479.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="371.5" y="389" width="0.2" height="15.0" fill="rgb(234,66,15)" rx="2" ry="2" />
<text x="374.50" y="399.5" ></text>
</g>
<g >
<title>cJSON_AddNumberToObject (4 samples, 0.02%)</title><rect x="700.3" y="565" width="0.2" height="15.0" fill="rgb(229,16,23)" rx="2" ry="2" />
<text x="703.27" y="575.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (4 samples, 0.02%)</title><rect x="295.6" y="405" width="0.2" height="15.0" fill="rgb(221,23,12)" rx="2" ry="2" />
<text x="298.59" y="415.5" ></text>
</g>
<g >
<title>http_tripleMatching (4 samples, 0.02%)</title><rect x="179.3" y="549" width="0.3" height="15.0" fill="rgb(244,140,51)" rx="2" ry="2" />
<text x="182.34" y="559.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (4,165 samples, 20.82%)</title><rect x="235.4" y="581" width="245.7" height="15.0" fill="rgb(249,37,27)" rx="2" ry="2" />
<text x="238.43" y="591.5" >dealipv4tcppkt</text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="172.9" y="261" width="0.4" height="15.0" fill="rgb(253,71,44)" rx="2" ry="2" />
<text x="175.85" y="271.5" ></text>
</g>
<g >
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="180.0" y="517" width="0.3" height="15.0" fill="rgb(233,11,19)" rx="2" ry="2" />
<text x="183.05" y="527.5" ></text>
</g>
<g >
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="694.1" y="469" width="0.1" height="15.0" fill="rgb(251,10,21)" rx="2" ry="2" />
<text x="697.08" y="479.5" ></text>
</g>
<g >
<title>fn_vMemCpy (2 samples, 0.01%)</title><rect x="251.7" y="437" width="0.1" height="15.0" fill="rgb(212,88,19)" rx="2" ry="2" />
<text x="254.71" y="447.5" ></text>
</g>
<g >
<title>c2i_ASN1_BIT_STRING (2 samples, 0.01%)</title><rect x="320.8" y="181" width="0.2" height="15.0" fill="rgb(206,58,0)" rx="2" ry="2" />
<text x="323.84" y="191.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (6 samples, 0.03%)</title><rect x="711.9" y="629" width="0.3" height="15.0" fill="rgb(213,201,43)" rx="2" ry="2" />
<text x="714.89" y="639.5" ></text>
</g>
<g >
<title>inet_ntop (2 samples, 0.01%)</title><rect x="700.9" y="565" width="0.1" height="15.0" fill="rgb(231,189,17)" rx="2" ry="2" />
<text x="703.92" y="575.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (3 samples, 0.01%)</title><rect x="167.9" y="341" width="0.2" height="15.0" fill="rgb(223,212,25)" rx="2" ry="2" />
<text x="170.90" y="351.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="301.0" y="309" width="0.1" height="15.0" fill="rgb(226,144,53)" rx="2" ry="2" />
<text x="304.02" y="319.5" ></text>
</g>
<g >
<title>[sapp] (101 samples, 0.50%)</title><rect x="683.7" y="613" width="6.0" height="15.0" fill="rgb(205,41,22)" rx="2" ry="2" />
<text x="686.70" y="623.5" ></text>
</g>
<g >
<title>checkstreamorder (48 samples, 0.24%)</title><rect x="490.3" y="549" width="2.8" height="15.0" fill="rgb(248,53,39)" rx="2" ry="2" />
<text x="493.29" y="559.5" ></text>
</g>
<g >
<title>counting_bloom_check (92 samples, 0.46%)</title><rect x="496.1" y="533" width="5.4" height="15.0" fill="rgb(253,97,25)" rx="2" ry="2" />
<text x="499.07" y="543.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (7 samples, 0.03%)</title><rect x="314.6" y="293" width="0.4" height="15.0" fill="rgb(216,64,47)" rx="2" ry="2" />
<text x="317.58" y="303.5" ></text>
</g>
<g >
<title>CBoolExprMatch::find_matched_result (9 samples, 0.04%)</title><rect x="126.1" y="597" width="0.5" height="15.0" fill="rgb(214,158,7)" rx="2" ry="2" />
<text x="129.08" y="607.5" ></text>
</g>
<g >
<title>plugin_process_close (13 samples, 0.06%)</title><rect x="250.6" y="373" width="0.8" height="15.0" fill="rgb(226,119,53)" rx="2" ry="2" />
<text x="253.65" y="383.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (4 samples, 0.02%)</title><rect x="371.7" y="453" width="0.3" height="15.0" fill="rgb(213,88,13)" rx="2" ry="2" />
<text x="374.74" y="463.5" ></text>
</g>
<g >
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="392.9" y="485" width="0.5" height="15.0" fill="rgb(237,33,26)" rx="2" ry="2" />
<text x="395.85" y="495.5" ></text>
</g>
<g >
<title>plugin_process_data (42 samples, 0.21%)</title><rect x="313.5" y="373" width="2.5" height="15.0" fill="rgb(247,141,17)" rx="2" ry="2" />
<text x="316.52" y="383.5" ></text>
</g>
<g >
<title>[sapp] (154 samples, 0.77%)</title><rect x="169.0" y="613" width="9.0" height="15.0" fill="rgb(227,68,25)" rx="2" ry="2" />
<text x="171.96" y="623.5" ></text>
</g>
<g >
<title>ASN1_template_free (4 samples, 0.02%)</title><rect x="323.3" y="165" width="0.2" height="15.0" fill="rgb(239,93,4)" rx="2" ry="2" />
<text x="326.26" y="175.5" ></text>
</g>
<g >
<title>[sapp] (10 samples, 0.05%)</title><rect x="494.6" y="533" width="0.6" height="15.0" fill="rgb(212,50,44)" rx="2" ry="2" />
<text x="497.60" y="543.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="522.9" y="469" width="0.1" height="15.0" fill="rgb(249,198,15)" rx="2" ry="2" />
<text x="525.91" y="479.5" ></text>
</g>
<g >
<title>printaddr (10 samples, 0.05%)</title><rect x="347.4" y="469" width="0.6" height="15.0" fill="rgb(216,148,53)" rx="2" ry="2" />
<text x="350.44" y="479.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="394.7" y="309" width="0.2" height="15.0" fill="rgb(217,196,16)" rx="2" ry="2" />
<text x="397.74" y="319.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (2 samples, 0.01%)</title><rect x="169.7" y="469" width="0.1" height="15.0" fill="rgb(253,29,7)" rx="2" ry="2" />
<text x="172.72" y="479.5" ></text>
</g>
<g >
<title>TLD_cancel (2 samples, 0.01%)</title><rect x="690.8" y="405" width="0.2" height="15.0" fill="rgb(242,165,8)" rx="2" ry="2" />
<text x="693.83" y="415.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="168.5" y="341" width="0.1" height="15.0" fill="rgb(206,110,29)" rx="2" ry="2" />
<text x="171.49" y="351.5" ></text>
</g>
<g >
<title>malloc_consolidate (42 samples, 0.21%)</title><rect x="265.2" y="485" width="2.5" height="15.0" fill="rgb(210,97,28)" rx="2" ry="2" />
<text x="268.22" y="495.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (121 samples, 0.60%)</title><rect x="317.5" y="389" width="7.2" height="15.0" fill="rgb(225,200,5)" rx="2" ry="2" />
<text x="320.53" y="399.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="169.2" y="149" width="0.3" height="15.0" fill="rgb(208,225,38)" rx="2" ry="2" />
<text x="172.19" y="159.5" ></text>
</g>
<g >
<title>do_page_fault (3 samples, 0.01%)</title><rect x="306.0" y="373" width="0.2" height="15.0" fill="rgb(210,204,35)" rx="2" ry="2" />
<text x="309.03" y="383.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_udpate (11 samples, 0.05%)</title><rect x="111.3" y="661" width="0.7" height="15.0" fill="rgb(232,152,34)" rx="2" ry="2" />
<text x="114.33" y="671.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="485.0" y="533" width="0.2" height="15.0" fill="rgb(252,76,16)" rx="2" ry="2" />
<text x="488.04" y="543.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="141.8" y="661" width="0.1" height="15.0" fill="rgb(219,211,10)" rx="2" ry="2" />
<text x="144.77" y="671.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (108 samples, 0.54%)</title><rect x="394.2" y="469" width="6.4" height="15.0" fill="rgb(231,133,24)" rx="2" ry="2" />
<text x="397.21" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="392.0" y="245" width="0.1" height="15.0" fill="rgb(254,11,24)" rx="2" ry="2" />
<text x="395.03" y="255.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="692.6" y="469" width="0.3" height="15.0" fill="rgb(234,27,5)" rx="2" ry="2" />
<text x="695.60" y="479.5" ></text>
</g>
<g >
<title>[sapp] (5,681 samples, 28.40%)</title><rect x="221.0" y="629" width="335.1" height="15.0" fill="rgb(216,155,22)" rx="2" ry="2" />
<text x="223.98" y="639.5" >[sapp]</text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="255.5" y="293" width="0.2" height="15.0" fill="rgb(240,59,50)" rx="2" ry="2" />
<text x="258.48" y="303.5" ></text>
</g>
<g >
<title>malloc (5 samples, 0.02%)</title><rect x="289.0" y="277" width="0.3" height="15.0" fill="rgb(227,197,43)" rx="2" ry="2" />
<text x="291.99" y="287.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (4 samples, 0.02%)</title><rect x="1177.3" y="373" width="0.3" height="15.0" fill="rgb(232,198,22)" rx="2" ry="2" />
<text x="1180.32" y="383.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="172.9" y="357" width="0.4" height="15.0" fill="rgb(241,58,38)" rx="2" ry="2" />
<text x="175.85" y="367.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (23 samples, 0.11%)</title><rect x="290.6" y="325" width="1.3" height="15.0" fill="rgb(216,21,1)" rx="2" ry="2" />
<text x="293.58" y="335.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="712.5" y="325" width="0.2" height="15.0" fill="rgb(249,121,27)" rx="2" ry="2" />
<text x="715.54" y="335.5" ></text>
</g>
<g >
<title>file_trycdf (2 samples, 0.01%)</title><rect x="707.6" y="629" width="0.2" height="15.0" fill="rgb(235,197,41)" rx="2" ry="2" />
<text x="710.64" y="639.5" ></text>
</g>
<g >
<title>sip_stream_release (2 samples, 0.01%)</title><rect x="518.1" y="501" width="0.2" height="15.0" fill="rgb(214,166,52)" rx="2" ry="2" />
<text x="521.13" y="511.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (7 samples, 0.03%)</title><rect x="690.5" y="437" width="0.5" height="15.0" fill="rgb(231,108,26)" rx="2" ry="2" />
<text x="693.54" y="447.5" ></text>
</g>
<g >
<title>free (3 samples, 0.01%)</title><rect x="393.1" y="437" width="0.2" height="15.0" fill="rgb(253,107,15)" rx="2" ry="2" />
<text x="396.15" y="447.5" ></text>
</g>
<g >
<title>__do_page_fault (4 samples, 0.02%)</title><rect x="368.8" y="421" width="0.2" height="15.0" fill="rgb(216,209,10)" rx="2" ry="2" />
<text x="371.79" y="431.5" ></text>
</g>
<g >
<title>malloc (4 samples, 0.02%)</title><rect x="360.3" y="389" width="0.2" height="15.0" fill="rgb(253,222,11)" rx="2" ry="2" />
<text x="363.30" y="399.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="251.1" y="245" width="0.1" height="15.0" fill="rgb(240,45,12)" rx="2" ry="2" />
<text x="254.06" y="255.5" ></text>
</g>
<g >
<title>hash_func (14 samples, 0.07%)</title><rect x="410.1" y="469" width="0.9" height="15.0" fill="rgb(236,215,41)" rx="2" ry="2" />
<text x="413.14" y="479.5" ></text>
</g>
<g >
<title>sapp_fs2_fuzzy_latency_update_per_entry (37 samples, 0.18%)</title><rect x="539.2" y="517" width="2.2" height="15.0" fill="rgb(229,63,34)" rx="2" ry="2" />
<text x="542.19" y="527.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (24 samples, 0.12%)</title><rect x="691.1" y="389" width="1.4" height="15.0" fill="rgb(237,221,6)" rx="2" ry="2" />
<text x="694.13" y="399.5" ></text>
</g>
<g >
<title>__mutex_unlock_slowpath (2 samples, 0.01%)</title><rect x="10.1" y="581" width="0.1" height="15.0" fill="rgb(209,16,4)" rx="2" ry="2" />
<text x="13.06" y="591.5" ></text>
</g>
<g >
<title>ASN1_primitive_new (2 samples, 0.01%)</title><rect x="168.1" y="133" width="0.1" height="15.0" fill="rgb(228,187,21)" rx="2" ry="2" />
<text x="171.07" y="143.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="690.4" y="405" width="0.1" height="15.0" fill="rgb(240,1,9)" rx="2" ry="2" />
<text x="693.42" y="415.5" ></text>
</g>
<g >
<title>__do_page_fault (2 samples, 0.01%)</title><rect x="639.1" y="533" width="0.1" height="15.0" fill="rgb(233,45,22)" rx="2" ry="2" />
<text x="642.11" y="543.5" ></text>
</g>
<g >
<title>http_callPlugin (12 samples, 0.06%)</title><rect x="172.1" y="485" width="0.8" height="15.0" fill="rgb(211,134,47)" rx="2" ry="2" />
<text x="175.14" y="495.5" ></text>
</g>
<g >
<title>[sapp] (14 samples, 0.07%)</title><rect x="402.8" y="517" width="0.8" height="15.0" fill="rgb(205,74,5)" rx="2" ry="2" />
<text x="405.82" y="527.5" ></text>
</g>
<g >
<title>fw_ssl_entry (5 samples, 0.02%)</title><rect x="173.3" y="373" width="0.3" height="15.0" fill="rgb(237,229,31)" rx="2" ry="2" />
<text x="176.32" y="383.5" ></text>
</g>
<g >
<title>CInflate2::fn_iDecode (3 samples, 0.01%)</title><rect x="300.7" y="341" width="0.2" height="15.0" fill="rgb(244,4,39)" rx="2" ry="2" />
<text x="303.72" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="345.4" y="453" width="0.2" height="15.0" fill="rgb(232,102,53)" rx="2" ry="2" />
<text x="348.43" y="463.5" ></text>
</g>
<g >
<title>http_releaseHttpStream (2 samples, 0.01%)</title><rect x="693.0" y="517" width="0.1" height="15.0" fill="rgb(219,17,2)" rx="2" ry="2" />
<text x="695.96" y="527.5" ></text>
</g>
<g >
<title>_int_free (8 samples, 0.04%)</title><rect x="515.7" y="469" width="0.4" height="15.0" fill="rgb(249,105,30)" rx="2" ry="2" />
<text x="518.66" y="479.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="397.9" y="357" width="0.2" height="15.0" fill="rgb(206,98,14)" rx="2" ry="2" />
<text x="400.93" y="367.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="177.7" y="405" width="0.3" height="15.0" fill="rgb(216,227,3)" rx="2" ry="2" />
<text x="180.69" y="415.5" ></text>
</g>
<g >
<title>__snprintf (9 samples, 0.04%)</title><rect x="176.9" y="485" width="0.6" height="15.0" fill="rgb(206,169,15)" rx="2" ry="2" />
<text x="179.92" y="495.5" ></text>
</g>
<g >
<title>__libc_calloc (11 samples, 0.05%)</title><rect x="128.5" y="645" width="0.6" height="15.0" fill="rgb(248,178,51)" rx="2" ry="2" />
<text x="131.50" y="655.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="166.1" y="261" width="0.1" height="15.0" fill="rgb(220,182,3)" rx="2" ry="2" />
<text x="169.07" y="271.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="713.0" y="405" width="0.1" height="15.0" fill="rgb(223,148,30)" rx="2" ry="2" />
<text x="715.95" y="415.5" ></text>
</g>
<g >
<title>rdk:broker60 (3 samples, 0.01%)</title><rect x="14.5" y="709" width="0.2" height="15.0" fill="rgb(205,14,11)" rx="2" ry="2" />
<text x="17.48" y="719.5" ></text>
</g>
<g >
<title>__snprintf (5 samples, 0.02%)</title><rect x="175.2" y="453" width="0.2" height="15.0" fill="rgb(219,163,8)" rx="2" ry="2" />
<text x="178.15" y="463.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (4 samples, 0.02%)</title><rect x="105.8" y="613" width="0.2" height="15.0" fill="rgb(254,40,31)" rx="2" ry="2" />
<text x="108.79" y="623.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="171.6" y="309" width="0.2" height="15.0" fill="rgb(233,145,4)" rx="2" ry="2" />
<text x="174.61" y="319.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.01%)</title><rect x="10.8" y="661" width="0.1" height="15.0" fill="rgb(229,198,35)" rx="2" ry="2" />
<text x="13.83" y="671.5" ></text>
</g>
<g >
<title>TLD_append (5 samples, 0.02%)</title><rect x="287.7" y="309" width="0.3" height="15.0" fill="rgb(249,22,15)" rx="2" ry="2" />
<text x="290.75" y="319.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (2 samples, 0.01%)</title><rect x="695.1" y="485" width="0.1" height="15.0" fill="rgb(225,92,33)" rx="2" ry="2" />
<text x="698.08" y="495.5" ></text>
</g>
<g >
<title>do_page_fault (2 samples, 0.01%)</title><rect x="327.0" y="133" width="0.1" height="15.0" fill="rgb(235,76,16)" rx="2" ry="2" />
<text x="330.03" y="143.5" ></text>
</g>
<g >
<title>http_callPluginField (7 samples, 0.03%)</title><rect x="690.5" y="485" width="0.5" height="15.0" fill="rgb(231,198,39)" rx="2" ry="2" />
<text x="693.54" y="495.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="168.1" y="277" width="0.1" height="15.0" fill="rgb(209,9,11)" rx="2" ry="2" />
<text x="171.07" y="287.5" ></text>
</g>
<g >
<title>TLD_create (3 samples, 0.01%)</title><rect x="291.6" y="293" width="0.2" height="15.0" fill="rgb(224,65,26)" rx="2" ry="2" />
<text x="294.64" y="303.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="278.3" y="453" width="0.2" height="15.0" fill="rgb(213,15,29)" rx="2" ry="2" />
<text x="281.31" y="463.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="168.8" y="613" width="0.2" height="15.0" fill="rgb(243,221,31)" rx="2" ry="2" />
<text x="171.78" y="623.5" ></text>
</g>
<g >
<title>plugin_call_appentry (13 samples, 0.06%)</title><rect x="331.5" y="357" width="0.7" height="15.0" fill="rgb(217,126,1)" rx="2" ry="2" />
<text x="334.45" y="367.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap_single_layer (2 samples, 0.01%)</title><rect x="484.7" y="533" width="0.2" height="15.0" fill="rgb(254,179,8)" rx="2" ry="2" />
<text x="487.75" y="543.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="256.0" y="341" width="0.1" height="15.0" fill="rgb(213,32,8)" rx="2" ry="2" />
<text x="258.96" y="351.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (30 samples, 0.15%)</title><rect x="252.2" y="277" width="1.8" height="15.0" fill="rgb(235,181,35)" rx="2" ry="2" />
<text x="255.24" y="287.5" ></text>
</g>
<g >
<title>http_callPlugin (30 samples, 0.15%)</title><rect x="287.6" y="421" width="1.8" height="15.0" fill="rgb(233,192,50)" rx="2" ry="2" />
<text x="290.63" y="431.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (9 samples, 0.04%)</title><rect x="291.3" y="309" width="0.6" height="15.0" fill="rgb(251,123,27)" rx="2" ry="2" />
<text x="294.35" y="319.5" ></text>
</g>
<g >
<title>plugin_process_data (11 samples, 0.05%)</title><rect x="695.2" y="437" width="0.6" height="15.0" fill="rgb(247,58,3)" rx="2" ry="2" />
<text x="698.20" y="447.5" ></text>
</g>
<g >
<title>[sapp] (47 samples, 0.23%)</title><rect x="690.2" y="629" width="2.8" height="15.0" fill="rgb(236,77,19)" rx="2" ry="2" />
<text x="693.18" y="639.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (6 samples, 0.03%)</title><rect x="182.3" y="693" width="0.3" height="15.0" fill="rgb(248,126,28)" rx="2" ry="2" />
<text x="185.29" y="703.5" ></text>
</g>
<g >
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="131.0" y="565" width="0.1" height="15.0" fill="rgb(233,69,43)" rx="2" ry="2" />
<text x="133.97" y="575.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (149 samples, 0.74%)</title><rect x="518.3" y="517" width="8.7" height="15.0" fill="rgb(242,74,24)" rx="2" ry="2" />
<text x="521.25" y="527.5" ></text>
</g>
<g >
<title>malloc_and_copy_streamindex (4 samples, 0.02%)</title><rect x="260.0" y="533" width="0.3" height="15.0" fill="rgb(229,127,15)" rx="2" ry="2" />
<text x="263.03" y="543.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (489 samples, 2.44%)</title><rect x="449.8" y="517" width="28.8" height="15.0" fill="rgb(218,1,30)" rx="2" ry="2" />
<text x="452.77" y="527.5" >pl..</text>
</g>
<g >
<title>CAPTURE_TCP_PACKET_ENTRY (86 samples, 0.43%)</title><rect x="452.1" y="501" width="5.1" height="15.0" fill="rgb(234,120,53)" rx="2" ry="2" />
<text x="455.13" y="511.5" ></text>
</g>
<g >
<title>CRYPTO_free (2 samples, 0.01%)</title><rect x="321.8" y="229" width="0.1" height="15.0" fill="rgb(213,67,12)" rx="2" ry="2" />
<text x="324.78" y="239.5" ></text>
</g>
<g >
<title>free (3 samples, 0.01%)</title><rect x="343.3" y="453" width="0.2" height="15.0" fill="rgb(221,153,54)" rx="2" ry="2" />
<text x="346.31" y="463.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (2 samples, 0.01%)</title><rect x="16.0" y="629" width="0.1" height="15.0" fill="rgb(219,228,14)" rx="2" ry="2" />
<text x="18.96" y="639.5" ></text>
</g>
<g >
<title>CBoolExprMatch::search_expr (25 samples, 0.12%)</title><rect x="109.3" y="629" width="1.4" height="15.0" fill="rgb(252,176,16)" rx="2" ry="2" />
<text x="112.27" y="639.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (111 samples, 0.55%)</title><rect x="317.8" y="325" width="6.6" height="15.0" fill="rgb(241,157,41)" rx="2" ry="2" />
<text x="320.83" y="335.5" ></text>
</g>
<g >
<title>TLD_append (9 samples, 0.04%)</title><rect x="331.7" y="325" width="0.5" height="15.0" fill="rgb(221,97,17)" rx="2" ry="2" />
<text x="334.69" y="335.5" ></text>
</g>
<g >
<title>page_fault (2 samples, 0.01%)</title><rect x="401.1" y="549" width="0.1" height="15.0" fill="rgb(253,144,39)" rx="2" ry="2" />
<text x="404.11" y="559.5" ></text>
</g>
<g >
<title>TLD_append (14 samples, 0.07%)</title><rect x="359.8" y="421" width="0.8" height="15.0" fill="rgb(207,142,13)" rx="2" ry="2" />
<text x="362.77" y="431.5" ></text>
</g>
<g >
<title>plugin_process_close (3 samples, 0.01%)</title><rect x="169.0" y="421" width="0.2" height="15.0" fill="rgb(238,175,34)" rx="2" ry="2" />
<text x="172.02" y="431.5" ></text>
</g>
<g >
<title>grab_mid (2 samples, 0.01%)</title><rect x="170.3" y="485" width="0.1" height="15.0" fill="rgb(239,202,35)" rx="2" ry="2" />
<text x="173.31" y="495.5" ></text>
</g>
<g >
<title>pbe_ul3l4_cache_find (2 samples, 0.01%)</title><rect x="707.3" y="693" width="0.1" height="15.0" fill="rgb(209,176,39)" rx="2" ry="2" />
<text x="710.29" y="703.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="306.0" y="357" width="0.2" height="15.0" fill="rgb(249,137,9)" rx="2" ry="2" />
<text x="309.03" y="367.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="706.2" y="517" width="0.2" height="15.0" fill="rgb(250,147,26)" rx="2" ry="2" />
<text x="709.23" y="527.5" ></text>
</g>
<g >
<title>ssl_analyseStream (20 samples, 0.10%)</title><rect x="172.9" y="517" width="1.1" height="15.0" fill="rgb(219,101,0)" rx="2" ry="2" />
<text x="175.85" y="527.5" ></text>
</g>
<g >
<title>sprintf (15 samples, 0.07%)</title><rect x="176.0" y="469" width="0.9" height="15.0" fill="rgb(230,212,5)" rx="2" ry="2" />
<text x="179.04" y="479.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="179.9" y="517" width="0.1" height="15.0" fill="rgb(212,118,8)" rx="2" ry="2" />
<text x="182.87" y="527.5" ></text>
</g>
<g >
<title>ssl_analyseStream (8 samples, 0.04%)</title><rect x="712.7" y="485" width="0.4" height="15.0" fill="rgb(233,49,15)" rx="2" ry="2" />
<text x="715.66" y="495.5" ></text>
</g>
<g >
<title>X509V3_EXT_d2i (5 samples, 0.02%)</title><rect x="255.0" y="373" width="0.2" height="15.0" fill="rgb(247,74,6)" rx="2" ry="2" />
<text x="257.95" y="383.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="173.0" y="69" width="0.2" height="15.0" fill="rgb(228,226,49)" rx="2" ry="2" />
<text x="176.03" y="79.5" ></text>
</g>
<g >
<title>[sapp] (12 samples, 0.06%)</title><rect x="712.5" y="565" width="0.7" height="15.0" fill="rgb(249,135,15)" rx="2" ry="2" />
<text x="715.54" y="575.5" ></text>
</g>
<g >
<title>finish_task_switch (18 samples, 0.09%)</title><rect x="643.8" y="501" width="1.0" height="15.0" fill="rgb(249,109,34)" rx="2" ry="2" />
<text x="646.76" y="511.5" ></text>
</g>
<g >
<title>SIP_TCP_ENTRY (11 samples, 0.05%)</title><rect x="308.7" y="485" width="0.6" height="15.0" fill="rgb(241,154,53)" rx="2" ry="2" />
<text x="311.69" y="495.5" ></text>
</g>
<g >
<title>CDataStreamBuf::PushData (6 samples, 0.03%)</title><rect x="300.4" y="341" width="0.3" height="15.0" fill="rgb(232,195,40)" rx="2" ry="2" />
<text x="303.37" y="351.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="690.2" y="437" width="0.3" height="15.0" fill="rgb(210,3,8)" rx="2" ry="2" />
<text x="693.24" y="447.5" ></text>
</g>
<g >
<title>sys_nanosleep (22 samples, 0.11%)</title><rect x="643.5" y="581" width="1.3" height="15.0" fill="rgb(214,96,31)" rx="2" ry="2" />
<text x="646.53" y="591.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="174.2" y="469" width="0.2" height="15.0" fill="rgb(212,80,26)" rx="2" ry="2" />
<text x="177.21" y="479.5" ></text>
</g>
<g >
<title>stream_process (598 samples, 2.99%)</title><rect x="443.4" y="533" width="35.3" height="15.0" fill="rgb(230,126,17)" rx="2" ry="2" />
<text x="446.40" y="543.5" >st..</text>
</g>
<g >
<title>Maat_table_get_child_id@plt (2 samples, 0.01%)</title><rect x="120.7" y="661" width="0.1" height="15.0" fill="rgb(243,117,21)" rx="2" ry="2" />
<text x="123.71" y="671.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="195.5" y="661" width="0.1" height="15.0" fill="rgb(226,213,11)" rx="2" ry="2" />
<text x="198.50" y="671.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (2 samples, 0.01%)</title><rect x="10.2" y="629" width="0.2" height="15.0" fill="rgb(247,147,3)" rx="2" ry="2" />
<text x="13.24" y="639.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (10 samples, 0.05%)</title><rect x="372.4" y="389" width="0.6" height="15.0" fill="rgb(214,73,8)" rx="2" ry="2" />
<text x="375.39" y="399.5" ></text>
</g>
<g >
<title>malloc (6 samples, 0.03%)</title><rect x="300.4" y="293" width="0.3" height="15.0" fill="rgb(242,13,44)" rx="2" ry="2" />
<text x="303.37" y="303.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (2 samples, 0.01%)</title><rect x="12.7" y="677" width="0.1" height="15.0" fill="rgb(247,95,14)" rx="2" ry="2" />
<text x="15.71" y="687.5" ></text>
</g>
<g >
<title>plugin_process_close (12 samples, 0.06%)</title><rect x="172.1" y="453" width="0.8" height="15.0" fill="rgb(241,65,32)" rx="2" ry="2" />
<text x="175.14" y="463.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (31 samples, 0.15%)</title><rect x="467.0" y="453" width="1.8" height="15.0" fill="rgb(222,107,8)" rx="2" ry="2" />
<text x="469.99" y="463.5" ></text>
</g>
<g >
<title>stream_process (9 samples, 0.04%)</title><rect x="400.6" y="485" width="0.5" height="15.0" fill="rgb(231,155,48)" rx="2" ry="2" />
<text x="403.58" y="495.5" ></text>
</g>
<g >
<title>task_work_run (10 samples, 0.05%)</title><rect x="248.8" y="453" width="0.6" height="15.0" fill="rgb(253,163,38)" rx="2" ry="2" />
<text x="251.82" y="463.5" ></text>
</g>
<g >
<title>del_stream_by_time (13 samples, 0.06%)</title><rect x="493.8" y="549" width="0.7" height="15.0" fill="rgb(237,202,49)" rx="2" ry="2" />
<text x="496.77" y="559.5" ></text>
</g>
<g >
<title>tcp_free_stream (3 samples, 0.01%)</title><rect x="693.0" y="597" width="0.1" height="15.0" fill="rgb(233,0,51)" rx="2" ry="2" />
<text x="695.96" y="607.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (2 samples, 0.01%)</title><rect x="10.9" y="629" width="0.2" height="15.0" fill="rgb(238,93,35)" rx="2" ry="2" />
<text x="13.94" y="639.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.01%)</title><rect x="15.5" y="677" width="0.1" height="15.0" fill="rgb(235,190,1)" rx="2" ry="2" />
<text x="18.49" y="687.5" ></text>
</g>
<g >
<title>__snprintf (4 samples, 0.02%)</title><rect x="180.3" y="501" width="0.2" height="15.0" fill="rgb(222,44,11)" rx="2" ry="2" />
<text x="183.28" y="511.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (8 samples, 0.04%)</title><rect x="279.0" y="453" width="0.5" height="15.0" fill="rgb(252,166,34)" rx="2" ry="2" />
<text x="282.02" y="463.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="486.2" y="453" width="0.1" height="15.0" fill="rgb(219,35,52)" rx="2" ry="2" />
<text x="489.16" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="342.8" y="421" width="0.3" height="15.0" fill="rgb(244,169,24)" rx="2" ry="2" />
<text x="345.78" y="431.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="181.9" y="469" width="0.2" height="15.0" fill="rgb(240,190,13)" rx="2" ry="2" />
<text x="184.93" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="712.5" y="229" width="0.2" height="15.0" fill="rgb(222,207,24)" rx="2" ry="2" />
<text x="715.54" y="239.5" ></text>
</g>
<g >
<title>http_doWithEntity (9 samples, 0.04%)</title><rect x="167.3" y="469" width="0.5" height="15.0" fill="rgb(215,54,12)" rx="2" ry="2" />
<text x="170.31" y="479.5" ></text>
</g>
<g >
<title>stream_process_tcp (107 samples, 0.53%)</title><rect x="169.7" y="581" width="6.3" height="15.0" fill="rgb(230,129,46)" rx="2" ry="2" />
<text x="172.72" y="591.5" ></text>
</g>
<g >
<title>plugin_process_data (10 samples, 0.05%)</title><rect x="329.4" y="357" width="0.6" height="15.0" fill="rgb(254,137,16)" rx="2" ry="2" />
<text x="332.39" y="367.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="512.8" y="453" width="0.1" height="15.0" fill="rgb(245,221,13)" rx="2" ry="2" />
<text x="515.77" y="463.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.02%)</title><rect x="636.0" y="597" width="0.2" height="15.0" fill="rgb(253,101,10)" rx="2" ry="2" />
<text x="638.98" y="607.5" ></text>
</g>
<g >
<title>malloc (5 samples, 0.02%)</title><rect x="322.0" y="197" width="0.3" height="15.0" fill="rgb(249,123,20)" rx="2" ry="2" />
<text x="324.96" y="207.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="173.2" y="53" width="0.1" height="15.0" fill="rgb(213,182,54)" rx="2" ry="2" />
<text x="176.20" y="63.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="300.1" y="261" width="0.2" height="15.0" fill="rgb(208,152,47)" rx="2" ry="2" />
<text x="303.13" y="271.5" ></text>
</g>
<g >
<title>[wire_graft_plug.so] (58 samples, 0.29%)</title><rect x="347.0" y="485" width="3.4" height="15.0" fill="rgb(212,187,32)" rx="2" ry="2" />
<text x="349.97" y="495.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="295.0" y="261" width="0.2" height="15.0" fill="rgb(219,109,30)" rx="2" ry="2" />
<text x="298.00" y="271.5" ></text>
</g>
<g >
<title>malloc (4 samples, 0.02%)</title><rect x="350.2" y="405" width="0.2" height="15.0" fill="rgb(248,155,9)" rx="2" ry="2" />
<text x="353.15" y="415.5" ></text>
</g>
<g >
<title>malloc (5 samples, 0.02%)</title><rect x="259.5" y="485" width="0.3" height="15.0" fill="rgb(218,101,21)" rx="2" ry="2" />
<text x="262.50" y="495.5" ></text>
</g>
<g >
<title>free (4 samples, 0.02%)</title><rect x="314.8" y="277" width="0.2" height="15.0" fill="rgb(246,85,18)" rx="2" ry="2" />
<text x="317.76" y="287.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="173.0" y="53" width="0.2" height="15.0" fill="rgb(209,146,13)" rx="2" ry="2" />
<text x="176.03" y="63.5" ></text>
</g>
<g >
<title>rdk:broker63 (3 samples, 0.01%)</title><rect x="15.1" y="709" width="0.1" height="15.0" fill="rgb(233,25,20)" rx="2" ry="2" />
<text x="18.07" y="719.5" ></text>
</g>
<g >
<title>rdk:main (5 samples, 0.02%)</title><rect x="16.5" y="709" width="0.3" height="15.0" fill="rgb(230,114,43)" rx="2" ry="2" />
<text x="19.55" y="719.5" ></text>
</g>
<g >
<title>rulescan_computeresult (29 samples, 0.14%)</title><rect x="109.1" y="645" width="1.7" height="15.0" fill="rgb(215,127,23)" rx="2" ry="2" />
<text x="112.09" y="655.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (2 samples, 0.01%)</title><rect x="176.5" y="421" width="0.1" height="15.0" fill="rgb(207,136,12)" rx="2" ry="2" />
<text x="179.51" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="322.6" y="133" width="0.2" height="15.0" fill="rgb(252,24,11)" rx="2" ry="2" />
<text x="325.61" y="143.5" ></text>
</g>
<g >
<title>vfprintf (4 samples, 0.02%)</title><rect x="174.4" y="453" width="0.2" height="15.0" fill="rgb(228,146,21)" rx="2" ry="2" />
<text x="177.38" y="463.5" ></text>
</g>
<g >
<title>OBJ_obj2nid (3 samples, 0.01%)</title><rect x="255.2" y="357" width="0.2" height="15.0" fill="rgb(212,180,37)" rx="2" ry="2" />
<text x="258.25" y="367.5" ></text>
</g>
<g >
<title>find_vma (2 samples, 0.01%)</title><rect x="306.1" y="341" width="0.1" height="15.0" fill="rgb(209,157,21)" rx="2" ry="2" />
<text x="309.09" y="351.5" ></text>
</g>
<g >
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (2 samples, 0.01%)</title><rect x="526.2" y="437" width="0.1" height="15.0" fill="rgb(212,229,33)" rx="2" ry="2" />
<text x="529.15" y="447.5" ></text>
</g>
<g >
<title>stream_process (1,677 samples, 8.38%)</title><rect x="270.2" y="517" width="98.9" height="15.0" fill="rgb(208,6,28)" rx="2" ry="2" />
<text x="273.17" y="527.5" >stream_proc..</text>
</g>
<g >
<title>__clone (8,289 samples, 41.43%)</title><rect x="200.7" y="693" width="489.0" height="15.0" fill="rgb(222,64,41)" rx="2" ry="2" />
<text x="203.75" y="703.5" >__clone</text>
</g>
<g >
<title>cJSON_CreateNumber (2 samples, 0.01%)</title><rect x="700.4" y="549" width="0.1" height="15.0" fill="rgb(222,1,51)" rx="2" ry="2" />
<text x="703.39" y="559.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (16 samples, 0.08%)</title><rect x="697.4" y="565" width="0.9" height="15.0" fill="rgb(237,35,14)" rx="2" ry="2" />
<text x="700.38" y="575.5" ></text>
</g>
<g >
<title>plugin_call_appentry (12 samples, 0.06%)</title><rect x="172.1" y="437" width="0.8" height="15.0" fill="rgb(217,229,47)" rx="2" ry="2" />
<text x="175.14" y="447.5" ></text>
</g>
<g >
<title>vfprintf (5 samples, 0.02%)</title><rect x="713.4" y="693" width="0.3" height="15.0" fill="rgb(223,164,41)" rx="2" ry="2" />
<text x="716.36" y="703.5" ></text>
</g>
<g >
<title>Maat_clean_status (4 samples, 0.02%)</title><rect x="485.5" y="485" width="0.2" height="15.0" fill="rgb(247,118,24)" rx="2" ry="2" />
<text x="488.46" y="495.5" ></text>
</g>
<g >
<title>__libc_calloc (3 samples, 0.01%)</title><rect x="260.4" y="517" width="0.2" height="15.0" fill="rgb(214,206,15)" rx="2" ry="2" />
<text x="263.44" y="527.5" ></text>
</g>
<g >
<title>http_doWithDefaultData (97 samples, 0.48%)</title><rect x="295.8" y="421" width="5.7" height="15.0" fill="rgb(209,206,0)" rx="2" ry="2" />
<text x="298.83" y="431.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (74 samples, 0.37%)</title><rect x="251.9" y="389" width="4.4" height="15.0" fill="rgb(251,226,21)" rx="2" ry="2" />
<text x="254.89" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (11 samples, 0.05%)</title><rect x="399.7" y="341" width="0.6" height="15.0" fill="rgb(224,183,26)" rx="2" ry="2" />
<text x="402.70" y="351.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (8 samples, 0.04%)</title><rect x="172.9" y="453" width="0.4" height="15.0" fill="rgb(233,11,53)" rx="2" ry="2" />
<text x="175.85" y="463.5" ></text>
</g>
<g >
<title>ASN1_primitive_free (8 samples, 0.04%)</title><rect x="324.9" y="277" width="0.5" height="15.0" fill="rgb(246,194,46)" rx="2" ry="2" />
<text x="327.91" y="287.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="182.3" y="613" width="0.1" height="15.0" fill="rgb(213,23,9)" rx="2" ry="2" />
<text x="185.29" y="623.5" ></text>
</g>
<g >
<title>__do_page_fault (4 samples, 0.02%)</title><rect x="267.5" y="437" width="0.2" height="15.0" fill="rgb(242,108,51)" rx="2" ry="2" />
<text x="270.46" y="447.5" ></text>
</g>
<g >
<title>ASN1_template_free (8 samples, 0.04%)</title><rect x="254.4" y="341" width="0.4" height="15.0" fill="rgb(220,122,35)" rx="2" ry="2" />
<text x="257.36" y="351.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (2 samples, 0.01%)</title><rect x="15.5" y="693" width="0.1" height="15.0" fill="rgb(241,54,36)" rx="2" ry="2" />
<text x="18.49" y="703.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="698.5" y="549" width="0.1" height="15.0" fill="rgb(247,69,36)" rx="2" ry="2" />
<text x="701.50" y="559.5" ></text>
</g>
<g >
<title>ip_finish_output (2 samples, 0.01%)</title><rect x="1177.4" y="213" width="0.1" height="15.0" fill="rgb(211,21,35)" rx="2" ry="2" />
<text x="1180.38" y="223.5" ></text>
</g>
<g >
<title>Maat_clean_status (42 samples, 0.21%)</title><rect x="454.4" y="469" width="2.4" height="15.0" fill="rgb(221,32,48)" rx="2" ry="2" />
<text x="457.37" y="479.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="181.7" y="421" width="0.1" height="15.0" fill="rgb(226,32,46)" rx="2" ry="2" />
<text x="184.70" y="431.5" ></text>
</g>
<g >
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="166.2" y="405" width="0.1" height="15.0" fill="rgb(207,164,10)" rx="2" ry="2" />
<text x="169.19" y="415.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (47 samples, 0.23%)</title><rect x="292.6" y="341" width="2.8" height="15.0" fill="rgb(208,16,46)" rx="2" ry="2" />
<text x="295.58" y="351.5" ></text>
</g>
<g >
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="690.2" y="469" width="0.3" height="15.0" fill="rgb(252,224,10)" rx="2" ry="2" />
<text x="693.18" y="479.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="168.8" y="437" width="0.1" height="15.0" fill="rgb(244,60,51)" rx="2" ry="2" />
<text x="171.78" y="447.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (9 samples, 0.04%)</title><rect x="176.9" y="501" width="0.6" height="15.0" fill="rgb(224,217,18)" rx="2" ry="2" />
<text x="179.92" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="177.5" y="421" width="0.1" height="15.0" fill="rgb(209,168,2)" rx="2" ry="2" />
<text x="180.51" y="431.5" ></text>
</g>
<g >
<title>[libprotoident.so] (56 samples, 0.28%)</title><rect x="333.9" y="453" width="3.3" height="15.0" fill="rgb(218,153,20)" rx="2" ry="2" />
<text x="336.93" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="312.1" y="437" width="0.1" height="15.0" fill="rgb(211,62,25)" rx="2" ry="2" />
<text x="315.11" y="447.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="182.4" y="613" width="0.2" height="15.0" fill="rgb(205,147,6)" rx="2" ry="2" />
<text x="185.41" y="623.5" ></text>
</g>
<g >
<title>http_doWithACompleteRegion (3 samples, 0.01%)</title><rect x="179.9" y="549" width="0.1" height="15.0" fill="rgb(245,64,46)" rx="2" ry="2" />
<text x="182.87" y="559.5" ></text>
</g>
<g >
<title>[fw_http_plug.so] (2 samples, 0.01%)</title><rect x="696.7" y="389" width="0.1" height="15.0" fill="rgb(216,119,43)" rx="2" ry="2" />
<text x="699.67" y="399.5" ></text>
</g>
<g >
<title>vfprintf (5 samples, 0.02%)</title><rect x="178.7" y="453" width="0.3" height="15.0" fill="rgb(251,19,12)" rx="2" ry="2" />
<text x="181.75" y="463.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (4 samples, 0.02%)</title><rect x="394.7" y="341" width="0.2" height="15.0" fill="rgb(251,138,2)" rx="2" ry="2" />
<text x="397.68" y="351.5" ></text>
</g>
<g >
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="696.8" y="469" width="0.2" height="15.0" fill="rgb(207,224,54)" rx="2" ry="2" />
<text x="699.85" y="479.5" ></text>
</g>
<g >
<title>rdk:broker25 (3 samples, 0.01%)</title><rect x="11.5" y="709" width="0.2" height="15.0" fill="rgb(242,79,26)" rx="2" ry="2" />
<text x="14.47" y="719.5" ></text>
</g>
<g >
<title>SSL_ENTRY (83 samples, 0.41%)</title><rect x="251.7" y="469" width="4.9" height="15.0" fill="rgb(224,28,51)" rx="2" ry="2" />
<text x="254.71" y="479.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="693.0" y="421" width="0.1" height="15.0" fill="rgb(247,187,40)" rx="2" ry="2" />
<text x="695.96" y="431.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (4 samples, 0.02%)</title><rect x="16.6" y="661" width="0.2" height="15.0" fill="rgb(233,142,4)" rx="2" ry="2" />
<text x="19.61" y="671.5" ></text>
</g>
<g >
<title>qmdpi_hit_path_list (15 samples, 0.07%)</title><rect x="277.0" y="437" width="0.8" height="15.0" fill="rgb(253,33,24)" rx="2" ry="2" />
<text x="279.95" y="447.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="325.3" y="245" width="0.1" height="15.0" fill="rgb(213,207,6)" rx="2" ry="2" />
<text x="328.26" y="255.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="253.4" y="181" width="0.1" height="15.0" fill="rgb(251,67,8)" rx="2" ry="2" />
<text x="256.42" y="191.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="486.2" y="405" width="0.1" height="15.0" fill="rgb(216,58,8)" rx="2" ry="2" />
<text x="489.16" y="415.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (20 samples, 0.10%)</title><rect x="172.9" y="485" width="1.1" height="15.0" fill="rgb(233,100,7)" rx="2" ry="2" />
<text x="175.85" y="495.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="695.8" y="405" width="0.2" height="15.0" fill="rgb(208,9,14)" rx="2" ry="2" />
<text x="698.85" y="415.5" ></text>
</g>
<g >
<title>cJSON_AddStringToObject (2 samples, 0.01%)</title><rect x="700.5" y="565" width="0.1" height="15.0" fill="rgb(253,36,25)" rx="2" ry="2" />
<text x="703.51" y="575.5" ></text>
</g>
<g >
<title>c2i_ASN1_INTEGER (2 samples, 0.01%)</title><rect x="323.5" y="229" width="0.2" height="15.0" fill="rgb(224,183,39)" rx="2" ry="2" />
<text x="326.55" y="239.5" ></text>
</g>
<g >
<title>stream_process_tcp (24 samples, 0.12%)</title><rect x="179.3" y="661" width="1.4" height="15.0" fill="rgb(208,166,31)" rx="2" ry="2" />
<text x="182.28" y="671.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="256.0" y="325" width="0.1" height="15.0" fill="rgb(246,21,10)" rx="2" ry="2" />
<text x="258.96" y="335.5" ></text>
</g>
<g >
<title>[sapp] (33 samples, 0.16%)</title><rect x="523.8" y="469" width="1.9" height="15.0" fill="rgb(254,223,48)" rx="2" ry="2" />
<text x="526.79" y="479.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="526.7" y="453" width="0.1" height="15.0" fill="rgb(242,21,7)" rx="2" ry="2" />
<text x="529.68" y="463.5" ></text>
</g>
<g >
<title>qmdpi_worker_id_get (2 samples, 0.01%)</title><rect x="709.0" y="693" width="0.1" height="15.0" fill="rgb(237,209,3)" rx="2" ry="2" />
<text x="712.00" y="703.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="485.0" y="501" width="0.2" height="15.0" fill="rgb(214,6,14)" rx="2" ry="2" />
<text x="488.04" y="511.5" ></text>
</g>
<g >
<title>http_buildHttpInforLink (4 samples, 0.02%)</title><rect x="305.1" y="437" width="0.2" height="15.0" fill="rgb(240,122,8)" rx="2" ry="2" />
<text x="308.09" y="447.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (5 samples, 0.02%)</title><rect x="173.7" y="469" width="0.3" height="15.0" fill="rgb(206,141,3)" rx="2" ry="2" />
<text x="176.68" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="638.2" y="565" width="0.1" height="15.0" fill="rgb(231,23,22)" rx="2" ry="2" />
<text x="641.16" y="575.5" ></text>
</g>
<g >
<title>ssl_doWithCertificateDetail (3 samples, 0.01%)</title><rect x="169.5" y="437" width="0.2" height="15.0" fill="rgb(235,109,22)" rx="2" ry="2" />
<text x="172.55" y="447.5" ></text>
</g>
<g >
<title>http_doWithStartLine (75 samples, 0.37%)</title><rect x="287.6" y="437" width="4.5" height="15.0" fill="rgb(219,192,46)" rx="2" ry="2" />
<text x="290.63" y="447.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="255.4" y="325" width="0.3" height="15.0" fill="rgb(239,26,53)" rx="2" ry="2" />
<text x="258.43" y="335.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="358.5" y="421" width="0.1" height="15.0" fill="rgb(220,9,33)" rx="2" ry="2" />
<text x="361.47" y="431.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (12 samples, 0.06%)</title><rect x="169.8" y="517" width="0.7" height="15.0" fill="rgb(223,105,16)" rx="2" ry="2" />
<text x="172.84" y="527.5" ></text>
</g>
<g >
<title>__snprintf (4 samples, 0.02%)</title><rect x="174.4" y="485" width="0.2" height="15.0" fill="rgb(213,21,24)" rx="2" ry="2" />
<text x="177.38" y="495.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (169 samples, 0.84%)</title><rect x="292.3" y="453" width="10.0" height="15.0" fill="rgb(247,120,12)" rx="2" ry="2" />
<text x="295.29" y="463.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="327.0" y="197" width="0.1" height="15.0" fill="rgb(220,109,46)" rx="2" ry="2" />
<text x="329.97" y="207.5" ></text>
</g>
<g >
<title>parse_dns_protocol (161 samples, 0.80%)</title><rect x="697.1" y="693" width="9.5" height="15.0" fill="rgb(222,42,29)" rx="2" ry="2" />
<text x="700.14" y="703.5" ></text>
</g>
<g >
<title>plugin_process_pending (3 samples, 0.01%)</title><rect x="168.4" y="405" width="0.2" height="15.0" fill="rgb(228,83,24)" rx="2" ry="2" />
<text x="171.43" y="415.5" ></text>
</g>
<g >
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="696.1" y="453" width="0.4" height="15.0" fill="rgb(227,74,26)" rx="2" ry="2" />
<text x="699.14" y="463.5" ></text>
</g>
<g >
<title>[sapp] (6 samples, 0.03%)</title><rect x="477.0" y="453" width="0.3" height="15.0" fill="rgb(230,130,39)" rx="2" ry="2" />
<text x="479.96" y="463.5" ></text>
</g>
<g >
<title>ssl_doWithApplicationData (56 samples, 0.28%)</title><rect x="312.7" y="421" width="3.3" height="15.0" fill="rgb(251,36,1)" rx="2" ry="2" />
<text x="315.70" y="431.5" ></text>
</g>
<g >
<title>eth_entry (17 samples, 0.08%)</title><rect x="180.7" y="677" width="1.0" height="15.0" fill="rgb(232,187,37)" rx="2" ry="2" />
<text x="183.69" y="687.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (9 samples, 0.04%)</title><rect x="174.6" y="485" width="0.6" height="15.0" fill="rgb(237,141,23)" rx="2" ry="2" />
<text x="177.62" y="495.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (88 samples, 0.44%)</title><rect x="333.6" y="485" width="5.2" height="15.0" fill="rgb(228,103,11)" rx="2" ry="2" />
<text x="336.58" y="495.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (2 samples, 0.01%)</title><rect x="198.6" y="645" width="0.1" height="15.0" fill="rgb(228,215,45)" rx="2" ry="2" />
<text x="201.57" y="655.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="480.9" y="501" width="0.2" height="15.0" fill="rgb(205,2,2)" rx="2" ry="2" />
<text x="483.91" y="511.5" ></text>
</g>
<g >
<title>hash_func (79 samples, 0.39%)</title><rect x="418.3" y="501" width="4.6" height="15.0" fill="rgb(215,194,30)" rx="2" ry="2" />
<text x="421.28" y="511.5" ></text>
</g>
<g >
<title>__libc_calloc (2 samples, 0.01%)</title><rect x="291.6" y="277" width="0.2" height="15.0" fill="rgb(239,29,23)" rx="2" ry="2" />
<text x="294.64" y="287.5" ></text>
</g>
<g >
<title>frag_ipq_create (10 samples, 0.05%)</title><rect x="548.7" y="581" width="0.6" height="15.0" fill="rgb(225,56,19)" rx="2" ry="2" />
<text x="551.74" y="591.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="306.4" y="453" width="0.2" height="15.0" fill="rgb(229,189,48)" rx="2" ry="2" />
<text x="309.45" y="463.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="486.3" y="453" width="0.3" height="15.0" fill="rgb(234,90,46)" rx="2" ry="2" />
<text x="489.34" y="463.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (4 samples, 0.02%)</title><rect x="14.7" y="645" width="0.2" height="15.0" fill="rgb(243,72,47)" rx="2" ry="2" />
<text x="17.66" y="655.5" ></text>
</g>
<g >
<title>http_callPlugin (9 samples, 0.04%)</title><rect x="167.3" y="453" width="0.5" height="15.0" fill="rgb(241,75,17)" rx="2" ry="2" />
<text x="170.31" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="397.5" y="341" width="0.1" height="15.0" fill="rgb(240,98,47)" rx="2" ry="2" />
<text x="400.51" y="351.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_by_id@plt (2 samples, 0.01%)</title><rect x="124.4" y="661" width="0.1" height="15.0" fill="rgb(214,180,9)" rx="2" ry="2" />
<text x="127.37" y="671.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (2 samples, 0.01%)</title><rect x="169.7" y="533" width="0.1" height="15.0" fill="rgb(225,106,2)" rx="2" ry="2" />
<text x="172.72" y="543.5" ></text>
</g>
<g >
<title>rdk:broker57 (4 samples, 0.02%)</title><rect x="14.1" y="709" width="0.3" height="15.0" fill="rgb(240,92,53)" rx="2" ry="2" />
<text x="17.13" y="719.5" ></text>
</g>
<g >
<title>realloc (3 samples, 0.01%)</title><rect x="701.5" y="485" width="0.2" height="15.0" fill="rgb(250,141,0)" rx="2" ry="2" />
<text x="704.51" y="495.5" ></text>
</g>
<g >
<title>plugin_process_data (5 samples, 0.02%)</title><rect x="693.3" y="661" width="0.2" height="15.0" fill="rgb(240,127,26)" rx="2" ry="2" />
<text x="696.25" y="671.5" ></text>
</g>
<g >
<title>[sapp] (38 samples, 0.19%)</title><rect x="387.4" y="517" width="2.2" height="15.0" fill="rgb(226,0,37)" rx="2" ry="2" />
<text x="390.37" y="527.5" ></text>
</g>
<g >
<title>tsg_scan_app_properties_policy (3 samples, 0.01%)</title><rect x="343.7" y="453" width="0.1" height="15.0" fill="rgb(236,196,7)" rx="2" ry="2" />
<text x="346.66" y="463.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="700.9" y="581" width="0.1" height="15.0" fill="rgb(221,159,45)" rx="2" ry="2" />
<text x="703.86" y="591.5" ></text>
</g>
<g >
<title>_IO_vsprintf (13 samples, 0.06%)</title><rect x="348.7" y="389" width="0.8" height="15.0" fill="rgb(225,223,0)" rx="2" ry="2" />
<text x="351.74" y="399.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="169.0" y="437" width="0.2" height="15.0" fill="rgb(223,104,5)" rx="2" ry="2" />
<text x="172.02" y="447.5" ></text>
</g>
<g >
<title>ASN1_template_free (21 samples, 0.10%)</title><rect x="324.7" y="325" width="1.3" height="15.0" fill="rgb(215,97,30)" rx="2" ry="2" />
<text x="327.73" y="335.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="254.1" y="309" width="0.2" height="15.0" fill="rgb(254,162,25)" rx="2" ry="2" />
<text x="257.13" y="319.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (4 samples, 0.02%)</title><rect x="146.1" y="597" width="0.2" height="15.0" fill="rgb(214,116,5)" rx="2" ry="2" />
<text x="149.07" y="607.5" ></text>
</g>
<g >
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="478.7" y="533" width="0.1" height="15.0" fill="rgb(234,67,46)" rx="2" ry="2" />
<text x="481.67" y="543.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (6 samples, 0.03%)</title><rect x="182.3" y="677" width="0.3" height="15.0" fill="rgb(238,215,0)" rx="2" ry="2" />
<text x="185.29" y="687.5" ></text>
</g>
<g >
<title>__do_softirq (6 samples, 0.03%)</title><rect x="1177.2" y="549" width="0.4" height="15.0" fill="rgb(240,22,24)" rx="2" ry="2" />
<text x="1180.20" y="559.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (77 samples, 0.38%)</title><rect x="141.9" y="693" width="4.5" height="15.0" fill="rgb(253,47,42)" rx="2" ry="2" />
<text x="144.88" y="703.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="255.0" y="229" width="0.2" height="15.0" fill="rgb(243,171,38)" rx="2" ry="2" />
<text x="257.95" y="239.5" ></text>
</g>
<g >
<title>plugin_process_data (3 samples, 0.01%)</title><rect x="169.5" y="389" width="0.2" height="15.0" fill="rgb(226,223,21)" rx="2" ry="2" />
<text x="172.55" y="399.5" ></text>
</g>
<g >
<title>[sapp] (50 samples, 0.25%)</title><rect x="690.2" y="645" width="2.9" height="15.0" fill="rgb(205,27,7)" rx="2" ry="2" />
<text x="693.18" y="655.5" ></text>
</g>
<g >
<title>ASN1_mbstring_ncopy (3 samples, 0.01%)</title><rect x="252.8" y="181" width="0.1" height="15.0" fill="rgb(249,123,20)" rx="2" ry="2" />
<text x="255.77" y="191.5" ></text>
</g>
<g >
<title>ssl_callPlugins (3 samples, 0.01%)</title><rect x="169.5" y="421" width="0.2" height="15.0" fill="rgb(230,174,23)" rx="2" ry="2" />
<text x="172.55" y="431.5" ></text>
</g>
<g >
<title>cJSON_AddStringToObject (6 samples, 0.03%)</title><rect x="706.1" y="565" width="0.3" height="15.0" fill="rgb(225,197,10)" rx="2" ry="2" />
<text x="709.05" y="575.5" ></text>
</g>
<g >
<title>__clock_gettime (6 samples, 0.03%)</title><rect x="224.2" y="613" width="0.3" height="15.0" fill="rgb(238,68,12)" rx="2" ry="2" />
<text x="227.16" y="623.5" ></text>
</g>
<g >
<title>sprintf (2 samples, 0.01%)</title><rect x="175.5" y="437" width="0.1" height="15.0" fill="rgb(207,154,30)" rx="2" ry="2" />
<text x="178.50" y="447.5" ></text>
</g>
<g >
<title>page_fault (2 samples, 0.01%)</title><rect x="705.9" y="485" width="0.2" height="15.0" fill="rgb(250,16,12)" rx="2" ry="2" />
<text x="708.93" y="495.5" ></text>
</g>
<g >
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="696.8" y="501" width="0.2" height="15.0" fill="rgb(213,52,54)" rx="2" ry="2" />
<text x="699.85" y="511.5" ></text>
</g>
<g >
<title>inet_ntop (3 samples, 0.01%)</title><rect x="374.0" y="437" width="0.2" height="15.0" fill="rgb(254,204,47)" rx="2" ry="2" />
<text x="376.98" y="447.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (4 samples, 0.02%)</title><rect x="14.1" y="645" width="0.3" height="15.0" fill="rgb(229,68,41)" rx="2" ry="2" />
<text x="17.13" y="655.5" ></text>
</g>
<g >
<title>rd_kafka_msg_sticky_partition (2 samples, 0.01%)</title><rect x="295.2" y="261" width="0.2" height="15.0" fill="rgb(247,187,48)" rx="2" ry="2" />
<text x="298.24" y="271.5" ></text>
</g>
<g >
<title>ssl_callPlugins (54 samples, 0.27%)</title><rect x="312.8" y="405" width="3.2" height="15.0" fill="rgb(239,208,44)" rx="2" ry="2" />
<text x="315.82" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="486.8" y="405" width="0.1" height="15.0" fill="rgb(207,14,22)" rx="2" ry="2" />
<text x="489.75" y="415.5" ></text>
</g>
<g >
<title>plugin_call_appentry (33 samples, 0.16%)</title><rect x="290.0" y="341" width="1.9" height="15.0" fill="rgb(212,74,14)" rx="2" ry="2" />
<text x="292.99" y="351.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (13 samples, 0.06%)</title><rect x="695.1" y="549" width="0.7" height="15.0" fill="rgb(211,75,52)" rx="2" ry="2" />
<text x="698.08" y="559.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="278.1" y="421" width="0.2" height="15.0" fill="rgb(214,210,18)" rx="2" ry="2" />
<text x="281.07" y="431.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="250.9" y="261" width="0.3" height="15.0" fill="rgb(246,53,36)" rx="2" ry="2" />
<text x="253.94" y="271.5" ></text>
</g>
<g >
<title>[fw_http_plug.so] (5 samples, 0.02%)</title><rect x="692.6" y="437" width="0.3" height="15.0" fill="rgb(206,111,45)" rx="2" ry="2" />
<text x="695.60" y="447.5" ></text>
</g>
<g >
<title>start_thread (4 samples, 0.02%)</title><rect x="13.8" y="677" width="0.3" height="15.0" fill="rgb(224,59,18)" rx="2" ry="2" />
<text x="16.83" y="687.5" ></text>
</g>
<g >
<title>__libc_calloc (3 samples, 0.01%)</title><rect x="343.1" y="453" width="0.2" height="15.0" fill="rgb(205,72,47)" rx="2" ry="2" />
<text x="346.07" y="463.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="179.7" y="437" width="0.2" height="15.0" fill="rgb(224,135,30)" rx="2" ry="2" />
<text x="182.69" y="447.5" ></text>
</g>
<g >
<title>malloc (10 samples, 0.05%)</title><rect x="548.7" y="549" width="0.6" height="15.0" fill="rgb(233,110,16)" rx="2" ry="2" />
<text x="551.74" y="559.5" ></text>
</g>
<g >
<title>EC_GROUP_new_by_curve_name (3 samples, 0.01%)</title><rect x="255.7" y="325" width="0.1" height="15.0" fill="rgb(205,110,37)" rx="2" ry="2" />
<text x="258.66" y="335.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="254.4" y="293" width="0.4" height="15.0" fill="rgb(246,156,34)" rx="2" ry="2" />
<text x="257.42" y="303.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="693.0" y="453" width="0.1" height="15.0" fill="rgb(240,37,2)" rx="2" ry="2" />
<text x="695.96" y="463.5" ></text>
</g>
<g >
<title>realloc (4 samples, 0.02%)</title><rect x="106.3" y="645" width="0.3" height="15.0" fill="rgb(250,150,26)" rx="2" ry="2" />
<text x="109.32" y="655.5" ></text>
</g>
<g >
<title>rdk:broker31 (6 samples, 0.03%)</title><rect x="12.2" y="709" width="0.3" height="15.0" fill="rgb(226,99,35)" rx="2" ry="2" />
<text x="15.18" y="719.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (2 samples, 0.01%)</title><rect x="16.0" y="645" width="0.1" height="15.0" fill="rgb(228,124,9)" rx="2" ry="2" />
<text x="18.96" y="655.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (24 samples, 0.12%)</title><rect x="176.0" y="549" width="1.5" height="15.0" fill="rgb(245,29,46)" rx="2" ry="2" />
<text x="179.04" y="559.5" ></text>
</g>
<g >
<title>fw_ssl_entry (3 samples, 0.01%)</title><rect x="168.4" y="373" width="0.2" height="15.0" fill="rgb(249,182,49)" rx="2" ry="2" />
<text x="171.43" y="383.5" ></text>
</g>
<g >
<title>do_page_fault (12 samples, 0.06%)</title><rect x="267.7" y="469" width="0.7" height="15.0" fill="rgb(231,71,27)" rx="2" ry="2" />
<text x="270.69" y="479.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="514.2" y="501" width="0.1" height="15.0" fill="rgb(216,50,21)" rx="2" ry="2" />
<text x="517.18" y="511.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="178.1" y="517" width="0.2" height="15.0" fill="rgb(212,41,32)" rx="2" ry="2" />
<text x="181.10" y="527.5" ></text>
</g>
<g >
<title>_int_realloc (4 samples, 0.02%)</title><rect x="329.7" y="277" width="0.3" height="15.0" fill="rgb(239,103,22)" rx="2" ry="2" />
<text x="332.74" y="287.5" ></text>
</g>
<g >
<title>__do_page_fault (13 samples, 0.06%)</title><rect x="130.3" y="581" width="0.8" height="15.0" fill="rgb(208,29,24)" rx="2" ry="2" />
<text x="133.32" y="591.5" ></text>
</g>
<g >
<title>http_doWithConnection (3 samples, 0.01%)</title><rect x="695.8" y="501" width="0.2" height="15.0" fill="rgb(211,139,13)" rx="2" ry="2" />
<text x="698.85" y="511.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (5 samples, 0.02%)</title><rect x="712.7" y="437" width="0.3" height="15.0" fill="rgb(231,215,0)" rx="2" ry="2" />
<text x="715.66" y="447.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (19 samples, 0.09%)</title><rect x="641.9" y="517" width="1.1" height="15.0" fill="rgb(210,163,41)" rx="2" ry="2" />
<text x="644.88" y="527.5" ></text>
</g>
<g >
<title>__libc_calloc (117 samples, 0.58%)</title><rect x="131.3" y="645" width="6.9" height="15.0" fill="rgb(243,20,0)" rx="2" ry="2" />
<text x="134.33" y="655.5" ></text>
</g>
<g >
<title>CNaiveIntervalIndex::Find (2 samples, 0.01%)</title><rect x="165.4" y="661" width="0.1" height="15.0" fill="rgb(224,169,23)" rx="2" ry="2" />
<text x="168.36" y="671.5" ></text>
</g>
<g >
<title>ip_output (2 samples, 0.01%)</title><rect x="1177.4" y="229" width="0.1" height="15.0" fill="rgb(233,83,8)" rx="2" ry="2" />
<text x="1180.38" y="239.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="255.0" y="165" width="0.1" height="15.0" fill="rgb(205,189,23)" rx="2" ry="2" />
<text x="257.95" y="175.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (24 samples, 0.12%)</title><rect x="306.7" y="357" width="1.4" height="15.0" fill="rgb(241,227,6)" rx="2" ry="2" />
<text x="309.68" y="367.5" ></text>
</g>
<g >
<title>sapp_fs2_fuzzy_latency_update_per_entry (2 samples, 0.01%)</title><rect x="290.5" y="325" width="0.1" height="15.0" fill="rgb(233,173,6)" rx="2" ry="2" />
<text x="293.46" y="335.5" ></text>
</g>
<g >
<title>rdk:broker10 (2 samples, 0.01%)</title><rect x="10.2" y="709" width="0.2" height="15.0" fill="rgb(228,184,11)" rx="2" ry="2" />
<text x="13.24" y="719.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new (4 samples, 0.02%)</title><rect x="359.3" y="405" width="0.2" height="15.0" fill="rgb(212,134,42)" rx="2" ry="2" />
<text x="362.29" y="415.5" ></text>
</g>
<g >
<title>[sapp] (12 samples, 0.06%)</title><rect x="712.5" y="661" width="0.7" height="15.0" fill="rgb(209,1,10)" rx="2" ry="2" />
<text x="715.54" y="671.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new (2 samples, 0.01%)</title><rect x="400.5" y="389" width="0.1" height="15.0" fill="rgb(239,115,32)" rx="2" ry="2" />
<text x="403.46" y="399.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="168.8" y="469" width="0.1" height="15.0" fill="rgb(244,83,34)" rx="2" ry="2" />
<text x="171.78" y="479.5" ></text>
</g>
<g >
<title>do_page_fault (2 samples, 0.01%)</title><rect x="400.2" y="293" width="0.1" height="15.0" fill="rgb(237,79,2)" rx="2" ry="2" />
<text x="403.23" y="303.5" ></text>
</g>
<g >
<title>__snprintf (7 samples, 0.03%)</title><rect x="181.2" y="437" width="0.4" height="15.0" fill="rgb(252,19,12)" rx="2" ry="2" />
<text x="184.23" y="447.5" ></text>
</g>
<g >
<title>CNaiveIntervalIndex::Find (7 samples, 0.03%)</title><rect x="112.8" y="629" width="0.4" height="15.0" fill="rgb(236,110,19)" rx="2" ry="2" />
<text x="115.81" y="639.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (2 samples, 0.01%)</title><rect x="14.5" y="629" width="0.2" height="15.0" fill="rgb(231,206,21)" rx="2" ry="2" />
<text x="17.54" y="639.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="168.1" y="357" width="0.1" height="15.0" fill="rgb(236,131,37)" rx="2" ry="2" />
<text x="171.07" y="367.5" ></text>
</g>
<g >
<title>try_to_wake_up (2 samples, 0.01%)</title><rect x="10.1" y="549" width="0.1" height="15.0" fill="rgb(211,66,48)" rx="2" ry="2" />
<text x="13.06" y="559.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (79 samples, 0.39%)</title><rect x="251.9" y="421" width="4.6" height="15.0" fill="rgb(229,16,10)" rx="2" ry="2" />
<text x="254.89" y="431.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="11.8" y="693" width="0.2" height="15.0" fill="rgb(241,4,13)" rx="2" ry="2" />
<text x="14.83" y="703.5" ></text>
</g>
<g >
<title>X509V3_EXT_d2i (13 samples, 0.06%)</title><rect x="326.5" y="389" width="0.8" height="15.0" fill="rgb(249,19,3)" rx="2" ry="2" />
<text x="329.50" y="399.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="362.5" y="405" width="0.1" height="15.0" fill="rgb(242,5,12)" rx="2" ry="2" />
<text x="365.48" y="415.5" ></text>
</g>
<g >
<title>scaling_bloom_add (123 samples, 0.61%)</title><rect x="403.7" y="501" width="7.3" height="15.0" fill="rgb(247,76,51)" rx="2" ry="2" />
<text x="406.71" y="511.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (2 samples, 0.01%)</title><rect x="169.7" y="517" width="0.1" height="15.0" fill="rgb(231,157,28)" rx="2" ry="2" />
<text x="172.72" y="527.5" ></text>
</g>
<g >
<title>magic_buffer (3 samples, 0.01%)</title><rect x="179.7" y="421" width="0.2" height="15.0" fill="rgb(223,209,43)" rx="2" ry="2" />
<text x="182.69" y="431.5" ></text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="168.4" y="421" width="0.2" height="15.0" fill="rgb(237,128,21)" rx="2" ry="2" />
<text x="171.43" y="431.5" ></text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="182.1" y="533" width="0.1" height="15.0" fill="rgb(234,128,54)" rx="2" ry="2" />
<text x="185.05" y="543.5" ></text>
</g>
<g >
<title>set_session_attributes (2 samples, 0.01%)</title><rect x="179.6" y="405" width="0.1" height="15.0" fill="rgb(236,191,37)" rx="2" ry="2" />
<text x="182.57" y="415.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (22 samples, 0.11%)</title><rect x="643.5" y="565" width="1.3" height="15.0" fill="rgb(211,92,38)" rx="2" ry="2" />
<text x="646.53" y="575.5" ></text>
</g>
<g >
<title>wg_mirror_linkinfo_ntop (3 samples, 0.01%)</title><rect x="478.9" y="469" width="0.1" height="15.0" fill="rgb(240,156,46)" rx="2" ry="2" />
<text x="481.85" y="479.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (4 samples, 0.02%)</title><rect x="14.7" y="613" width="0.2" height="15.0" fill="rgb(208,88,20)" rx="2" ry="2" />
<text x="17.66" y="623.5" ></text>
</g>
<g >
<title>MV_Sketch_update (9 samples, 0.04%)</title><rect x="552.5" y="517" width="0.5" height="15.0" fill="rgb(220,74,52)" rx="2" ry="2" />
<text x="555.46" y="527.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="347.7" y="405" width="0.2" height="15.0" fill="rgb(225,48,34)" rx="2" ry="2" />
<text x="350.73" y="415.5" ></text>
</g>
<g >
<title>find_vma (2 samples, 0.01%)</title><rect x="338.2" y="357" width="0.1" height="15.0" fill="rgb(216,229,20)" rx="2" ry="2" />
<text x="341.18" y="367.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="181.9" y="517" width="0.2" height="15.0" fill="rgb(251,1,42)" rx="2" ry="2" />
<text x="184.93" y="527.5" ></text>
</g>
<g >
<title>http_callPluginField (23 samples, 0.11%)</title><rect x="170.7" y="453" width="1.3" height="15.0" fill="rgb(254,67,25)" rx="2" ry="2" />
<text x="173.67" y="463.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (2 samples, 0.01%)</title><rect x="693.0" y="501" width="0.1" height="15.0" fill="rgb(215,120,35)" rx="2" ry="2" />
<text x="695.96" y="511.5" ></text>
</g>
<g >
<title>record_link_info_entry_raw (5 samples, 0.02%)</title><rect x="351.3" y="485" width="0.3" height="15.0" fill="rgb(234,75,16)" rx="2" ry="2" />
<text x="354.33" y="495.5" ></text>
</g>
<g >
<title>[libc-2.17.so] (2 samples, 0.01%)</title><rect x="11.8" y="677" width="0.1" height="15.0" fill="rgb(212,26,11)" rx="2" ry="2" />
<text x="14.83" y="687.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="328.0" y="181" width="0.2" height="15.0" fill="rgb(245,100,7)" rx="2" ry="2" />
<text x="331.03" y="191.5" ></text>
</g>
<g >
<title>raw_ip_frag_list_stream_attach (5 samples, 0.02%)</title><rect x="269.8" y="517" width="0.3" height="15.0" fill="rgb(229,3,44)" rx="2" ry="2" />
<text x="272.76" y="527.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="325.1" y="245" width="0.2" height="15.0" fill="rgb(244,136,0)" rx="2" ry="2" />
<text x="328.14" y="255.5" ></text>
</g>
<g >
<title>project_req_get_struct (22 samples, 0.11%)</title><rect x="477.3" y="485" width="1.3" height="15.0" fill="rgb(252,58,34)" rx="2" ry="2" />
<text x="480.32" y="495.5" ></text>
</g>
<g >
<title>__libc_calloc (3 samples, 0.01%)</title><rect x="333.1" y="421" width="0.2" height="15.0" fill="rgb(240,226,3)" rx="2" ry="2" />
<text x="336.11" y="431.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="466.2" y="421" width="0.1" height="15.0" fill="rgb(239,156,3)" rx="2" ry="2" />
<text x="469.17" y="431.5" ></text>
</g>
<g >
<title>sapp_fs2_fuzzy_latency_update_per_entry (9 samples, 0.04%)</title><rect x="298.8" y="309" width="0.6" height="15.0" fill="rgb(219,126,35)" rx="2" ry="2" />
<text x="301.84" y="319.5" ></text>
</g>
<g >
<title>[tsg_master.so] (26 samples, 0.13%)</title><rect x="341.5" y="453" width="1.6" height="15.0" fill="rgb(237,196,30)" rx="2" ry="2" />
<text x="344.54" y="463.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (23 samples, 0.11%)</title><rect x="170.7" y="373" width="1.3" height="15.0" fill="rgb(209,107,34)" rx="2" ry="2" />
<text x="173.67" y="383.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="169.2" y="405" width="0.3" height="15.0" fill="rgb(225,45,15)" rx="2" ry="2" />
<text x="172.19" y="415.5" ></text>
</g>
<g >
<title>__GI_____strtod_l_internal (3 samples, 0.01%)</title><rect x="468.5" y="373" width="0.2" height="15.0" fill="rgb(218,120,18)" rx="2" ry="2" />
<text x="471.53" y="383.5" ></text>
</g>
<g >
<title>TLD_append (6 samples, 0.03%)</title><rect x="288.6" y="325" width="0.4" height="15.0" fill="rgb(207,21,30)" rx="2" ry="2" />
<text x="291.63" y="335.5" ></text>
</g>
<g >
<title>ssl_callPlugins (15 samples, 0.07%)</title><rect x="331.3" y="405" width="0.9" height="15.0" fill="rgb(218,101,11)" rx="2" ry="2" />
<text x="334.34" y="415.5" ></text>
</g>
<g >
<title>[sapp] (2,329 samples, 11.64%)</title><rect x="243.4" y="549" width="137.4" height="15.0" fill="rgb(252,113,11)" rx="2" ry="2" />
<text x="246.39" y="559.5" >[sapp]</text>
</g>
<g >
<title>lpi_guess_protocol (56 samples, 0.28%)</title><rect x="333.9" y="469" width="3.3" height="15.0" fill="rgb(207,13,34)" rx="2" ry="2" />
<text x="336.93" y="479.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (2 samples, 0.01%)</title><rect x="12.1" y="645" width="0.1" height="15.0" fill="rgb(225,83,38)" rx="2" ry="2" />
<text x="15.06" y="655.5" ></text>
</g>
<g >
<title>SSL_ENTRY (4 samples, 0.02%)</title><rect x="182.1" y="629" width="0.2" height="15.0" fill="rgb(238,91,43)" rx="2" ry="2" />
<text x="185.05" y="639.5" ></text>
</g>
<g >
<title>__do_page_fault (2 samples, 0.01%)</title><rect x="327.0" y="117" width="0.1" height="15.0" fill="rgb(223,116,39)" rx="2" ry="2" />
<text x="330.03" y="127.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="277.6" y="389" width="0.2" height="15.0" fill="rgb(232,95,29)" rx="2" ry="2" />
<text x="280.60" y="399.5" ></text>
</g>
<g >
<title>APP_SKETCH_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="690.2" y="421" width="0.2" height="15.0" fill="rgb(240,131,45)" rx="2" ry="2" />
<text x="693.24" y="431.5" ></text>
</g>
<g >
<title>sscanf (6 samples, 0.03%)</title><rect x="349.5" y="405" width="0.4" height="15.0" fill="rgb(214,91,27)" rx="2" ry="2" />
<text x="352.50" y="415.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (116 samples, 0.58%)</title><rect x="317.8" y="341" width="6.9" height="15.0" fill="rgb(238,77,35)" rx="2" ry="2" />
<text x="320.83" y="351.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="177.7" y="389" width="0.1" height="15.0" fill="rgb(244,222,8)" rx="2" ry="2" />
<text x="180.69" y="399.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="179.0" y="485" width="0.3" height="15.0" fill="rgb(246,45,2)" rx="2" ry="2" />
<text x="182.04" y="495.5" ></text>
</g>
<g >
<title>SSL_ENTRY (389 samples, 1.94%)</title><rect x="310.0" y="485" width="22.9" height="15.0" fill="rgb(249,160,53)" rx="2" ry="2" />
<text x="312.98" y="495.5" >S..</text>
</g>
<g >
<title>_thrd_wrapper_function (2 samples, 0.01%)</title><rect x="15.2" y="661" width="0.2" height="15.0" fill="rgb(214,29,31)" rx="2" ry="2" />
<text x="18.25" y="671.5" ></text>
</g>
<g >
<title>http_callPluginField (11 samples, 0.05%)</title><rect x="695.2" y="469" width="0.6" height="15.0" fill="rgb(215,14,12)" rx="2" ry="2" />
<text x="698.20" y="479.5" ></text>
</g>
<g >
<title>ASIdentifiers_free (2 samples, 0.01%)</title><rect x="326.1" y="341" width="0.2" height="15.0" fill="rgb(250,79,11)" rx="2" ry="2" />
<text x="329.15" y="351.5" ></text>
</g>
<g >
<title>[wire_graft_plug.so] (3 samples, 0.01%)</title><rect x="400.8" y="453" width="0.2" height="15.0" fill="rgb(240,60,54)" rx="2" ry="2" />
<text x="403.82" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="169.2" y="245" width="0.3" height="15.0" fill="rgb(243,95,33)" rx="2" ry="2" />
<text x="172.19" y="255.5" ></text>
</g>
<g >
<title>http_analyseRegion (6 samples, 0.03%)</title><rect x="302.6" y="405" width="0.3" height="15.0" fill="rgb(228,186,31)" rx="2" ry="2" />
<text x="305.55" y="415.5" ></text>
</g>
<g >
<title>pipe_write (2 samples, 0.01%)</title><rect x="295.2" y="165" width="0.2" height="15.0" fill="rgb(207,163,52)" rx="2" ry="2" />
<text x="298.24" y="175.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.04%)</title><rect x="331.7" y="277" width="0.5" height="15.0" fill="rgb(210,35,6)" rx="2" ry="2" />
<text x="334.75" y="287.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="179.7" y="517" width="0.2" height="15.0" fill="rgb(249,1,5)" rx="2" ry="2" />
<text x="182.69" y="527.5" ></text>
</g>
<g >
<title>http_callPlugin (7 samples, 0.03%)</title><rect x="303.7" y="389" width="0.4" height="15.0" fill="rgb(242,142,33)" rx="2" ry="2" />
<text x="306.73" y="399.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_serve (2 samples, 0.01%)</title><rect x="12.1" y="597" width="0.1" height="15.0" fill="rgb(205,176,20)" rx="2" ry="2" />
<text x="15.06" y="607.5" ></text>
</g>
<g >
<title>file_encoding (2 samples, 0.01%)</title><rect x="179.7" y="389" width="0.1" height="15.0" fill="rgb(218,203,52)" rx="2" ry="2" />
<text x="182.69" y="399.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="181.2" y="453" width="0.4" height="15.0" fill="rgb(253,133,3)" rx="2" ry="2" />
<text x="184.23" y="463.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (9 samples, 0.04%)</title><rect x="373.6" y="453" width="0.6" height="15.0" fill="rgb(224,215,9)" rx="2" ry="2" />
<text x="376.63" y="463.5" ></text>
</g>
<g >
<title>do_page_fault (2 samples, 0.01%)</title><rect x="705.9" y="469" width="0.2" height="15.0" fill="rgb(247,38,8)" rx="2" ry="2" />
<text x="708.93" y="479.5" ></text>
</g>
<g >
<title>rulescan_searchstream (34 samples, 0.17%)</title><rect x="112.5" y="661" width="2.0" height="15.0" fill="rgb(233,189,2)" rx="2" ry="2" />
<text x="115.45" y="671.5" ></text>
</g>
<g >
<title>update_polling_inject_context (20 samples, 0.10%)</title><rect x="547.6" y="565" width="1.1" height="15.0" fill="rgb(221,90,0)" rx="2" ry="2" />
<text x="550.56" y="575.5" ></text>
</g>
<g >
<title>[libc-2.17.so] (2 samples, 0.01%)</title><rect x="15.8" y="565" width="0.2" height="15.0" fill="rgb(222,49,6)" rx="2" ry="2" />
<text x="18.84" y="575.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="166.1" y="517" width="0.2" height="15.0" fill="rgb(236,32,26)" rx="2" ry="2" />
<text x="169.07" y="527.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (11 samples, 0.05%)</title><rect x="230.0" y="597" width="0.7" height="15.0" fill="rgb(229,80,26)" rx="2" ry="2" />
<text x="233.00" y="607.5" ></text>
</g>
<g >
<title>qmdpi_flow_5tuple_get (2 samples, 0.01%)</title><rect x="708.8" y="693" width="0.1" height="15.0" fill="rgb(211,35,14)" rx="2" ry="2" />
<text x="711.76" y="703.5" ></text>
</g>
<g >
<title>__memset_sse2 (20 samples, 0.10%)</title><rect x="709.5" y="677" width="1.2" height="15.0" fill="rgb(223,130,53)" rx="2" ry="2" />
<text x="712.53" y="687.5" ></text>
</g>
<g >
<title>find_vma (6 samples, 0.03%)</title><rect x="130.6" y="565" width="0.4" height="15.0" fill="rgb(226,110,0)" rx="2" ry="2" />
<text x="133.62" y="575.5" ></text>
</g>
<g >
<title>layer_addr_ntop_r (2 samples, 0.01%)</title><rect x="99.7" y="485" width="0.1" height="15.0" fill="rgb(214,148,0)" rx="2" ry="2" />
<text x="102.71" y="495.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="301.8" y="421" width="0.2" height="15.0" fill="rgb(228,68,24)" rx="2" ry="2" />
<text x="304.79" y="431.5" ></text>
</g>
<g >
<title>[tsg_master.so] (11 samples, 0.05%)</title><rect x="307.2" y="309" width="0.7" height="15.0" fill="rgb(223,50,49)" rx="2" ry="2" />
<text x="310.21" y="319.5" ></text>
</g>
<g >
<title>__do_page_fault (2 samples, 0.01%)</title><rect x="260.5" y="453" width="0.1" height="15.0" fill="rgb(211,215,36)" rx="2" ry="2" />
<text x="263.50" y="463.5" ></text>
</g>
<g >
<title>del_stream_by_time (3 samples, 0.01%)</title><rect x="259.8" y="533" width="0.2" height="15.0" fill="rgb(238,29,49)" rx="2" ry="2" />
<text x="262.79" y="543.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="641.2" y="469" width="0.1" height="15.0" fill="rgb(222,102,36)" rx="2" ry="2" />
<text x="644.17" y="479.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="181.7" y="565" width="0.1" height="15.0" fill="rgb(221,44,1)" rx="2" ry="2" />
<text x="184.70" y="575.5" ></text>
</g>
<g >
<title>eth_entry (12 samples, 0.06%)</title><rect x="712.5" y="629" width="0.7" height="15.0" fill="rgb(230,78,5)" rx="2" ry="2" />
<text x="715.54" y="639.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="526.9" y="501" width="0.1" height="15.0" fill="rgb(246,36,37)" rx="2" ry="2" />
<text x="529.92" y="511.5" ></text>
</g>
<g >
<title>[libc-2.17.so] (2 samples, 0.01%)</title><rect x="10.8" y="677" width="0.1" height="15.0" fill="rgb(232,57,40)" rx="2" ry="2" />
<text x="13.83" y="687.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (7 samples, 0.03%)</title><rect x="641.0" y="501" width="0.4" height="15.0" fill="rgb(232,66,38)" rx="2" ry="2" />
<text x="643.99" y="511.5" ></text>
</g>
<g >
<title>_make_outer_status (2 samples, 0.01%)</title><rect x="102.8" y="661" width="0.1" height="15.0" fill="rgb(238,77,9)" rx="2" ry="2" />
<text x="105.78" y="671.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="700.5" y="533" width="0.1" height="15.0" fill="rgb(218,11,3)" rx="2" ry="2" />
<text x="703.51" y="543.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="700.3" y="549" width="0.1" height="15.0" fill="rgb(216,16,35)" rx="2" ry="2" />
<text x="703.27" y="559.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="178.2" y="421" width="0.1" height="15.0" fill="rgb(207,93,42)" rx="2" ry="2" />
<text x="181.22" y="431.5" ></text>
</g>
<g >
<title>printaddr (7 samples, 0.03%)</title><rect x="640.4" y="533" width="0.4" height="15.0" fill="rgb(235,39,34)" rx="2" ry="2" />
<text x="643.40" y="543.5" ></text>
</g>
<g >
<title>std::vector&lt;char, std::allocator&lt;char&gt; &gt;::_M_range_insert&lt;unsigned char*&gt; (2 samples, 0.01%)</title><rect x="301.3" y="309" width="0.1" height="15.0" fill="rgb(244,134,34)" rx="2" ry="2" />
<text x="304.31" y="319.5" ></text>
</g>
<g >
<title>__clone (2 samples, 0.01%)</title><rect x="10.2" y="693" width="0.2" height="15.0" fill="rgb(235,59,12)" rx="2" ry="2" />
<text x="13.24" y="703.5" ></text>
</g>
<g >
<title>do_page_fault (3 samples, 0.01%)</title><rect x="371.5" y="405" width="0.2" height="15.0" fill="rgb(248,136,19)" rx="2" ry="2" />
<text x="374.50" y="415.5" ></text>
</g>
<g >
<title>dictator_malloc (2 samples, 0.01%)</title><rect x="305.4" y="421" width="0.1" height="15.0" fill="rgb(244,112,9)" rx="2" ry="2" />
<text x="308.38" y="431.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (41 samples, 0.20%)</title><rect x="166.3" y="533" width="2.4" height="15.0" fill="rgb(229,131,35)" rx="2" ry="2" />
<text x="169.30" y="543.5" ></text>
</g>
<g >
<title>plugin_process_pending (4 samples, 0.02%)</title><rect x="179.3" y="485" width="0.3" height="15.0" fill="rgb(230,189,32)" rx="2" ry="2" />
<text x="182.34" y="495.5" ></text>
</g>
<g >
<title>http_doWithContentType (2 samples, 0.01%)</title><rect x="181.9" y="549" width="0.2" height="15.0" fill="rgb(238,169,36)" rx="2" ry="2" />
<text x="184.93" y="559.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (2 samples, 0.01%)</title><rect x="640.6" y="453" width="0.2" height="15.0" fill="rgb(222,81,9)" rx="2" ry="2" />
<text x="643.64" y="463.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="177.5" y="389" width="0.1" height="15.0" fill="rgb(237,189,42)" rx="2" ry="2" />
<text x="180.51" y="399.5" ></text>
</g>
<g >
<title>_int_realloc (4 samples, 0.02%)</title><rect x="256.3" y="261" width="0.2" height="15.0" fill="rgb(245,182,21)" rx="2" ry="2" />
<text x="259.31" y="271.5" ></text>
</g>
<g >
<title>TLD_append (5 samples, 0.02%)</title><rect x="698.3" y="565" width="0.3" height="15.0" fill="rgb(241,73,33)" rx="2" ry="2" />
<text x="701.32" y="575.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (3 samples, 0.01%)</title><rect x="547.3" y="533" width="0.2" height="15.0" fill="rgb(230,10,43)" rx="2" ry="2" />
<text x="550.33" y="543.5" ></text>
</g>
<g >
<title>ssl_callPlugins (6 samples, 0.03%)</title><rect x="173.3" y="437" width="0.4" height="15.0" fill="rgb(251,108,13)" rx="2" ry="2" />
<text x="176.32" y="447.5" ></text>
</g>
<g >
<title>sprintf (2 samples, 0.01%)</title><rect x="181.7" y="453" width="0.1" height="15.0" fill="rgb(221,103,26)" rx="2" ry="2" />
<text x="184.70" y="463.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="248.1" y="501" width="0.1" height="15.0" fill="rgb(247,79,11)" rx="2" ry="2" />
<text x="251.11" y="511.5" ></text>
</g>
<g >
<title>del_stream_by_time (164 samples, 0.82%)</title><rect x="391.4" y="533" width="9.7" height="15.0" fill="rgb(243,114,39)" rx="2" ry="2" />
<text x="394.44" y="543.5" ></text>
</g>
<g >
<title>sapp_is_overlay_layer (5 samples, 0.02%)</title><rect x="553.1" y="581" width="0.3" height="15.0" fill="rgb(227,59,30)" rx="2" ry="2" />
<text x="556.11" y="591.5" ></text>
</g>
<g >
<title>inet_ntop (3 samples, 0.01%)</title><rect x="707.8" y="629" width="0.1" height="15.0" fill="rgb(241,54,22)" rx="2" ry="2" />
<text x="710.76" y="639.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="350.2" y="421" width="0.2" height="15.0" fill="rgb(210,207,3)" rx="2" ry="2" />
<text x="353.15" y="431.5" ></text>
</g>
<g >
<title>c2i_ASN1_OBJECT (5 samples, 0.02%)</title><rect x="173.0" y="101" width="0.3" height="15.0" fill="rgb(254,67,33)" rx="2" ry="2" />
<text x="176.03" y="111.5" ></text>
</g>
<g >
<title>stream_process (13 samples, 0.06%)</title><rect x="169.0" y="549" width="0.7" height="15.0" fill="rgb(254,91,42)" rx="2" ry="2" />
<text x="171.96" y="559.5" ></text>
</g>
<g >
<title>plugin_process_close (3 samples, 0.01%)</title><rect x="301.8" y="389" width="0.2" height="15.0" fill="rgb(246,104,23)" rx="2" ry="2" />
<text x="304.79" y="399.5" ></text>
</g>
<g >
<title>wg_mirror_get_linkinfo_from_mac (4 samples, 0.02%)</title><rect x="348.2" y="469" width="0.2" height="15.0" fill="rgb(223,198,26)" rx="2" ry="2" />
<text x="351.20" y="479.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (2 samples, 0.01%)</title><rect x="126.9" y="613" width="0.1" height="15.0" fill="rgb(254,64,32)" rx="2" ry="2" />
<text x="129.90" y="623.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (4 samples, 0.02%)</title><rect x="146.1" y="581" width="0.2" height="15.0" fill="rgb(248,201,1)" rx="2" ry="2" />
<text x="149.07" y="591.5" ></text>
</g>
<g >
<title>plugin_process_data (6 samples, 0.03%)</title><rect x="696.1" y="437" width="0.4" height="15.0" fill="rgb(234,99,35)" rx="2" ry="2" />
<text x="699.14" y="447.5" ></text>
</g>
<g >
<title>__strncat_sse2_unaligned (2 samples, 0.01%)</title><rect x="342.4" y="437" width="0.1" height="15.0" fill="rgb(250,9,15)" rx="2" ry="2" />
<text x="345.42" y="447.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="290.3" y="293" width="0.1" height="15.0" fill="rgb(217,30,19)" rx="2" ry="2" />
<text x="293.28" y="303.5" ></text>
</g>
<g >
<title>malloc (12 samples, 0.06%)</title><rect x="642.2" y="469" width="0.7" height="15.0" fill="rgb(238,221,16)" rx="2" ry="2" />
<text x="645.17" y="479.5" ></text>
</g>
<g >
<title>http_doWithEntity (13 samples, 0.06%)</title><rect x="695.1" y="533" width="0.7" height="15.0" fill="rgb(225,228,19)" rx="2" ry="2" />
<text x="698.08" y="543.5" ></text>
</g>
<g >
<title>sprintf (16 samples, 0.08%)</title><rect x="166.3" y="453" width="0.9" height="15.0" fill="rgb(248,194,52)" rx="2" ry="2" />
<text x="169.30" y="463.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (6 samples, 0.03%)</title><rect x="276.4" y="421" width="0.3" height="15.0" fill="rgb(209,61,51)" rx="2" ry="2" />
<text x="279.36" y="431.5" ></text>
</g>
<g >
<title>http_callPluginField (6 samples, 0.03%)</title><rect x="696.1" y="469" width="0.4" height="15.0" fill="rgb(240,7,39)" rx="2" ry="2" />
<text x="699.14" y="479.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="315.8" y="309" width="0.2" height="15.0" fill="rgb(227,156,44)" rx="2" ry="2" />
<text x="318.82" y="319.5" ></text>
</g>
<g >
<title>sk_new (2 samples, 0.01%)</title><rect x="253.4" y="213" width="0.1" height="15.0" fill="rgb(221,171,25)" rx="2" ry="2" />
<text x="256.42" y="223.5" ></text>
</g>
<g >
<title>bn_expand2 (2 samples, 0.01%)</title><rect x="328.0" y="213" width="0.2" height="15.0" fill="rgb(222,115,36)" rx="2" ry="2" />
<text x="331.03" y="223.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="166.1" y="565" width="0.2" height="15.0" fill="rgb(212,160,33)" rx="2" ry="2" />
<text x="169.07" y="575.5" ></text>
</g>
<g >
<title>Maat_clean_status (11 samples, 0.05%)</title><rect x="515.5" y="485" width="0.7" height="15.0" fill="rgb(224,160,0)" rx="2" ry="2" />
<text x="518.54" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (11 samples, 0.05%)</title><rect x="268.5" y="485" width="0.7" height="15.0" fill="rgb(248,182,54)" rx="2" ry="2" />
<text x="271.52" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="254.7" y="245" width="0.1" height="15.0" fill="rgb(207,165,53)" rx="2" ry="2" />
<text x="257.72" y="255.5" ></text>
</g>
<g >
<title>OBJ_nid2obj (2 samples, 0.01%)</title><rect x="327.3" y="373" width="0.1" height="15.0" fill="rgb(211,72,42)" rx="2" ry="2" />
<text x="330.27" y="383.5" ></text>
</g>
<g >
<title>malloc (4 samples, 0.02%)</title><rect x="358.2" y="405" width="0.3" height="15.0" fill="rgb(234,224,4)" rx="2" ry="2" />
<text x="361.23" y="415.5" ></text>
</g>
<g >
<title>plugin_process_data (4 samples, 0.02%)</title><rect x="303.5" y="341" width="0.2" height="15.0" fill="rgb(243,67,12)" rx="2" ry="2" />
<text x="306.50" y="351.5" ></text>
</g>
<g >
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="712.7" y="357" width="0.3" height="15.0" fill="rgb(217,107,27)" rx="2" ry="2" />
<text x="715.72" y="367.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="366.0" y="405" width="0.1" height="15.0" fill="rgb(245,194,4)" rx="2" ry="2" />
<text x="369.02" y="415.5" ></text>
</g>
<g >
<title>tsg_get_fqdn_category_id (2 samples, 0.01%)</title><rect x="345.8" y="469" width="0.2" height="15.0" fill="rgb(247,110,10)" rx="2" ry="2" />
<text x="348.85" y="479.5" ></text>
</g>
<g >
<title>sapp_marsio_5 (11,812 samples, 59.04%)</title><rect x="17.0" y="709" width="696.7" height="15.0" fill="rgb(225,153,50)" rx="2" ry="2" />
<text x="19.96" y="719.5" >sapp_marsio_5</text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="394.0" y="469" width="0.2" height="15.0" fill="rgb(247,201,42)" rx="2" ry="2" />
<text x="397.03" y="479.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="394.4" y="453" width="0.2" height="15.0" fill="rgb(253,23,3)" rx="2" ry="2" />
<text x="397.45" y="463.5" ></text>
</g>
<g >
<title>tsg_send_log (6 samples, 0.03%)</title><rect x="182.3" y="661" width="0.3" height="15.0" fill="rgb(212,43,45)" rx="2" ry="2" />
<text x="185.29" y="671.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (74 samples, 0.37%)</title><rect x="474.2" y="501" width="4.4" height="15.0" fill="rgb(222,42,17)" rx="2" ry="2" />
<text x="477.25" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="398.1" y="357" width="0.1" height="15.0" fill="rgb(238,77,26)" rx="2" ry="2" />
<text x="401.10" y="367.5" ></text>
</g>
<g >
<title>SSL_ENTRY (9 samples, 0.04%)</title><rect x="168.1" y="517" width="0.5" height="15.0" fill="rgb(244,57,27)" rx="2" ry="2" />
<text x="171.07" y="527.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (47 samples, 0.23%)</title><rect x="281.0" y="421" width="2.8" height="15.0" fill="rgb(239,87,21)" rx="2" ry="2" />
<text x="284.02" y="431.5" ></text>
</g>
<g >
<title>realloc (2 samples, 0.01%)</title><rect x="399.6" y="341" width="0.1" height="15.0" fill="rgb(219,72,30)" rx="2" ry="2" />
<text x="402.58" y="351.5" ></text>
</g>
<g >
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="358.0" y="421" width="0.5" height="15.0" fill="rgb(207,104,41)" rx="2" ry="2" />
<text x="361.00" y="431.5" ></text>
</g>
<g >
<title>plugin_process_data (6 samples, 0.03%)</title><rect x="173.3" y="405" width="0.4" height="15.0" fill="rgb(209,10,8)" rx="2" ry="2" />
<text x="176.32" y="415.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="253.4" y="197" width="0.1" height="15.0" fill="rgb(238,104,33)" rx="2" ry="2" />
<text x="256.42" y="207.5" ></text>
</g>
<g >
<title>set_session_attributes (7 samples, 0.03%)</title><rect x="181.2" y="469" width="0.4" height="15.0" fill="rgb(247,116,27)" rx="2" ry="2" />
<text x="184.23" y="479.5" ></text>
</g>
<g >
<title>__strchrnul (5 samples, 0.02%)</title><rect x="283.3" y="389" width="0.3" height="15.0" fill="rgb(227,77,42)" rx="2" ry="2" />
<text x="286.32" y="399.5" ></text>
</g>
<g >
<title>sys_nanosleep (67 samples, 0.33%)</title><rect x="142.0" y="661" width="4.0" height="15.0" fill="rgb(212,88,7)" rx="2" ry="2" />
<text x="145.00" y="671.5" ></text>
</g>
<g >
<title>sk_pop_free (2 samples, 0.01%)</title><rect x="254.7" y="277" width="0.1" height="15.0" fill="rgb(238,192,40)" rx="2" ry="2" />
<text x="257.72" y="287.5" ></text>
</g>
<g >
<title>start_thread (2 samples, 0.01%)</title><rect x="12.9" y="677" width="0.1" height="15.0" fill="rgb(218,46,46)" rx="2" ry="2" />
<text x="15.89" y="687.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (16 samples, 0.08%)</title><rect x="697.4" y="533" width="0.9" height="15.0" fill="rgb(253,92,16)" rx="2" ry="2" />
<text x="700.38" y="543.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="320.8" y="149" width="0.2" height="15.0" fill="rgb(242,67,46)" rx="2" ry="2" />
<text x="323.84" y="159.5" ></text>
</g>
<g >
<title>cJSON_Delete (5 samples, 0.02%)</title><rect x="700.0" y="549" width="0.3" height="15.0" fill="rgb(215,57,7)" rx="2" ry="2" />
<text x="702.98" y="559.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (2 samples, 0.01%)</title><rect x="253.9" y="229" width="0.1" height="15.0" fill="rgb(249,113,50)" rx="2" ry="2" />
<text x="256.89" y="239.5" ></text>
</g>
<g >
<title>net_rx_action (5 samples, 0.02%)</title><rect x="1177.3" y="533" width="0.3" height="15.0" fill="rgb(221,70,38)" rx="2" ry="2" />
<text x="1180.26" y="543.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (8 samples, 0.04%)</title><rect x="712.7" y="469" width="0.4" height="15.0" fill="rgb(232,120,28)" rx="2" ry="2" />
<text x="715.66" y="479.5" ></text>
</g>
<g >
<title>_itoa_word (3 samples, 0.01%)</title><rect x="712.3" y="629" width="0.2" height="15.0" fill="rgb(254,3,41)" rx="2" ry="2" />
<text x="715.30" y="639.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (2 samples, 0.01%)</title><rect x="253.1" y="181" width="0.1" height="15.0" fill="rgb(240,25,5)" rx="2" ry="2" />
<text x="256.07" y="191.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (17 samples, 0.08%)</title><rect x="372.2" y="405" width="1.0" height="15.0" fill="rgb(227,169,10)" rx="2" ry="2" />
<text x="375.21" y="415.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="328.0" y="165" width="0.2" height="15.0" fill="rgb(206,64,31)" rx="2" ry="2" />
<text x="331.03" y="175.5" ></text>
</g>
<g >
<title>[libprotoident.so] (84 samples, 0.42%)</title><rect x="530.3" y="469" width="5.0" height="15.0" fill="rgb(209,49,46)" rx="2" ry="2" />
<text x="533.34" y="479.5" ></text>
</g>
<g >
<title>sk_pop_free (5 samples, 0.02%)</title><rect x="323.2" y="213" width="0.3" height="15.0" fill="rgb(227,70,32)" rx="2" ry="2" />
<text x="326.20" y="223.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (4 samples, 0.02%)</title><rect x="1177.3" y="357" width="0.3" height="15.0" fill="rgb(217,156,41)" rx="2" ry="2" />
<text x="1180.32" y="367.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (2 samples, 0.01%)</title><rect x="701.0" y="581" width="0.2" height="15.0" fill="rgb(215,56,21)" rx="2" ry="2" />
<text x="704.04" y="591.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (24 samples, 0.12%)</title><rect x="348.4" y="437" width="1.5" height="15.0" fill="rgb(235,54,48)" rx="2" ry="2" />
<text x="351.44" y="447.5" ></text>
</g>
<g >
<title>free (6 samples, 0.03%)</title><rect x="273.9" y="501" width="0.3" height="15.0" fill="rgb(248,123,40)" rx="2" ry="2" />
<text x="276.89" y="511.5" ></text>
</g>
<g >
<title>sk_new (4 samples, 0.02%)</title><rect x="322.9" y="229" width="0.2" height="15.0" fill="rgb(229,93,39)" rx="2" ry="2" />
<text x="325.90" y="239.5" ></text>
</g>
<g >
<title>MESA_htable_add (3 samples, 0.01%)</title><rect x="235.1" y="581" width="0.2" height="15.0" fill="rgb(231,0,14)" rx="2" ry="2" />
<text x="238.14" y="591.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (22 samples, 0.11%)</title><rect x="257.5" y="533" width="1.3" height="15.0" fill="rgb(231,85,37)" rx="2" ry="2" />
<text x="260.55" y="543.5" ></text>
</g>
<g >
<title>[wire_graft_plug.so] (24 samples, 0.12%)</title><rect x="640.2" y="549" width="1.4" height="15.0" fill="rgb(246,39,30)" rx="2" ry="2" />
<text x="643.17" y="559.5" ></text>
</g>
<g >
<title>sprintf (4 samples, 0.02%)</title><rect x="640.5" y="501" width="0.3" height="15.0" fill="rgb(225,152,9)" rx="2" ry="2" />
<text x="643.52" y="511.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="696.5" y="389" width="0.1" height="15.0" fill="rgb(214,163,16)" rx="2" ry="2" />
<text x="699.50" y="399.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="174.1" y="469" width="0.1" height="15.0" fill="rgb(237,39,44)" rx="2" ry="2" />
<text x="177.09" y="479.5" ></text>
</g>
<g >
<title>_IO_no_init (2 samples, 0.01%)</title><rect x="468.1" y="389" width="0.1" height="15.0" fill="rgb(232,148,6)" rx="2" ry="2" />
<text x="471.06" y="399.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (4 samples, 0.02%)</title><rect x="14.1" y="629" width="0.3" height="15.0" fill="rgb(220,112,45)" rx="2" ry="2" />
<text x="17.13" y="639.5" ></text>
</g>
<g >
<title>vfprintf (24 samples, 0.12%)</title><rect x="711.1" y="645" width="1.4" height="15.0" fill="rgb(250,20,18)" rx="2" ry="2" />
<text x="714.06" y="655.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (10 samples, 0.05%)</title><rect x="177.5" y="469" width="0.5" height="15.0" fill="rgb(254,4,54)" rx="2" ry="2" />
<text x="180.45" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="329.8" y="261" width="0.2" height="15.0" fill="rgb(206,103,3)" rx="2" ry="2" />
<text x="332.80" y="271.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="288.5" y="325" width="0.1" height="15.0" fill="rgb(211,0,26)" rx="2" ry="2" />
<text x="291.46" y="335.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (2 samples, 0.01%)</title><rect x="14.5" y="661" width="0.2" height="15.0" fill="rgb(205,217,48)" rx="2" ry="2" />
<text x="17.54" y="671.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (47 samples, 0.23%)</title><rect x="694.1" y="581" width="2.7" height="15.0" fill="rgb(213,209,47)" rx="2" ry="2" />
<text x="697.08" y="591.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.02%)</title><rect x="392.3" y="501" width="0.3" height="15.0" fill="rgb(235,159,38)" rx="2" ry="2" />
<text x="395.32" y="511.5" ></text>
</g>
<g >
<title>set_session_attributes (5 samples, 0.02%)</title><rect x="361.9" y="405" width="0.3" height="15.0" fill="rgb(231,215,21)" rx="2" ry="2" />
<text x="364.95" y="415.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (4 samples, 0.02%)</title><rect x="346.0" y="453" width="0.3" height="15.0" fill="rgb(215,129,49)" rx="2" ry="2" />
<text x="349.02" y="463.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (41 samples, 0.20%)</title><rect x="690.2" y="549" width="2.4" height="15.0" fill="rgb(208,89,36)" rx="2" ry="2" />
<text x="693.18" y="559.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="693.3" y="629" width="0.2" height="15.0" fill="rgb(239,25,43)" rx="2" ry="2" />
<text x="696.25" y="639.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.01%)</title><rect x="12.7" y="661" width="0.1" height="15.0" fill="rgb(206,16,39)" rx="2" ry="2" />
<text x="15.71" y="671.5" ></text>
</g>
<g >
<title>rd_kafka_thread_main (4 samples, 0.02%)</title><rect x="16.6" y="645" width="0.2" height="15.0" fill="rgb(253,229,33)" rx="2" ry="2" />
<text x="19.61" y="655.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (16 samples, 0.08%)</title><rect x="180.7" y="565" width="0.9" height="15.0" fill="rgb(231,187,4)" rx="2" ry="2" />
<text x="183.69" y="575.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="173.8" y="293" width="0.2" height="15.0" fill="rgb(235,180,45)" rx="2" ry="2" />
<text x="176.79" y="303.5" ></text>
</g>
<g >
<title>plugin_process_close (47 samples, 0.23%)</title><rect x="292.6" y="389" width="2.8" height="15.0" fill="rgb(222,11,13)" rx="2" ry="2" />
<text x="295.58" y="399.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="173.8" y="373" width="0.2" height="15.0" fill="rgb(232,221,42)" rx="2" ry="2" />
<text x="176.79" y="383.5" ></text>
</g>
<g >
<title>free (4 samples, 0.02%)</title><rect x="393.6" y="485" width="0.3" height="15.0" fill="rgb(250,19,9)" rx="2" ry="2" />
<text x="396.62" y="495.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="643.0" y="533" width="0.1" height="15.0" fill="rgb(243,108,40)" rx="2" ry="2" />
<text x="646.00" y="543.5" ></text>
</g>
<g >
<title>qm_malloc_default (2 samples, 0.01%)</title><rect x="161.6" y="677" width="0.1" height="15.0" fill="rgb(215,31,9)" rx="2" ry="2" />
<text x="164.58" y="687.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="548.6" y="549" width="0.1" height="15.0" fill="rgb(218,3,28)" rx="2" ry="2" />
<text x="551.63" y="559.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="179.6" y="341" width="0.1" height="15.0" fill="rgb(209,193,14)" rx="2" ry="2" />
<text x="182.57" y="351.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (169 samples, 0.84%)</title><rect x="356.8" y="453" width="10.0" height="15.0" fill="rgb(213,223,53)" rx="2" ry="2" />
<text x="359.82" y="463.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (2 samples, 0.01%)</title><rect x="12.9" y="629" width="0.1" height="15.0" fill="rgb(242,110,28)" rx="2" ry="2" />
<text x="15.89" y="639.5" ></text>
</g>
<g >
<title>tsg_send_log (56 samples, 0.28%)</title><rect x="397.3" y="405" width="3.3" height="15.0" fill="rgb(241,130,42)" rx="2" ry="2" />
<text x="400.28" y="415.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="696.0" y="453" width="0.1" height="15.0" fill="rgb(238,16,35)" rx="2" ry="2" />
<text x="699.02" y="463.5" ></text>
</g>
<g >
<title>plugin_process_close (7 samples, 0.03%)</title><rect x="690.5" y="469" width="0.5" height="15.0" fill="rgb(234,220,28)" rx="2" ry="2" />
<text x="693.54" y="479.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (2 samples, 0.01%)</title><rect x="10.2" y="645" width="0.2" height="15.0" fill="rgb(210,181,4)" rx="2" ry="2" />
<text x="13.24" y="655.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="173.7" y="405" width="0.3" height="15.0" fill="rgb(253,93,37)" rx="2" ry="2" />
<text x="176.68" y="415.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="326.8" y="261" width="0.3" height="15.0" fill="rgb(213,197,52)" rx="2" ry="2" />
<text x="329.79" y="271.5" ></text>
</g>
<g >
<title>[librulescan.so.2.2] (32 samples, 0.16%)</title><rect x="163.8" y="693" width="1.9" height="15.0" fill="rgb(224,122,54)" rx="2" ry="2" />
<text x="166.83" y="703.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="370.3" y="437" width="0.1" height="15.0" fill="rgb(244,65,0)" rx="2" ry="2" />
<text x="373.26" y="447.5" ></text>
</g>
<g >
<title>ASN1_item_free (5 samples, 0.02%)</title><rect x="323.2" y="197" width="0.3" height="15.0" fill="rgb(242,142,21)" rx="2" ry="2" />
<text x="326.20" y="207.5" ></text>
</g>
<g >
<title>vfprintf (5 samples, 0.02%)</title><rect x="697.8" y="469" width="0.3" height="15.0" fill="rgb(230,84,10)" rx="2" ry="2" />
<text x="700.79" y="479.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="173.4" y="325" width="0.2" height="15.0" fill="rgb(230,200,19)" rx="2" ry="2" />
<text x="176.44" y="335.5" ></text>
</g>
<g >
<title>hrtimer_init (2 samples, 0.01%)</title><rect x="190.2" y="613" width="0.1" height="15.0" fill="rgb(227,48,21)" rx="2" ry="2" />
<text x="193.19" y="623.5" ></text>
</g>
<g >
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="469.1" y="469" width="0.1" height="15.0" fill="rgb(246,207,49)" rx="2" ry="2" />
<text x="472.12" y="479.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (2 samples, 0.01%)</title><rect x="11.5" y="645" width="0.2" height="15.0" fill="rgb(211,119,26)" rx="2" ry="2" />
<text x="14.53" y="655.5" ></text>
</g>
<g >
<title>malloc (14 samples, 0.07%)</title><rect x="104.6" y="645" width="0.8" height="15.0" fill="rgb(223,62,53)" rx="2" ry="2" />
<text x="107.61" y="655.5" ></text>
</g>
<g >
<title>[sapp] (12 samples, 0.06%)</title><rect x="712.5" y="645" width="0.7" height="15.0" fill="rgb(228,167,8)" rx="2" ry="2" />
<text x="715.54" y="655.5" ></text>
</g>
<g >
<title>callback_dns_business_plug (158 samples, 0.79%)</title><rect x="697.2" y="677" width="9.3" height="15.0" fill="rgb(229,4,18)" rx="2" ry="2" />
<text x="700.20" y="687.5" ></text>
</g>
<g >
<title>wg_mirror_linkinfo_ntop (11 samples, 0.05%)</title><rect x="640.9" y="533" width="0.7" height="15.0" fill="rgb(216,90,54)" rx="2" ry="2" />
<text x="643.93" y="543.5" ></text>
</g>
<g >
<title>rd_kafka_ProduceRequest (2 samples, 0.01%)</title><rect x="14.2" y="597" width="0.2" height="15.0" fill="rgb(233,18,36)" rx="2" ry="2" />
<text x="17.25" y="607.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (4 samples, 0.02%)</title><rect x="113.2" y="645" width="0.3" height="15.0" fill="rgb(228,194,18)" rx="2" ry="2" />
<text x="116.22" y="655.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="327.9" y="293" width="0.3" height="15.0" fill="rgb(238,185,22)" rx="2" ry="2" />
<text x="330.91" y="303.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="396.6" y="373" width="0.1" height="15.0" fill="rgb(252,66,31)" rx="2" ry="2" />
<text x="399.63" y="383.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="181.9" y="501" width="0.2" height="15.0" fill="rgb(208,130,46)" rx="2" ry="2" />
<text x="184.93" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (12 samples, 0.06%)</title><rect x="104.7" y="629" width="0.7" height="15.0" fill="rgb(237,16,35)" rx="2" ry="2" />
<text x="107.73" y="639.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="169.2" y="213" width="0.3" height="15.0" fill="rgb(214,114,40)" rx="2" ry="2" />
<text x="172.19" y="223.5" ></text>
</g>
<g >
<title>http_callPlugin (39 samples, 0.19%)</title><rect x="289.6" y="405" width="2.3" height="15.0" fill="rgb(216,108,17)" rx="2" ry="2" />
<text x="292.64" y="415.5" ></text>
</g>
<g >
<title>sapp_get_platform_opt (2 samples, 0.01%)</title><rect x="380.0" y="469" width="0.1" height="15.0" fill="rgb(210,163,34)" rx="2" ry="2" />
<text x="383.00" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="171.0" y="309" width="0.1" height="15.0" fill="rgb(221,103,4)" rx="2" ry="2" />
<text x="173.96" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="175.7" y="373" width="0.3" height="15.0" fill="rgb(221,193,28)" rx="2" ry="2" />
<text x="178.74" y="383.5" ></text>
</g>
<g >
<title>http_doWithEntity (24 samples, 0.12%)</title><rect x="170.7" y="485" width="1.4" height="15.0" fill="rgb(205,85,14)" rx="2" ry="2" />
<text x="173.67" y="495.5" ></text>
</g>
<g >
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="303.5" y="357" width="0.2" height="15.0" fill="rgb(212,179,43)" rx="2" ry="2" />
<text x="306.50" y="367.5" ></text>
</g>
<g >
<title>netif_receive_skb_internal (4 samples, 0.02%)</title><rect x="1177.3" y="469" width="0.3" height="15.0" fill="rgb(238,88,10)" rx="2" ry="2" />
<text x="1180.32" y="479.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="168.8" y="325" width="0.1" height="15.0" fill="rgb(251,74,36)" rx="2" ry="2" />
<text x="171.78" y="335.5" ></text>
</g>
<g >
<title>MESA_get_stream_opt (9 samples, 0.04%)</title><rect x="357.2" y="437" width="0.5" height="15.0" fill="rgb(254,18,1)" rx="2" ry="2" />
<text x="360.17" y="447.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (21 samples, 0.10%)</title><rect x="641.8" y="533" width="1.2" height="15.0" fill="rgb(209,148,47)" rx="2" ry="2" />
<text x="644.76" y="543.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="400.3" y="341" width="0.2" height="15.0" fill="rgb(213,218,20)" rx="2" ry="2" />
<text x="403.34" y="351.5" ></text>
</g>
<g >
<title>rd_kafka_toppar_producer_serve (2 samples, 0.01%)</title><rect x="14.2" y="613" width="0.2" height="15.0" fill="rgb(210,0,53)" rx="2" ry="2" />
<text x="17.25" y="623.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="705.5" y="517" width="0.1" height="15.0" fill="rgb(243,137,46)" rx="2" ry="2" />
<text x="708.46" y="527.5" ></text>
</g>
<g >
<title>_IO_vsprintf (15 samples, 0.07%)</title><rect x="701.7" y="485" width="0.9" height="15.0" fill="rgb(244,101,11)" rx="2" ry="2" />
<text x="704.69" y="495.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (2 samples, 0.01%)</title><rect x="99.7" y="677" width="0.1" height="15.0" fill="rgb(238,132,9)" rx="2" ry="2" />
<text x="102.71" y="687.5" ></text>
</g>
<g >
<title>std::_Rb_tree_increment (6 samples, 0.03%)</title><rect x="535.3" y="469" width="0.4" height="15.0" fill="rgb(236,132,2)" rx="2" ry="2" />
<text x="538.30" y="479.5" ></text>
</g>
<g >
<title>free (8 samples, 0.04%)</title><rect x="638.8" y="581" width="0.4" height="15.0" fill="rgb(212,8,28)" rx="2" ry="2" />
<text x="641.75" y="591.5" ></text>
</g>
<g >
<title>realloc (5 samples, 0.02%)</title><rect x="329.7" y="293" width="0.3" height="15.0" fill="rgb(210,211,24)" rx="2" ry="2" />
<text x="332.68" y="303.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="362.6" y="405" width="0.2" height="15.0" fill="rgb(211,174,50)" rx="2" ry="2" />
<text x="365.60" y="415.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (611 samples, 3.05%)</title><rect x="442.6" y="549" width="36.1" height="15.0" fill="rgb(236,42,36)" rx="2" ry="2" />
<text x="445.64" y="559.5" >str..</text>
</g>
<g >
<title>numa_migrate_prep (3 samples, 0.01%)</title><rect x="138.1" y="533" width="0.1" height="15.0" fill="rgb(208,145,7)" rx="2" ry="2" />
<text x="141.05" y="543.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="327.9" y="341" width="0.3" height="15.0" fill="rgb(228,114,21)" rx="2" ry="2" />
<text x="330.86" y="351.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new (3 samples, 0.01%)</title><rect x="307.9" y="309" width="0.2" height="15.0" fill="rgb(254,119,3)" rx="2" ry="2" />
<text x="310.92" y="319.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="99.7" y="421" width="0.1" height="15.0" fill="rgb(247,102,25)" rx="2" ry="2" />
<text x="102.71" y="431.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="306.7" y="341" width="0.1" height="15.0" fill="rgb(239,62,44)" rx="2" ry="2" />
<text x="309.68" y="351.5" ></text>
</g>
<g >
<title>wg_mirror_linkinfo_ntop (4 samples, 0.02%)</title><rect x="485.9" y="485" width="0.3" height="15.0" fill="rgb(251,160,41)" rx="2" ry="2" />
<text x="488.93" y="495.5" ></text>
</g>
<g >
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="713.0" y="389" width="0.1" height="15.0" fill="rgb(219,58,6)" rx="2" ry="2" />
<text x="715.95" y="399.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="535.9" y="485" width="0.3" height="15.0" fill="rgb(233,3,26)" rx="2" ry="2" />
<text x="538.95" y="495.5" ></text>
</g>
<g >
<title>rd_kafka_msg_partitioner (8 samples, 0.04%)</title><rect x="366.3" y="405" width="0.4" height="15.0" fill="rgb(217,80,3)" rx="2" ry="2" />
<text x="369.25" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="365.5" y="357" width="0.2" height="15.0" fill="rgb(222,142,29)" rx="2" ry="2" />
<text x="368.55" y="367.5" ></text>
</g>
<g >
<title>http_positioningACompleteLine (4 samples, 0.02%)</title><rect x="289.4" y="421" width="0.2" height="15.0" fill="rgb(216,185,46)" rx="2" ry="2" />
<text x="292.40" y="431.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (12 samples, 0.06%)</title><rect x="172.1" y="357" width="0.8" height="15.0" fill="rgb(241,116,54)" rx="2" ry="2" />
<text x="175.14" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="701.5" y="453" width="0.2" height="15.0" fill="rgb(225,103,3)" rx="2" ry="2" />
<text x="704.51" y="463.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="537.8" y="405" width="0.2" height="15.0" fill="rgb(218,155,37)" rx="2" ry="2" />
<text x="540.77" y="415.5" ></text>
</g>
<g >
<title>project_req_get_struct (12 samples, 0.06%)</title><rect x="546.6" y="501" width="0.7" height="15.0" fill="rgb(215,33,13)" rx="2" ry="2" />
<text x="549.56" y="511.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="321.0" y="165" width="0.1" height="15.0" fill="rgb(209,220,28)" rx="2" ry="2" />
<text x="323.95" y="175.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="293.5" y="261" width="0.2" height="15.0" fill="rgb(242,162,11)" rx="2" ry="2" />
<text x="296.53" y="271.5" ></text>
</g>
<g >
<title>CKRF::SearchMem (281 samples, 1.40%)</title><rect x="83.1" y="661" width="16.6" height="15.0" fill="rgb(223,87,29)" rx="2" ry="2" />
<text x="86.08" y="671.5" ></text>
</g>
<g >
<title>plugin_process_data (12 samples, 0.06%)</title><rect x="287.6" y="373" width="0.7" height="15.0" fill="rgb(254,19,46)" rx="2" ry="2" />
<text x="290.63" y="383.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="713.0" y="373" width="0.1" height="15.0" fill="rgb(232,177,53)" rx="2" ry="2" />
<text x="715.95" y="383.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_mark_v4 (312 samples, 1.56%)</title><rect x="423.2" y="533" width="18.4" height="15.0" fill="rgb(238,92,22)" rx="2" ry="2" />
<text x="426.23" y="543.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (12 samples, 0.06%)</title><rect x="250.7" y="309" width="0.7" height="15.0" fill="rgb(247,80,28)" rx="2" ry="2" />
<text x="253.71" y="319.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (276 samples, 1.38%)</title><rect x="316.0" y="437" width="16.3" height="15.0" fill="rgb(241,14,29)" rx="2" ry="2" />
<text x="319.00" y="447.5" ></text>
</g>
<g >
<title>malloc (8 samples, 0.04%)</title><rect x="380.2" y="485" width="0.4" height="15.0" fill="rgb(232,209,38)" rx="2" ry="2" />
<text x="383.17" y="495.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="317.7" y="325" width="0.1" height="15.0" fill="rgb(242,37,10)" rx="2" ry="2" />
<text x="320.65" y="335.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="168.8" y="341" width="0.1" height="15.0" fill="rgb(233,173,42)" rx="2" ry="2" />
<text x="171.78" y="351.5" ></text>
</g>
<g >
<title>http_doWithStartLine (6 samples, 0.03%)</title><rect x="690.2" y="517" width="0.3" height="15.0" fill="rgb(229,80,36)" rx="2" ry="2" />
<text x="693.18" y="527.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="567.4" y="613" width="0.2" height="15.0" fill="rgb(224,40,42)" rx="2" ry="2" />
<text x="570.44" y="623.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="326.1" y="357" width="0.3" height="15.0" fill="rgb(210,54,41)" rx="2" ry="2" />
<text x="329.15" y="367.5" ></text>
</g>
<g >
<title>realloc (2 samples, 0.01%)</title><rect x="712.8" y="325" width="0.2" height="15.0" fill="rgb(207,159,29)" rx="2" ry="2" />
<text x="715.83" y="335.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (10 samples, 0.05%)</title><rect x="177.5" y="517" width="0.5" height="15.0" fill="rgb(239,100,25)" rx="2" ry="2" />
<text x="180.45" y="527.5" ></text>
</g>
<g >
<title>tsg_scan_app_properties_policy (2 samples, 0.01%)</title><rect x="174.1" y="501" width="0.1" height="15.0" fill="rgb(233,142,35)" rx="2" ry="2" />
<text x="177.09" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="341.4" y="421" width="0.1" height="15.0" fill="rgb(253,74,15)" rx="2" ry="2" />
<text x="344.42" y="431.5" ></text>
</g>
<g >
<title>page_fault (3 samples, 0.01%)</title><rect x="274.2" y="501" width="0.2" height="15.0" fill="rgb(228,37,54)" rx="2" ry="2" />
<text x="277.24" y="511.5" ></text>
</g>
<g >
<title>cJSON_Delete (3 samples, 0.01%)</title><rect x="705.4" y="581" width="0.2" height="15.0" fill="rgb(239,134,36)" rx="2" ry="2" />
<text x="708.40" y="591.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="179.7" y="501" width="0.2" height="15.0" fill="rgb(228,120,33)" rx="2" ry="2" />
<text x="182.69" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="321.2" y="117" width="0.3" height="15.0" fill="rgb(218,156,5)" rx="2" ry="2" />
<text x="324.25" y="127.5" ></text>
</g>
<g >
<title>wg_mirror_linkinfo_ntop (6 samples, 0.03%)</title><rect x="537.8" y="501" width="0.3" height="15.0" fill="rgb(249,77,50)" rx="2" ry="2" />
<text x="540.77" y="511.5" ></text>
</g>
<g >
<title>_IO_vfscanf (11 samples, 0.05%)</title><rect x="468.2" y="389" width="0.6" height="15.0" fill="rgb(235,38,40)" rx="2" ry="2" />
<text x="471.17" y="399.5" ></text>
</g>
<g >
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="169.0" y="341" width="0.2" height="15.0" fill="rgb(220,179,46)" rx="2" ry="2" />
<text x="172.02" y="351.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="178.1" y="533" width="0.2" height="15.0" fill="rgb(206,95,23)" rx="2" ry="2" />
<text x="181.10" y="543.5" ></text>
</g>
<g >
<title>ip_rcv_finish (4 samples, 0.02%)</title><rect x="1177.3" y="405" width="0.3" height="15.0" fill="rgb(240,197,0)" rx="2" ry="2" />
<text x="1180.32" y="415.5" ></text>
</g>
<g >
<title>TSG_MASTER_TCPALL_ENTRY (57 samples, 0.28%)</title><rect x="457.2" y="501" width="3.4" height="15.0" fill="rgb(205,66,4)" rx="2" ry="2" />
<text x="460.20" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so] (4 samples, 0.02%)</title><rect x="161.0" y="677" width="0.2" height="15.0" fill="rgb(229,48,47)" rx="2" ry="2" />
<text x="163.99" y="687.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new (9 samples, 0.04%)</title><rect x="704.9" y="549" width="0.5" height="15.0" fill="rgb(222,121,45)" rx="2" ry="2" />
<text x="707.87" y="559.5" ></text>
</g>
<g >
<title>[fw_http_plug.so] (3 samples, 0.01%)</title><rect x="693.3" y="613" width="0.1" height="15.0" fill="rgb(234,59,40)" rx="2" ry="2" />
<text x="696.25" y="623.5" ></text>
</g>
<g >
<title>rdk:broker69 (2 samples, 0.01%)</title><rect x="16.0" y="709" width="0.1" height="15.0" fill="rgb(234,195,17)" rx="2" ry="2" />
<text x="18.96" y="719.5" ></text>
</g>
<g >
<title>fn_vMemCpy (6 samples, 0.03%)</title><rect x="311.8" y="453" width="0.3" height="15.0" fill="rgb(235,61,53)" rx="2" ry="2" />
<text x="314.75" y="463.5" ></text>
</g>
<g >
<title>plugin_call_appentry (11 samples, 0.05%)</title><rect x="695.2" y="421" width="0.6" height="15.0" fill="rgb(222,227,37)" rx="2" ry="2" />
<text x="698.20" y="431.5" ></text>
</g>
<g >
<title>__do_page_fault (2 samples, 0.01%)</title><rect x="449.7" y="485" width="0.1" height="15.0" fill="rgb(231,24,40)" rx="2" ry="2" />
<text x="452.65" y="495.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="277.4" y="421" width="0.1" height="15.0" fill="rgb(242,25,31)" rx="2" ry="2" />
<text x="280.37" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (121 samples, 0.60%)</title><rect x="317.5" y="357" width="7.2" height="15.0" fill="rgb(240,173,52)" rx="2" ry="2" />
<text x="320.53" y="367.5" ></text>
</g>
<g >
<title>wg_mirror_linkinfo_ntop (8 samples, 0.04%)</title><rect x="395.6" y="437" width="0.4" height="15.0" fill="rgb(205,169,31)" rx="2" ry="2" />
<text x="398.57" y="447.5" ></text>
</g>
<g >
<title>malloc (20 samples, 0.10%)</title><rect x="139.6" y="645" width="1.2" height="15.0" fill="rgb(254,148,46)" rx="2" ry="2" />
<text x="142.64" y="655.5" ></text>
</g>
<g >
<title>plugin_process_data (4 samples, 0.02%)</title><rect x="295.6" y="341" width="0.2" height="15.0" fill="rgb(232,103,39)" rx="2" ry="2" />
<text x="298.59" y="351.5" ></text>
</g>
<g >
<title>counting_bloom_add (9 samples, 0.04%)</title><rect x="495.2" y="501" width="0.6" height="15.0" fill="rgb(225,191,17)" rx="2" ry="2" />
<text x="498.25" y="511.5" ></text>
</g>
<g >
<title>stream_process (10 samples, 0.05%)</title><rect x="712.7" y="533" width="0.5" height="15.0" fill="rgb(252,93,50)" rx="2" ry="2" />
<text x="715.66" y="543.5" ></text>
</g>
<g >
<title>ssl_analyseStream (371 samples, 1.85%)</title><rect x="310.6" y="469" width="21.9" height="15.0" fill="rgb(245,58,20)" rx="2" ry="2" />
<text x="313.63" y="479.5" >s..</text>
</g>
<g >
<title>free (6 samples, 0.03%)</title><rect x="456.5" y="453" width="0.3" height="15.0" fill="rgb(224,160,53)" rx="2" ry="2" />
<text x="459.50" y="463.5" ></text>
</g>
<g >
<title>TLD_cancel (2 samples, 0.01%)</title><rect x="704.1" y="549" width="0.1" height="15.0" fill="rgb(241,9,33)" rx="2" ry="2" />
<text x="707.10" y="559.5" ></text>
</g>
<g >
<title>PROT_PROCESS (24 samples, 0.12%)</title><rect x="691.1" y="437" width="1.4" height="15.0" fill="rgb(246,82,36)" rx="2" ry="2" />
<text x="694.13" y="447.5" ></text>
</g>
<g >
<title>Maat_hierarchy_region_compile (8 samples, 0.04%)</title><rect x="112.0" y="661" width="0.5" height="15.0" fill="rgb(224,80,42)" rx="2" ry="2" />
<text x="114.98" y="671.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.02%)</title><rect x="279.1" y="437" width="0.3" height="15.0" fill="rgb(238,94,46)" rx="2" ry="2" />
<text x="282.08" y="447.5" ></text>
</g>
<g >
<title>tsg_send_log (8 samples, 0.04%)</title><rect x="174.7" y="469" width="0.5" height="15.0" fill="rgb(228,189,11)" rx="2" ry="2" />
<text x="177.68" y="479.5" ></text>
</g>
<g >
<title>page_fault (3 samples, 0.01%)</title><rect x="105.3" y="613" width="0.1" height="15.0" fill="rgb(227,135,45)" rx="2" ry="2" />
<text x="108.26" y="623.5" ></text>
</g>
<g >
<title>cJSON_AddNumberToObject (2 samples, 0.01%)</title><rect x="538.0" y="485" width="0.1" height="15.0" fill="rgb(206,44,18)" rx="2" ry="2" />
<text x="541.01" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="512.8" y="437" width="0.1" height="15.0" fill="rgb(209,36,34)" rx="2" ry="2" />
<text x="515.77" y="447.5" ></text>
</g>
<g >
<title>plugin_call_ipentry (2 samples, 0.01%)</title><rect x="551.9" y="549" width="0.1" height="15.0" fill="rgb(226,50,39)" rx="2" ry="2" />
<text x="554.93" y="559.5" ></text>
</g>
<g >
<title>do_numa_page (4 samples, 0.02%)</title><rect x="138.0" y="549" width="0.2" height="15.0" fill="rgb(233,72,27)" rx="2" ry="2" />
<text x="140.99" y="559.5" ></text>
</g>
<g >
<title>sip_identify (4 samples, 0.02%)</title><rect x="517.7" y="501" width="0.3" height="15.0" fill="rgb(216,217,15)" rx="2" ry="2" />
<text x="520.72" y="511.5" ></text>
</g>
<g >
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="173.3" y="389" width="0.4" height="15.0" fill="rgb(233,191,22)" rx="2" ry="2" />
<text x="176.32" y="399.5" ></text>
</g>
<g >
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="250.8" y="277" width="0.4" height="15.0" fill="rgb(211,130,20)" rx="2" ry="2" />
<text x="253.77" y="287.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (3 samples, 0.01%)</title><rect x="171.4" y="309" width="0.2" height="15.0" fill="rgb(228,206,35)" rx="2" ry="2" />
<text x="174.38" y="319.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (8 samples, 0.04%)</title><rect x="180.7" y="533" width="0.5" height="15.0" fill="rgb(248,110,46)" rx="2" ry="2" />
<text x="183.69" y="543.5" ></text>
</g>
<g >
<title>http_positioningACompleteLine (4 samples, 0.02%)</title><rect x="304.4" y="421" width="0.3" height="15.0" fill="rgb(242,47,34)" rx="2" ry="2" />
<text x="307.44" y="431.5" ></text>
</g>
<g >
<title>plugin_call_appentry (9 samples, 0.04%)</title><rect x="329.4" y="341" width="0.6" height="15.0" fill="rgb(218,115,47)" rx="2" ry="2" />
<text x="332.45" y="351.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (3 samples, 0.01%)</title><rect x="169.0" y="517" width="0.2" height="15.0" fill="rgb(220,183,29)" rx="2" ry="2" />
<text x="172.02" y="527.5" ></text>
</g>
<g >
<title>tsg_send_log (18 samples, 0.09%)</title><rect x="307.0" y="325" width="1.1" height="15.0" fill="rgb(243,42,0)" rx="2" ry="2" />
<text x="310.03" y="335.5" ></text>
</g>
<g >
<title>tsg_app_id2name (2 samples, 0.01%)</title><rect x="172.7" y="341" width="0.2" height="15.0" fill="rgb(242,55,43)" rx="2" ry="2" />
<text x="175.73" y="351.5" ></text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="179.7" y="485" width="0.2" height="15.0" fill="rgb(223,202,9)" rx="2" ry="2" />
<text x="182.69" y="495.5" ></text>
</g>
<g >
<title>do_page_fault (4 samples, 0.02%)</title><rect x="268.9" y="453" width="0.3" height="15.0" fill="rgb(231,29,38)" rx="2" ry="2" />
<text x="271.93" y="463.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="173.8" y="325" width="0.2" height="15.0" fill="rgb(243,134,10)" rx="2" ry="2" />
<text x="176.79" y="335.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="166.1" y="197" width="0.1" height="15.0" fill="rgb(249,215,26)" rx="2" ry="2" />
<text x="169.07" y="207.5" ></text>
</g>
<g >
<title>inet_ntop (3 samples, 0.01%)</title><rect x="171.6" y="325" width="0.2" height="15.0" fill="rgb(228,167,17)" rx="2" ry="2" />
<text x="174.61" y="335.5" ></text>
</g>
<g >
<title>polling_stream_timeout (464 samples, 2.32%)</title><rect x="615.7" y="645" width="27.4" height="15.0" fill="rgb(225,35,48)" rx="2" ry="2" />
<text x="618.75" y="655.5" >p..</text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="169.2" y="309" width="0.3" height="15.0" fill="rgb(220,226,6)" rx="2" ry="2" />
<text x="172.19" y="319.5" ></text>
</g>
<g >
<title>PROT_PROCESS (15 samples, 0.07%)</title><rect x="331.3" y="389" width="0.9" height="15.0" fill="rgb(235,180,14)" rx="2" ry="2" />
<text x="334.34" y="399.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (9 samples, 0.04%)</title><rect x="329.4" y="309" width="0.6" height="15.0" fill="rgb(227,133,34)" rx="2" ry="2" />
<text x="332.45" y="319.5" ></text>
</g>
<g >
<title>marsio_send_burst_flush (317 samples, 1.58%)</title><rect x="597.1" y="645" width="18.6" height="15.0" fill="rgb(228,30,39)" rx="2" ry="2" />
<text x="600.05" y="655.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="699.6" y="469" width="0.1" height="15.0" fill="rgb(213,123,32)" rx="2" ry="2" />
<text x="702.56" y="479.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="328.2" y="341" width="0.1" height="15.0" fill="rgb(207,130,27)" rx="2" ry="2" />
<text x="331.21" y="351.5" ></text>
</g>
<g >
<title>__schedule (18 samples, 0.09%)</title><rect x="643.8" y="517" width="1.0" height="15.0" fill="rgb(205,26,21)" rx="2" ry="2" />
<text x="646.76" y="527.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (2 samples, 0.01%)</title><rect x="693.0" y="533" width="0.1" height="15.0" fill="rgb(244,24,7)" rx="2" ry="2" />
<text x="695.96" y="543.5" ></text>
</g>
<g >
<title>tsg_send_log (8 samples, 0.04%)</title><rect x="359.1" y="421" width="0.4" height="15.0" fill="rgb(206,9,34)" rx="2" ry="2" />
<text x="362.06" y="431.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="712.5" y="517" width="0.2" height="15.0" fill="rgb(250,44,37)" rx="2" ry="2" />
<text x="715.54" y="527.5" ></text>
</g>
<g >
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="259.8" y="501" width="0.2" height="15.0" fill="rgb(253,63,20)" rx="2" ry="2" />
<text x="262.85" y="511.5" ></text>
</g>
<g >
<title>stream_process_tcp (10 samples, 0.05%)</title><rect x="712.7" y="549" width="0.5" height="15.0" fill="rgb(247,214,40)" rx="2" ry="2" />
<text x="715.66" y="559.5" ></text>
</g>
<g >
<title>inet_ntop (2 samples, 0.01%)</title><rect x="175.5" y="453" width="0.1" height="15.0" fill="rgb(209,74,49)" rx="2" ry="2" />
<text x="178.50" y="463.5" ></text>
</g>
<g >
<title>ASN1_template_free (3 samples, 0.01%)</title><rect x="254.5" y="277" width="0.2" height="15.0" fill="rgb(250,34,49)" rx="2" ry="2" />
<text x="257.48" y="287.5" ></text>
</g>
<g >
<title>Maat_hierarchy_region_compile (19 samples, 0.09%)</title><rect x="106.6" y="661" width="1.1" height="15.0" fill="rgb(208,175,36)" rx="2" ry="2" />
<text x="109.55" y="671.5" ></text>
</g>
<g >
<title>do_page_fault (2 samples, 0.01%)</title><rect x="260.5" y="469" width="0.1" height="15.0" fill="rgb(227,69,46)" rx="2" ry="2" />
<text x="263.50" y="479.5" ></text>
</g>
<g >
<title>plugin_process_pending (5 samples, 0.02%)</title><rect x="690.2" y="453" width="0.3" height="15.0" fill="rgb(228,59,3)" rx="2" ry="2" />
<text x="693.24" y="463.5" ></text>
</g>
<g >
<title>plugin_call_appentry (43 samples, 0.21%)</title><rect x="297.8" y="325" width="2.5" height="15.0" fill="rgb(208,225,21)" rx="2" ry="2" />
<text x="300.77" y="335.5" ></text>
</g>
<g >
<title>[sapp] (29 samples, 0.14%)</title><rect x="247.9" y="517" width="1.7" height="15.0" fill="rgb(210,101,32)" rx="2" ry="2" />
<text x="250.93" y="527.5" ></text>
</g>
<g >
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="347.7" y="421" width="0.2" height="15.0" fill="rgb(233,197,46)" rx="2" ry="2" />
<text x="350.73" y="431.5" ></text>
</g>
<g >
<title>PROT_PROCESS (5 samples, 0.02%)</title><rect x="256.3" y="357" width="0.2" height="15.0" fill="rgb(212,28,13)" rx="2" ry="2" />
<text x="259.25" y="367.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="290.1" y="293" width="0.2" height="15.0" fill="rgb(225,39,51)" rx="2" ry="2" />
<text x="293.11" y="303.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="486.5" y="437" width="0.1" height="15.0" fill="rgb(234,121,15)" rx="2" ry="2" />
<text x="489.52" y="447.5" ></text>
</g>
<g >
<title>__snprintf (4 samples, 0.02%)</title><rect x="179.0" y="501" width="0.3" height="15.0" fill="rgb(215,100,45)" rx="2" ry="2" />
<text x="182.04" y="511.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCPALL_PLUG_ENTRY (8 samples, 0.04%)</title><rect x="369.3" y="485" width="0.4" height="15.0" fill="rgb(239,40,18)" rx="2" ry="2" />
<text x="372.26" y="495.5" ></text>
</g>
<g >
<title>page_fault (12 samples, 0.06%)</title><rect x="267.7" y="485" width="0.7" height="15.0" fill="rgb(238,95,48)" rx="2" ry="2" />
<text x="270.69" y="495.5" ></text>
</g>
<g >
<title>MV_Sketch_update (4 samples, 0.02%)</title><rect x="541.4" y="469" width="0.3" height="15.0" fill="rgb(217,136,47)" rx="2" ry="2" />
<text x="544.43" y="479.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="694.0" y="533" width="0.1" height="15.0" fill="rgb(208,197,33)" rx="2" ry="2" />
<text x="696.96" y="543.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="330.0" y="325" width="0.3" height="15.0" fill="rgb(244,134,36)" rx="2" ry="2" />
<text x="333.04" y="335.5" ></text>
</g>
<g >
<title>start_thread (2 samples, 0.01%)</title><rect x="14.9" y="677" width="0.1" height="15.0" fill="rgb(244,91,46)" rx="2" ry="2" />
<text x="17.90" y="687.5" ></text>
</g>
<g >
<title>malloc (5 samples, 0.02%)</title><rect x="309.7" y="453" width="0.3" height="15.0" fill="rgb(213,85,3)" rx="2" ry="2" />
<text x="312.69" y="463.5" ></text>
</g>
<g >
<title>record_link_info_tcpall_entry_raw (8 samples, 0.04%)</title><rect x="469.9" y="501" width="0.5" height="15.0" fill="rgb(232,138,4)" rx="2" ry="2" />
<text x="472.89" y="511.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (4 samples, 0.02%)</title><rect x="485.9" y="469" width="0.3" height="15.0" fill="rgb(225,126,50)" rx="2" ry="2" />
<text x="488.93" y="479.5" ></text>
</g>
<g >
<title>ssl_doWithCertificateDetail (6 samples, 0.03%)</title><rect x="173.3" y="453" width="0.4" height="15.0" fill="rgb(222,169,4)" rx="2" ry="2" />
<text x="176.32" y="463.5" ></text>
</g>
<g >
<title>ipv4_entry (17 samples, 0.08%)</title><rect x="180.7" y="661" width="1.0" height="15.0" fill="rgb(249,159,28)" rx="2" ry="2" />
<text x="183.69" y="671.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (4 samples, 0.02%)</title><rect x="375.7" y="405" width="0.3" height="15.0" fill="rgb(236,209,22)" rx="2" ry="2" />
<text x="378.75" y="415.5" ></text>
</g>
<g >
<title>sapp_mem_calloc (3 samples, 0.01%)</title><rect x="260.4" y="533" width="0.2" height="15.0" fill="rgb(239,184,10)" rx="2" ry="2" />
<text x="263.44" y="543.5" ></text>
</g>
<g >
<title>PROT_PROCESS (46 samples, 0.23%)</title><rect x="313.3" y="389" width="2.7" height="15.0" fill="rgb(231,217,2)" rx="2" ry="2" />
<text x="316.29" y="399.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (7 samples, 0.03%)</title><rect x="322.5" y="181" width="0.4" height="15.0" fill="rgb(252,176,6)" rx="2" ry="2" />
<text x="325.49" y="191.5" ></text>
</g>
<g >
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="698.9" y="501" width="0.1" height="15.0" fill="rgb(254,177,19)" rx="2" ry="2" />
<text x="701.91" y="511.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="332.4" y="437" width="0.1" height="15.0" fill="rgb(221,45,31)" rx="2" ry="2" />
<text x="335.40" y="447.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (13 samples, 0.06%)</title><rect x="326.5" y="357" width="0.8" height="15.0" fill="rgb(248,168,26)" rx="2" ry="2" />
<text x="329.50" y="367.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (5 samples, 0.02%)</title><rect x="255.0" y="357" width="0.2" height="15.0" fill="rgb(230,19,23)" rx="2" ry="2" />
<text x="257.95" y="367.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (4 samples, 0.02%)</title><rect x="526.0" y="469" width="0.3" height="15.0" fill="rgb(228,64,6)" rx="2" ry="2" />
<text x="529.04" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="369.8" y="453" width="0.2" height="15.0" fill="rgb(231,3,27)" rx="2" ry="2" />
<text x="372.79" y="463.5" ></text>
</g>
<g >
<title>__libc_calloc (2 samples, 0.01%)</title><rect x="179.7" y="373" width="0.1" height="15.0" fill="rgb(250,153,22)" rx="2" ry="2" />
<text x="182.69" y="383.5" ></text>
</g>
<g >
<title>sapp_get_platform_opt (5 samples, 0.02%)</title><rect x="546.2" y="485" width="0.3" height="15.0" fill="rgb(215,177,6)" rx="2" ry="2" />
<text x="549.21" y="495.5" ></text>
</g>
<g >
<title>cdf_read_header (2 samples, 0.01%)</title><rect x="693.4" y="565" width="0.1" height="15.0" fill="rgb(217,26,49)" rx="2" ry="2" />
<text x="696.43" y="575.5" ></text>
</g>
<g >
<title>qmdpi_worker_process (2 samples, 0.01%)</title><rect x="200.6" y="677" width="0.1" height="15.0" fill="rgb(244,43,40)" rx="2" ry="2" />
<text x="203.57" y="687.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="181.2" y="517" width="0.4" height="15.0" fill="rgb(205,95,5)" rx="2" ry="2" />
<text x="184.23" y="527.5" ></text>
</g>
<g >
<title>sys_poll (2 samples, 0.01%)</title><rect x="10.8" y="645" width="0.1" height="15.0" fill="rgb(216,211,39)" rx="2" ry="2" />
<text x="13.83" y="655.5" ></text>
</g>
<g >
<title>scaling_bloom_add (10 samples, 0.05%)</title><rect x="495.2" y="517" width="0.6" height="15.0" fill="rgb(251,84,37)" rx="2" ry="2" />
<text x="498.19" y="527.5" ></text>
</g>
<g >
<title>_IO_vfscanf (4 samples, 0.02%)</title><rect x="702.6" y="469" width="0.3" height="15.0" fill="rgb(243,39,40)" rx="2" ry="2" />
<text x="705.63" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="399.4" y="357" width="0.3" height="15.0" fill="rgb(206,35,23)" rx="2" ry="2" />
<text x="402.40" y="367.5" ></text>
</g>
<g >
<title>do_page_fault (2 samples, 0.01%)</title><rect x="250.1" y="485" width="0.1" height="15.0" fill="rgb(243,56,24)" rx="2" ry="2" />
<text x="253.12" y="495.5" ></text>
</g>
<g >
<title>page_fault (4 samples, 0.02%)</title><rect x="368.8" y="453" width="0.2" height="15.0" fill="rgb(234,26,4)" rx="2" ry="2" />
<text x="371.79" y="463.5" ></text>
</g>
<g >
<title>ASN1_STRING_free (2 samples, 0.01%)</title><rect x="325.0" y="261" width="0.1" height="15.0" fill="rgb(248,51,30)" rx="2" ry="2" />
<text x="328.02" y="271.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (13 samples, 0.06%)</title><rect x="169.0" y="533" width="0.7" height="15.0" fill="rgb(211,11,37)" rx="2" ry="2" />
<text x="171.96" y="543.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="167.9" y="453" width="0.2" height="15.0" fill="rgb(224,184,9)" rx="2" ry="2" />
<text x="170.90" y="463.5" ></text>
</g>
<g >
<title>_IO_no_init (3 samples, 0.01%)</title><rect x="281.3" y="405" width="0.1" height="15.0" fill="rgb(214,208,9)" rx="2" ry="2" />
<text x="284.26" y="415.5" ></text>
</g>
<g >
<title>sysret_audit (6 samples, 0.03%)</title><rect x="182.9" y="661" width="0.3" height="15.0" fill="rgb(243,206,40)" rx="2" ry="2" />
<text x="185.88" y="671.5" ></text>
</g>
<g >
<title>[sapp] (17 samples, 0.08%)</title><rect x="180.7" y="629" width="1.0" height="15.0" fill="rgb(241,149,16)" rx="2" ry="2" />
<text x="183.69" y="639.5" ></text>
</g>
<g >
<title>X509_NAME_oneline (3 samples, 0.01%)</title><rect x="252.0" y="325" width="0.2" height="15.0" fill="rgb(230,15,30)" rx="2" ry="2" />
<text x="255.00" y="335.5" ></text>
</g>
<g >
<title>ssl_analyseStream (4 samples, 0.02%)</title><rect x="182.1" y="613" width="0.2" height="15.0" fill="rgb(215,139,36)" rx="2" ry="2" />
<text x="185.05" y="623.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="395.7" y="373" width="0.2" height="15.0" fill="rgb(216,19,36)" rx="2" ry="2" />
<text x="398.69" y="383.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="707.8" y="661" width="0.1" height="15.0" fill="rgb(221,198,16)" rx="2" ry="2" />
<text x="710.76" y="671.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (47 samples, 0.23%)</title><rect x="690.2" y="581" width="2.8" height="15.0" fill="rgb(237,90,29)" rx="2" ry="2" />
<text x="693.18" y="591.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="168.2" y="389" width="0.1" height="15.0" fill="rgb(254,84,8)" rx="2" ry="2" />
<text x="171.19" y="399.5" ></text>
</g>
<g >
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="180.0" y="485" width="0.3" height="15.0" fill="rgb(232,125,43)" rx="2" ry="2" />
<text x="183.05" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="166.1" y="357" width="0.1" height="15.0" fill="rgb(248,211,30)" rx="2" ry="2" />
<text x="169.07" y="367.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="179.6" y="485" width="0.1" height="15.0" fill="rgb(242,157,32)" rx="2" ry="2" />
<text x="182.57" y="495.5" ></text>
</g>
<g >
<title>ASN1_primitive_free (2 samples, 0.01%)</title><rect x="325.7" y="229" width="0.2" height="15.0" fill="rgb(225,30,25)" rx="2" ry="2" />
<text x="328.73" y="239.5" ></text>
</g>
<g >
<title>tsg_send_log (21 samples, 0.10%)</title><rect x="698.7" y="565" width="1.2" height="15.0" fill="rgb(219,148,20)" rx="2" ry="2" />
<text x="701.68" y="575.5" ></text>
</g>
<g >
<title>[tsg_master.so] (72 samples, 0.36%)</title><rect x="460.6" y="501" width="4.2" height="15.0" fill="rgb(244,13,51)" rx="2" ry="2" />
<text x="463.57" y="511.5" ></text>
</g>
<g >
<title>http_callPluginField (48 samples, 0.24%)</title><rect x="292.5" y="405" width="2.9" height="15.0" fill="rgb(243,204,33)" rx="2" ry="2" />
<text x="295.53" y="415.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (3 samples, 0.01%)</title><rect x="179.7" y="533" width="0.2" height="15.0" fill="rgb(228,168,15)" rx="2" ry="2" />
<text x="182.69" y="543.5" ></text>
</g>
<g >
<title>ssl_analyseStream (2 samples, 0.01%)</title><rect x="696.8" y="565" width="0.2" height="15.0" fill="rgb(231,46,49)" rx="2" ry="2" />
<text x="699.85" y="575.5" ></text>
</g>
<g >
<title>change_protection (10 samples, 0.05%)</title><rect x="248.8" y="405" width="0.6" height="15.0" fill="rgb(238,178,50)" rx="2" ry="2" />
<text x="251.82" y="415.5" ></text>
</g>
<g >
<title>ASN1_item_free (29 samples, 0.14%)</title><rect x="324.7" y="389" width="1.7" height="15.0" fill="rgb(247,228,53)" rx="2" ry="2" />
<text x="327.67" y="399.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (2 samples, 0.01%)</title><rect x="15.8" y="661" width="0.2" height="15.0" fill="rgb(230,111,11)" rx="2" ry="2" />
<text x="18.84" y="671.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="487.3" y="437" width="0.2" height="15.0" fill="rgb(211,217,26)" rx="2" ry="2" />
<text x="490.28" y="447.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="256.3" y="325" width="0.2" height="15.0" fill="rgb(244,132,8)" rx="2" ry="2" />
<text x="259.25" y="335.5" ></text>
</g>
<g >
<title>http_initHttpLinkInfor (15 samples, 0.07%)</title><rect x="305.3" y="437" width="0.9" height="15.0" fill="rgb(242,194,7)" rx="2" ry="2" />
<text x="308.32" y="447.5" ></text>
</g>
<g >
<title>save_polling_inject_context (13 samples, 0.06%)</title><rect x="268.4" y="533" width="0.8" height="15.0" fill="rgb(234,14,29)" rx="2" ry="2" />
<text x="271.40" y="543.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="255.0" y="325" width="0.2" height="15.0" fill="rgb(247,159,16)" rx="2" ry="2" />
<text x="257.95" y="335.5" ></text>
</g>
<g >
<title>http_callPlugin (5 samples, 0.02%)</title><rect x="692.6" y="517" width="0.3" height="15.0" fill="rgb(212,133,52)" rx="2" ry="2" />
<text x="695.60" y="527.5" ></text>
</g>
<g >
<title>rulescan_search (34 samples, 0.17%)</title><rect x="112.5" y="677" width="2.0" height="15.0" fill="rgb(217,107,14)" rx="2" ry="2" />
<text x="115.45" y="687.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="469.0" y="437" width="0.1" height="15.0" fill="rgb(206,173,35)" rx="2" ry="2" />
<text x="472.00" y="447.5" ></text>
</g>
<g >
<title>ASN1_OBJECT_new (3 samples, 0.01%)</title><rect x="173.0" y="85" width="0.2" height="15.0" fill="rgb(211,94,7)" rx="2" ry="2" />
<text x="176.03" y="95.5" ></text>
</g>
<g >
<title>APP_SKETCH_HTTP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="288.5" y="341" width="0.1" height="15.0" fill="rgb(214,220,17)" rx="2" ry="2" />
<text x="291.46" y="351.5" ></text>
</g>
<g >
<title>sys_nanosleep (115 samples, 0.57%)</title><rect x="183.5" y="645" width="6.8" height="15.0" fill="rgb(215,70,22)" rx="2" ry="2" />
<text x="186.53" y="655.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="690.7" y="389" width="0.1" height="15.0" fill="rgb(232,154,25)" rx="2" ry="2" />
<text x="693.71" y="399.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="169.2" y="197" width="0.3" height="15.0" fill="rgb(253,177,17)" rx="2" ry="2" />
<text x="172.19" y="207.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="101.6" y="677" width="0.1" height="15.0" fill="rgb(217,41,6)" rx="2" ry="2" />
<text x="104.60" y="687.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="699.7" y="517" width="0.1" height="15.0" fill="rgb(236,169,54)" rx="2" ry="2" />
<text x="702.68" y="527.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_identify_udp_v4 (118 samples, 0.59%)</title><rect x="494.5" y="565" width="7.0" height="15.0" fill="rgb(218,172,16)" rx="2" ry="2" />
<text x="497.54" y="575.5" ></text>
</g>
<g >
<title>process_ipv4_pkt (64 samples, 0.32%)</title><rect x="549.3" y="581" width="3.8" height="15.0" fill="rgb(232,39,8)" rx="2" ry="2" />
<text x="552.33" y="591.5" ></text>
</g>
<g >
<title>do_page_fault (4 samples, 0.02%)</title><rect x="267.5" y="453" width="0.2" height="15.0" fill="rgb(245,47,31)" rx="2" ry="2" />
<text x="270.46" y="463.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="166.1" y="293" width="0.1" height="15.0" fill="rgb(239,63,33)" rx="2" ry="2" />
<text x="169.07" y="303.5" ></text>
</g>
<g >
<title>retint_signal (15 samples, 0.07%)</title><rect x="688.8" y="597" width="0.9" height="15.0" fill="rgb(226,83,29)" rx="2" ry="2" />
<text x="691.77" y="607.5" ></text>
</g>
<g >
<title>ASN1_mbstring_copy (12 samples, 0.06%)</title><rect x="319.5" y="213" width="0.7" height="15.0" fill="rgb(211,145,38)" rx="2" ry="2" />
<text x="322.48" y="223.5" ></text>
</g>
<g >
<title>ASN1_item_free (6 samples, 0.03%)</title><rect x="253.5" y="181" width="0.4" height="15.0" fill="rgb(233,37,26)" rx="2" ry="2" />
<text x="256.54" y="191.5" ></text>
</g>
<g >
<title>crc32c (2 samples, 0.01%)</title><rect x="14.2" y="549" width="0.2" height="15.0" fill="rgb(227,221,8)" rx="2" ry="2" />
<text x="17.25" y="559.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="692.6" y="453" width="0.3" height="15.0" fill="rgb(207,105,17)" rx="2" ry="2" />
<text x="695.60" y="463.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="166.1" y="213" width="0.1" height="15.0" fill="rgb(227,7,33)" rx="2" ry="2" />
<text x="169.07" y="223.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="168.1" y="245" width="0.1" height="15.0" fill="rgb(207,16,37)" rx="2" ry="2" />
<text x="171.07" y="255.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="168.1" y="309" width="0.1" height="15.0" fill="rgb(212,109,27)" rx="2" ry="2" />
<text x="171.07" y="319.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (12 samples, 0.06%)</title><rect x="172.1" y="501" width="0.8" height="15.0" fill="rgb(210,139,11)" rx="2" ry="2" />
<text x="175.14" y="511.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (132 samples, 0.66%)</title><rect x="260.6" y="533" width="7.8" height="15.0" fill="rgb(211,52,33)" rx="2" ry="2" />
<text x="263.62" y="543.5" ></text>
</g>
<g >
<title>ssl_analyseStream (2 samples, 0.01%)</title><rect x="712.5" y="469" width="0.2" height="15.0" fill="rgb(239,23,19)" rx="2" ry="2" />
<text x="715.54" y="479.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="329.2" y="389" width="0.1" height="15.0" fill="rgb(241,22,21)" rx="2" ry="2" />
<text x="332.15" y="399.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="696.0" y="421" width="0.1" height="15.0" fill="rgb(237,189,12)" rx="2" ry="2" />
<text x="699.02" y="431.5" ></text>
</g>
<g >
<title>retint_signal (10 samples, 0.05%)</title><rect x="248.8" y="485" width="0.6" height="15.0" fill="rgb(207,83,0)" rx="2" ry="2" />
<text x="251.82" y="495.5" ></text>
</g>
<g >
<title>[wire_graft_plug.so] (6 samples, 0.03%)</title><rect x="485.8" y="501" width="0.4" height="15.0" fill="rgb(223,125,48)" rx="2" ry="2" />
<text x="488.81" y="511.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (7 samples, 0.03%)</title><rect x="180.3" y="613" width="0.4" height="15.0" fill="rgb(223,196,48)" rx="2" ry="2" />
<text x="183.28" y="623.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (2 samples, 0.01%)</title><rect x="166.1" y="421" width="0.1" height="15.0" fill="rgb(230,83,4)" rx="2" ry="2" />
<text x="169.07" y="431.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (3 samples, 0.01%)</title><rect x="690.0" y="693" width="0.2" height="15.0" fill="rgb(233,125,7)" rx="2" ry="2" />
<text x="693.01" y="703.5" ></text>
</g>
<g >
<title>stream_process (10 samples, 0.05%)</title><rect x="177.5" y="533" width="0.5" height="15.0" fill="rgb(250,134,5)" rx="2" ry="2" />
<text x="180.45" y="543.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (8 samples, 0.04%)</title><rect x="180.7" y="549" width="0.5" height="15.0" fill="rgb(232,210,29)" rx="2" ry="2" />
<text x="183.69" y="559.5" ></text>
</g>
<g >
<title>hack_digit.13624 (7 samples, 0.03%)</title><rect x="702.0" y="437" width="0.5" height="15.0" fill="rgb(205,42,1)" rx="2" ry="2" />
<text x="705.04" y="447.5" ></text>
</g>
<g >
<title>sscanf (5 samples, 0.02%)</title><rect x="702.6" y="501" width="0.3" height="15.0" fill="rgb(243,191,54)" rx="2" ry="2" />
<text x="705.57" y="511.5" ></text>
</g>
<g >
<title>[sapp] (179 samples, 0.89%)</title><rect x="247.0" y="533" width="10.5" height="15.0" fill="rgb(248,103,25)" rx="2" ry="2" />
<text x="249.99" y="543.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (2 samples, 0.01%)</title><rect x="10.4" y="645" width="0.1" height="15.0" fill="rgb(210,134,21)" rx="2" ry="2" />
<text x="13.41" y="655.5" ></text>
</g>
<g >
<title>ASN1_mbstring_copy (3 samples, 0.01%)</title><rect x="252.8" y="197" width="0.1" height="15.0" fill="rgb(253,1,51)" rx="2" ry="2" />
<text x="255.77" y="207.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (13 samples, 0.06%)</title><rect x="268.4" y="517" width="0.8" height="15.0" fill="rgb(224,68,13)" rx="2" ry="2" />
<text x="271.40" y="527.5" ></text>
</g>
<g >
<title>APP_SKETCH_SSL_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="331.5" y="341" width="0.1" height="15.0" fill="rgb(231,73,35)" rx="2" ry="2" />
<text x="334.45" y="351.5" ></text>
</g>
<g >
<title>bool_matcher_match (7 samples, 0.03%)</title><rect x="112.0" y="645" width="0.5" height="15.0" fill="rgb(254,131,7)" rx="2" ry="2" />
<text x="115.04" y="655.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (2 samples, 0.01%)</title><rect x="10.4" y="661" width="0.1" height="15.0" fill="rgb(217,93,12)" rx="2" ry="2" />
<text x="13.41" y="671.5" ></text>
</g>
<g >
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="330.7" y="309" width="0.5" height="15.0" fill="rgb(210,107,12)" rx="2" ry="2" />
<text x="333.69" y="319.5" ></text>
</g>
<g >
<title>SSL_ENTRY (8 samples, 0.04%)</title><rect x="712.7" y="501" width="0.4" height="15.0" fill="rgb(241,28,44)" rx="2" ry="2" />
<text x="715.66" y="511.5" ></text>
</g>
<g >
<title>CBoolExprMatch::find_matched_result (9 samples, 0.04%)</title><rect x="109.6" y="613" width="0.5" height="15.0" fill="rgb(252,86,40)" rx="2" ry="2" />
<text x="112.56" y="623.5" ></text>
</g>
<g >
<title>http_doWithDefaultRegion (7 samples, 0.03%)</title><rect x="303.7" y="405" width="0.4" height="15.0" fill="rgb(222,152,33)" rx="2" ry="2" />
<text x="306.73" y="415.5" ></text>
</g>
<g >
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="517.4" y="469" width="0.1" height="15.0" fill="rgb(208,65,5)" rx="2" ry="2" />
<text x="520.42" y="479.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (3 samples, 0.01%)</title><rect x="392.0" y="421" width="0.2" height="15.0" fill="rgb(243,81,26)" rx="2" ry="2" />
<text x="395.03" y="431.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="13.3" y="693" width="0.1" height="15.0" fill="rgb(238,218,46)" rx="2" ry="2" />
<text x="16.30" y="703.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (3 samples, 0.01%)</title><rect x="360.1" y="389" width="0.2" height="15.0" fill="rgb(249,40,47)" rx="2" ry="2" />
<text x="363.12" y="399.5" ></text>
</g>
<g >
<title>http_callPluginField (12 samples, 0.06%)</title><rect x="172.1" y="469" width="0.8" height="15.0" fill="rgb(221,23,47)" rx="2" ry="2" />
<text x="175.14" y="479.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (8 samples, 0.04%)</title><rect x="174.7" y="453" width="0.5" height="15.0" fill="rgb(222,209,24)" rx="2" ry="2" />
<text x="177.68" y="463.5" ></text>
</g>
<g >
<title>malloc (5 samples, 0.02%)</title><rect x="705.8" y="517" width="0.3" height="15.0" fill="rgb(235,127,29)" rx="2" ry="2" />
<text x="708.76" y="527.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (9 samples, 0.04%)</title><rect x="486.8" y="437" width="0.5" height="15.0" fill="rgb(235,67,9)" rx="2" ry="2" />
<text x="489.75" y="447.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (12 samples, 0.06%)</title><rect x="299.6" y="293" width="0.7" height="15.0" fill="rgb(244,145,35)" rx="2" ry="2" />
<text x="302.60" y="303.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="255.5" y="261" width="0.1" height="15.0" fill="rgb(234,155,21)" rx="2" ry="2" />
<text x="258.48" y="271.5" ></text>
</g>
<g >
<title>CStringMatch::search_rule (463 samples, 2.31%)</title><rect x="72.3" y="693" width="27.4" height="15.0" fill="rgb(214,41,28)" rx="2" ry="2" />
<text x="75.34" y="703.5" >C..</text>
</g>
<g >
<title>stream_process_udp (16 samples, 0.08%)</title><rect x="178.3" y="613" width="1.0" height="15.0" fill="rgb(253,146,27)" rx="2" ry="2" />
<text x="181.34" y="623.5" ></text>
</g>
<g >
<title>finish_task_switch (116 samples, 0.58%)</title><rect x="1178.2" y="629" width="6.8" height="15.0" fill="rgb(244,211,35)" rx="2" ry="2" />
<text x="1181.20" y="639.5" ></text>
</g>
<g >
<title>ipv4_entry (5,472 samples, 27.35%)</title><rect x="230.7" y="597" width="322.7" height="15.0" fill="rgb(223,15,3)" rx="2" ry="2" />
<text x="233.65" y="607.5" >ipv4_entry</text>
</g>
<g >
<title>tsg_ddos_sketch_udp_entry (13 samples, 0.06%)</title><rect x="541.4" y="517" width="0.7" height="15.0" fill="rgb(250,192,39)" rx="2" ry="2" />
<text x="544.37" y="527.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="171.6" y="293" width="0.2" height="15.0" fill="rgb(212,215,42)" rx="2" ry="2" />
<text x="174.61" y="303.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="169.3" y="101" width="0.1" height="15.0" fill="rgb(252,21,42)" rx="2" ry="2" />
<text x="172.31" y="111.5" ></text>
</g>
<g >
<title>string_search (454 samples, 2.27%)</title><rect x="72.9" y="677" width="26.8" height="15.0" fill="rgb(237,213,54)" rx="2" ry="2" />
<text x="75.88" y="687.5" >s..</text>
</g>
<g >
<title>ssl_analyseSsl (9 samples, 0.04%)</title><rect x="168.1" y="485" width="0.5" height="15.0" fill="rgb(242,167,19)" rx="2" ry="2" />
<text x="171.07" y="495.5" ></text>
</g>
<g >
<title>[sapp] (7 samples, 0.03%)</title><rect x="180.3" y="517" width="0.4" height="15.0" fill="rgb(232,38,8)" rx="2" ry="2" />
<text x="183.28" y="527.5" ></text>
</g>
<g >
<title>__snprintf (7 samples, 0.03%)</title><rect x="283.8" y="469" width="0.4" height="15.0" fill="rgb(248,26,21)" rx="2" ry="2" />
<text x="286.80" y="479.5" ></text>
</g>
<g >
<title>deal_socks_proxy (5 samples, 0.02%)</title><rect x="351.0" y="485" width="0.3" height="15.0" fill="rgb(215,18,40)" rx="2" ry="2" />
<text x="353.98" y="495.5" ></text>
</g>
<g >
<title>sprintf (4 samples, 0.02%)</title><rect x="466.1" y="453" width="0.2" height="15.0" fill="rgb(226,217,31)" rx="2" ry="2" />
<text x="469.11" y="463.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="690.0" y="677" width="0.2" height="15.0" fill="rgb(245,131,16)" rx="2" ry="2" />
<text x="693.01" y="687.5" ></text>
</g>
<g >
<title>http_doWithDefaultRegion (3 samples, 0.01%)</title><rect x="179.9" y="533" width="0.1" height="15.0" fill="rgb(250,90,28)" rx="2" ry="2" />
<text x="182.87" y="543.5" ></text>
</g>
<g >
<title>CStringMatch::check_match_mode (2 samples, 0.01%)</title><rect x="72.8" y="677" width="0.1" height="15.0" fill="rgb(238,186,32)" rx="2" ry="2" />
<text x="75.76" y="687.5" ></text>
</g>
<g >
<title>pbe_uevent_cleanup_table (3 samples, 0.01%)</title><rect x="706.7" y="693" width="0.2" height="15.0" fill="rgb(220,19,30)" rx="2" ry="2" />
<text x="709.70" y="703.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (5 samples, 0.02%)</title><rect x="255.0" y="245" width="0.2" height="15.0" fill="rgb(219,52,26)" rx="2" ry="2" />
<text x="257.95" y="255.5" ></text>
</g>
<g >
<title>lrustream (22 samples, 0.11%)</title><rect x="493.2" y="565" width="1.3" height="15.0" fill="rgb(230,91,24)" rx="2" ry="2" />
<text x="496.24" y="575.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="691.0" y="469" width="0.1" height="15.0" fill="rgb(230,193,33)" rx="2" ry="2" />
<text x="693.95" y="479.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (9 samples, 0.04%)</title><rect x="167.3" y="357" width="0.5" height="15.0" fill="rgb(228,226,46)" rx="2" ry="2" />
<text x="170.31" y="367.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="637.9" y="533" width="0.1" height="15.0" fill="rgb(205,118,30)" rx="2" ry="2" />
<text x="640.93" y="543.5" ></text>
</g>
<g >
<title>qmdpi_flow_offload (2 samples, 0.01%)</title><rect x="200.2" y="677" width="0.1" height="15.0" fill="rgb(246,101,18)" rx="2" ry="2" />
<text x="203.22" y="687.5" ></text>
</g>
<g >
<title>FS_operate (6 samples, 0.03%)</title><rect x="276.4" y="437" width="0.3" height="15.0" fill="rgb(224,220,39)" rx="2" ry="2" />
<text x="279.36" y="447.5" ></text>
</g>
<g >
<title>operator new (5 samples, 0.02%)</title><rect x="365.4" y="389" width="0.3" height="15.0" fill="rgb(223,80,34)" rx="2" ry="2" />
<text x="368.43" y="399.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="361.4" y="405" width="0.1" height="15.0" fill="rgb(235,152,23)" rx="2" ry="2" />
<text x="364.36" y="415.5" ></text>
</g>
<g >
<title>FW_DNS_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="700.8" y="613" width="0.4" height="15.0" fill="rgb(227,71,7)" rx="2" ry="2" />
<text x="703.80" y="623.5" ></text>
</g>
<g >
<title>TLD_append (4 samples, 0.02%)</title><rect x="396.9" y="389" width="0.2" height="15.0" fill="rgb(210,93,35)" rx="2" ry="2" />
<text x="399.86" y="399.5" ></text>
</g>
<g >
<title>project_requirement_destroy (3 samples, 0.01%)</title><rect x="485.0" y="549" width="0.2" height="15.0" fill="rgb(234,47,11)" rx="2" ry="2" />
<text x="487.98" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="175.7" y="437" width="0.3" height="15.0" fill="rgb(219,108,38)" rx="2" ry="2" />
<text x="178.68" y="447.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="179.6" y="373" width="0.1" height="15.0" fill="rgb(211,31,34)" rx="2" ry="2" />
<text x="182.57" y="383.5" ></text>
</g>
<g >
<title>__clock_gettime (10 samples, 0.05%)</title><rect x="127.0" y="677" width="0.6" height="15.0" fill="rgb(239,135,18)" rx="2" ry="2" />
<text x="130.02" y="687.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="704.5" y="533" width="0.3" height="15.0" fill="rgb(209,67,35)" rx="2" ry="2" />
<text x="707.46" y="543.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="526.3" y="453" width="0.1" height="15.0" fill="rgb(233,99,5)" rx="2" ry="2" />
<text x="529.27" y="463.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (13 samples, 0.06%)</title><rect x="250.6" y="341" width="0.8" height="15.0" fill="rgb(211,224,44)" rx="2" ry="2" />
<text x="253.65" y="351.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (2 samples, 0.01%)</title><rect x="168.8" y="581" width="0.1" height="15.0" fill="rgb(208,4,52)" rx="2" ry="2" />
<text x="171.78" y="591.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="392.0" y="357" width="0.1" height="15.0" fill="rgb(233,3,13)" rx="2" ry="2" />
<text x="395.03" y="367.5" ></text>
</g>
<g >
<title>app_engine_stat_tcp_add (3 samples, 0.01%)</title><rect x="278.3" y="469" width="0.2" height="15.0" fill="rgb(236,182,34)" rx="2" ry="2" />
<text x="281.31" y="479.5" ></text>
</g>
<g >
<title>marsio_buff_free (87 samples, 0.43%)</title><rect x="562.5" y="629" width="5.2" height="15.0" fill="rgb(253,28,46)" rx="2" ry="2" />
<text x="565.55" y="639.5" ></text>
</g>
<g >
<title>qm_malloc_default (14 samples, 0.07%)</title><rect x="199.2" y="677" width="0.8" height="15.0" fill="rgb(206,17,54)" rx="2" ry="2" />
<text x="202.22" y="687.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="289.0" y="325" width="0.4" height="15.0" fill="rgb(228,0,19)" rx="2" ry="2" />
<text x="291.99" y="335.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="168.3" y="325" width="0.1" height="15.0" fill="rgb(212,74,40)" rx="2" ry="2" />
<text x="171.31" y="335.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (2 samples, 0.01%)</title><rect x="168.1" y="421" width="0.1" height="15.0" fill="rgb(216,224,12)" rx="2" ry="2" />
<text x="171.07" y="431.5" ></text>
</g>
<g >
<title>stream_create_ipv4 (2 samples, 0.01%)</title><rect x="513.0" y="485" width="0.1" height="15.0" fill="rgb(221,45,26)" rx="2" ry="2" />
<text x="516.00" y="495.5" ></text>
</g>
<g >
<title>rd_kafka_toppar_enq_msg (4 samples, 0.02%)</title><rect x="366.5" y="389" width="0.2" height="15.0" fill="rgb(209,34,35)" rx="2" ry="2" />
<text x="369.49" y="399.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (402 samples, 2.01%)</title><rect x="284.4" y="485" width="23.8" height="15.0" fill="rgb(219,48,29)" rx="2" ry="2" />
<text x="287.44" y="495.5" >H..</text>
</g>
<g >
<title>http_judgeContentEncoding (96 samples, 0.48%)</title><rect x="295.9" y="405" width="5.6" height="15.0" fill="rgb(230,171,37)" rx="2" ry="2" />
<text x="298.89" y="415.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="169.2" y="357" width="0.3" height="15.0" fill="rgb(254,210,45)" rx="2" ry="2" />
<text x="172.19" y="367.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="179.6" y="437" width="0.1" height="15.0" fill="rgb(208,9,53)" rx="2" ry="2" />
<text x="182.57" y="447.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (32 samples, 0.16%)</title><rect x="467.0" y="469" width="1.9" height="15.0" fill="rgb(227,200,3)" rx="2" ry="2" />
<text x="469.99" y="479.5" ></text>
</g>
<g >
<title>plugin_process_close (5 samples, 0.02%)</title><rect x="692.6" y="485" width="0.3" height="15.0" fill="rgb(247,186,49)" rx="2" ry="2" />
<text x="695.60" y="495.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="301.7" y="309" width="0.1" height="15.0" fill="rgb(215,51,47)" rx="2" ry="2" />
<text x="304.67" y="319.5" ></text>
</g>
<g >
<title>ASN1_STRING_set (2 samples, 0.01%)</title><rect x="326.9" y="213" width="0.1" height="15.0" fill="rgb(250,175,22)" rx="2" ry="2" />
<text x="329.85" y="223.5" ></text>
</g>
<g >
<title>rd_kafka_transport_poll (2 samples, 0.01%)</title><rect x="12.1" y="581" width="0.1" height="15.0" fill="rgb(251,160,28)" rx="2" ry="2" />
<text x="15.06" y="591.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (2 samples, 0.01%)</title><rect x="10.2" y="613" width="0.2" height="15.0" fill="rgb(207,10,35)" rx="2" ry="2" />
<text x="13.24" y="623.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (23 samples, 0.11%)</title><rect x="324.7" y="341" width="1.4" height="15.0" fill="rgb(251,223,20)" rx="2" ry="2" />
<text x="327.73" y="351.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="322.5" y="165" width="0.3" height="15.0" fill="rgb(213,3,47)" rx="2" ry="2" />
<text x="325.49" y="175.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="397.6" y="357" width="0.1" height="15.0" fill="rgb(206,146,34)" rx="2" ry="2" />
<text x="400.63" y="367.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="169.0" y="373" width="0.2" height="15.0" fill="rgb(207,59,48)" rx="2" ry="2" />
<text x="172.02" y="383.5" ></text>
</g>
<g >
<title>http_doWithACompleteRegion (36 samples, 0.18%)</title><rect x="302.3" y="421" width="2.1" height="15.0" fill="rgb(235,33,10)" rx="2" ry="2" />
<text x="305.32" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (11 samples, 0.05%)</title><rect x="320.4" y="213" width="0.7" height="15.0" fill="rgb(216,117,21)" rx="2" ry="2" />
<text x="323.42" y="223.5" ></text>
</g>
<g >
<title>tcp_free_stream (7 samples, 0.03%)</title><rect x="478.7" y="549" width="0.4" height="15.0" fill="rgb(225,17,33)" rx="2" ry="2" />
<text x="481.67" y="559.5" ></text>
</g>
<g >
<title>_IO_str_underflow (2 samples, 0.01%)</title><rect x="468.4" y="357" width="0.1" height="15.0" fill="rgb(228,105,41)" rx="2" ry="2" />
<text x="471.41" y="367.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="166.1" y="389" width="0.1" height="15.0" fill="rgb(226,207,24)" rx="2" ry="2" />
<text x="169.07" y="399.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (36 samples, 0.18%)</title><rect x="276.2" y="469" width="2.1" height="15.0" fill="rgb(207,144,9)" rx="2" ry="2" />
<text x="279.19" y="479.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (5 samples, 0.02%)</title><rect x="478.8" y="533" width="0.3" height="15.0" fill="rgb(243,156,15)" rx="2" ry="2" />
<text x="481.79" y="543.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="485.9" y="437" width="0.2" height="15.0" fill="rgb(229,162,34)" rx="2" ry="2" />
<text x="488.93" y="447.5" ></text>
</g>
<g >
<title>ASN1_item_free (9 samples, 0.04%)</title><rect x="254.3" y="373" width="0.5" height="15.0" fill="rgb(213,194,24)" rx="2" ry="2" />
<text x="257.30" y="383.5" ></text>
</g>
<g >
<title>do_page_fault (4 samples, 0.02%)</title><rect x="368.8" y="437" width="0.2" height="15.0" fill="rgb(240,0,24)" rx="2" ry="2" />
<text x="371.79" y="447.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="172.3" y="325" width="0.2" height="15.0" fill="rgb(251,142,50)" rx="2" ry="2" />
<text x="175.32" y="335.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="707.8" y="597" width="0.1" height="15.0" fill="rgb(211,77,11)" rx="2" ry="2" />
<text x="710.76" y="607.5" ></text>
</g>
<g >
<title>TLD_append (4 samples, 0.02%)</title><rect x="292.6" y="325" width="0.2" height="15.0" fill="rgb(242,212,0)" rx="2" ry="2" />
<text x="295.58" y="335.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="301.7" y="357" width="0.1" height="15.0" fill="rgb(221,174,4)" rx="2" ry="2" />
<text x="304.67" y="367.5" ></text>
</g>
<g >
<title>http_releaseHttpStream (5 samples, 0.02%)</title><rect x="394.6" y="437" width="0.3" height="15.0" fill="rgb(225,90,34)" rx="2" ry="2" />
<text x="397.62" y="447.5" ></text>
</g>
<g >
<title>__clock_gettime (3 samples, 0.01%)</title><rect x="343.8" y="469" width="0.2" height="15.0" fill="rgb(228,92,15)" rx="2" ry="2" />
<text x="346.84" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="141.8" y="629" width="0.1" height="15.0" fill="rgb(208,207,27)" rx="2" ry="2" />
<text x="144.77" y="639.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new (2 samples, 0.01%)</title><rect x="699.8" y="549" width="0.1" height="15.0" fill="rgb(222,215,1)" rx="2" ry="2" />
<text x="702.80" y="559.5" ></text>
</g>
<g >
<title>ipv4_entry (175 samples, 0.87%)</title><rect x="169.0" y="645" width="10.3" height="15.0" fill="rgb(215,218,43)" rx="2" ry="2" />
<text x="171.96" y="655.5" ></text>
</g>
<g >
<title>ASN1_template_free (4 samples, 0.02%)</title><rect x="253.6" y="149" width="0.2" height="15.0" fill="rgb(210,67,43)" rx="2" ry="2" />
<text x="256.60" y="159.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="179.9" y="501" width="0.1" height="15.0" fill="rgb(205,125,37)" rx="2" ry="2" />
<text x="182.87" y="511.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (5 samples, 0.02%)</title><rect x="379.2" y="405" width="0.3" height="15.0" fill="rgb(225,177,16)" rx="2" ry="2" />
<text x="382.17" y="415.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (12 samples, 0.06%)</title><rect x="282.6" y="389" width="0.7" height="15.0" fill="rgb(226,115,9)" rx="2" ry="2" />
<text x="285.62" y="399.5" ></text>
</g>
<g >
<title>do_notify_resume (10 samples, 0.05%)</title><rect x="248.8" y="469" width="0.6" height="15.0" fill="rgb(214,19,54)" rx="2" ry="2" />
<text x="251.82" y="479.5" ></text>
</g>
<g >
<title>fw_ssl_entry (2 samples, 0.01%)</title><rect x="168.2" y="357" width="0.1" height="15.0" fill="rgb(238,59,19)" rx="2" ry="2" />
<text x="171.19" y="367.5" ></text>
</g>
<g >
<title>CDirectIndex::Find (17 samples, 0.08%)</title><rect x="164.4" y="661" width="1.0" height="15.0" fill="rgb(217,164,26)" rx="2" ry="2" />
<text x="167.36" y="671.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="301.8" y="341" width="0.2" height="15.0" fill="rgb(220,106,2)" rx="2" ry="2" />
<text x="304.79" y="351.5" ></text>
</g>
<g >
<title>tsg_send_log (11 samples, 0.05%)</title><rect x="250.8" y="293" width="0.6" height="15.0" fill="rgb(222,157,54)" rx="2" ry="2" />
<text x="253.77" y="303.5" ></text>
</g>
<g >
<title>rd_kafka_toppar_producer_serve (3 samples, 0.01%)</title><rect x="12.4" y="613" width="0.1" height="15.0" fill="rgb(221,4,50)" rx="2" ry="2" />
<text x="15.36" y="623.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="304.3" y="325" width="0.1" height="15.0" fill="rgb(236,8,3)" rx="2" ry="2" />
<text x="307.26" y="335.5" ></text>
</g>
<g >
<title>http_doWithEntity (154 samples, 0.77%)</title><rect x="292.5" y="437" width="9.0" height="15.0" fill="rgb(222,160,22)" rx="2" ry="2" />
<text x="295.47" y="447.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (341 samples, 1.70%)</title><rect x="312.2" y="453" width="20.1" height="15.0" fill="rgb(226,104,18)" rx="2" ry="2" />
<text x="315.23" y="463.5" ></text>
</g>
<g >
<title>plugin_call_appentry (7 samples, 0.03%)</title><rect x="690.5" y="453" width="0.5" height="15.0" fill="rgb(225,148,54)" rx="2" ry="2" />
<text x="693.54" y="463.5" ></text>
</g>
<g >
<title>ssl_callPlugins (23 samples, 0.11%)</title><rect x="330.0" y="405" width="1.3" height="15.0" fill="rgb(240,196,20)" rx="2" ry="2" />
<text x="332.98" y="415.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="360.4" y="357" width="0.1" height="15.0" fill="rgb(217,146,24)" rx="2" ry="2" />
<text x="363.41" y="367.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="181.7" y="597" width="0.1" height="15.0" fill="rgb(242,78,14)" rx="2" ry="2" />
<text x="184.70" y="607.5" ></text>
</g>
<g >
<title>ASN1_primitive_free (3 samples, 0.01%)</title><rect x="323.3" y="149" width="0.1" height="15.0" fill="rgb(226,90,29)" rx="2" ry="2" />
<text x="326.26" y="159.5" ></text>
</g>
<g >
<title>plugin_call_appentry (9 samples, 0.04%)</title><rect x="167.3" y="405" width="0.5" height="15.0" fill="rgb(228,188,52)" rx="2" ry="2" />
<text x="170.31" y="415.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (90 samples, 0.45%)</title><rect x="701.2" y="597" width="5.3" height="15.0" fill="rgb(219,50,9)" rx="2" ry="2" />
<text x="704.21" y="607.5" ></text>
</g>
<g >
<title>[sapp] (4,150 samples, 20.74%)</title><rect x="236.3" y="565" width="244.8" height="15.0" fill="rgb(237,63,9)" rx="2" ry="2" />
<text x="239.32" y="575.5" >[sapp]</text>
</g>
<g >
<title>hrtimer_nanosleep (2 samples, 0.01%)</title><rect x="198.6" y="597" width="0.1" height="15.0" fill="rgb(232,114,42)" rx="2" ry="2" />
<text x="201.57" y="607.5" ></text>
</g>
<g >
<title>sapp_jhash_4words (3 samples, 0.01%)</title><rect x="390.6" y="517" width="0.1" height="15.0" fill="rgb(221,111,23)" rx="2" ry="2" />
<text x="393.55" y="527.5" ></text>
</g>
<g >
<title>eth_entry (175 samples, 0.87%)</title><rect x="169.0" y="661" width="10.3" height="15.0" fill="rgb(248,176,10)" rx="2" ry="2" />
<text x="171.96" y="671.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="706.1" y="533" width="0.1" height="15.0" fill="rgb(226,9,40)" rx="2" ry="2" />
<text x="709.05" y="543.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (187 samples, 0.93%)</title><rect x="369.1" y="501" width="11.0" height="15.0" fill="rgb(251,162,28)" rx="2" ry="2" />
<text x="372.08" y="511.5" ></text>
</g>
<g >
<title>stream_process_tcp (10 samples, 0.05%)</title><rect x="177.5" y="549" width="0.5" height="15.0" fill="rgb(207,223,11)" rx="2" ry="2" />
<text x="180.45" y="559.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="318.4" y="133" width="0.3" height="15.0" fill="rgb(207,98,10)" rx="2" ry="2" />
<text x="321.36" y="143.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (31 samples, 0.15%)</title><rect x="467.0" y="437" width="1.8" height="15.0" fill="rgb(238,205,49)" rx="2" ry="2" />
<text x="469.99" y="447.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="392.0" y="373" width="0.1" height="15.0" fill="rgb(232,179,8)" rx="2" ry="2" />
<text x="395.03" y="383.5" ></text>
</g>
<g >
<title>http_doWithContentLength (3 samples, 0.01%)</title><rect x="303.2" y="405" width="0.2" height="15.0" fill="rgb(229,224,42)" rx="2" ry="2" />
<text x="306.20" y="415.5" ></text>
</g>
<g >
<title>hack_digit.13624 (2 samples, 0.01%)</title><rect x="349.3" y="341" width="0.1" height="15.0" fill="rgb(243,5,18)" rx="2" ry="2" />
<text x="352.33" y="351.5" ></text>
</g>
<g >
<title>ASN1_mbstring_ncopy (12 samples, 0.06%)</title><rect x="319.5" y="197" width="0.7" height="15.0" fill="rgb(220,172,28)" rx="2" ry="2" />
<text x="322.48" y="207.5" ></text>
</g>
<g >
<title>scaling_bloom_add (309 samples, 1.54%)</title><rect x="423.4" y="501" width="18.2" height="15.0" fill="rgb(245,212,53)" rx="2" ry="2" />
<text x="426.41" y="511.5" ></text>
</g>
<g >
<title>tsg_send_log (15 samples, 0.07%)</title><rect x="175.2" y="485" width="0.8" height="15.0" fill="rgb(226,74,30)" rx="2" ry="2" />
<text x="178.15" y="495.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="395.0" y="389" width="0.2" height="15.0" fill="rgb(244,121,4)" rx="2" ry="2" />
<text x="397.98" y="399.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (5 samples, 0.02%)</title><rect x="713.4" y="677" width="0.3" height="15.0" fill="rgb(227,42,22)" rx="2" ry="2" />
<text x="716.36" y="687.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (5 samples, 0.02%)</title><rect x="287.1" y="421" width="0.3" height="15.0" fill="rgb(252,181,19)" rx="2" ry="2" />
<text x="290.10" y="431.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="374.5" y="421" width="0.2" height="15.0" fill="rgb(209,86,20)" rx="2" ry="2" />
<text x="377.45" y="431.5" ></text>
</g>
<g >
<title>stream_process (118 samples, 0.59%)</title><rect x="250.6" y="501" width="6.9" height="15.0" fill="rgb(242,226,31)" rx="2" ry="2" />
<text x="253.59" y="511.5" ></text>
</g>
<g >
<title>__strncasecmp_l_avx (4 samples, 0.02%)</title><rect x="517.7" y="485" width="0.3" height="15.0" fill="rgb(215,34,12)" rx="2" ry="2" />
<text x="520.72" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="306.5" y="437" width="0.1" height="15.0" fill="rgb(217,98,32)" rx="2" ry="2" />
<text x="309.50" y="447.5" ></text>
</g>
<g >
<title>fw_ssl_entry (2 samples, 0.01%)</title><rect x="330.4" y="341" width="0.1" height="15.0" fill="rgb(214,117,46)" rx="2" ry="2" />
<text x="333.39" y="351.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (2 samples, 0.01%)</title><rect x="295.2" y="245" width="0.2" height="15.0" fill="rgb(223,117,27)" rx="2" ry="2" />
<text x="298.24" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="547.4" y="501" width="0.1" height="15.0" fill="rgb(241,209,27)" rx="2" ry="2" />
<text x="550.39" y="511.5" ></text>
</g>
<g >
<title>Maat_table_get_by_id_raw (2 samples, 0.01%)</title><rect x="120.5" y="645" width="0.2" height="15.0" fill="rgb(231,21,28)" rx="2" ry="2" />
<text x="123.53" y="655.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="289.0" y="261" width="0.3" height="15.0" fill="rgb(248,96,53)" rx="2" ry="2" />
<text x="291.99" y="271.5" ></text>
</g>
<g >
<title>Maat_stream_scan_string_detail (14 samples, 0.07%)</title><rect x="140.9" y="693" width="0.9" height="15.0" fill="rgb(250,93,5)" rx="2" ry="2" />
<text x="143.94" y="703.5" ></text>
</g>
<g >
<title>ssl_analyseStream (9 samples, 0.04%)</title><rect x="169.2" y="501" width="0.5" height="15.0" fill="rgb(211,92,32)" rx="2" ry="2" />
<text x="172.19" y="511.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (5 samples, 0.02%)</title><rect x="379.8" y="485" width="0.3" height="15.0" fill="rgb(223,120,43)" rx="2" ry="2" />
<text x="382.82" y="495.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="398.5" y="357" width="0.2" height="15.0" fill="rgb(213,192,22)" rx="2" ry="2" />
<text x="401.52" y="367.5" ></text>
</g>
<g >
<title>do_nanosleep (2 samples, 0.01%)</title><rect x="644.9" y="565" width="0.1" height="15.0" fill="rgb(205,160,41)" rx="2" ry="2" />
<text x="647.89" y="575.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="171.8" y="309" width="0.2" height="15.0" fill="rgb(248,151,35)" rx="2" ry="2" />
<text x="174.85" y="319.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.02%)</title><rect x="273.7" y="501" width="0.2" height="15.0" fill="rgb(246,68,7)" rx="2" ry="2" />
<text x="276.65" y="511.5" ></text>
</g>
<g >
<title>__clone (4 samples, 0.02%)</title><rect x="14.1" y="693" width="0.3" height="15.0" fill="rgb(207,203,31)" rx="2" ry="2" />
<text x="17.13" y="703.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (2 samples, 0.01%)</title><rect x="15.8" y="645" width="0.2" height="15.0" fill="rgb(252,107,12)" rx="2" ry="2" />
<text x="18.84" y="655.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (8 samples, 0.04%)</title><rect x="258.8" y="517" width="0.5" height="15.0" fill="rgb(246,104,22)" rx="2" ry="2" />
<text x="261.85" y="527.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (26 samples, 0.13%)</title><rect x="701.3" y="549" width="1.6" height="15.0" fill="rgb(249,123,20)" rx="2" ry="2" />
<text x="704.33" y="559.5" ></text>
</g>
<g >
<title>cdf_read_header (2 samples, 0.01%)</title><rect x="707.6" y="613" width="0.2" height="15.0" fill="rgb(249,3,45)" rx="2" ry="2" />
<text x="710.64" y="623.5" ></text>
</g>
<g >
<title>do_page_fault (2 samples, 0.01%)</title><rect x="393.2" y="405" width="0.1" height="15.0" fill="rgb(239,73,48)" rx="2" ry="2" />
<text x="396.21" y="415.5" ></text>
</g>
<g >
<title>plugin_call_appentry (22 samples, 0.11%)</title><rect x="330.0" y="357" width="1.3" height="15.0" fill="rgb(208,67,35)" rx="2" ry="2" />
<text x="333.04" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="295.0" y="245" width="0.2" height="15.0" fill="rgb(220,14,15)" rx="2" ry="2" />
<text x="298.00" y="255.5" ></text>
</g>
<g >
<title>__clock_gettime (10 samples, 0.05%)</title><rect x="350.4" y="485" width="0.6" height="15.0" fill="rgb(228,170,18)" rx="2" ry="2" />
<text x="353.39" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="172.9" y="389" width="0.4" height="15.0" fill="rgb(238,109,24)" rx="2" ry="2" />
<text x="175.85" y="399.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="166.1" y="181" width="0.1" height="15.0" fill="rgb(246,138,1)" rx="2" ry="2" />
<text x="169.07" y="191.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (36 samples, 0.18%)</title><rect x="485.4" y="517" width="2.1" height="15.0" fill="rgb(248,71,26)" rx="2" ry="2" />
<text x="488.40" y="527.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="172.1" y="341" width="0.2" height="15.0" fill="rgb(239,224,36)" rx="2" ry="2" />
<text x="175.14" y="351.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="487.1" y="389" width="0.2" height="15.0" fill="rgb(227,26,16)" rx="2" ry="2" />
<text x="490.11" y="399.5" ></text>
</g>
<g >
<title>start_thread (2 samples, 0.01%)</title><rect x="15.2" y="677" width="0.2" height="15.0" fill="rgb(231,43,1)" rx="2" ry="2" />
<text x="18.25" y="687.5" ></text>
</g>
<g >
<title>start_thread (12 samples, 0.06%)</title><rect x="712.5" y="693" width="0.7" height="15.0" fill="rgb(238,218,15)" rx="2" ry="2" />
<text x="715.54" y="703.5" ></text>
</g>
<g >
<title>cJSON_ParseWithOpts (2 samples, 0.01%)</title><rect x="398.3" y="373" width="0.1" height="15.0" fill="rgb(207,202,38)" rx="2" ry="2" />
<text x="401.28" y="383.5" ></text>
</g>
<g >
<title>process_pkt_return (2 samples, 0.01%)</title><rect x="554.1" y="613" width="0.1" height="15.0" fill="rgb(244,157,34)" rx="2" ry="2" />
<text x="557.05" y="623.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (10 samples, 0.05%)</title><rect x="319.6" y="181" width="0.6" height="15.0" fill="rgb(206,91,24)" rx="2" ry="2" />
<text x="322.60" y="191.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (4 samples, 0.02%)</title><rect x="327.9" y="261" width="0.3" height="15.0" fill="rgb(238,149,28)" rx="2" ry="2" />
<text x="330.91" y="271.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (16 samples, 0.08%)</title><rect x="178.3" y="581" width="1.0" height="15.0" fill="rgb(252,138,2)" rx="2" ry="2" />
<text x="181.34" y="591.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="99.7" y="501" width="0.1" height="15.0" fill="rgb(210,22,51)" rx="2" ry="2" />
<text x="102.71" y="511.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="182.1" y="501" width="0.1" height="15.0" fill="rgb(233,24,9)" rx="2" ry="2" />
<text x="185.05" y="511.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (17 samples, 0.08%)</title><rect x="525.9" y="485" width="1.0" height="15.0" fill="rgb(246,47,2)" rx="2" ry="2" />
<text x="528.92" y="495.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (7 samples, 0.03%)</title><rect x="181.2" y="549" width="0.4" height="15.0" fill="rgb(253,73,27)" rx="2" ry="2" />
<text x="184.23" y="559.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="343.1" y="437" width="0.2" height="15.0" fill="rgb(219,185,32)" rx="2" ry="2" />
<text x="346.07" y="447.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="338.2" y="373" width="0.2" height="15.0" fill="rgb(205,51,2)" rx="2" ry="2" />
<text x="341.18" y="383.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="279.9" y="453" width="0.1" height="15.0" fill="rgb(215,57,11)" rx="2" ry="2" />
<text x="282.90" y="463.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (10 samples, 0.05%)</title><rect x="287.7" y="325" width="0.6" height="15.0" fill="rgb(241,3,5)" rx="2" ry="2" />
<text x="290.75" y="335.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (13 samples, 0.06%)</title><rect x="326.5" y="373" width="0.8" height="15.0" fill="rgb(230,117,54)" rx="2" ry="2" />
<text x="329.50" y="383.5" ></text>
</g>
<g >
<title>sapp_mem_free (4 samples, 0.02%)</title><rect x="639.2" y="581" width="0.3" height="15.0" fill="rgb(236,168,12)" rx="2" ry="2" />
<text x="642.22" y="591.5" ></text>
</g>
<g >
<title>scaling_bloom_check (203 samples, 1.01%)</title><rect x="411.0" y="533" width="11.9" height="15.0" fill="rgb(246,74,0)" rx="2" ry="2" />
<text x="413.96" y="543.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="392.0" y="309" width="0.1" height="15.0" fill="rgb(242,144,44)" rx="2" ry="2" />
<text x="395.03" y="319.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="460.4" y="469" width="0.2" height="15.0" fill="rgb(254,163,11)" rx="2" ry="2" />
<text x="463.45" y="479.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (9 samples, 0.04%)</title><rect x="380.1" y="501" width="0.5" height="15.0" fill="rgb(253,39,8)" rx="2" ry="2" />
<text x="383.11" y="511.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (2 samples, 0.01%)</title><rect x="295.2" y="149" width="0.2" height="15.0" fill="rgb(237,34,7)" rx="2" ry="2" />
<text x="298.24" y="159.5" ></text>
</g>
<g >
<title>_int_malloc (12 samples, 0.06%)</title><rect x="642.2" y="453" width="0.7" height="15.0" fill="rgb(247,37,31)" rx="2" ry="2" />
<text x="645.17" y="463.5" ></text>
</g>
<g >
<title>malloc_consolidate (7 samples, 0.03%)</title><rect x="642.5" y="437" width="0.4" height="15.0" fill="rgb(245,53,37)" rx="2" ry="2" />
<text x="645.47" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="327.0" y="165" width="0.1" height="15.0" fill="rgb(232,162,14)" rx="2" ry="2" />
<text x="329.97" y="175.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (28 samples, 0.14%)</title><rect x="372.0" y="453" width="1.6" height="15.0" fill="rgb(223,127,35)" rx="2" ry="2" />
<text x="374.97" y="463.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_identify_tcp (368 samples, 1.84%)</title><rect x="401.2" y="549" width="21.7" height="15.0" fill="rgb(227,192,49)" rx="2" ry="2" />
<text x="404.23" y="559.5" >s..</text>
</g>
<g >
<title>malloc (33 samples, 0.16%)</title><rect x="129.1" y="645" width="2.0" height="15.0" fill="rgb(224,193,20)" rx="2" ry="2" />
<text x="132.14" y="655.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="255.0" y="309" width="0.2" height="15.0" fill="rgb(252,40,39)" rx="2" ry="2" />
<text x="257.95" y="319.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="303.6" y="293" width="0.1" height="15.0" fill="rgb(215,52,3)" rx="2" ry="2" />
<text x="306.55" y="303.5" ></text>
</g>
<g >
<title>http_analyseHttpReqResHeader (17 samples, 0.08%)</title><rect x="694.1" y="549" width="1.0" height="15.0" fill="rgb(225,149,8)" rx="2" ry="2" />
<text x="697.08" y="559.5" ></text>
</g>
<g >
<title>kworker/6:1 (2 samples, 0.01%)</title><rect x="10.1" y="709" width="0.1" height="15.0" fill="rgb(242,211,17)" rx="2" ry="2" />
<text x="13.06" y="719.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="706.1" y="549" width="0.1" height="15.0" fill="rgb(236,180,53)" rx="2" ry="2" />
<text x="709.05" y="559.5" ></text>
</g>
<g >
<title>od_dbs_timer (2 samples, 0.01%)</title><rect x="10.1" y="629" width="0.1" height="15.0" fill="rgb(241,190,17)" rx="2" ry="2" />
<text x="13.06" y="639.5" ></text>
</g>
<g >
<title>http_doWithACompleteRegion (3 samples, 0.01%)</title><rect x="181.9" y="565" width="0.2" height="15.0" fill="rgb(235,64,11)" rx="2" ry="2" />
<text x="184.87" y="575.5" ></text>
</g>
<g >
<title>__strncpy_sse2_unaligned (3 samples, 0.01%)</title><rect x="695.3" y="357" width="0.1" height="15.0" fill="rgb(248,12,1)" rx="2" ry="2" />
<text x="698.26" y="367.5" ></text>
</g>
<g >
<title>sk_new (3 samples, 0.01%)</title><rect x="318.7" y="149" width="0.1" height="15.0" fill="rgb(222,89,39)" rx="2" ry="2" />
<text x="321.65" y="159.5" ></text>
</g>
<g >
<title>app_engine_stat_latency (8 samples, 0.04%)</title><rect x="276.3" y="453" width="0.5" height="15.0" fill="rgb(245,142,4)" rx="2" ry="2" />
<text x="279.31" y="463.5" ></text>
</g>
<g >
<title>sys_write (32 samples, 0.16%)</title><rect x="190.3" y="645" width="1.9" height="15.0" fill="rgb(208,69,10)" rx="2" ry="2" />
<text x="193.31" y="655.5" ></text>
</g>
<g >
<title>MESA_jump_layer (3 samples, 0.01%)</title><rect x="460.0" y="485" width="0.2" height="15.0" fill="rgb(236,173,15)" rx="2" ry="2" />
<text x="463.03" y="495.5" ></text>
</g>
<g >
<title>__snprintf (4 samples, 0.02%)</title><rect x="374.5" y="437" width="0.2" height="15.0" fill="rgb(210,163,54)" rx="2" ry="2" />
<text x="377.45" y="447.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (12 samples, 0.06%)</title><rect x="179.3" y="597" width="0.7" height="15.0" fill="rgb(215,159,4)" rx="2" ry="2" />
<text x="182.34" y="607.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (7 samples, 0.03%)</title><rect x="257.1" y="469" width="0.4" height="15.0" fill="rgb(246,217,32)" rx="2" ry="2" />
<text x="260.14" y="479.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="179.9" y="421" width="0.1" height="15.0" fill="rgb(246,162,12)" rx="2" ry="2" />
<text x="182.93" y="431.5" ></text>
</g>
<g >
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="712.5" y="533" width="0.2" height="15.0" fill="rgb(242,45,16)" rx="2" ry="2" />
<text x="715.54" y="543.5" ></text>
</g>
<g >
<title>hash_del_stream (2 samples, 0.01%)</title><rect x="637.2" y="597" width="0.1" height="15.0" fill="rgb(236,17,0)" rx="2" ry="2" />
<text x="640.22" y="607.5" ></text>
</g>
<g >
<title>Maat_scan_proto_addr (2 samples, 0.01%)</title><rect x="516.2" y="485" width="0.1" height="15.0" fill="rgb(222,153,2)" rx="2" ry="2" />
<text x="519.19" y="495.5" ></text>
</g>
<g >
<title>__tls_get_addr (5 samples, 0.02%)</title><rect x="198.3" y="661" width="0.3" height="15.0" fill="rgb(208,173,6)" rx="2" ry="2" />
<text x="201.27" y="671.5" ></text>
</g>
<g >
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="347.9" y="437" width="0.1" height="15.0" fill="rgb(237,8,0)" rx="2" ry="2" />
<text x="350.91" y="447.5" ></text>
</g>
<g >
<title>malloc (8 samples, 0.04%)</title><rect x="330.7" y="293" width="0.5" height="15.0" fill="rgb(252,172,10)" rx="2" ry="2" />
<text x="333.69" y="303.5" ></text>
</g>
<g >
<title>http_callPlugin (24 samples, 0.12%)</title><rect x="691.1" y="469" width="1.4" height="15.0" fill="rgb(236,100,15)" rx="2" ry="2" />
<text x="694.13" y="479.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="526.2" y="421" width="0.1" height="15.0" fill="rgb(240,74,53)" rx="2" ry="2" />
<text x="529.15" y="431.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (7 samples, 0.03%)</title><rect x="693.7" y="549" width="0.4" height="15.0" fill="rgb(237,62,50)" rx="2" ry="2" />
<text x="696.66" y="559.5" ></text>
</g>
<g >
<title>_IO_no_init (2 samples, 0.01%)</title><rect x="710.9" y="645" width="0.1" height="15.0" fill="rgb(245,55,19)" rx="2" ry="2" />
<text x="713.89" y="655.5" ></text>
</g>
<g >
<title>APP_SKETCH_SSL_PLUG_ENTRY (4 samples, 0.02%)</title><rect x="180.0" y="469" width="0.3" height="15.0" fill="rgb(208,119,52)" rx="2" ry="2" />
<text x="183.05" y="479.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="295.7" y="309" width="0.1" height="15.0" fill="rgb(239,92,39)" rx="2" ry="2" />
<text x="298.71" y="319.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="699.4" y="517" width="0.3" height="15.0" fill="rgb(212,224,47)" rx="2" ry="2" />
<text x="702.39" y="527.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (1,590 samples, 7.95%)</title><rect x="274.4" y="501" width="93.8" height="15.0" fill="rgb(250,223,10)" rx="2" ry="2" />
<text x="277.42" y="511.5" >plugin_call..</text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="279.4" y="437" width="0.1" height="15.0" fill="rgb(227,47,19)" rx="2" ry="2" />
<text x="282.37" y="447.5" ></text>
</g>
<g >
<title>cJSON_CreateNumber (4 samples, 0.02%)</title><rect x="350.2" y="437" width="0.2" height="15.0" fill="rgb(248,86,6)" rx="2" ry="2" />
<text x="353.15" y="447.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (5 samples, 0.02%)</title><rect x="255.0" y="213" width="0.2" height="15.0" fill="rgb(226,42,42)" rx="2" ry="2" />
<text x="257.95" y="223.5" ></text>
</g>
<g >
<title>operator new[] (2 samples, 0.01%)</title><rect x="301.0" y="341" width="0.1" height="15.0" fill="rgb(214,167,21)" rx="2" ry="2" />
<text x="304.02" y="351.5" ></text>
</g>
<g >
<title>inet_ntop (2 samples, 0.01%)</title><rect x="698.9" y="533" width="0.1" height="15.0" fill="rgb(249,145,26)" rx="2" ry="2" />
<text x="701.91" y="543.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="345.4" y="469" width="0.2" height="15.0" fill="rgb(240,141,28)" rx="2" ry="2" />
<text x="348.43" y="479.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="177.5" y="373" width="0.1" height="15.0" fill="rgb(247,40,41)" rx="2" ry="2" />
<text x="180.51" y="383.5" ></text>
</g>
<g >
<title>plugin_process_pending (39 samples, 0.19%)</title><rect x="289.6" y="357" width="2.3" height="15.0" fill="rgb(248,195,5)" rx="2" ry="2" />
<text x="292.64" y="367.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (2 samples, 0.01%)</title><rect x="712.5" y="421" width="0.2" height="15.0" fill="rgb(214,157,44)" rx="2" ry="2" />
<text x="715.54" y="431.5" ></text>
</g>
<g >
<title>plugin_process_pending (23 samples, 0.11%)</title><rect x="330.0" y="373" width="1.3" height="15.0" fill="rgb(209,84,43)" rx="2" ry="2" />
<text x="332.98" y="383.5" ></text>
</g>
<g >
<title>record_link_info_entry_raw (4 samples, 0.02%)</title><rect x="539.0" y="517" width="0.2" height="15.0" fill="rgb(218,73,49)" rx="2" ry="2" />
<text x="541.95" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (31 samples, 0.15%)</title><rect x="129.3" y="629" width="1.8" height="15.0" fill="rgb(217,124,1)" rx="2" ry="2" />
<text x="132.26" y="639.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="347.9" y="421" width="0.1" height="15.0" fill="rgb(215,103,53)" rx="2" ry="2" />
<text x="350.91" y="431.5" ></text>
</g>
<g >
<title>tsg_send_log (36 samples, 0.18%)</title><rect x="293.2" y="309" width="2.2" height="15.0" fill="rgb(220,26,38)" rx="2" ry="2" />
<text x="296.23" y="319.5" ></text>
</g>
<g >
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="181.7" y="437" width="0.1" height="15.0" fill="rgb(247,164,17)" rx="2" ry="2" />
<text x="184.70" y="447.5" ></text>
</g>
<g >
<title>do_page_fault (3 samples, 0.01%)</title><rect x="338.2" y="389" width="0.2" height="15.0" fill="rgb(205,183,19)" rx="2" ry="2" />
<text x="341.18" y="399.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="288.2" y="309" width="0.1" height="15.0" fill="rgb(244,223,50)" rx="2" ry="2" />
<text x="291.22" y="319.5" ></text>
</g>
<g >
<title>get_propluginfo_plugid (4 samples, 0.02%)</title><rect x="297.2" y="341" width="0.2" height="15.0" fill="rgb(231,227,47)" rx="2" ry="2" />
<text x="300.18" y="351.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="259.8" y="485" width="0.2" height="15.0" fill="rgb(246,160,15)" rx="2" ry="2" />
<text x="262.85" y="495.5" ></text>
</g>
<g >
<title>app_proto_worke_process (2 samples, 0.01%)</title><rect x="169.7" y="501" width="0.1" height="15.0" fill="rgb(236,212,39)" rx="2" ry="2" />
<text x="172.72" y="511.5" ></text>
</g>
<g >
<title>X509_NAME_get_index_by_OBJ (3 samples, 0.01%)</title><rect x="327.5" y="373" width="0.2" height="15.0" fill="rgb(230,195,27)" rx="2" ry="2" />
<text x="330.50" y="383.5" ></text>
</g>
<g >
<title>ssl_analyseStream (82 samples, 0.41%)</title><rect x="251.7" y="453" width="4.8" height="15.0" fill="rgb(232,151,6)" rx="2" ry="2" />
<text x="254.71" y="463.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (4 samples, 0.02%)</title><rect x="13.8" y="661" width="0.3" height="15.0" fill="rgb(240,169,17)" rx="2" ry="2" />
<text x="16.83" y="671.5" ></text>
</g>
<g >
<title>stream_process (37 samples, 0.18%)</title><rect x="485.3" y="533" width="2.2" height="15.0" fill="rgb(222,144,38)" rx="2" ry="2" />
<text x="488.34" y="543.5" ></text>
</g>
<g >
<title>tsg_scan_app_properties_policy (2 samples, 0.01%)</title><rect x="168.6" y="485" width="0.1" height="15.0" fill="rgb(206,40,15)" rx="2" ry="2" />
<text x="171.60" y="495.5" ></text>
</g>
<g >
<title>TLD_append (7 samples, 0.03%)</title><rect x="293.4" y="293" width="0.4" height="15.0" fill="rgb(207,173,20)" rx="2" ry="2" />
<text x="296.41" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (21 samples, 0.10%)</title><rect x="190.7" y="565" width="1.3" height="15.0" fill="rgb(217,126,29)" rx="2" ry="2" />
<text x="193.72" y="575.5" ></text>
</g>
<g >
<title>[sapp] (144 samples, 0.72%)</title><rect x="169.0" y="597" width="8.5" height="15.0" fill="rgb(220,7,18)" rx="2" ry="2" />
<text x="171.96" y="607.5" ></text>
</g>
<g >
<title>ASN1_template_free (24 samples, 0.12%)</title><rect x="324.7" y="357" width="1.4" height="15.0" fill="rgb(211,224,19)" rx="2" ry="2" />
<text x="327.67" y="367.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="694.1" y="453" width="0.1" height="15.0" fill="rgb(229,189,49)" rx="2" ry="2" />
<text x="697.08" y="463.5" ></text>
</g>
<g >
<title>malloc_consolidate (6 samples, 0.03%)</title><rect x="400.0" y="325" width="0.3" height="15.0" fill="rgb(207,65,9)" rx="2" ry="2" />
<text x="402.99" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="326.6" y="245" width="0.1" height="15.0" fill="rgb(245,23,36)" rx="2" ry="2" />
<text x="329.62" y="255.5" ></text>
</g>
<g >
<title>http_analyseACompleteRegion (40 samples, 0.20%)</title><rect x="302.3" y="437" width="2.4" height="15.0" fill="rgb(239,185,53)" rx="2" ry="2" />
<text x="305.32" y="447.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (71 samples, 0.35%)</title><rect x="319.3" y="245" width="4.2" height="15.0" fill="rgb(205,82,25)" rx="2" ry="2" />
<text x="322.30" y="255.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="328.0" y="197" width="0.2" height="15.0" fill="rgb(234,72,48)" rx="2" ry="2" />
<text x="331.03" y="207.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (2 samples, 0.01%)</title><rect x="182.8" y="645" width="0.1" height="15.0" fill="rgb(232,53,10)" rx="2" ry="2" />
<text x="185.76" y="655.5" ></text>
</g>
<g >
<title>project_requirement_destroy (36 samples, 0.18%)</title><rect x="637.3" y="597" width="2.2" height="15.0" fill="rgb(218,47,27)" rx="2" ry="2" />
<text x="640.34" y="607.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (4 samples, 0.02%)</title><rect x="545.6" y="453" width="0.2" height="15.0" fill="rgb(205,149,47)" rx="2" ry="2" />
<text x="548.56" y="463.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (64 samples, 0.32%)</title><rect x="370.9" y="469" width="3.8" height="15.0" fill="rgb(253,227,21)" rx="2" ry="2" />
<text x="373.91" y="479.5" ></text>
</g>
<g >
<title>checkstreamorder (60 samples, 0.30%)</title><rect x="386.7" y="533" width="3.6" height="15.0" fill="rgb(239,88,23)" rx="2" ry="2" />
<text x="389.72" y="543.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="172.9" y="213" width="0.4" height="15.0" fill="rgb(243,159,29)" rx="2" ry="2" />
<text x="175.85" y="223.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (2 samples, 0.01%)</title><rect x="99.7" y="661" width="0.1" height="15.0" fill="rgb(218,203,7)" rx="2" ry="2" />
<text x="102.71" y="671.5" ></text>
</g>
<g >
<title>plugin_call_appentry (24 samples, 0.12%)</title><rect x="691.1" y="405" width="1.4" height="15.0" fill="rgb(208,176,47)" rx="2" ry="2" />
<text x="694.13" y="415.5" ></text>
</g>
<g >
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="175.5" y="421" width="0.1" height="15.0" fill="rgb(238,129,39)" rx="2" ry="2" />
<text x="178.50" y="431.5" ></text>
</g>
<g >
<title>[wire_graft_plug.so] (3 samples, 0.01%)</title><rect x="478.9" y="485" width="0.1" height="15.0" fill="rgb(225,110,14)" rx="2" ry="2" />
<text x="481.85" y="495.5" ></text>
</g>
<g >
<title>__libc_nanosleep (3 samples, 0.01%)</title><rect x="645.0" y="629" width="0.2" height="15.0" fill="rgb(210,192,38)" rx="2" ry="2" />
<text x="648.00" y="639.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="394.7" y="261" width="0.2" height="15.0" fill="rgb(251,78,0)" rx="2" ry="2" />
<text x="397.74" y="271.5" ></text>
</g>
<g >
<title>http_callPlugin (4 samples, 0.02%)</title><rect x="295.6" y="389" width="0.2" height="15.0" fill="rgb(217,101,1)" rx="2" ry="2" />
<text x="298.59" y="399.5" ></text>
</g>
<g >
<title>X509V3_get_d2i (3 samples, 0.01%)</title><rect x="255.2" y="373" width="0.2" height="15.0" fill="rgb(227,124,4)" rx="2" ry="2" />
<text x="258.25" y="383.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="257.4" y="453" width="0.1" height="15.0" fill="rgb(232,220,26)" rx="2" ry="2" />
<text x="260.43" y="463.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (5 samples, 0.02%)</title><rect x="178.7" y="517" width="0.3" height="15.0" fill="rgb(233,218,0)" rx="2" ry="2" />
<text x="181.75" y="527.5" ></text>
</g>
<g >
<title>quiet_vmstat (10 samples, 0.05%)</title><rect x="1189.2" y="677" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1192.17" y="687.5" ></text>
</g>
<g >
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="696.8" y="581" width="0.2" height="15.0" fill="rgb(207,160,23)" rx="2" ry="2" />
<text x="699.85" y="591.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="392.0" y="293" width="0.1" height="15.0" fill="rgb(243,10,20)" rx="2" ry="2" />
<text x="395.03" y="303.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (23 samples, 0.11%)</title><rect x="486.2" y="485" width="1.3" height="15.0" fill="rgb(232,75,18)" rx="2" ry="2" />
<text x="489.16" y="495.5" ></text>
</g>
<g >
<title>_IO_vsprintf (5 samples, 0.02%)</title><rect x="697.8" y="485" width="0.3" height="15.0" fill="rgb(208,163,26)" rx="2" ry="2" />
<text x="700.79" y="495.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="171.1" y="309" width="0.1" height="15.0" fill="rgb(244,171,24)" rx="2" ry="2" />
<text x="174.08" y="319.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="168.1" y="341" width="0.1" height="15.0" fill="rgb(227,3,40)" rx="2" ry="2" />
<text x="171.07" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="111.6" y="629" width="0.2" height="15.0" fill="rgb(208,101,46)" rx="2" ry="2" />
<text x="114.63" y="639.5" ></text>
</g>
<g >
<title>TLD_append (9 samples, 0.04%)</title><rect x="396.3" y="405" width="0.5" height="15.0" fill="rgb(222,108,46)" rx="2" ry="2" />
<text x="399.28" y="415.5" ></text>
</g>
<g >
<title>do_nanosleep (21 samples, 0.10%)</title><rect x="643.6" y="549" width="1.2" height="15.0" fill="rgb(228,146,16)" rx="2" ry="2" />
<text x="646.59" y="559.5" ></text>
</g>
<g >
<title>ssl_callPlugins (3 samples, 0.01%)</title><rect x="182.1" y="549" width="0.1" height="15.0" fill="rgb(210,69,30)" rx="2" ry="2" />
<text x="185.05" y="559.5" ></text>
</g>
<g >
<title>PROT_PROCESS (30 samples, 0.15%)</title><rect x="287.6" y="389" width="1.8" height="15.0" fill="rgb(253,66,7)" rx="2" ry="2" />
<text x="290.63" y="399.5" ></text>
</g>
<g >
<title>_make_outer_status (121 samples, 0.60%)</title><rect x="131.1" y="661" width="7.1" height="15.0" fill="rgb(244,68,14)" rx="2" ry="2" />
<text x="134.09" y="671.5" ></text>
</g>
<g >
<title>http_callPlugin (5 samples, 0.02%)</title><rect x="287.1" y="405" width="0.3" height="15.0" fill="rgb(215,41,45)" rx="2" ry="2" />
<text x="290.10" y="415.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="537.8" y="453" width="0.2" height="15.0" fill="rgb(253,221,36)" rx="2" ry="2" />
<text x="540.77" y="463.5" ></text>
</g>
<g >
<title>__clone (4 samples, 0.02%)</title><rect x="13.8" y="693" width="0.3" height="15.0" fill="rgb(250,75,22)" rx="2" ry="2" />
<text x="16.83" y="703.5" ></text>
</g>
<g >
<title>capture_packet_entry (29 samples, 0.14%)</title><rect x="514.6" y="501" width="1.7" height="15.0" fill="rgb(209,79,6)" rx="2" ry="2" />
<text x="517.59" y="511.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (7 samples, 0.03%)</title><rect x="174.2" y="517" width="0.4" height="15.0" fill="rgb(246,144,30)" rx="2" ry="2" />
<text x="177.21" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (121 samples, 0.60%)</title><rect x="261.3" y="501" width="7.1" height="15.0" fill="rgb(254,170,35)" rx="2" ry="2" />
<text x="264.26" y="511.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="181.9" y="533" width="0.2" height="15.0" fill="rgb(232,145,34)" rx="2" ry="2" />
<text x="184.93" y="543.5" ></text>
</g>
<g >
<title>do_page_fault (2 samples, 0.01%)</title><rect x="639.1" y="549" width="0.1" height="15.0" fill="rgb(231,19,47)" rx="2" ry="2" />
<text x="642.11" y="559.5" ></text>
</g>
<g >
<title>magic_buffer (2 samples, 0.01%)</title><rect x="707.6" y="661" width="0.2" height="15.0" fill="rgb(230,145,35)" rx="2" ry="2" />
<text x="710.64" y="671.5" ></text>
</g>
<g >
<title>CBoolExprMatch::get_mapped_id (11 samples, 0.05%)</title><rect x="110.1" y="613" width="0.6" height="15.0" fill="rgb(252,220,3)" rx="2" ry="2" />
<text x="113.09" y="623.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="303.2" y="373" width="0.2" height="15.0" fill="rgb(253,47,48)" rx="2" ry="2" />
<text x="306.20" y="383.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (16 samples, 0.08%)</title><rect x="397.7" y="389" width="1.0" height="15.0" fill="rgb(227,196,8)" rx="2" ry="2" />
<text x="400.75" y="399.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="178.2" y="485" width="0.1" height="15.0" fill="rgb(206,95,52)" rx="2" ry="2" />
<text x="181.22" y="495.5" ></text>
</g>
<g >
<title>page_fault (5 samples, 0.02%)</title><rect x="140.5" y="613" width="0.3" height="15.0" fill="rgb(232,94,49)" rx="2" ry="2" />
<text x="143.53" y="623.5" ></text>
</g>
<g >
<title>plugin_call_appentry (23 samples, 0.11%)</title><rect x="170.7" y="421" width="1.3" height="15.0" fill="rgb(214,71,21)" rx="2" ry="2" />
<text x="173.67" y="431.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (2 samples, 0.01%)</title><rect x="690.0" y="581" width="0.1" height="15.0" fill="rgb(254,112,25)" rx="2" ry="2" />
<text x="693.01" y="591.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="304.3" y="341" width="0.1" height="15.0" fill="rgb(254,26,49)" rx="2" ry="2" />
<text x="307.26" y="351.5" ></text>
</g>
<g >
<title>tsg_l7_protocol_name2id (4 samples, 0.02%)</title><rect x="338.5" y="437" width="0.3" height="15.0" fill="rgb(213,16,3)" rx="2" ry="2" />
<text x="341.53" y="447.5" ></text>
</g>
<g >
<title>__strnlen_sse2 (3 samples, 0.01%)</title><rect x="342.5" y="437" width="0.2" height="15.0" fill="rgb(226,51,32)" rx="2" ry="2" />
<text x="345.54" y="447.5" ></text>
</g>
<g >
<title>plugin_process_data (24 samples, 0.12%)</title><rect x="691.1" y="421" width="1.4" height="15.0" fill="rgb(240,10,40)" rx="2" ry="2" />
<text x="694.13" y="431.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (23 samples, 0.11%)</title><rect x="337.4" y="469" width="1.4" height="15.0" fill="rgb(219,211,28)" rx="2" ry="2" />
<text x="340.41" y="479.5" ></text>
</g>
<g >
<title>CAhoCorasick::SearchMem (163 samples, 0.81%)</title><rect x="73.5" y="661" width="9.6" height="15.0" fill="rgb(239,64,25)" rx="2" ry="2" />
<text x="76.46" y="671.5" ></text>
</g>
<g >
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="331.7" y="309" width="0.5" height="15.0" fill="rgb(238,120,9)" rx="2" ry="2" />
<text x="334.75" y="319.5" ></text>
</g>
<g >
<title>tsg_record_dns_entry (58 samples, 0.29%)</title><rect x="697.4" y="613" width="3.4" height="15.0" fill="rgb(205,151,38)" rx="2" ry="2" />
<text x="700.38" y="623.5" ></text>
</g>
<g >
<title>__clone (2 samples, 0.01%)</title><rect x="15.8" y="693" width="0.2" height="15.0" fill="rgb(208,125,14)" rx="2" ry="2" />
<text x="18.84" y="703.5" ></text>
</g>
<g >
<title>ssl_doWithCertificateDetail (5 samples, 0.02%)</title><rect x="256.3" y="389" width="0.2" height="15.0" fill="rgb(248,80,29)" rx="2" ry="2" />
<text x="259.25" y="399.5" ></text>
</g>
<g >
<title>MESA_get_stream_opt (6 samples, 0.03%)</title><rect x="476.6" y="453" width="0.3" height="15.0" fill="rgb(243,4,26)" rx="2" ry="2" />
<text x="479.55" y="463.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (3 samples, 0.01%)</title><rect x="169.0" y="389" width="0.2" height="15.0" fill="rgb(216,127,11)" rx="2" ry="2" />
<text x="172.02" y="399.5" ></text>
</g>
<g >
<title>http_callPlugin (11 samples, 0.05%)</title><rect x="695.2" y="485" width="0.6" height="15.0" fill="rgb(239,58,23)" rx="2" ry="2" />
<text x="698.20" y="495.5" ></text>
</g>
<g >
<title>page_fault (2 samples, 0.01%)</title><rect x="400.2" y="309" width="0.1" height="15.0" fill="rgb(226,94,10)" rx="2" ry="2" />
<text x="403.23" y="319.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (3 samples, 0.01%)</title><rect x="1177.3" y="309" width="0.2" height="15.0" fill="rgb(249,83,27)" rx="2" ry="2" />
<text x="1180.32" y="319.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="180.0" y="453" width="0.3" height="15.0" fill="rgb(235,196,30)" rx="2" ry="2" />
<text x="183.05" y="463.5" ></text>
</g>
<g >
<title>ssl_callPlugins (5 samples, 0.02%)</title><rect x="256.3" y="373" width="0.2" height="15.0" fill="rgb(215,109,32)" rx="2" ry="2" />
<text x="259.25" y="383.5" ></text>
</g>
<g >
<title>__GI_____strtod_l_internal (2 samples, 0.01%)</title><rect x="698.2" y="453" width="0.1" height="15.0" fill="rgb(206,48,29)" rx="2" ry="2" />
<text x="701.21" y="463.5" ></text>
</g>
<g >
<title>[sapp] (12 samples, 0.06%)</title><rect x="712.5" y="677" width="0.7" height="15.0" fill="rgb(234,41,46)" rx="2" ry="2" />
<text x="715.54" y="687.5" ></text>
</g>
<g >
<title>sapp_usleep (35 samples, 0.17%)</title><rect x="643.1" y="645" width="2.1" height="15.0" fill="rgb(230,61,8)" rx="2" ry="2" />
<text x="646.12" y="655.5" ></text>
</g>
<g >
<title>update_polling_inject_context (34 samples, 0.17%)</title><rect x="479.1" y="549" width="2.0" height="15.0" fill="rgb(237,219,29)" rx="2" ry="2" />
<text x="482.09" y="559.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (26 samples, 0.13%)</title><rect x="306.6" y="453" width="1.6" height="15.0" fill="rgb(229,157,0)" rx="2" ry="2" />
<text x="309.62" y="463.5" ></text>
</g>
<g >
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="392.7" y="485" width="0.2" height="15.0" fill="rgb(214,134,19)" rx="2" ry="2" />
<text x="395.74" y="495.5" ></text>
</g>
<g >
<title>layer_addr_ntop_r (7 samples, 0.03%)</title><rect x="180.3" y="533" width="0.4" height="15.0" fill="rgb(234,98,36)" rx="2" ry="2" />
<text x="183.28" y="543.5" ></text>
</g>
<g >
<title>[sapp] (5 samples, 0.02%)</title><rect x="280.1" y="437" width="0.3" height="15.0" fill="rgb(209,24,33)" rx="2" ry="2" />
<text x="283.08" y="447.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new0 (2 samples, 0.01%)</title><rect x="359.3" y="389" width="0.1" height="15.0" fill="rgb(239,140,1)" rx="2" ry="2" />
<text x="362.29" y="399.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="15.1" y="693" width="0.1" height="15.0" fill="rgb(206,103,14)" rx="2" ry="2" />
<text x="18.13" y="703.5" ></text>
</g>
<g >
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="523.1" y="485" width="0.6" height="15.0" fill="rgb(254,141,5)" rx="2" ry="2" />
<text x="526.15" y="495.5" ></text>
</g>
<g >
<title>CRYPTO_free (4 samples, 0.02%)</title><rect x="325.1" y="261" width="0.3" height="15.0" fill="rgb(217,134,24)" rx="2" ry="2" />
<text x="328.14" y="271.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (7 samples, 0.03%)</title><rect x="541.7" y="469" width="0.4" height="15.0" fill="rgb(228,137,21)" rx="2" ry="2" />
<text x="544.67" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="332.6" y="437" width="0.1" height="15.0" fill="rgb(235,214,45)" rx="2" ry="2" />
<text x="335.57" y="447.5" ></text>
</g>
<g >
<title>mail_protocol_identify_by_first_payload (4 samples, 0.02%)</title><rect x="345.1" y="469" width="0.3" height="15.0" fill="rgb(231,130,16)" rx="2" ry="2" />
<text x="348.14" y="479.5" ></text>
</g>
<g >
<title>[libqmbundle.so] (58 samples, 0.29%)</title><rect x="192.2" y="677" width="3.4" height="15.0" fill="rgb(216,118,12)" rx="2" ry="2" />
<text x="195.20" y="687.5" ></text>
</g>
<g >
<title>_int_malloc (10 samples, 0.05%)</title><rect x="305.6" y="405" width="0.6" height="15.0" fill="rgb(225,99,26)" rx="2" ry="2" />
<text x="308.62" y="415.5" ></text>
</g>
<g >
<title>rdk:broker43 (2 samples, 0.01%)</title><rect x="13.4" y="709" width="0.1" height="15.0" fill="rgb(254,176,23)" rx="2" ry="2" />
<text x="16.42" y="719.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="486.6" y="421" width="0.2" height="15.0" fill="rgb(218,208,5)" rx="2" ry="2" />
<text x="489.64" y="431.5" ></text>
</g>
<g >
<title>tcp_dump_sig (58 samples, 0.29%)</title><rect x="280.4" y="453" width="3.4" height="15.0" fill="rgb(217,198,44)" rx="2" ry="2" />
<text x="283.37" y="463.5" ></text>
</g>
<g >
<title>Maat_full_scan_string_detail (186 samples, 0.93%)</title><rect x="99.8" y="693" width="11.0" height="15.0" fill="rgb(207,54,15)" rx="2" ry="2" />
<text x="102.83" y="703.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="172.9" y="309" width="0.4" height="15.0" fill="rgb(221,194,50)" rx="2" ry="2" />
<text x="175.85" y="319.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="178.2" y="405" width="0.1" height="15.0" fill="rgb(245,72,0)" rx="2" ry="2" />
<text x="181.22" y="415.5" ></text>
</g>
<g >
<title>rdk:broker61 (4 samples, 0.02%)</title><rect x="14.7" y="709" width="0.2" height="15.0" fill="rgb(252,223,47)" rx="2" ry="2" />
<text x="17.66" y="719.5" ></text>
</g>
<g >
<title>scaling_bloom_check (97 samples, 0.48%)</title><rect x="495.8" y="549" width="5.7" height="15.0" fill="rgb(243,20,53)" rx="2" ry="2" />
<text x="498.78" y="559.5" ></text>
</g>
<g >
<title>fn_DocFormatCallBack (2 samples, 0.01%)</title><rect x="300.9" y="341" width="0.1" height="15.0" fill="rgb(222,165,0)" rx="2" ry="2" />
<text x="303.90" y="351.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="346.1" y="421" width="0.2" height="15.0" fill="rgb(231,87,26)" rx="2" ry="2" />
<text x="349.14" y="431.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (7 samples, 0.03%)</title><rect x="400.7" y="469" width="0.4" height="15.0" fill="rgb(209,26,39)" rx="2" ry="2" />
<text x="403.70" y="479.5" ></text>
</g>
<g >
<title>__schedule (51 samples, 0.25%)</title><rect x="142.9" y="597" width="3.0" height="15.0" fill="rgb(217,181,15)" rx="2" ry="2" />
<text x="145.89" y="607.5" ></text>
</g>
<g >
<title>operator new (6 samples, 0.03%)</title><rect x="300.4" y="309" width="0.3" height="15.0" fill="rgb(206,100,47)" rx="2" ry="2" />
<text x="303.37" y="319.5" ></text>
</g>
<g >
<title>malloc (6 samples, 0.03%)</title><rect x="288.6" y="293" width="0.4" height="15.0" fill="rgb(232,162,14)" rx="2" ry="2" />
<text x="291.63" y="303.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="168.8" y="629" width="0.2" height="15.0" fill="rgb(228,86,22)" rx="2" ry="2" />
<text x="171.78" y="639.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="171.4" y="293" width="0.2" height="15.0" fill="rgb(223,102,0)" rx="2" ry="2" />
<text x="174.38" y="303.5" ></text>
</g>
<g >
<title>qmdpi_flow_info_get (2 samples, 0.01%)</title><rect x="708.9" y="693" width="0.1" height="15.0" fill="rgb(244,152,43)" rx="2" ry="2" />
<text x="711.88" y="703.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (6 samples, 0.03%)</title><rect x="169.2" y="421" width="0.3" height="15.0" fill="rgb(207,41,40)" rx="2" ry="2" />
<text x="172.19" y="431.5" ></text>
</g>
<g >
<title>start_thread (2 samples, 0.01%)</title><rect x="16.0" y="677" width="0.1" height="15.0" fill="rgb(229,59,37)" rx="2" ry="2" />
<text x="18.96" y="687.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (98 samples, 0.49%)</title><rect x="278.5" y="485" width="5.8" height="15.0" fill="rgb(237,191,30)" rx="2" ry="2" />
<text x="281.49" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="712.5" y="213" width="0.2" height="15.0" fill="rgb(206,40,43)" rx="2" ry="2" />
<text x="715.54" y="223.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="278.7" y="469" width="0.1" height="15.0" fill="rgb(212,229,17)" rx="2" ry="2" />
<text x="281.72" y="479.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (3 samples, 0.01%)</title><rect x="392.0" y="437" width="0.2" height="15.0" fill="rgb(205,73,18)" rx="2" ry="2" />
<text x="395.03" y="447.5" ></text>
</g>
<g >
<title>irq_exit (6 samples, 0.03%)</title><rect x="1177.2" y="597" width="0.4" height="15.0" fill="rgb(217,3,19)" rx="2" ry="2" />
<text x="1180.20" y="607.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="362.1" y="389" width="0.1" height="15.0" fill="rgb(222,101,18)" rx="2" ry="2" />
<text x="365.07" y="399.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="326.9" y="181" width="0.1" height="15.0" fill="rgb(214,109,4)" rx="2" ry="2" />
<text x="329.85" y="191.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (23 samples, 0.11%)</title><rect x="170.7" y="389" width="1.3" height="15.0" fill="rgb(230,138,0)" rx="2" ry="2" />
<text x="173.67" y="399.5" ></text>
</g>
<g >
<title>malloc_consolidate (4 samples, 0.02%)</title><rect x="141.3" y="645" width="0.2" height="15.0" fill="rgb(232,2,1)" rx="2" ry="2" />
<text x="144.29" y="655.5" ></text>
</g>
<g >
<title>ASN1_STRING_to_UTF8 (3 samples, 0.01%)</title><rect x="252.8" y="213" width="0.1" height="15.0" fill="rgb(241,125,29)" rx="2" ry="2" />
<text x="255.77" y="223.5" ></text>
</g>
<g >
<title>__clock_gettime (7 samples, 0.03%)</title><rect x="469.2" y="501" width="0.4" height="15.0" fill="rgb(250,5,52)" rx="2" ry="2" />
<text x="472.24" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (29 samples, 0.14%)</title><rect x="398.8" y="389" width="1.7" height="15.0" fill="rgb(232,146,7)" rx="2" ry="2" />
<text x="401.75" y="399.5" ></text>
</g>
<g >
<title>plugin_process_close (5 samples, 0.02%)</title><rect x="394.6" y="373" width="0.3" height="15.0" fill="rgb(248,157,50)" rx="2" ry="2" />
<text x="397.62" y="383.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (8 samples, 0.04%)</title><rect x="712.7" y="453" width="0.4" height="15.0" fill="rgb(209,8,25)" rx="2" ry="2" />
<text x="715.66" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.04%)</title><rect x="337.9" y="421" width="0.5" height="15.0" fill="rgb(251,39,36)" rx="2" ry="2" />
<text x="340.88" y="431.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (75 samples, 0.37%)</title><rect x="396.2" y="421" width="4.4" height="15.0" fill="rgb(207,167,51)" rx="2" ry="2" />
<text x="399.16" y="431.5" ></text>
</g>
<g >
<title>system_call_fastpath (22 samples, 0.11%)</title><rect x="643.5" y="597" width="1.3" height="15.0" fill="rgb(251,172,54)" rx="2" ry="2" />
<text x="646.53" y="607.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="707.8" y="645" width="0.1" height="15.0" fill="rgb(212,97,27)" rx="2" ry="2" />
<text x="710.76" y="655.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (102 samples, 0.51%)</title><rect x="318.0" y="309" width="6.0" height="15.0" fill="rgb(233,85,20)" rx="2" ry="2" />
<text x="321.01" y="319.5" ></text>
</g>
<g >
<title>__clone (4 samples, 0.02%)</title><rect x="14.7" y="693" width="0.2" height="15.0" fill="rgb(226,103,0)" rx="2" ry="2" />
<text x="17.66" y="703.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="712.5" y="261" width="0.2" height="15.0" fill="rgb(242,38,51)" rx="2" ry="2" />
<text x="715.54" y="271.5" ></text>
</g>
<g >
<title>[quic.so] (17 samples, 0.08%)</title><rect x="516.6" y="501" width="1.0" height="15.0" fill="rgb(233,31,42)" rx="2" ry="2" />
<text x="519.60" y="511.5" ></text>
</g>
<g >
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="181.7" y="661" width="0.1" height="15.0" fill="rgb(206,70,53)" rx="2" ry="2" />
<text x="184.70" y="671.5" ></text>
</g>
<g >
<title>http_callPlugin (6 samples, 0.03%)</title><rect x="696.5" y="485" width="0.3" height="15.0" fill="rgb(253,223,21)" rx="2" ry="2" />
<text x="699.50" y="495.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="641.8" y="501" width="0.1" height="15.0" fill="rgb(234,81,3)" rx="2" ry="2" />
<text x="644.76" y="511.5" ></text>
</g>
<g >
<title>ip_rcv (4 samples, 0.02%)</title><rect x="1177.3" y="421" width="0.3" height="15.0" fill="rgb(228,201,32)" rx="2" ry="2" />
<text x="1180.32" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="712.5" y="357" width="0.2" height="15.0" fill="rgb(214,224,35)" rx="2" ry="2" />
<text x="715.54" y="367.5" ></text>
</g>
<g >
<title>realloc (2 samples, 0.01%)</title><rect x="111.9" y="645" width="0.1" height="15.0" fill="rgb(233,106,0)" rx="2" ry="2" />
<text x="114.86" y="655.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (7 samples, 0.03%)</title><rect x="180.7" y="501" width="0.4" height="15.0" fill="rgb(224,210,14)" rx="2" ry="2" />
<text x="183.69" y="511.5" ></text>
</g>
<g >
<title>handle_mm_fault (2 samples, 0.01%)</title><rect x="267.6" y="421" width="0.1" height="15.0" fill="rgb(249,16,11)" rx="2" ry="2" />
<text x="270.58" y="431.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="180.5" y="485" width="0.2" height="15.0" fill="rgb(216,50,11)" rx="2" ry="2" />
<text x="183.52" y="495.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (2 samples, 0.01%)</title><rect x="14.9" y="629" width="0.1" height="15.0" fill="rgb(226,157,23)" rx="2" ry="2" />
<text x="17.90" y="639.5" ></text>
</g>
<g >
<title>http_doWithChunkedData (2 samples, 0.01%)</title><rect x="695.1" y="517" width="0.1" height="15.0" fill="rgb(233,209,39)" rx="2" ry="2" />
<text x="698.08" y="527.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="708.0" y="693" width="0.1" height="15.0" fill="rgb(235,69,5)" rx="2" ry="2" />
<text x="711.00" y="703.5" ></text>
</g>
<g >
<title>TLD_cancel (6 samples, 0.03%)</title><rect x="362.5" y="421" width="0.3" height="15.0" fill="rgb(207,229,24)" rx="2" ry="2" />
<text x="365.48" y="431.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="166.2" y="373" width="0.1" height="15.0" fill="rgb(232,165,9)" rx="2" ry="2" />
<text x="169.19" y="383.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (15 samples, 0.07%)</title><rect x="320.2" y="229" width="0.9" height="15.0" fill="rgb(207,105,33)" rx="2" ry="2" />
<text x="323.19" y="239.5" ></text>
</g>
<g >
<title>tsg_record_udp_entry (23 samples, 0.11%)</title><rect x="486.2" y="501" width="1.3" height="15.0" fill="rgb(217,228,32)" rx="2" ry="2" />
<text x="489.16" y="511.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="141.8" y="693" width="0.1" height="15.0" fill="rgb(215,192,23)" rx="2" ry="2" />
<text x="144.77" y="703.5" ></text>
</g>
<g >
<title>Maat_clean_status (12 samples, 0.06%)</title><rect x="370.2" y="469" width="0.7" height="15.0" fill="rgb(232,15,32)" rx="2" ry="2" />
<text x="373.20" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="255.5" y="229" width="0.1" height="15.0" fill="rgb(241,69,20)" rx="2" ry="2" />
<text x="258.48" y="239.5" ></text>
</g>
<g >
<title>[fw_http_plug.so] (7 samples, 0.03%)</title><rect x="690.5" y="421" width="0.5" height="15.0" fill="rgb(214,171,6)" rx="2" ry="2" />
<text x="693.54" y="431.5" ></text>
</g>
<g >
<title>do_sync_write (2 samples, 0.01%)</title><rect x="295.2" y="181" width="0.2" height="15.0" fill="rgb(205,105,23)" rx="2" ry="2" />
<text x="298.24" y="191.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="15.6" y="693" width="0.2" height="15.0" fill="rgb(214,74,20)" rx="2" ry="2" />
<text x="18.60" y="703.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (50 samples, 0.25%)</title><rect x="640.2" y="565" width="2.9" height="15.0" fill="rgb(218,148,16)" rx="2" ry="2" />
<text x="643.17" y="575.5" ></text>
</g>
<g >
<title>sscanf (4 samples, 0.02%)</title><rect x="698.1" y="501" width="0.2" height="15.0" fill="rgb(205,148,32)" rx="2" ry="2" />
<text x="701.09" y="511.5" ></text>
</g>
<g >
<title>plugin_call_appentry (47 samples, 0.23%)</title><rect x="292.6" y="373" width="2.8" height="15.0" fill="rgb(242,31,28)" rx="2" ry="2" />
<text x="295.58" y="383.5" ></text>
</g>
<g >
<title>start_secondary (8,072 samples, 40.35%)</title><rect x="713.7" y="693" width="476.1" height="15.0" fill="rgb(230,80,52)" rx="2" ry="2" />
<text x="716.66" y="703.5" >start_secondary</text>
</g>
<g >
<title>TLD_append_streaminfo (9 samples, 0.04%)</title><rect x="703.6" y="549" width="0.5" height="15.0" fill="rgb(238,19,34)" rx="2" ry="2" />
<text x="706.57" y="559.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (10 samples, 0.05%)</title><rect x="167.3" y="501" width="0.6" height="15.0" fill="rgb(214,120,19)" rx="2" ry="2" />
<text x="170.31" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="174.7" y="421" width="0.1" height="15.0" fill="rgb(227,12,53)" rx="2" ry="2" />
<text x="177.68" y="431.5" ></text>
</g>
<g >
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="295.6" y="357" width="0.2" height="15.0" fill="rgb(211,131,31)" rx="2" ry="2" />
<text x="298.59" y="367.5" ></text>
</g>
<g >
<title>http_callPluginField (5 samples, 0.02%)</title><rect x="693.3" y="693" width="0.2" height="15.0" fill="rgb(221,196,44)" rx="2" ry="2" />
<text x="696.25" y="703.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="166.1" y="373" width="0.1" height="15.0" fill="rgb(240,116,3)" rx="2" ry="2" />
<text x="169.07" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="343.5" y="437" width="0.2" height="15.0" fill="rgb(252,183,43)" rx="2" ry="2" />
<text x="346.54" y="447.5" ></text>
</g>
<g >
<title>__snprintf (4 samples, 0.02%)</title><rect x="177.8" y="389" width="0.2" height="15.0" fill="rgb(214,88,2)" rx="2" ry="2" />
<text x="180.80" y="399.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="182.4" y="581" width="0.2" height="15.0" fill="rgb(239,201,25)" rx="2" ry="2" />
<text x="185.41" y="591.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (2 samples, 0.01%)</title><rect x="11.5" y="629" width="0.2" height="15.0" fill="rgb(244,227,17)" rx="2" ry="2" />
<text x="14.53" y="639.5" ></text>
</g>
<g >
<title>__clone (2 samples, 0.01%)</title><rect x="12.1" y="693" width="0.1" height="15.0" fill="rgb(226,200,27)" rx="2" ry="2" />
<text x="15.06" y="703.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (36 samples, 0.18%)</title><rect x="252.2" y="325" width="2.1" height="15.0" fill="rgb(221,115,44)" rx="2" ry="2" />
<text x="255.18" y="335.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="332.4" y="421" width="0.1" height="15.0" fill="rgb(246,211,15)" rx="2" ry="2" />
<text x="335.40" y="431.5" ></text>
</g>
<g >
<title>_IO_vsscanf (5 samples, 0.02%)</title><rect x="349.6" y="389" width="0.3" height="15.0" fill="rgb(215,86,4)" rx="2" ry="2" />
<text x="352.56" y="399.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="325.0" y="229" width="0.1" height="15.0" fill="rgb(218,104,10)" rx="2" ry="2" />
<text x="328.02" y="239.5" ></text>
</g>
<g >
<title>stream_process (4 samples, 0.02%)</title><rect x="166.1" y="533" width="0.2" height="15.0" fill="rgb(225,207,44)" rx="2" ry="2" />
<text x="169.07" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="106.4" y="613" width="0.2" height="15.0" fill="rgb(251,118,12)" rx="2" ry="2" />
<text x="109.44" y="623.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (4 samples, 0.02%)</title><rect x="107.4" y="629" width="0.3" height="15.0" fill="rgb(245,136,41)" rx="2" ry="2" />
<text x="110.44" y="639.5" ></text>
</g>
<g >
<title>__do_page_fault (12 samples, 0.06%)</title><rect x="137.5" y="581" width="0.7" height="15.0" fill="rgb(254,103,29)" rx="2" ry="2" />
<text x="140.52" y="591.5" ></text>
</g>
<g >
<title>rdk:broker13 (4 samples, 0.02%)</title><rect x="10.5" y="709" width="0.3" height="15.0" fill="rgb(243,101,12)" rx="2" ry="2" />
<text x="13.53" y="719.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="179.9" y="405" width="0.1" height="15.0" fill="rgb(229,52,34)" rx="2" ry="2" />
<text x="182.93" y="415.5" ></text>
</g>
<g >
<title>rdk:broker42 (3 samples, 0.01%)</title><rect x="13.2" y="709" width="0.2" height="15.0" fill="rgb(247,201,3)" rx="2" ry="2" />
<text x="16.24" y="719.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="693.0" y="549" width="0.1" height="15.0" fill="rgb(232,133,6)" rx="2" ry="2" />
<text x="695.96" y="559.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (4 samples, 0.02%)</title><rect x="13.8" y="645" width="0.3" height="15.0" fill="rgb(224,115,36)" rx="2" ry="2" />
<text x="16.83" y="655.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="319.0" y="213" width="0.2" height="15.0" fill="rgb(217,115,39)" rx="2" ry="2" />
<text x="322.01" y="223.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="712.5" y="309" width="0.2" height="15.0" fill="rgb(226,1,8)" rx="2" ry="2" />
<text x="715.54" y="319.5" ></text>
</g>
<g >
<title>__printf_fp (2 samples, 0.01%)</title><rect x="641.2" y="421" width="0.1" height="15.0" fill="rgb(210,84,39)" rx="2" ry="2" />
<text x="644.23" y="431.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="700.9" y="517" width="0.1" height="15.0" fill="rgb(238,218,28)" rx="2" ry="2" />
<text x="703.92" y="527.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="323.0" y="197" width="0.1" height="15.0" fill="rgb(222,68,5)" rx="2" ry="2" />
<text x="325.96" y="207.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="169.2" y="325" width="0.3" height="15.0" fill="rgb(246,151,10)" rx="2" ry="2" />
<text x="172.19" y="335.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="393.4" y="485" width="0.2" height="15.0" fill="rgb(242,29,27)" rx="2" ry="2" />
<text x="396.44" y="495.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="694.6" y="405" width="0.2" height="15.0" fill="rgb(245,37,39)" rx="2" ry="2" />
<text x="697.61" y="415.5" ></text>
</g>
<g >
<title>http_analyseHttpReqResHeader (83 samples, 0.41%)</title><rect x="287.4" y="453" width="4.9" height="15.0" fill="rgb(245,211,24)" rx="2" ry="2" />
<text x="290.39" y="463.5" ></text>
</g>
<g >
<title>http_callPlugin (15 samples, 0.07%)</title><rect x="694.2" y="501" width="0.9" height="15.0" fill="rgb(233,59,44)" rx="2" ry="2" />
<text x="697.19" y="511.5" ></text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="695.8" y="453" width="0.2" height="15.0" fill="rgb(214,61,27)" rx="2" ry="2" />
<text x="698.85" y="463.5" ></text>
</g>
<g >
<title>sprintf (2 samples, 0.01%)</title><rect x="347.7" y="437" width="0.2" height="15.0" fill="rgb(229,163,1)" rx="2" ry="2" />
<text x="350.73" y="447.5" ></text>
</g>
<g >
<title>sk_value (2 samples, 0.01%)</title><rect x="327.6" y="357" width="0.1" height="15.0" fill="rgb(218,43,35)" rx="2" ry="2" />
<text x="330.56" y="367.5" ></text>
</g>
<g >
<title>mtx_unlock (2 samples, 0.01%)</title><rect x="366.5" y="373" width="0.2" height="15.0" fill="rgb(250,75,49)" rx="2" ry="2" />
<text x="369.55" y="383.5" ></text>
</g>
<g >
<title>free (4 samples, 0.02%)</title><rect x="639.5" y="581" width="0.3" height="15.0" fill="rgb(212,96,46)" rx="2" ry="2" />
<text x="642.52" y="591.5" ></text>
</g>
<g >
<title>tsg_send_log (11 samples, 0.05%)</title><rect x="545.5" y="469" width="0.6" height="15.0" fill="rgb(229,31,31)" rx="2" ry="2" />
<text x="548.50" y="479.5" ></text>
</g>
<g >
<title>__strcasecmp_avx (2 samples, 0.01%)</title><rect x="337.6" y="437" width="0.1" height="15.0" fill="rgb(221,97,53)" rx="2" ry="2" />
<text x="340.59" y="447.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="487.0" y="389" width="0.1" height="15.0" fill="rgb(220,133,9)" rx="2" ry="2" />
<text x="489.99" y="399.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (3 samples, 0.01%)</title><rect x="1177.6" y="661" width="0.1" height="15.0" fill="rgb(240,104,46)" rx="2" ry="2" />
<text x="1180.55" y="671.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (6 samples, 0.03%)</title><rect x="341.2" y="437" width="0.3" height="15.0" fill="rgb(254,36,24)" rx="2" ry="2" />
<text x="344.19" y="447.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (4 samples, 0.02%)</title><rect x="181.8" y="629" width="0.3" height="15.0" fill="rgb(240,0,49)" rx="2" ry="2" />
<text x="184.82" y="639.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (24 samples, 0.12%)</title><rect x="306.7" y="373" width="1.4" height="15.0" fill="rgb(247,94,23)" rx="2" ry="2" />
<text x="309.68" y="383.5" ></text>
</g>
<g >
<title>__strncasecmp_l_avx (2 samples, 0.01%)</title><rect x="302.7" y="373" width="0.1" height="15.0" fill="rgb(245,94,9)" rx="2" ry="2" />
<text x="305.73" y="383.5" ></text>
</g>
<g >
<title>_itoa_word (2 samples, 0.01%)</title><rect x="700.9" y="501" width="0.1" height="15.0" fill="rgb(241,82,54)" rx="2" ry="2" />
<text x="703.92" y="511.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_ip_entry (18 samples, 0.09%)</title><rect x="552.0" y="549" width="1.1" height="15.0" fill="rgb(230,212,16)" rx="2" ry="2" />
<text x="555.05" y="559.5" ></text>
</g>
<g >
<title>[libmarsio.so.4.3] (270 samples, 1.35%)</title><rect x="599.8" y="629" width="15.9" height="15.0" fill="rgb(209,131,12)" rx="2" ry="2" />
<text x="602.82" y="639.5" ></text>
</g>
<g >
<title>Maat_scan_proto_addr (449 samples, 2.24%)</title><rect x="114.5" y="693" width="26.4" height="15.0" fill="rgb(222,147,42)" rx="2" ry="2" />
<text x="117.46" y="703.5" >M..</text>
</g>
<g >
<title>do_page_fault (3 samples, 0.01%)</title><rect x="274.2" y="485" width="0.2" height="15.0" fill="rgb(208,10,25)" rx="2" ry="2" />
<text x="277.24" y="495.5" ></text>
</g>
<g >
<title>ip_local_out_sk (2 samples, 0.01%)</title><rect x="1177.4" y="245" width="0.1" height="15.0" fill="rgb(242,213,45)" rx="2" ry="2" />
<text x="1180.38" y="255.5" ></text>
</g>
<g >
<title>APP_SKETCH_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="696.5" y="405" width="0.1" height="15.0" fill="rgb(238,187,5)" rx="2" ry="2" />
<text x="699.50" y="415.5" ></text>
</g>
<g >
<title>malloc (4 samples, 0.02%)</title><rect x="321.5" y="181" width="0.2" height="15.0" fill="rgb(235,162,42)" rx="2" ry="2" />
<text x="324.49" y="191.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="694.9" y="389" width="0.1" height="15.0" fill="rgb(247,8,27)" rx="2" ry="2" />
<text x="697.90" y="399.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="251.5" y="325" width="0.1" height="15.0" fill="rgb(235,225,28)" rx="2" ry="2" />
<text x="254.47" y="335.5" ></text>
</g>
<g >
<title>start_thread (2 samples, 0.01%)</title><rect x="12.1" y="677" width="0.1" height="15.0" fill="rgb(229,18,39)" rx="2" ry="2" />
<text x="15.06" y="687.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="174.4" y="469" width="0.2" height="15.0" fill="rgb(254,83,17)" rx="2" ry="2" />
<text x="177.38" y="479.5" ></text>
</g>
<g >
<title>app_proto_worke_process (9 samples, 0.04%)</title><rect x="512.5" y="485" width="0.5" height="15.0" fill="rgb(230,30,11)" rx="2" ry="2" />
<text x="515.47" y="495.5" ></text>
</g>
<g >
<title>[sapp] (5 samples, 0.02%)</title><rect x="178.0" y="613" width="0.3" height="15.0" fill="rgb(217,136,13)" rx="2" ry="2" />
<text x="181.04" y="623.5" ></text>
</g>
<g >
<title>rd_kafka_msg_sticky_partition (4 samples, 0.02%)</title><rect x="366.3" y="389" width="0.2" height="15.0" fill="rgb(235,131,45)" rx="2" ry="2" />
<text x="369.25" y="399.5" ></text>
</g>
<g >
<title>CRYPTO_free (2 samples, 0.01%)</title><rect x="325.9" y="245" width="0.1" height="15.0" fill="rgb(239,197,23)" rx="2" ry="2" />
<text x="328.85" y="255.5" ></text>
</g>
<g >
<title>[libmarsio.so.4.3] (396 samples, 1.98%)</title><rect x="573.6" y="613" width="23.4" height="15.0" fill="rgb(222,162,54)" rx="2" ry="2" />
<text x="576.63" y="623.5" >[..</text>
</g>
<g >
<title>[tsg_master.so] (15 samples, 0.07%)</title><rect x="637.6" y="581" width="0.9" height="15.0" fill="rgb(219,69,39)" rx="2" ry="2" />
<text x="640.57" y="591.5" ></text>
</g>
<g >
<title>sapp_is_overlay_layer (4 samples, 0.02%)</title><rect x="553.4" y="597" width="0.2" height="15.0" fill="rgb(225,4,26)" rx="2" ry="2" />
<text x="556.40" y="607.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="345.7" y="453" width="0.1" height="15.0" fill="rgb(230,163,29)" rx="2" ry="2" />
<text x="348.73" y="463.5" ></text>
</g>
<g >
<title>do_page_fault (12 samples, 0.06%)</title><rect x="137.5" y="597" width="0.7" height="15.0" fill="rgb(238,174,27)" rx="2" ry="2" />
<text x="140.52" y="607.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="179.6" y="549" width="0.1" height="15.0" fill="rgb(254,135,9)" rx="2" ry="2" />
<text x="182.57" y="559.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="277.4" y="405" width="0.1" height="15.0" fill="rgb(243,142,11)" rx="2" ry="2" />
<text x="280.37" y="415.5" ></text>
</g>
<g >
<title>rd_kafka_msgset_create_ProduceRequest (2 samples, 0.01%)</title><rect x="14.2" y="581" width="0.2" height="15.0" fill="rgb(223,110,42)" rx="2" ry="2" />
<text x="17.25" y="591.5" ></text>
</g>
<g >
<title>project_requirement_create (2 samples, 0.01%)</title><rect x="260.3" y="533" width="0.1" height="15.0" fill="rgb(214,17,12)" rx="2" ry="2" />
<text x="263.32" y="543.5" ></text>
</g>
<g >
<title>http_findLineEnd (4 samples, 0.02%)</title><rect x="304.4" y="405" width="0.3" height="15.0" fill="rgb(206,49,39)" rx="2" ry="2" />
<text x="307.44" y="415.5" ></text>
</g>
<g >
<title>ssl_releaseSslStream (4 samples, 0.02%)</title><rect x="332.7" y="469" width="0.2" height="15.0" fill="rgb(237,24,35)" rx="2" ry="2" />
<text x="335.69" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="288.2" y="293" width="0.1" height="15.0" fill="rgb(234,164,10)" rx="2" ry="2" />
<text x="291.22" y="303.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="169.2" y="373" width="0.3" height="15.0" fill="rgb(223,142,8)" rx="2" ry="2" />
<text x="172.19" y="383.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (6 samples, 0.03%)</title><rect x="283.9" y="453" width="0.3" height="15.0" fill="rgb(244,162,20)" rx="2" ry="2" />
<text x="286.85" y="463.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="486.5" y="421" width="0.1" height="15.0" fill="rgb(213,142,43)" rx="2" ry="2" />
<text x="489.52" y="431.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="178.1" y="501" width="0.1" height="15.0" fill="rgb(215,143,53)" rx="2" ry="2" />
<text x="181.10" y="511.5" ></text>
</g>
<g >
<title>TLD_append (11 samples, 0.05%)</title><rect x="360.7" y="405" width="0.7" height="15.0" fill="rgb(222,225,23)" rx="2" ry="2" />
<text x="363.71" y="415.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (7 samples, 0.03%)</title><rect x="181.2" y="485" width="0.4" height="15.0" fill="rgb(233,141,0)" rx="2" ry="2" />
<text x="184.23" y="495.5" ></text>
</g>
<g >
<title>MurmurHash3_x64_128 (10 samples, 0.05%)</title><rect x="500.9" y="501" width="0.5" height="15.0" fill="rgb(254,51,26)" rx="2" ry="2" />
<text x="503.85" y="511.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="180.3" y="597" width="0.4" height="15.0" fill="rgb(243,71,45)" rx="2" ry="2" />
<text x="183.28" y="607.5" ></text>
</g>
<g >
<title>schedule (51 samples, 0.25%)</title><rect x="142.9" y="613" width="3.0" height="15.0" fill="rgb(253,14,3)" rx="2" ry="2" />
<text x="145.89" y="623.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="111.6" y="645" width="0.2" height="15.0" fill="rgb(217,176,42)" rx="2" ry="2" />
<text x="114.63" y="655.5" ></text>
</g>
<g >
<title>CRYPTO_free (2 samples, 0.01%)</title><rect x="324.9" y="245" width="0.1" height="15.0" fill="rgb(228,209,10)" rx="2" ry="2" />
<text x="327.91" y="255.5" ></text>
</g>
<g >
<title>[sapp] (46 samples, 0.23%)</title><rect x="166.1" y="597" width="2.7" height="15.0" fill="rgb(218,93,24)" rx="2" ry="2" />
<text x="169.07" y="607.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (2 samples, 0.01%)</title><rect x="141.8" y="645" width="0.1" height="15.0" fill="rgb(215,75,27)" rx="2" ry="2" />
<text x="144.77" y="655.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (21 samples, 0.10%)</title><rect x="190.7" y="581" width="1.3" height="15.0" fill="rgb(214,119,2)" rx="2" ry="2" />
<text x="193.72" y="591.5" ></text>
</g>
<g >
<title>cJSON_CreateString (3 samples, 0.01%)</title><rect x="706.2" y="549" width="0.2" height="15.0" fill="rgb(248,172,46)" rx="2" ry="2" />
<text x="709.23" y="559.5" ></text>
</g>
<g >
<title>tcp_free_stream (154 samples, 0.77%)</title><rect x="392.0" y="517" width="9.1" height="15.0" fill="rgb(227,119,26)" rx="2" ry="2" />
<text x="395.03" y="527.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="537.8" y="437" width="0.2" height="15.0" fill="rgb(205,38,5)" rx="2" ry="2" />
<text x="540.77" y="447.5" ></text>
</g>
<g >
<title>__do_page_fault (2 samples, 0.01%)</title><rect x="400.2" y="277" width="0.1" height="15.0" fill="rgb(223,128,26)" rx="2" ry="2" />
<text x="403.23" y="287.5" ></text>
</g>
<g >
<title>project_req_get_struct (4 samples, 0.02%)</title><rect x="286.2" y="453" width="0.2" height="15.0" fill="rgb(245,147,1)" rx="2" ry="2" />
<text x="289.16" y="463.5" ></text>
</g>
<g >
<title>packet_io_hook_input_mirror (7 samples, 0.03%)</title><rect x="553.6" y="613" width="0.5" height="15.0" fill="rgb(221,129,39)" rx="2" ry="2" />
<text x="556.64" y="623.5" ></text>
</g>
<g >
<title>[ftp.so] (6 samples, 0.03%)</title><rect x="333.0" y="469" width="0.3" height="15.0" fill="rgb(240,65,52)" rx="2" ry="2" />
<text x="335.99" y="479.5" ></text>
</g>
<g >
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="314.4" y="341" width="0.1" height="15.0" fill="rgb(238,30,32)" rx="2" ry="2" />
<text x="317.41" y="351.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (33 samples, 0.16%)</title><rect x="252.2" y="309" width="1.9" height="15.0" fill="rgb(228,22,18)" rx="2" ry="2" />
<text x="255.18" y="319.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="343.0" y="405" width="0.1" height="15.0" fill="rgb(219,111,27)" rx="2" ry="2" />
<text x="345.96" y="415.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="373.8" y="421" width="0.2" height="15.0" fill="rgb(248,81,48)" rx="2" ry="2" />
<text x="376.80" y="431.5" ></text>
</g>
<g >
<title>rd_kafka_timers_run (4 samples, 0.02%)</title><rect x="16.6" y="629" width="0.2" height="15.0" fill="rgb(237,30,13)" rx="2" ry="2" />
<text x="19.61" y="639.5" ></text>
</g>
<g >
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="704.2" y="549" width="0.6" height="15.0" fill="rgb(225,70,37)" rx="2" ry="2" />
<text x="707.22" y="559.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (4 samples, 0.02%)</title><rect x="323.5" y="245" width="0.2" height="15.0" fill="rgb(234,201,17)" rx="2" ry="2" />
<text x="326.49" y="255.5" ></text>
</g>
<g >
<title>qsort_r (14 samples, 0.07%)</title><rect x="105.5" y="645" width="0.8" height="15.0" fill="rgb(226,221,22)" rx="2" ry="2" />
<text x="108.49" y="655.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="255.4" y="357" width="0.5" height="15.0" fill="rgb(220,73,19)" rx="2" ry="2" />
<text x="258.43" y="367.5" ></text>
</g>
<g >
<title>Maat_clean_status (4 samples, 0.02%)</title><rect x="522.9" y="485" width="0.2" height="15.0" fill="rgb(235,209,18)" rx="2" ry="2" />
<text x="525.91" y="495.5" ></text>
</g>
<g >
<title>rd_kafka_msgset_create_ProduceRequest (2 samples, 0.01%)</title><rect x="12.4" y="581" width="0.1" height="15.0" fill="rgb(226,117,26)" rx="2" ry="2" />
<text x="15.42" y="591.5" ></text>
</g>
<g >
<title>qm_malloc_default (4 samples, 0.02%)</title><rect x="707.0" y="677" width="0.2" height="15.0" fill="rgb(210,158,34)" rx="2" ry="2" />
<text x="709.99" y="687.5" ></text>
</g>
<g >
<title>hack_digit.13624 (2 samples, 0.01%)</title><rect x="537.8" y="373" width="0.2" height="15.0" fill="rgb(250,99,19)" rx="2" ry="2" />
<text x="540.83" y="383.5" ></text>
</g>
<g >
<title>TCP_ENTRY (7 samples, 0.03%)</title><rect x="332.9" y="485" width="0.4" height="15.0" fill="rgb(209,176,52)" rx="2" ry="2" />
<text x="335.93" y="495.5" ></text>
</g>
<g >
<title>sapp_fs2_fuzzy_latency_update_per_entry (4 samples, 0.02%)</title><rect x="375.2" y="485" width="0.2" height="15.0" fill="rgb(210,170,34)" rx="2" ry="2" />
<text x="378.16" y="495.5" ></text>
</g>
<g >
<title>[sapp] (13 samples, 0.06%)</title><rect x="169.0" y="581" width="0.7" height="15.0" fill="rgb(213,151,5)" rx="2" ry="2" />
<text x="171.96" y="591.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (24 samples, 0.12%)</title><rect x="174.6" y="501" width="1.4" height="15.0" fill="rgb(216,18,16)" rx="2" ry="2" />
<text x="177.62" y="511.5" ></text>
</g>
<g >
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="303.9" y="309" width="0.1" height="15.0" fill="rgb(249,126,44)" rx="2" ry="2" />
<text x="306.91" y="319.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="707.8" y="613" width="0.1" height="15.0" fill="rgb(215,5,42)" rx="2" ry="2" />
<text x="710.76" y="623.5" ></text>
</g>
<g >
<title>http_doWithEntity (2 samples, 0.01%)</title><rect x="168.8" y="549" width="0.1" height="15.0" fill="rgb(216,193,33)" rx="2" ry="2" />
<text x="171.78" y="559.5" ></text>
</g>
<g >
<title>marsio_recv_burst (496 samples, 2.48%)</title><rect x="567.8" y="629" width="29.3" height="15.0" fill="rgb(233,56,13)" rx="2" ry="2" />
<text x="570.80" y="639.5" >ma..</text>
</g>
<g >
<title>http_findAndDoWithRegion (3 samples, 0.01%)</title><rect x="181.9" y="597" width="0.2" height="15.0" fill="rgb(212,206,17)" rx="2" ry="2" />
<text x="184.87" y="607.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="704.9" y="517" width="0.1" height="15.0" fill="rgb(210,229,26)" rx="2" ry="2" />
<text x="707.87" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="545.3" y="453" width="0.2" height="15.0" fill="rgb(214,49,46)" rx="2" ry="2" />
<text x="548.26" y="463.5" ></text>
</g>
<g >
<title>free (4 samples, 0.02%)</title><rect x="316.2" y="421" width="0.3" height="15.0" fill="rgb(250,7,24)" rx="2" ry="2" />
<text x="319.24" y="431.5" ></text>
</g>
<g >
<title>_thrd_wrapper_function (4 samples, 0.02%)</title><rect x="12.3" y="661" width="0.2" height="15.0" fill="rgb(235,101,46)" rx="2" ry="2" />
<text x="15.30" y="671.5" ></text>
</g>
<g >
<title>_IO_old_init (2 samples, 0.01%)</title><rect x="468.1" y="373" width="0.1" height="15.0" fill="rgb(230,68,26)" rx="2" ry="2" />
<text x="471.06" y="383.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="397.5" y="373" width="0.1" height="15.0" fill="rgb(226,139,51)" rx="2" ry="2" />
<text x="400.51" y="383.5" ></text>
</g>
<g >
<title>http_judgeHttpMethod (4 samples, 0.02%)</title><rect x="292.1" y="437" width="0.2" height="15.0" fill="rgb(242,53,37)" rx="2" ry="2" />
<text x="295.05" y="447.5" ></text>
</g>
<g >
<title>ASN1_primitive_new (6 samples, 0.03%)</title><rect x="321.1" y="181" width="0.4" height="15.0" fill="rgb(235,210,7)" rx="2" ry="2" />
<text x="324.13" y="191.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="701.5" y="501" width="0.2" height="15.0" fill="rgb(236,97,10)" rx="2" ry="2" />
<text x="704.51" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="321.6" y="165" width="0.1" height="15.0" fill="rgb(246,55,30)" rx="2" ry="2" />
<text x="324.60" y="175.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="460.3" y="485" width="0.3" height="15.0" fill="rgb(242,151,6)" rx="2" ry="2" />
<text x="463.27" y="495.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (5 samples, 0.02%)</title><rect x="255.0" y="293" width="0.2" height="15.0" fill="rgb(208,7,32)" rx="2" ry="2" />
<text x="257.95" y="303.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="169.0" y="453" width="0.2" height="15.0" fill="rgb(244,141,27)" rx="2" ry="2" />
<text x="172.02" y="463.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (42 samples, 0.21%)</title><rect x="702.9" y="581" width="2.5" height="15.0" fill="rgb(222,48,21)" rx="2" ry="2" />
<text x="705.92" y="591.5" ></text>
</g>
<g >
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="174.9" y="437" width="0.1" height="15.0" fill="rgb(212,17,3)" rx="2" ry="2" />
<text x="177.86" y="447.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="320.8" y="165" width="0.2" height="15.0" fill="rgb(213,71,49)" rx="2" ry="2" />
<text x="323.84" y="175.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (5 samples, 0.02%)</title><rect x="394.6" y="421" width="0.3" height="15.0" fill="rgb(230,128,37)" rx="2" ry="2" />
<text x="397.62" y="431.5" ></text>
</g>
<g >
<title>http_recogniseGeneralEntityRegion (5 samples, 0.02%)</title><rect x="302.6" y="389" width="0.2" height="15.0" fill="rgb(252,188,40)" rx="2" ry="2" />
<text x="305.55" y="399.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="703.9" y="517" width="0.2" height="15.0" fill="rgb(205,172,18)" rx="2" ry="2" />
<text x="706.93" y="527.5" ></text>
</g>
<g >
<title>do_page_fault (2 samples, 0.01%)</title><rect x="401.1" y="533" width="0.1" height="15.0" fill="rgb(221,7,1)" rx="2" ry="2" />
<text x="404.11" y="543.5" ></text>
</g>
<g >
<title>operator new (2 samples, 0.01%)</title><rect x="168.3" y="341" width="0.1" height="15.0" fill="rgb(233,204,44)" rx="2" ry="2" />
<text x="171.31" y="351.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="303.6" y="277" width="0.1" height="15.0" fill="rgb(241,172,38)" rx="2" ry="2" />
<text x="306.55" y="287.5" ></text>
</g>
<g >
<title>http_findLineEnd (3 samples, 0.01%)</title><rect x="289.5" y="405" width="0.1" height="15.0" fill="rgb(253,191,30)" rx="2" ry="2" />
<text x="292.46" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="538.0" y="421" width="0.1" height="15.0" fill="rgb(216,49,9)" rx="2" ry="2" />
<text x="541.01" y="431.5" ></text>
</g>
<g >
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="179.3" y="469" width="0.3" height="15.0" fill="rgb(236,144,52)" rx="2" ry="2" />
<text x="182.34" y="479.5" ></text>
</g>
<g >
<title>__tls_get_addr@plt (3 samples, 0.01%)</title><rect x="689.7" y="693" width="0.2" height="15.0" fill="rgb(214,34,17)" rx="2" ry="2" />
<text x="692.71" y="703.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="177.5" y="357" width="0.1" height="15.0" fill="rgb(239,80,11)" rx="2" ry="2" />
<text x="180.51" y="367.5" ></text>
</g>
<g >
<title>qmdpi_hit_path_list (2 samples, 0.01%)</title><rect x="169.7" y="485" width="0.1" height="15.0" fill="rgb(249,135,26)" rx="2" ry="2" />
<text x="172.72" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="318.7" y="101" width="0.1" height="15.0" fill="rgb(244,63,45)" rx="2" ry="2" />
<text x="321.65" y="111.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (2 samples, 0.01%)</title><rect x="166.1" y="405" width="0.1" height="15.0" fill="rgb(221,38,26)" rx="2" ry="2" />
<text x="169.07" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.04%)</title><rect x="330.7" y="277" width="0.5" height="15.0" fill="rgb(215,190,37)" rx="2" ry="2" />
<text x="333.69" y="287.5" ></text>
</g>
<g >
<title>start_thread (2 samples, 0.01%)</title><rect x="10.4" y="677" width="0.1" height="15.0" fill="rgb(211,195,9)" rx="2" ry="2" />
<text x="13.41" y="687.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="292.3" y="373" width="0.2" height="15.0" fill="rgb(239,72,12)" rx="2" ry="2" />
<text x="295.35" y="383.5" ></text>
</g>
<g >
<title>task_numa_work (15 samples, 0.07%)</title><rect x="688.8" y="549" width="0.9" height="15.0" fill="rgb(208,142,13)" rx="2" ry="2" />
<text x="691.77" y="559.5" ></text>
</g>
<g >
<title>_int_free (20 samples, 0.10%)</title><rect x="248.2" y="501" width="1.2" height="15.0" fill="rgb(215,94,51)" rx="2" ry="2" />
<text x="251.23" y="511.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (3 samples, 0.01%)</title><rect x="167.9" y="405" width="0.2" height="15.0" fill="rgb(220,23,39)" rx="2" ry="2" />
<text x="170.90" y="415.5" ></text>
</g>
<g >
<title>__printf_fp (2 samples, 0.01%)</title><rect x="697.9" y="453" width="0.1" height="15.0" fill="rgb(247,130,34)" rx="2" ry="2" />
<text x="700.91" y="463.5" ></text>
</g>
<g >
<title>inet_ntop (15 samples, 0.07%)</title><rect x="176.0" y="485" width="0.9" height="15.0" fill="rgb(215,123,16)" rx="2" ry="2" />
<text x="179.04" y="495.5" ></text>
</g>
<g >
<title>rdk:broker30 (2 samples, 0.01%)</title><rect x="12.1" y="709" width="0.1" height="15.0" fill="rgb(246,206,38)" rx="2" ry="2" />
<text x="15.06" y="719.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (4 samples, 0.02%)</title><rect x="692.6" y="405" width="0.2" height="15.0" fill="rgb(230,132,27)" rx="2" ry="2" />
<text x="695.60" y="415.5" ></text>
</g>
<g >
<title>Maat_scan_intval (62 samples, 0.31%)</title><rect x="110.8" y="693" width="3.7" height="15.0" fill="rgb(223,178,26)" rx="2" ry="2" />
<text x="113.80" y="703.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (11 samples, 0.05%)</title><rect x="287.7" y="341" width="0.6" height="15.0" fill="rgb(214,71,9)" rx="2" ry="2" />
<text x="290.69" y="351.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (4 samples, 0.02%)</title><rect x="295.4" y="389" width="0.2" height="15.0" fill="rgb(205,101,29)" rx="2" ry="2" />
<text x="298.36" y="399.5" ></text>
</g>
<g >
<title>http_judgeResponseEntityPresent (3 samples, 0.01%)</title><rect x="301.8" y="437" width="0.2" height="15.0" fill="rgb(245,38,24)" rx="2" ry="2" />
<text x="304.79" y="447.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (213 samples, 1.06%)</title><rect x="317.4" y="421" width="12.6" height="15.0" fill="rgb(233,31,45)" rx="2" ry="2" />
<text x="320.42" y="431.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="178.2" y="437" width="0.1" height="15.0" fill="rgb(209,218,13)" rx="2" ry="2" />
<text x="181.22" y="447.5" ></text>
</g>
<g >
<title>ASN1_STRING_type_new (2 samples, 0.01%)</title><rect x="168.1" y="117" width="0.1" height="15.0" fill="rgb(207,7,44)" rx="2" ry="2" />
<text x="171.07" y="127.5" ></text>
</g>
<g >
<title>page_fault (13 samples, 0.06%)</title><rect x="130.3" y="613" width="0.8" height="15.0" fill="rgb(221,162,12)" rx="2" ry="2" />
<text x="133.32" y="623.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="697.6" y="485" width="0.1" height="15.0" fill="rgb(249,36,20)" rx="2" ry="2" />
<text x="700.56" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="320.4" y="197" width="0.3" height="15.0" fill="rgb(228,60,45)" rx="2" ry="2" />
<text x="323.42" y="207.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (2 samples, 0.01%)</title><rect x="15.2" y="629" width="0.2" height="15.0" fill="rgb(238,100,47)" rx="2" ry="2" />
<text x="18.25" y="639.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="181.7" y="517" width="0.1" height="15.0" fill="rgb(212,23,50)" rx="2" ry="2" />
<text x="184.70" y="527.5" ></text>
</g>
<g >
<title>[sapp] (58 samples, 0.29%)</title><rect x="693.6" y="661" width="3.4" height="15.0" fill="rgb(223,42,24)" rx="2" ry="2" />
<text x="696.60" y="671.5" ></text>
</g>
<g >
<title>_int_malloc (9 samples, 0.04%)</title><rect x="368.5" y="469" width="0.5" height="15.0" fill="rgb(241,44,30)" rx="2" ry="2" />
<text x="371.49" y="479.5" ></text>
</g>
<g >
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="167.9" y="357" width="0.2" height="15.0" fill="rgb(242,61,32)" rx="2" ry="2" />
<text x="170.90" y="367.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (8 samples, 0.04%)</title><rect x="396.8" y="405" width="0.5" height="15.0" fill="rgb(244,44,38)" rx="2" ry="2" />
<text x="399.81" y="415.5" ></text>
</g>
<g >
<title>TLD_create (2 samples, 0.01%)</title><rect x="641.8" y="517" width="0.1" height="15.0" fill="rgb(243,14,31)" rx="2" ry="2" />
<text x="644.76" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="169.2" y="261" width="0.3" height="15.0" fill="rgb(228,187,35)" rx="2" ry="2" />
<text x="172.19" y="271.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_mark_tcp (317 samples, 1.58%)</title><rect x="422.9" y="549" width="18.7" height="15.0" fill="rgb(220,185,39)" rx="2" ry="2" />
<text x="425.94" y="559.5" ></text>
</g>
<g >
<title>__strncasecmp_avx (3 samples, 0.01%)</title><rect x="302.6" y="373" width="0.1" height="15.0" fill="rgb(209,83,39)" rx="2" ry="2" />
<text x="305.55" y="383.5" ></text>
</g>
<g >
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="173.3" y="421" width="0.4" height="15.0" fill="rgb(207,194,22)" rx="2" ry="2" />
<text x="176.32" y="431.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="276.1" y="469" width="0.1" height="15.0" fill="rgb(217,54,7)" rx="2" ry="2" />
<text x="279.07" y="479.5" ></text>
</g>
<g >
<title>MV_Sketch_update (53 samples, 0.26%)</title><rect x="376.0" y="437" width="3.1" height="15.0" fill="rgb(236,8,41)" rx="2" ry="2" />
<text x="378.99" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (12 samples, 0.06%)</title><rect x="184.1" y="581" width="0.7" height="15.0" fill="rgb(228,175,4)" rx="2" ry="2" />
<text x="187.06" y="591.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="166.1" y="229" width="0.1" height="15.0" fill="rgb(221,223,47)" rx="2" ry="2" />
<text x="169.07" y="239.5" ></text>
</g>
<g >
<title>ASN1_STRING_type_new (6 samples, 0.03%)</title><rect x="321.1" y="165" width="0.4" height="15.0" fill="rgb(221,41,8)" rx="2" ry="2" />
<text x="324.13" y="175.5" ></text>
</g>
<g >
<title>malloc (11 samples, 0.05%)</title><rect x="290.7" y="277" width="0.6" height="15.0" fill="rgb(224,2,31)" rx="2" ry="2" />
<text x="293.70" y="287.5" ></text>
</g>
<g >
<title>ASN1_OBJECT_free (2 samples, 0.01%)</title><rect x="324.9" y="261" width="0.1" height="15.0" fill="rgb(231,226,20)" rx="2" ry="2" />
<text x="327.91" y="271.5" ></text>
</g>
<g >
<title>ASN1_STRING_type_new (2 samples, 0.01%)</title><rect x="255.1" y="197" width="0.1" height="15.0" fill="rgb(206,57,21)" rx="2" ry="2" />
<text x="258.13" y="207.5" ></text>
</g>
<g >
<title>http_doWithDefaultRegion (6 samples, 0.03%)</title><rect x="696.1" y="501" width="0.4" height="15.0" fill="rgb(227,228,32)" rx="2" ry="2" />
<text x="699.14" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="292.3" y="277" width="0.2" height="15.0" fill="rgb(243,38,10)" rx="2" ry="2" />
<text x="295.35" y="287.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="696.2" y="405" width="0.3" height="15.0" fill="rgb(237,8,30)" rx="2" ry="2" />
<text x="699.20" y="415.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="712.5" y="165" width="0.2" height="15.0" fill="rgb(242,137,25)" rx="2" ry="2" />
<text x="715.54" y="175.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (14 samples, 0.07%)</title><rect x="172.9" y="469" width="0.8" height="15.0" fill="rgb(222,147,9)" rx="2" ry="2" />
<text x="175.85" y="479.5" ></text>
</g>
<g >
<title>vfprintf (35 samples, 0.17%)</title><rect x="281.7" y="405" width="2.1" height="15.0" fill="rgb(236,82,34)" rx="2" ry="2" />
<text x="284.73" y="415.5" ></text>
</g>
<g >
<title>ssl_callPlugins (4 samples, 0.02%)</title><rect x="712.7" y="405" width="0.3" height="15.0" fill="rgb(219,202,38)" rx="2" ry="2" />
<text x="715.72" y="415.5" ></text>
</g>
<g >
<title>vfprintf (7 samples, 0.03%)</title><rect x="181.2" y="405" width="0.4" height="15.0" fill="rgb(230,15,22)" rx="2" ry="2" />
<text x="184.23" y="415.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new (12 samples, 0.06%)</title><rect x="366.0" y="421" width="0.7" height="15.0" fill="rgb(240,6,49)" rx="2" ry="2" />
<text x="369.02" y="431.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="168.6" y="453" width="0.1" height="15.0" fill="rgb(214,79,7)" rx="2" ry="2" />
<text x="171.60" y="463.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (5 samples, 0.02%)</title><rect x="318.4" y="149" width="0.3" height="15.0" fill="rgb(236,133,51)" rx="2" ry="2" />
<text x="321.36" y="159.5" ></text>
</g>
<g >
<title>CInflate2::fn_iDecodeHuffmanCodeBlock (3 samples, 0.01%)</title><rect x="300.7" y="325" width="0.2" height="15.0" fill="rgb(216,69,52)" rx="2" ry="2" />
<text x="303.72" y="335.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="168.5" y="325" width="0.1" height="15.0" fill="rgb(222,67,11)" rx="2" ry="2" />
<text x="171.49" y="335.5" ></text>
</g>
<g >
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="168.3" y="405" width="0.1" height="15.0" fill="rgb(247,134,12)" rx="2" ry="2" />
<text x="171.31" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="179.7" y="357" width="0.1" height="15.0" fill="rgb(219,188,5)" rx="2" ry="2" />
<text x="182.69" y="367.5" ></text>
</g>
<g >
<title>set_session_attributes (3 samples, 0.01%)</title><rect x="171.8" y="325" width="0.2" height="15.0" fill="rgb(205,123,49)" rx="2" ry="2" />
<text x="174.79" y="335.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (117 samples, 0.58%)</title><rect x="250.6" y="485" width="6.9" height="15.0" fill="rgb(235,173,40)" rx="2" ry="2" />
<text x="253.65" y="495.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (121 samples, 0.60%)</title><rect x="317.5" y="373" width="7.2" height="15.0" fill="rgb(216,195,34)" rx="2" ry="2" />
<text x="320.53" y="383.5" ></text>
</g>
<g >
<title>file_getbuffer (2 samples, 0.01%)</title><rect x="695.5" y="389" width="0.1" height="15.0" fill="rgb(218,135,42)" rx="2" ry="2" />
<text x="698.49" y="399.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="169.2" y="117" width="0.3" height="15.0" fill="rgb(233,92,36)" rx="2" ry="2" />
<text x="172.19" y="127.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="256.1" y="341" width="0.1" height="15.0" fill="rgb(211,169,23)" rx="2" ry="2" />
<text x="259.07" y="351.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="168.1" y="165" width="0.1" height="15.0" fill="rgb(246,169,47)" rx="2" ry="2" />
<text x="171.07" y="175.5" ></text>
</g>
<g >
<title>asn1_enc_save (6 samples, 0.03%)</title><rect x="324.0" y="309" width="0.4" height="15.0" fill="rgb(253,71,21)" rx="2" ry="2" />
<text x="327.02" y="319.5" ></text>
</g>
<g >
<title>_IO_vsscanf (4 samples, 0.02%)</title><rect x="698.1" y="485" width="0.2" height="15.0" fill="rgb(210,195,47)" rx="2" ry="2" />
<text x="701.09" y="495.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="516.4" y="501" width="0.1" height="15.0" fill="rgb(236,89,33)" rx="2" ry="2" />
<text x="519.36" y="511.5" ></text>
</g>
<g >
<title>CNaiveIntervalIndex::Find (7 samples, 0.03%)</title><rect x="372.5" y="373" width="0.4" height="15.0" fill="rgb(215,107,38)" rx="2" ry="2" />
<text x="375.51" y="383.5" ></text>
</g>
<g >
<title>system_call_after_swapgs (2 samples, 0.01%)</title><rect x="183.2" y="661" width="0.1" height="15.0" fill="rgb(234,115,44)" rx="2" ry="2" />
<text x="186.23" y="671.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="168.1" y="149" width="0.1" height="15.0" fill="rgb(254,16,52)" rx="2" ry="2" />
<text x="171.07" y="159.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="321.1" y="197" width="0.4" height="15.0" fill="rgb(218,24,49)" rx="2" ry="2" />
<text x="324.13" y="207.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="257.1" y="453" width="0.3" height="15.0" fill="rgb(215,53,50)" rx="2" ry="2" />
<text x="260.14" y="463.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="398.3" y="357" width="0.1" height="15.0" fill="rgb(205,161,49)" rx="2" ry="2" />
<text x="401.28" y="367.5" ></text>
</g>
<g >
<title>http_findAndDoWithRegion (46 samples, 0.23%)</title><rect x="302.3" y="453" width="2.7" height="15.0" fill="rgb(205,1,8)" rx="2" ry="2" />
<text x="305.26" y="463.5" ></text>
</g>
<g >
<title>__snprintf (14 samples, 0.07%)</title><rect x="328.3" y="389" width="0.9" height="15.0" fill="rgb(237,25,24)" rx="2" ry="2" />
<text x="331.33" y="399.5" ></text>
</g>
<g >
<title>_IO_vfscanf (5 samples, 0.02%)</title><rect x="349.6" y="373" width="0.3" height="15.0" fill="rgb(214,82,51)" rx="2" ry="2" />
<text x="352.56" y="383.5" ></text>
</g>
<g >
<title>PROT_PROCESS (11 samples, 0.05%)</title><rect x="329.3" y="373" width="0.7" height="15.0" fill="rgb(231,74,9)" rx="2" ry="2" />
<text x="332.33" y="383.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="255.9" y="373" width="0.2" height="15.0" fill="rgb(224,183,14)" rx="2" ry="2" />
<text x="258.90" y="383.5" ></text>
</g>
<g >
<title>_IO_vsprintf (15 samples, 0.07%)</title><rect x="467.1" y="405" width="0.9" height="15.0" fill="rgb(226,200,43)" rx="2" ry="2" />
<text x="470.11" y="415.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (3 samples, 0.01%)</title><rect x="256.6" y="469" width="0.2" height="15.0" fill="rgb(213,22,17)" rx="2" ry="2" />
<text x="259.61" y="479.5" ></text>
</g>
<g >
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="303.5" y="325" width="0.2" height="15.0" fill="rgb(249,17,4)" rx="2" ry="2" />
<text x="306.50" y="335.5" ></text>
</g>
<g >
<title>do_page_fault (2 samples, 0.01%)</title><rect x="449.7" y="501" width="0.1" height="15.0" fill="rgb(225,208,39)" rx="2" ry="2" />
<text x="452.65" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="168.6" y="517" width="0.1" height="15.0" fill="rgb(230,41,7)" rx="2" ry="2" />
<text x="171.60" y="527.5" ></text>
</g>
<g >
<title>schedule (18 samples, 0.09%)</title><rect x="643.8" y="533" width="1.0" height="15.0" fill="rgb(219,36,2)" rx="2" ry="2" />
<text x="646.76" y="543.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="179.6" y="357" width="0.1" height="15.0" fill="rgb(207,0,4)" rx="2" ry="2" />
<text x="182.57" y="367.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (63 samples, 0.31%)</title><rect x="542.8" y="501" width="3.8" height="15.0" fill="rgb(217,13,13)" rx="2" ry="2" />
<text x="545.85" y="511.5" ></text>
</g>
<g >
<title>http_callPlugin (23 samples, 0.11%)</title><rect x="170.7" y="469" width="1.3" height="15.0" fill="rgb(206,30,7)" rx="2" ry="2" />
<text x="173.67" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="168.6" y="501" width="0.1" height="15.0" fill="rgb(232,205,51)" rx="2" ry="2" />
<text x="171.60" y="511.5" ></text>
</g>
<g >
<title>[ftp.so] (3 samples, 0.01%)</title><rect x="333.1" y="437" width="0.2" height="15.0" fill="rgb(228,118,3)" rx="2" ry="2" />
<text x="336.11" y="447.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="172.9" y="149" width="0.4" height="15.0" fill="rgb(209,48,21)" rx="2" ry="2" />
<text x="175.85" y="159.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (3 samples, 0.01%)</title><rect x="104.2" y="645" width="0.2" height="15.0" fill="rgb(249,66,32)" rx="2" ry="2" />
<text x="107.19" y="655.5" ></text>
</g>
<g >
<title>stream_process (5 samples, 0.02%)</title><rect x="392.0" y="469" width="0.3" height="15.0" fill="rgb(250,128,11)" rx="2" ry="2" />
<text x="395.03" y="479.5" ></text>
</g>
<g >
<title>malloc (5 samples, 0.02%)</title><rect x="321.2" y="133" width="0.3" height="15.0" fill="rgb(207,178,44)" rx="2" ry="2" />
<text x="324.19" y="143.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (4 samples, 0.02%)</title><rect x="336.6" y="405" width="0.2" height="15.0" fill="rgb(224,192,7)" rx="2" ry="2" />
<text x="339.59" y="415.5" ></text>
</g>
<g >
<title>layer_addr_ntop_r (2 samples, 0.01%)</title><rect x="703.7" y="533" width="0.2" height="15.0" fill="rgb(211,157,24)" rx="2" ry="2" />
<text x="706.75" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="703.0" y="517" width="0.3" height="15.0" fill="rgb(212,30,22)" rx="2" ry="2" />
<text x="706.04" y="527.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (15 samples, 0.07%)</title><rect x="697.4" y="517" width="0.9" height="15.0" fill="rgb(209,149,12)" rx="2" ry="2" />
<text x="700.44" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="327.9" y="309" width="0.3" height="15.0" fill="rgb(216,1,29)" rx="2" ry="2" />
<text x="330.91" y="319.5" ></text>
</g>
<g >
<title>FW_QUIC_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="517.4" y="437" width="0.1" height="15.0" fill="rgb(216,33,45)" rx="2" ry="2" />
<text x="520.42" y="447.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="690.4" y="421" width="0.1" height="15.0" fill="rgb(233,65,32)" rx="2" ry="2" />
<text x="693.36" y="431.5" ></text>
</g>
<g >
<title>stream_process (56 samples, 0.28%)</title><rect x="639.8" y="581" width="3.3" height="15.0" fill="rgb(243,160,44)" rx="2" ry="2" />
<text x="642.81" y="591.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="301.7" y="325" width="0.1" height="15.0" fill="rgb(245,181,12)" rx="2" ry="2" />
<text x="304.67" y="335.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="182.1" y="469" width="0.1" height="15.0" fill="rgb(213,189,16)" rx="2" ry="2" />
<text x="185.05" y="479.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (4 samples, 0.02%)</title><rect x="13.8" y="629" width="0.3" height="15.0" fill="rgb(239,173,26)" rx="2" ry="2" />
<text x="16.83" y="639.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="179.7" y="453" width="0.2" height="15.0" fill="rgb(215,37,32)" rx="2" ry="2" />
<text x="182.69" y="463.5" ></text>
</g>
<g >
<title>bitmap_increment (242 samples, 1.21%)</title><rect x="424.7" y="469" width="14.3" height="15.0" fill="rgb(221,137,9)" rx="2" ry="2" />
<text x="427.70" y="479.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="173.8" y="357" width="0.2" height="15.0" fill="rgb(234,90,36)" rx="2" ry="2" />
<text x="176.79" y="367.5" ></text>
</g>
<g >
<title>X509_PUBKEY_get (8 samples, 0.04%)</title><rect x="327.7" y="389" width="0.5" height="15.0" fill="rgb(224,154,4)" rx="2" ry="2" />
<text x="330.74" y="399.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="168.1" y="229" width="0.1" height="15.0" fill="rgb(228,42,4)" rx="2" ry="2" />
<text x="171.07" y="239.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="326.9" y="197" width="0.1" height="15.0" fill="rgb(217,174,20)" rx="2" ry="2" />
<text x="329.85" y="207.5" ></text>
</g>
<g >
<title>[librulescan.so.2.2] (2 samples, 0.01%)</title><rect x="99.5" y="645" width="0.2" height="15.0" fill="rgb(247,199,46)" rx="2" ry="2" />
<text x="102.54" y="655.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="395.7" y="341" width="0.2" height="15.0" fill="rgb(254,147,27)" rx="2" ry="2" />
<text x="398.69" y="351.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="291.2" y="245" width="0.1" height="15.0" fill="rgb(229,75,21)" rx="2" ry="2" />
<text x="294.23" y="255.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="545.9" y="453" width="0.1" height="15.0" fill="rgb(245,17,48)" rx="2" ry="2" />
<text x="548.85" y="463.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="309.1" y="453" width="0.2" height="15.0" fill="rgb(229,216,53)" rx="2" ry="2" />
<text x="312.10" y="463.5" ></text>
</g>
<g >
<title>tsg_send_log (9 samples, 0.04%)</title><rect x="167.3" y="341" width="0.5" height="15.0" fill="rgb(223,155,28)" rx="2" ry="2" />
<text x="170.31" y="351.5" ></text>
</g>
<g >
<title>ssl_callPlugins (3 samples, 0.01%)</title><rect x="332.3" y="453" width="0.2" height="15.0" fill="rgb(205,154,39)" rx="2" ry="2" />
<text x="335.34" y="463.5" ></text>
</g>
<g >
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="198.0" y="661" width="0.3" height="15.0" fill="rgb(242,16,30)" rx="2" ry="2" />
<text x="201.04" y="671.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="325.7" y="261" width="0.3" height="15.0" fill="rgb(247,112,20)" rx="2" ry="2" />
<text x="328.73" y="271.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="700.6" y="533" width="0.1" height="15.0" fill="rgb(241,38,3)" rx="2" ry="2" />
<text x="703.62" y="543.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="277.6" y="373" width="0.2" height="15.0" fill="rgb(226,69,36)" rx="2" ry="2" />
<text x="280.60" y="383.5" ></text>
</g>
<g >
<title>stream_bridge_destroy_per_stream (4 samples, 0.02%)</title><rect x="639.5" y="597" width="0.3" height="15.0" fill="rgb(240,65,0)" rx="2" ry="2" />
<text x="642.52" y="607.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (13 samples, 0.06%)</title><rect x="167.3" y="517" width="0.8" height="15.0" fill="rgb(254,103,41)" rx="2" ry="2" />
<text x="170.31" y="527.5" ></text>
</g>
<g >
<title>lrustream (2 samples, 0.01%)</title><rect x="181.7" y="677" width="0.1" height="15.0" fill="rgb(235,199,51)" rx="2" ry="2" />
<text x="184.70" y="687.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="99.7" y="629" width="0.1" height="15.0" fill="rgb(234,218,13)" rx="2" ry="2" />
<text x="102.71" y="639.5" ></text>
</g>
<g >
<title>clock_gettime@plt (2 samples, 0.01%)</title><rect x="469.6" y="501" width="0.2" height="15.0" fill="rgb(247,147,33)" rx="2" ry="2" />
<text x="472.65" y="511.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (2 samples, 0.01%)</title><rect x="168.8" y="565" width="0.1" height="15.0" fill="rgb(206,103,5)" rx="2" ry="2" />
<text x="171.78" y="575.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (2 samples, 0.01%)</title><rect x="392.2" y="437" width="0.1" height="15.0" fill="rgb(224,62,44)" rx="2" ry="2" />
<text x="395.21" y="447.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (10 samples, 0.05%)</title><rect x="712.7" y="517" width="0.5" height="15.0" fill="rgb(254,51,33)" rx="2" ry="2" />
<text x="715.66" y="527.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="168.3" y="389" width="0.1" height="15.0" fill="rgb(210,151,33)" rx="2" ry="2" />
<text x="171.31" y="399.5" ></text>
</g>
<g >
<title>layer_addr_ntop_r (2 samples, 0.01%)</title><rect x="182.3" y="629" width="0.1" height="15.0" fill="rgb(238,15,7)" rx="2" ry="2" />
<text x="185.29" y="639.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (2 samples, 0.01%)</title><rect x="15.8" y="629" width="0.2" height="15.0" fill="rgb(235,147,14)" rx="2" ry="2" />
<text x="18.84" y="639.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="172.9" y="341" width="0.4" height="15.0" fill="rgb(217,229,35)" rx="2" ry="2" />
<text x="175.85" y="351.5" ></text>
</g>
<g >
<title>[sapp] (16 samples, 0.08%)</title><rect x="180.7" y="613" width="0.9" height="15.0" fill="rgb(230,91,0)" rx="2" ry="2" />
<text x="183.69" y="623.5" ></text>
</g>
<g >
<title>MAIL_TCP_ENTRY (9 samples, 0.04%)</title><rect x="308.2" y="485" width="0.5" height="15.0" fill="rgb(228,181,14)" rx="2" ry="2" />
<text x="311.16" y="495.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (26 samples, 0.13%)</title><rect x="701.3" y="565" width="1.6" height="15.0" fill="rgb(224,210,1)" rx="2" ry="2" />
<text x="704.33" y="575.5" ></text>
</g>
<g >
<title>__netif_receive_skb (4 samples, 0.02%)</title><rect x="1177.3" y="453" width="0.3" height="15.0" fill="rgb(247,183,13)" rx="2" ry="2" />
<text x="1180.32" y="463.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (9 samples, 0.04%)</title><rect x="169.2" y="485" width="0.5" height="15.0" fill="rgb(234,63,1)" rx="2" ry="2" />
<text x="172.19" y="495.5" ></text>
</g>
<g >
<title>tsg_send_log (123 samples, 0.61%)</title><rect x="359.5" y="437" width="7.3" height="15.0" fill="rgb(227,157,23)" rx="2" ry="2" />
<text x="362.53" y="447.5" ></text>
</g>
<g >
<title>page_fault (2 samples, 0.01%)</title><rect x="250.1" y="501" width="0.1" height="15.0" fill="rgb(209,165,54)" rx="2" ry="2" />
<text x="253.12" y="511.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (56 samples, 0.28%)</title><rect x="639.8" y="597" width="3.3" height="15.0" fill="rgb(224,121,25)" rx="2" ry="2" />
<text x="642.81" y="607.5" ></text>
</g>
<g >
<title>CDeflateFormat::AddDocData (13 samples, 0.06%)</title><rect x="300.4" y="357" width="0.7" height="15.0" fill="rgb(211,163,22)" rx="2" ry="2" />
<text x="303.37" y="367.5" ></text>
</g>
<g >
<title>SIP_UDP_ENTRY (10 samples, 0.05%)</title><rect x="517.7" y="517" width="0.6" height="15.0" fill="rgb(211,123,47)" rx="2" ry="2" />
<text x="520.66" y="527.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (21 samples, 0.10%)</title><rect x="306.9" y="341" width="1.2" height="15.0" fill="rgb(217,67,45)" rx="2" ry="2" />
<text x="309.86" y="351.5" ></text>
</g>
<g >
<title>plugin_call_appentry (61 samples, 0.30%)</title><rect x="697.2" y="629" width="3.6" height="15.0" fill="rgb(214,61,32)" rx="2" ry="2" />
<text x="700.20" y="639.5" ></text>
</g>
<g >
<title>[sapp] (18 samples, 0.09%)</title><rect x="477.6" y="469" width="1.0" height="15.0" fill="rgb(225,199,4)" rx="2" ry="2" />
<text x="480.55" y="479.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="318.7" y="133" width="0.1" height="15.0" fill="rgb(229,159,19)" rx="2" ry="2" />
<text x="321.65" y="143.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="319.0" y="229" width="0.2" height="15.0" fill="rgb(247,25,40)" rx="2" ry="2" />
<text x="322.01" y="239.5" ></text>
</g>
<g >
<title>malloc (6 samples, 0.03%)</title><rect x="259.0" y="501" width="0.3" height="15.0" fill="rgb(205,152,36)" rx="2" ry="2" />
<text x="261.96" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="254.4" y="325" width="0.4" height="15.0" fill="rgb(212,189,15)" rx="2" ry="2" />
<text x="257.36" y="335.5" ></text>
</g>
<g >
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="545.1" y="469" width="0.2" height="15.0" fill="rgb(229,196,54)" rx="2" ry="2" />
<text x="548.15" y="479.5" ></text>
</g>
<g >
<title>CZipFormat::AddOneSection (5 samples, 0.02%)</title><rect x="301.1" y="341" width="0.3" height="15.0" fill="rgb(241,182,28)" rx="2" ry="2" />
<text x="304.14" y="351.5" ></text>
</g>
<g >
<title>rulescan_searchstream (44 samples, 0.22%)</title><rect x="108.2" y="661" width="2.6" height="15.0" fill="rgb(213,65,53)" rx="2" ry="2" />
<text x="111.21" y="671.5" ></text>
</g>
<g >
<title>do_page_fault (13 samples, 0.06%)</title><rect x="130.3" y="597" width="0.8" height="15.0" fill="rgb(246,38,27)" rx="2" ry="2" />
<text x="133.32" y="607.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (2 samples, 0.01%)</title><rect x="11.1" y="693" width="0.1" height="15.0" fill="rgb(215,188,40)" rx="2" ry="2" />
<text x="14.06" y="703.5" ></text>
</g>
<g >
<title>http_callPlugin (13 samples, 0.06%)</title><rect x="250.6" y="405" width="0.8" height="15.0" fill="rgb(212,120,13)" rx="2" ry="2" />
<text x="253.65" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="293.5" y="277" width="0.2" height="15.0" fill="rgb(240,106,25)" rx="2" ry="2" />
<text x="296.47" y="287.5" ></text>
</g>
<g >
<title>[tsg_master.so] (139 samples, 0.69%)</title><rect x="338.8" y="485" width="8.2" height="15.0" fill="rgb(208,229,37)" rx="2" ry="2" />
<text x="341.77" y="495.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (3 samples, 0.01%)</title><rect x="1178.0" y="629" width="0.1" height="15.0" fill="rgb(231,11,38)" rx="2" ry="2" />
<text x="1180.97" y="639.5" ></text>
</g>
<g >
<title>sprintf (13 samples, 0.06%)</title><rect x="348.7" y="405" width="0.8" height="15.0" fill="rgb(231,117,43)" rx="2" ry="2" />
<text x="351.74" y="415.5" ></text>
</g>
<g >
<title>[mail.so] (3 samples, 0.01%)</title><rect x="308.5" y="453" width="0.2" height="15.0" fill="rgb(223,68,47)" rx="2" ry="2" />
<text x="311.51" y="463.5" ></text>
</g>
<g >
<title>wg_mirror_linkinfo_ntop (40 samples, 0.20%)</title><rect x="466.9" y="485" width="2.3" height="15.0" fill="rgb(245,227,6)" rx="2" ry="2" />
<text x="469.88" y="495.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (2 samples, 0.01%)</title><rect x="690.0" y="597" width="0.1" height="15.0" fill="rgb(238,206,43)" rx="2" ry="2" />
<text x="693.01" y="607.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="10.8" y="693" width="0.1" height="15.0" fill="rgb(209,119,29)" rx="2" ry="2" />
<text x="13.83" y="703.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="168.8" y="533" width="0.1" height="15.0" fill="rgb(209,49,46)" rx="2" ry="2" />
<text x="171.78" y="543.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (3 samples, 0.01%)</title><rect x="703.9" y="485" width="0.2" height="15.0" fill="rgb(234,39,53)" rx="2" ry="2" />
<text x="706.93" y="495.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="700.5" y="517" width="0.1" height="15.0" fill="rgb(227,23,50)" rx="2" ry="2" />
<text x="703.51" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="168.1" y="197" width="0.1" height="15.0" fill="rgb(239,156,28)" rx="2" ry="2" />
<text x="171.07" y="207.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="304.1" y="389" width="0.2" height="15.0" fill="rgb(237,150,52)" rx="2" ry="2" />
<text x="307.14" y="399.5" ></text>
</g>
<g >
<title>tsg_record_udp_entry (4 samples, 0.02%)</title><rect x="178.1" y="549" width="0.2" height="15.0" fill="rgb(240,185,25)" rx="2" ry="2" />
<text x="181.10" y="559.5" ></text>
</g>
<g >
<title>malloc (14 samples, 0.07%)</title><rect x="368.2" y="485" width="0.8" height="15.0" fill="rgb(213,75,52)" rx="2" ry="2" />
<text x="371.20" y="495.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (3 samples, 0.01%)</title><rect x="487.1" y="405" width="0.2" height="15.0" fill="rgb(233,197,52)" rx="2" ry="2" />
<text x="490.11" y="415.5" ></text>
</g>
<g >
<title>TLD_append (12 samples, 0.06%)</title><rect x="290.6" y="309" width="0.7" height="15.0" fill="rgb(226,134,32)" rx="2" ry="2" />
<text x="293.64" y="319.5" ></text>
</g>
<g >
<title>Maat_clean_status (5 samples, 0.02%)</title><rect x="690.5" y="405" width="0.3" height="15.0" fill="rgb(248,77,44)" rx="2" ry="2" />
<text x="693.54" y="415.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (75 samples, 0.37%)</title><rect x="375.4" y="469" width="4.4" height="15.0" fill="rgb(205,64,51)" rx="2" ry="2" />
<text x="378.40" y="479.5" ></text>
</g>
<g >
<title>http_analyseHttpReqResHeader (4 samples, 0.02%)</title><rect x="179.3" y="581" width="0.3" height="15.0" fill="rgb(231,150,0)" rx="2" ry="2" />
<text x="182.34" y="591.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (4 samples, 0.02%)</title><rect x="535.9" y="501" width="0.3" height="15.0" fill="rgb(206,151,31)" rx="2" ry="2" />
<text x="538.95" y="511.5" ></text>
</g>
<g >
<title>FS_operate (4 samples, 0.02%)</title><rect x="396.9" y="373" width="0.2" height="15.0" fill="rgb(229,73,9)" rx="2" ry="2" />
<text x="399.86" y="383.5" ></text>
</g>
<g >
<title>region_compile (19 samples, 0.09%)</title><rect x="111.3" y="677" width="1.2" height="15.0" fill="rgb(229,180,29)" rx="2" ry="2" />
<text x="114.33" y="687.5" ></text>
</g>
<g >
<title>stream_process_tcp (1,692 samples, 8.46%)</title><rect x="269.3" y="533" width="99.8" height="15.0" fill="rgb(248,193,48)" rx="2" ry="2" />
<text x="272.29" y="543.5" >stream_proce..</text>
</g>
<g >
<title>SSL_ENTRY (7 samples, 0.03%)</title><rect x="394.9" y="453" width="0.4" height="15.0" fill="rgb(242,199,45)" rx="2" ry="2" />
<text x="397.92" y="463.5" ></text>
</g>
<g >
<title>malloc (11 samples, 0.05%)</title><rect x="399.7" y="357" width="0.6" height="15.0" fill="rgb(226,132,27)" rx="2" ry="2" />
<text x="402.70" y="367.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (15 samples, 0.07%)</title><rect x="368.2" y="501" width="0.9" height="15.0" fill="rgb(241,61,8)" rx="2" ry="2" />
<text x="371.20" y="511.5" ></text>
</g>
<g >
<title>rd_kafka_msg_partitioner (2 samples, 0.01%)</title><rect x="359.4" y="389" width="0.1" height="15.0" fill="rgb(243,146,32)" rx="2" ry="2" />
<text x="362.41" y="399.5" ></text>
</g>
<g >
<title>ssl_analyseAppData (58 samples, 0.29%)</title><rect x="312.6" y="437" width="3.4" height="15.0" fill="rgb(217,83,35)" rx="2" ry="2" />
<text x="315.58" y="447.5" ></text>
</g>
<g >
<title>__clock_gettime (8 samples, 0.04%)</title><rect x="102.1" y="677" width="0.4" height="15.0" fill="rgb(243,111,46)" rx="2" ry="2" />
<text x="105.07" y="687.5" ></text>
</g>
<g >
<title>tsg_l7_protocol_name2id (2 samples, 0.01%)</title><rect x="536.1" y="469" width="0.1" height="15.0" fill="rgb(233,220,47)" rx="2" ry="2" />
<text x="539.06" y="479.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (3 samples, 0.01%)</title><rect x="303.6" y="309" width="0.1" height="15.0" fill="rgb(239,187,0)" rx="2" ry="2" />
<text x="306.55" y="319.5" ></text>
</g>
<g >
<title>i40e_napi_poll (4 samples, 0.02%)</title><rect x="1177.3" y="517" width="0.3" height="15.0" fill="rgb(220,167,23)" rx="2" ry="2" />
<text x="1180.32" y="527.5" ></text>
</g>
<g >
<title>lrustream (3 samples, 0.01%)</title><rect x="693.0" y="629" width="0.1" height="15.0" fill="rgb(232,186,3)" rx="2" ry="2" />
<text x="695.96" y="639.5" ></text>
</g>
<g >
<title>ssl_doWithCertificateDetail (2 samples, 0.01%)</title><rect x="166.2" y="421" width="0.1" height="15.0" fill="rgb(209,68,24)" rx="2" ry="2" />
<text x="169.19" y="431.5" ></text>
</g>
<g >
<title>http_initHttpStream (3 samples, 0.01%)</title><rect x="306.4" y="469" width="0.2" height="15.0" fill="rgb(214,199,1)" rx="2" ry="2" />
<text x="309.45" y="479.5" ></text>
</g>
<g >
<title>wg_mirror_get_linkinfo_from_mac (6 samples, 0.03%)</title><rect x="466.5" y="485" width="0.3" height="15.0" fill="rgb(225,180,16)" rx="2" ry="2" />
<text x="469.46" y="495.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (3 samples, 0.01%)</title><rect x="169.0" y="325" width="0.2" height="15.0" fill="rgb(218,221,51)" rx="2" ry="2" />
<text x="172.02" y="335.5" ></text>
</g>
<g >
<title>_int_realloc (2 samples, 0.01%)</title><rect x="106.4" y="629" width="0.2" height="15.0" fill="rgb(220,116,25)" rx="2" ry="2" />
<text x="109.44" y="639.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="315.8" y="325" width="0.2" height="15.0" fill="rgb(250,125,39)" rx="2" ry="2" />
<text x="318.76" y="335.5" ></text>
</g>
</g>
</svg>