Page MenuHomePhabricator

out.stacks.2337182.svg

Authored By
elukey
Oct 27 2023, 8:41 AM
Size
368 KB
Referenced Files
None
Subscribers
None

out.stacks.2337182.svg

This file is larger than 256 KB, so syntax highlighting was skipped.
<?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="2134" onload="init(evt)" viewBox="0 0 1200 2134" 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;
// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}
// event listeners
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(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
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
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
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;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
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(dont_update_text) {
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]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
// 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")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
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) search(term);
} 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 (term) currentSearchTerm = term;
var re = new RegExp(currentSearchTerm, 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;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));
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="2134.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="2117" > </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="2117" > </text>
<g id="frames">
<g >
<title>__update_load_avg_se (19,478,791 samples, 0.02%)</title><rect x="63.4" y="1845" width="0.2" height="15.0" fill="rgb(247,25,38)" rx="2" ry="2" />
<text x="66.41" y="1855.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (139,225,037 samples, 0.12%)</title><rect x="356.8" y="1925" width="1.4" height="15.0" fill="rgb(213,25,5)" rx="2" ry="2" />
<text x="359.78" y="1935.5" ></text>
</g>
<g >
<title>timerqueue_add (28,659,469 samples, 0.02%)</title><rect x="255.4" y="1909" width="0.2" height="15.0" fill="rgb(247,0,50)" rx="2" ry="2" />
<text x="258.36" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (245,164,780 samples, 0.21%)</title><rect x="181.7" y="2037" width="2.5" height="15.0" fill="rgb(241,149,24)" rx="2" ry="2" />
<text x="184.72" y="2047.5" ></text>
</g>
<g >
<title>task_tick_fair (37,121,361 samples, 0.03%)</title><rect x="358.7" y="1829" width="0.4" height="15.0" fill="rgb(230,150,14)" rx="2" ry="2" />
<text x="361.71" y="1839.5" ></text>
</g>
<g >
<title>new_sync_read (371,410,184 samples, 0.32%)</title><rect x="230.2" y="1957" width="3.8" height="15.0" fill="rgb(231,215,41)" rx="2" ry="2" />
<text x="233.16" y="1967.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (79,647,235 samples, 0.07%)</title><rect x="257.8" y="1861" width="0.8" height="15.0" fill="rgb(210,199,27)" rx="2" ry="2" />
<text x="260.81" y="1871.5" ></text>
</g>
<g >
<title>pipe_poll (26,442,989 samples, 0.02%)</title><rect x="342.4" y="1909" width="0.2" height="15.0" fill="rgb(209,217,15)" rx="2" ry="2" />
<text x="345.36" y="1919.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (47,217,617 samples, 0.04%)</title><rect x="460.4" y="1797" width="0.4" height="15.0" fill="rgb(209,215,47)" rx="2" ry="2" />
<text x="463.36" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1477" width="1.7" height="15.0" fill="rgb(233,55,38)" rx="2" ry="2" />
<text x="128.36" y="1487.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (123,453,141 samples, 0.11%)</title><rect x="1181.2" y="2037" width="1.3" height="15.0" fill="rgb(210,149,13)" rx="2" ry="2" />
<text x="1184.21" y="2047.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1733" width="1.1" height="15.0" fill="rgb(223,218,35)" rx="2" ry="2" />
<text x="373.99" y="1743.5" ></text>
</g>
<g >
<title>event_sched_in (32,014,896 samples, 0.03%)</title><rect x="162.7" y="1829" width="0.3" height="15.0" fill="rgb(237,111,8)" rx="2" ry="2" />
<text x="165.72" y="1839.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (207,999,298 samples, 0.18%)</title><rect x="70.7" y="2005" width="2.1" height="15.0" fill="rgb(207,70,6)" rx="2" ry="2" />
<text x="73.68" y="2015.5" ></text>
</g>
<g >
<title>[libc.so.6] (6,141,181,562 samples, 5.33%)</title><rect x="10.2" y="2053" width="62.9" height="15.0" fill="rgb(240,179,28)" rx="2" ry="2" />
<text x="13.21" y="2063.5" >[libc...</text>
</g>
<g >
<title>timerqueue_add (103,264,119 samples, 0.09%)</title><rect x="401.9" y="1829" width="1.1" height="15.0" fill="rgb(231,104,13)" rx="2" ry="2" />
<text x="404.91" y="1839.5" ></text>
</g>
<g >
<title>update_blocked_averages (30,936,695 samples, 0.03%)</title><rect x="460.9" y="1781" width="0.3" height="15.0" fill="rgb(226,187,5)" rx="2" ry="2" />
<text x="463.86" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="981" width="1.7" height="15.0" fill="rgb(213,135,23)" rx="2" ry="2" />
<text x="128.36" y="991.5" ></text>
</g>
<g >
<title>do_syscall_64 (235,577,742 samples, 0.20%)</title><rect x="301.3" y="2021" width="2.4" height="15.0" fill="rgb(216,133,41)" rx="2" ry="2" />
<text x="304.32" y="2031.5" ></text>
</g>
<g >
<title>reweight_entity (29,101,680 samples, 0.03%)</title><rect x="396.4" y="1877" width="0.3" height="15.0" fill="rgb(223,157,53)" rx="2" ry="2" />
<text x="399.36" y="1887.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (26,545,574 samples, 0.02%)</title><rect x="414.4" y="2037" width="0.3" height="15.0" fill="rgb(220,213,50)" rx="2" ry="2" />
<text x="417.44" y="2047.5" ></text>
</g>
<g >
<title>rd_kafka_broker_buf_enq0 (67,083,500 samples, 0.06%)</title><rect x="224.1" y="2037" width="0.6" height="15.0" fill="rgb(254,147,25)" rx="2" ry="2" />
<text x="227.06" y="2047.5" ></text>
</g>
<g >
<title>mtx_lock (895,171,289 samples, 0.78%)</title><rect x="989.2" y="2037" width="9.2" height="15.0" fill="rgb(207,55,48)" rx="2" ry="2" />
<text x="992.24" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (190,281,360 samples, 0.17%)</title><rect x="68.7" y="2005" width="2.0" height="15.0" fill="rgb(252,196,50)" rx="2" ry="2" />
<text x="71.72" y="2015.5" ></text>
</g>
<g >
<title>read_tsc (17,642,395 samples, 0.02%)</title><rect x="356.4" y="1893" width="0.1" height="15.0" fill="rgb(222,127,30)" rx="2" ry="2" />
<text x="359.37" y="1903.5" ></text>
</g>
<g >
<title>update_cfs_group (26,554,073 samples, 0.02%)</title><rect x="79.3" y="1861" width="0.3" height="15.0" fill="rgb(220,195,45)" rx="2" ry="2" />
<text x="82.33" y="1871.5" ></text>
</g>
<g >
<title>__get_user_8 (99,809,601 samples, 0.09%)</title><rect x="464.1" y="1973" width="1.0" height="15.0" fill="rgb(243,130,22)" rx="2" ry="2" />
<text x="467.07" y="1983.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (1,369,900,974 samples, 1.19%)</title><rect x="429.3" y="1845" width="14.0" height="15.0" fill="rgb(240,187,8)" rx="2" ry="2" />
<text x="432.29" y="1855.5" ></text>
</g>
<g >
<title>fib_lookup_good_nhc (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1589" width="0.7" height="15.0" fill="rgb(252,147,42)" rx="2" ry="2" />
<text x="254.35" y="1599.5" ></text>
</g>
<g >
<title>rd_kafka_q_pop_serve.localalias (35,430,564 samples, 0.03%)</title><rect x="248.6" y="2053" width="0.3" height="15.0" fill="rgb(249,8,4)" rx="2" ry="2" />
<text x="251.55" y="2063.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (231,895,929 samples, 0.20%)</title><rect x="463.7" y="2005" width="2.4" height="15.0" fill="rgb(210,162,7)" rx="2" ry="2" />
<text x="466.69" y="2015.5" ></text>
</g>
<g >
<title>NodeKafka::Baton::Baton (73,577,600 samples, 0.06%)</title><rect x="85.9" y="2005" width="0.7" height="15.0" fill="rgb(234,25,46)" rx="2" ry="2" />
<text x="88.89" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,128,056 samples, 0.05%)</title><rect x="77.8" y="2021" width="0.6" height="15.0" fill="rgb(219,173,14)" rx="2" ry="2" />
<text x="80.84" y="2031.5" ></text>
</g>
<g >
<title>do_sys_poll (2,991,233,715 samples, 2.60%)</title><rect x="187.4" y="1973" width="30.6" height="15.0" fill="rgb(234,3,17)" rx="2" ry="2" />
<text x="190.40" y="1983.5" >do..</text>
</g>
<g >
<title>clock_gettime (50,500,085 samples, 0.04%)</title><rect x="391.2" y="2053" width="0.5" height="15.0" fill="rgb(238,209,27)" rx="2" ry="2" />
<text x="394.18" y="2063.5" ></text>
</g>
<g >
<title>merge_sched_in (63,381,912 samples, 0.05%)</title><rect x="458.1" y="1845" width="0.6" height="15.0" fill="rgb(253,208,24)" rx="2" ry="2" />
<text x="461.10" y="1855.5" ></text>
</g>
<g >
<title>__wake_up_common (452,551,609 samples, 0.39%)</title><rect x="1092.6" y="1909" width="4.7" height="15.0" fill="rgb(224,193,35)" rx="2" ry="2" />
<text x="1095.65" y="1919.5" ></text>
</g>
<g >
<title>psi_group_change (29,605,068 samples, 0.03%)</title><rect x="82.3" y="1877" width="0.3" height="15.0" fill="rgb(241,78,53)" rx="2" ry="2" />
<text x="85.28" y="1887.5" ></text>
</g>
<g >
<title>__wake_up_common (203,840,794 samples, 0.18%)</title><rect x="145.5" y="1909" width="2.1" height="15.0" fill="rgb(235,87,28)" rx="2" ry="2" />
<text x="148.52" y="1919.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (18,181,730 samples, 0.02%)</title><rect x="412.0" y="1877" width="0.2" height="15.0" fill="rgb(209,100,39)" rx="2" ry="2" />
<text x="415.01" y="1887.5" ></text>
</g>
<g >
<title>nf_hook_slow (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1669" width="0.7" height="15.0" fill="rgb(249,171,13)" rx="2" ry="2" />
<text x="254.35" y="1679.5" ></text>
</g>
<g >
<title>__seccomp_filter (18,899,290 samples, 0.02%)</title><rect x="463.5" y="1989" width="0.2" height="15.0" fill="rgb(238,116,53)" rx="2" ry="2" />
<text x="466.48" y="1999.5" ></text>
</g>
<g >
<title>Eval:~ :1 (38,595,760 samples, 0.03%)</title><rect x="75.0" y="1877" width="0.3" height="15.0" fill="rgb(227,121,11)" rx="2" ry="2" />
<text x="77.95" y="1887.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (14,813,545 samples, 0.01%)</title><rect x="303.7" y="1989" width="0.2" height="15.0" fill="rgb(253,23,10)" rx="2" ry="2" />
<text x="306.75" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1557" width="1.7" height="15.0" fill="rgb(252,142,51)" rx="2" ry="2" />
<text x="128.36" y="1567.5" ></text>
</g>
<g >
<title>__x64_sys_futex (408,931,933 samples, 0.35%)</title><rect x="78.4" y="1989" width="4.2" height="15.0" fill="rgb(227,53,54)" rx="2" ry="2" />
<text x="81.39" y="1999.5" ></text>
</g>
<g >
<title>__fget_light (20,664,710 samples, 0.02%)</title><rect x="145.1" y="1973" width="0.2" height="15.0" fill="rgb(229,152,49)" rx="2" ry="2" />
<text x="148.06" y="1983.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (26,358,255 samples, 0.02%)</title><rect x="257.5" y="1877" width="0.3" height="15.0" fill="rgb(250,195,13)" rx="2" ry="2" />
<text x="260.54" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="869" width="1.7" height="15.0" fill="rgb(209,160,35)" rx="2" ry="2" />
<text x="128.36" y="879.5" ></text>
</g>
<g >
<title>rd_buf_get_segment_at_offset (26,350,147 samples, 0.02%)</title><rect x="241.4" y="2053" width="0.3" height="15.0" fill="rgb(230,77,39)" rx="2" ry="2" />
<text x="244.42" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (24,178,556 samples, 0.02%)</title><rect x="333.1" y="1941" width="0.3" height="15.0" fill="rgb(244,61,1)" rx="2" ry="2" />
<text x="336.14" y="1951.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (101,950,082 samples, 0.09%)</title><rect x="389.2" y="1925" width="1.0" height="15.0" fill="rgb(247,156,52)" rx="2" ry="2" />
<text x="392.17" y="1935.5" ></text>
</g>
<g >
<title>load_balance (114,359,250 samples, 0.10%)</title><rect x="409.3" y="1797" width="1.2" height="15.0" fill="rgb(239,221,32)" rx="2" ry="2" />
<text x="412.34" y="1807.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (12,911,442 samples, 0.01%)</title><rect x="398.1" y="2005" width="0.1" height="15.0" fill="rgb(247,76,51)" rx="2" ry="2" />
<text x="401.10" y="2015.5" ></text>
</g>
<g >
<title>v8::internal::compiler::PipelineCompilationJob::ExecuteJobImpl (201,826,645 samples, 0.18%)</title><rect x="15.1" y="1973" width="2.0" height="15.0" fill="rgb(215,168,38)" rx="2" ry="2" />
<text x="18.06" y="1983.5" ></text>
</g>
<g >
<title>__tls_get_addr (38,784,351 samples, 0.03%)</title><rect x="297.6" y="2053" width="0.4" height="15.0" fill="rgb(247,11,0)" rx="2" ry="2" />
<text x="300.58" y="2063.5" ></text>
</g>
<g >
<title>pick_next_task_fair (59,150,418 samples, 0.05%)</title><rect x="79.6" y="1893" width="0.6" height="15.0" fill="rgb(210,122,20)" rx="2" ry="2" />
<text x="82.61" y="1903.5" ></text>
</g>
<g >
<title>native_sched_clock (18,311,754 samples, 0.02%)</title><rect x="387.5" y="1797" width="0.2" height="15.0" fill="rgb(238,12,9)" rx="2" ry="2" />
<text x="390.53" y="1807.5" ></text>
</g>
<g >
<title>napi_complete_done (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1717" width="0.1" height="15.0" fill="rgb(240,157,44)" rx="2" ry="2" />
<text x="354.83" y="1727.5" ></text>
</g>
<g >
<title>__ksize (191,981,523 samples, 0.17%)</title><rect x="252.0" y="1861" width="2.0" height="15.0" fill="rgb(239,144,28)" rx="2" ry="2" />
<text x="255.00" y="1871.5" ></text>
</g>
<g >
<title>new_sync_write (474,015,644 samples, 0.41%)</title><rect x="1092.6" y="1957" width="4.9" height="15.0" fill="rgb(227,39,4)" rx="2" ry="2" />
<text x="1095.65" y="1967.5" ></text>
</g>
<g >
<title>dequeue_task_fair (1,620,223,581 samples, 1.41%)</title><rect x="426.7" y="1909" width="16.6" height="15.0" fill="rgb(224,5,3)" rx="2" ry="2" />
<text x="429.73" y="1919.5" ></text>
</g>
<g >
<title>tg3_tx_frag_set (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1605" width="1.4" height="15.0" fill="rgb(210,223,12)" rx="2" ry="2" />
<text x="330.52" y="1615.5" ></text>
</g>
<g >
<title>uv_rwlock_rdunlock (15,296,222 samples, 0.01%)</title><rect x="91.2" y="2005" width="0.1" height="15.0" fill="rgb(214,160,28)" rx="2" ry="2" />
<text x="94.18" y="2015.5" ></text>
</g>
<g >
<title>__get_user_8 (28,538,926 samples, 0.02%)</title><rect x="323.1" y="1925" width="0.2" height="15.0" fill="rgb(223,29,49)" rx="2" ry="2" />
<text x="326.05" y="1935.5" ></text>
</g>
<g >
<title>rd_kafka_op_destroy (18,784,469 samples, 0.02%)</title><rect x="227.9" y="2037" width="0.2" height="15.0" fill="rgb(251,55,27)" rx="2" ry="2" />
<text x="230.91" y="2047.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (133,480,912 samples, 0.12%)</title><rect x="395.9" y="1957" width="1.3" height="15.0" fill="rgb(242,217,3)" rx="2" ry="2" />
<text x="398.87" y="1967.5" ></text>
</g>
<g >
<title>finish_task_switch (188,263,209 samples, 0.16%)</title><rect x="374.1" y="1909" width="1.9" height="15.0" fill="rgb(213,209,9)" rx="2" ry="2" />
<text x="377.11" y="1919.5" ></text>
</g>
<g >
<title>dequeue_task_fair (43,903,140 samples, 0.04%)</title><rect x="373.7" y="1909" width="0.4" height="15.0" fill="rgb(205,113,14)" rx="2" ry="2" />
<text x="376.66" y="1919.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (29,681,946 samples, 0.03%)</title><rect x="320.3" y="1813" width="0.3" height="15.0" fill="rgb(238,90,40)" rx="2" ry="2" />
<text x="323.33" y="1823.5" ></text>
</g>
<g >
<title>do_sys_poll (1,534,621,209 samples, 1.33%)</title><rect x="268.1" y="1957" width="15.7" height="15.0" fill="rgb(243,203,26)" rx="2" ry="2" />
<text x="271.13" y="1967.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (28,364,343 samples, 0.02%)</title><rect x="352.2" y="1749" width="0.3" height="15.0" fill="rgb(233,121,6)" rx="2" ry="2" />
<text x="355.19" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1285" width="1.7" height="15.0" fill="rgb(250,43,11)" rx="2" ry="2" />
<text x="128.36" y="1295.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1653" width="0.1" height="15.0" fill="rgb(223,30,41)" rx="2" ry="2" />
<text x="354.83" y="1663.5" ></text>
</g>
<g >
<title>rpfilter_lookup_reverse (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1621" width="0.7" height="15.0" fill="rgb(230,64,35)" rx="2" ry="2" />
<text x="254.35" y="1631.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1845" width="0.1" height="15.0" fill="rgb(244,20,0)" rx="2" ry="2" />
<text x="354.83" y="1855.5" ></text>
</g>
<g >
<title>futex_wait (373,537,506 samples, 0.32%)</title><rect x="254.9" y="1973" width="3.9" height="15.0" fill="rgb(240,177,6)" rx="2" ry="2" />
<text x="257.95" y="1983.5" ></text>
</g>
<g >
<title>node::MakeCallback (95,884,613 samples, 0.08%)</title><rect x="75.0" y="2005" width="0.9" height="15.0" fill="rgb(254,136,14)" rx="2" ry="2" />
<text x="77.95" y="2015.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (45,730,549 samples, 0.04%)</title><rect x="227.2" y="2037" width="0.4" height="15.0" fill="rgb(249,36,9)" rx="2" ry="2" />
<text x="230.17" y="2047.5" ></text>
</g>
<g >
<title>event_sched_in (23,618,792 samples, 0.02%)</title><rect x="374.7" y="1829" width="0.3" height="15.0" fill="rgb(227,149,40)" rx="2" ry="2" />
<text x="377.73" y="1839.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (57,045,574 samples, 0.05%)</title><rect x="259.0" y="2021" width="0.6" height="15.0" fill="rgb(240,131,53)" rx="2" ry="2" />
<text x="262.03" y="2031.5" ></text>
</g>
<g >
<title>v8::internal::Runtime::SetObjectProperty (141,496,336 samples, 0.12%)</title><rect x="91.8" y="1941" width="1.5" height="15.0" fill="rgb(233,44,17)" rx="2" ry="2" />
<text x="94.82" y="1951.5" ></text>
</g>
<g >
<title>finish_task_switch (352,101,584 samples, 0.31%)</title><rect x="161.7" y="1909" width="3.6" height="15.0" fill="rgb(218,179,16)" rx="2" ry="2" />
<text x="164.67" y="1919.5" ></text>
</g>
<g >
<title>do_sys_poll (1,121,543,415 samples, 0.97%)</title><rect x="377.5" y="1909" width="11.4" height="15.0" fill="rgb(233,184,14)" rx="2" ry="2" />
<text x="380.46" y="1919.5" ></text>
</g>
<g >
<title>dequeue_entity (138,536,401 samples, 0.12%)</title><rect x="333.6" y="1893" width="1.4" height="15.0" fill="rgb(232,190,1)" rx="2" ry="2" />
<text x="336.60" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="853" width="1.7" height="15.0" fill="rgb(254,210,44)" rx="2" ry="2" />
<text x="128.36" y="863.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (17,449,177 samples, 0.02%)</title><rect x="1014.0" y="1957" width="0.2" height="15.0" fill="rgb(209,94,4)" rx="2" ry="2" />
<text x="1017.03" y="1967.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (44,334,919 samples, 0.04%)</title><rect x="33.1" y="1845" width="0.5" height="15.0" fill="rgb(253,93,14)" rx="2" ry="2" />
<text x="36.15" y="1855.5" ></text>
</g>
<g >
<title>native_sched_clock (54,130,057 samples, 0.05%)</title><rect x="65.8" y="1829" width="0.5" height="15.0" fill="rgb(222,35,0)" rx="2" ry="2" />
<text x="68.77" y="1839.5" ></text>
</g>
<g >
<title>timerqueue_add (24,655,285 samples, 0.02%)</title><rect x="379.6" y="1845" width="0.2" height="15.0" fill="rgb(222,97,4)" rx="2" ry="2" />
<text x="382.56" y="1855.5" ></text>
</g>
<g >
<title>rd_kafka_transport_ssl_send (26,900,511 samples, 0.02%)</title><rect x="249.7" y="2053" width="0.2" height="15.0" fill="rgb(210,46,6)" rx="2" ry="2" />
<text x="252.67" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (34,086,996 samples, 0.03%)</title><rect x="807.5" y="1925" width="0.4" height="15.0" fill="rgb(229,74,3)" rx="2" ry="2" />
<text x="810.51" y="1935.5" ></text>
</g>
<g >
<title>merge_sched_in (205,219,018 samples, 0.18%)</title><rect x="314.8" y="1813" width="2.1" height="15.0" fill="rgb(219,116,33)" rx="2" ry="2" />
<text x="317.75" y="1823.5" ></text>
</g>
<g >
<title>__poll (3,583,811,470 samples, 3.11%)</title><rect x="184.2" y="2037" width="36.7" height="15.0" fill="rgb(206,215,13)" rx="2" ry="2" />
<text x="187.23" y="2047.5" >__p..</text>
</g>
<g >
<title>rd_kafka_timers_run (6,283,580,668 samples, 5.45%)</title><rect x="1028.1" y="2037" width="64.4" height="15.0" fill="rgb(253,44,39)" rx="2" ry="2" />
<text x="1031.13" y="2047.5" >rd_kafk..</text>
</g>
<g >
<title>rd_kafka_broker_bufq_timeout_scan (21,848,724 samples, 0.02%)</title><rect x="299.3" y="2053" width="0.2" height="15.0" fill="rgb(236,199,1)" rx="2" ry="2" />
<text x="302.28" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_init_sleeper (15,649,927 samples, 0.01%)</title><rect x="68.3" y="1957" width="0.1" height="15.0" fill="rgb(206,25,31)" rx="2" ry="2" />
<text x="71.28" y="1967.5" ></text>
</g>
<g >
<title>BIO_ctrl (25,937,797 samples, 0.02%)</title><rect x="336.3" y="2037" width="0.2" height="15.0" fill="rgb(246,133,39)" rx="2" ry="2" />
<text x="339.28" y="2047.5" ></text>
</g>
<g >
<title>update_cfs_group (25,443,878 samples, 0.02%)</title><rect x="343.2" y="1829" width="0.3" height="15.0" fill="rgb(253,129,40)" rx="2" ry="2" />
<text x="346.22" y="1839.5" ></text>
</g>
<g >
<title>clock_gettime@plt (47,595,676 samples, 0.04%)</title><rect x="988.7" y="2037" width="0.5" height="15.0" fill="rgb(251,2,2)" rx="2" ry="2" />
<text x="991.75" y="2047.5" ></text>
</g>
<g >
<title>timerqueue_add (56,072,886 samples, 0.05%)</title><rect x="309.7" y="1877" width="0.6" height="15.0" fill="rgb(206,131,27)" rx="2" ry="2" />
<text x="312.71" y="1887.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1845" width="1.4" height="15.0" fill="rgb(215,50,48)" rx="2" ry="2" />
<text x="330.52" y="1855.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (93,587,728 samples, 0.08%)</title><rect x="302.4" y="1893" width="1.0" height="15.0" fill="rgb(232,108,4)" rx="2" ry="2" />
<text x="305.42" y="1903.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (34,086,996 samples, 0.03%)</title><rect x="807.5" y="1957" width="0.4" height="15.0" fill="rgb(245,149,44)" rx="2" ry="2" />
<text x="810.51" y="1967.5" ></text>
</g>
<g >
<title>ctx_sched_in (23,292,607 samples, 0.02%)</title><rect x="460.1" y="1861" width="0.2" height="15.0" fill="rgb(205,71,5)" rx="2" ry="2" />
<text x="463.06" y="1871.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,388,802,328 samples, 1.20%)</title><rect x="513.3" y="1925" width="14.2" height="15.0" fill="rgb(233,159,10)" rx="2" ry="2" />
<text x="516.32" y="1935.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (24,042,749 samples, 0.02%)</title><rect x="401.5" y="1845" width="0.2" height="15.0" fill="rgb(229,32,32)" rx="2" ry="2" />
<text x="404.48" y="1855.5" ></text>
</g>
<g >
<title>anon_pipe_buf_release (30,259,860 samples, 0.03%)</title><rect x="230.6" y="1925" width="0.3" height="15.0" fill="rgb(247,178,30)" rx="2" ry="2" />
<text x="233.62" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="453" width="1.7" height="15.0" fill="rgb(212,139,42)" rx="2" ry="2" />
<text x="128.36" y="463.5" ></text>
</g>
<g >
<title>[[vdso]] (13,148,463 samples, 0.01%)</title><rect x="329.4" y="2037" width="0.2" height="15.0" fill="rgb(250,92,13)" rx="2" ry="2" />
<text x="332.43" y="2047.5" ></text>
</g>
<g >
<title>rd_kafka_q_len (23,908,205 samples, 0.02%)</title><rect x="358.5" y="1989" width="0.2" height="15.0" fill="rgb(207,207,52)" rx="2" ry="2" />
<text x="361.47" y="1999.5" ></text>
</g>
<g >
<title>tg3_poll_msix (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1749" width="1.1" height="15.0" fill="rgb(231,25,42)" rx="2" ry="2" />
<text x="298.98" y="1759.5" ></text>
</g>
<g >
<title>native_sched_clock (29,833,241 samples, 0.03%)</title><rect x="351.5" y="1765" width="0.3" height="15.0" fill="rgb(247,165,48)" rx="2" ry="2" />
<text x="354.53" y="1775.5" ></text>
</g>
<g >
<title>tick_sched_handle (17,449,177 samples, 0.02%)</title><rect x="1014.0" y="1925" width="0.2" height="15.0" fill="rgb(235,192,10)" rx="2" ry="2" />
<text x="1017.03" y="1935.5" ></text>
</g>
<g >
<title>task_tick_fair (123,453,141 samples, 0.11%)</title><rect x="1181.2" y="1893" width="1.3" height="15.0" fill="rgb(210,158,24)" rx="2" ry="2" />
<text x="1184.21" y="1903.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (197,963,855 samples, 0.17%)</title><rect x="311.8" y="1829" width="2.0" height="15.0" fill="rgb(209,226,12)" rx="2" ry="2" />
<text x="314.82" y="1839.5" ></text>
</g>
<g >
<title>v8::internal::LocalIsolate::~LocalIsolate (126,488,785 samples, 0.11%)</title><rect x="13.8" y="2005" width="1.3" height="15.0" fill="rgb(222,115,11)" rx="2" ry="2" />
<text x="16.77" y="2015.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (240,559,639 samples, 0.21%)</title><rect x="406.6" y="1781" width="2.5" height="15.0" fill="rgb(223,175,11)" rx="2" ry="2" />
<text x="409.61" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1829" width="1.7" height="15.0" fill="rgb(231,186,46)" rx="2" ry="2" />
<text x="128.36" y="1839.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (129,125,182 samples, 0.11%)</title><rect x="385.8" y="1781" width="1.3" height="15.0" fill="rgb(246,100,50)" rx="2" ry="2" />
<text x="388.78" y="1791.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (115,294,184 samples, 0.10%)</title><rect x="352.5" y="1797" width="1.2" height="15.0" fill="rgb(223,207,11)" rx="2" ry="2" />
<text x="355.48" y="1807.5" ></text>
</g>
<g >
<title>tcp_write_xmit (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1877" width="0.7" height="15.0" fill="rgb(245,104,48)" rx="2" ry="2" />
<text x="254.35" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1269" width="1.7" height="15.0" fill="rgb(248,64,31)" rx="2" ry="2" />
<text x="128.36" y="1279.5" ></text>
</g>
<g >
<title>Eval:~ :1 (24,649,178 samples, 0.02%)</title><rect x="75.3" y="1877" width="0.3" height="15.0" fill="rgb(217,63,52)" rx="2" ry="2" />
<text x="78.35" y="1887.5" ></text>
</g>
<g >
<title>ttwu_do_activate (15,941,509 samples, 0.01%)</title><rect x="280.5" y="1749" width="0.2" height="15.0" fill="rgb(236,131,6)" rx="2" ry="2" />
<text x="283.51" y="1759.5" ></text>
</g>
<g >
<title>v8::internal::compiler::BytecodeGraphBuilder::BytecodeGraphBuilder (50,070,700 samples, 0.04%)</title><rect x="15.1" y="1909" width="0.5" height="15.0" fill="rgb(233,200,50)" rx="2" ry="2" />
<text x="18.06" y="1919.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,419,623,648 samples, 1.23%)</title><rect x="399.4" y="1941" width="14.5" height="15.0" fill="rgb(251,165,32)" rx="2" ry="2" />
<text x="402.39" y="1951.5" ></text>
</g>
<g >
<title>uv_cond_wait (12,913,255 samples, 0.01%)</title><rect x="131.8" y="2037" width="0.1" height="15.0" fill="rgb(250,227,16)" rx="2" ry="2" />
<text x="134.79" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="309" width="1.7" height="15.0" fill="rgb(226,98,43)" rx="2" ry="2" />
<text x="128.36" y="319.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (25,437,447 samples, 0.02%)</title><rect x="210.6" y="1813" width="0.2" height="15.0" fill="rgb(214,93,16)" rx="2" ry="2" />
<text x="213.57" y="1823.5" ></text>
</g>
<g >
<title>NodeKafka::Workers::KafkaConsumerConsumeNum::HandleOKCallback (120,380,337 samples, 0.10%)</title><rect x="74.7" y="2021" width="1.2" height="15.0" fill="rgb(206,92,25)" rx="2" ry="2" />
<text x="77.70" y="2031.5" ></text>
</g>
<g >
<title>rb_next (148,801,543 samples, 0.13%)</title><rect x="136.7" y="1861" width="1.5" height="15.0" fill="rgb(206,162,21)" rx="2" ry="2" />
<text x="139.68" y="1871.5" ></text>
</g>
<g >
<title>LazyCompile:*emitAfterScript node:internal/async_hooks:517 (29,288,668 samples, 0.03%)</title><rect x="123.2" y="1893" width="0.3" height="15.0" fill="rgb(223,67,39)" rx="2" ry="2" />
<text x="126.20" y="1903.5" ></text>
</g>
<g >
<title>sched_clock (18,311,754 samples, 0.02%)</title><rect x="387.5" y="1813" width="0.2" height="15.0" fill="rgb(247,90,6)" rx="2" ry="2" />
<text x="390.53" y="1823.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1797" width="0.1" height="15.0" fill="rgb(222,204,12)" rx="2" ry="2" />
<text x="354.83" y="1807.5" ></text>
</g>
<g >
<title>v8::internal::compiler::Scheduler::ComputeSchedule (125,329,974 samples, 0.11%)</title><rect x="15.8" y="1925" width="1.3" height="15.0" fill="rgb(246,136,45)" rx="2" ry="2" />
<text x="18.85" y="1935.5" ></text>
</g>
<g >
<title>find_busiest_group (31,451,381 samples, 0.03%)</title><rect x="79.7" y="1845" width="0.3" height="15.0" fill="rgb(244,154,4)" rx="2" ry="2" />
<text x="82.71" y="1855.5" ></text>
</g>
<g >
<title>poll_freewait (24,042,749 samples, 0.02%)</title><rect x="401.5" y="1877" width="0.2" height="15.0" fill="rgb(223,73,29)" rx="2" ry="2" />
<text x="404.48" y="1887.5" ></text>
</g>
<g >
<title>ipt_do_table (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1589" width="0.1" height="15.0" fill="rgb(221,120,34)" rx="2" ry="2" />
<text x="354.83" y="1599.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (172,574,804 samples, 0.15%)</title><rect x="219.2" y="2005" width="1.7" height="15.0" fill="rgb(231,81,47)" rx="2" ry="2" />
<text x="222.15" y="2015.5" ></text>
</g>
<g >
<title>find_busiest_group (48,881,016 samples, 0.04%)</title><rect x="335.4" y="1861" width="0.5" height="15.0" fill="rgb(216,101,28)" rx="2" ry="2" />
<text x="338.36" y="1871.5" ></text>
</g>
<g >
<title>v8::internal::Factory::NewJSObjectFromMap (10,635,804 samples, 0.01%)</title><rect x="125.4" y="53" width="0.1" height="15.0" fill="rgb(242,198,26)" rx="2" ry="2" />
<text x="128.36" y="63.5" ></text>
</g>
<g >
<title>ctx_sched_in (79,647,235 samples, 0.07%)</title><rect x="257.8" y="1877" width="0.8" height="15.0" fill="rgb(246,42,43)" rx="2" ry="2" />
<text x="260.81" y="1887.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (22,537,234 samples, 0.02%)</title><rect x="226.9" y="1893" width="0.3" height="15.0" fill="rgb(240,198,9)" rx="2" ry="2" />
<text x="229.94" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="613" width="1.7" height="15.0" fill="rgb(215,95,9)" rx="2" ry="2" />
<text x="128.36" y="623.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="245" width="1.7" height="15.0" fill="rgb(207,203,38)" rx="2" ry="2" />
<text x="128.36" y="255.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (28,912,104 samples, 0.03%)</title><rect x="458.5" y="1797" width="0.2" height="15.0" fill="rgb(249,83,42)" rx="2" ry="2" />
<text x="461.45" y="1807.5" ></text>
</g>
<g >
<title>__errno_location (48,415,075 samples, 0.04%)</title><rect x="183.7" y="2005" width="0.5" height="15.0" fill="rgb(217,50,8)" rx="2" ry="2" />
<text x="186.73" y="2015.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (161,080,466 samples, 0.14%)</title><rect x="32.0" y="1861" width="1.6" height="15.0" fill="rgb(208,210,49)" rx="2" ry="2" />
<text x="34.95" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="2021" width="1.7" height="15.0" fill="rgb(217,195,54)" rx="2" ry="2" />
<text x="128.36" y="2031.5" ></text>
</g>
<g >
<title>__tls_get_addr (42,590,757 samples, 0.04%)</title><rect x="132.7" y="2053" width="0.5" height="15.0" fill="rgb(211,30,54)" rx="2" ry="2" />
<text x="135.74" y="2063.5" ></text>
</g>
<g >
<title>read_tsc (22,652,600 samples, 0.02%)</title><rect x="218.0" y="1941" width="0.3" height="15.0" fill="rgb(211,165,13)" rx="2" ry="2" />
<text x="221.02" y="1951.5" ></text>
</g>
<g >
<title>update_cfs_group (40,563,676 samples, 0.04%)</title><rect x="427.0" y="1877" width="0.4" height="15.0" fill="rgb(219,14,26)" rx="2" ry="2" />
<text x="430.02" y="1887.5" ></text>
</g>
<g >
<title>mtx_lock (19,202,882 samples, 0.02%)</title><rect x="238.4" y="2053" width="0.2" height="15.0" fill="rgb(239,113,25)" rx="2" ry="2" />
<text x="241.36" y="2063.5" ></text>
</g>
<g >
<title>switch_fpu_return (73,447,387 samples, 0.06%)</title><rect x="413.2" y="1893" width="0.7" height="15.0" fill="rgb(236,160,11)" rx="2" ry="2" />
<text x="416.18" y="1903.5" ></text>
</g>
<g >
<title>__fget_files (17,976,314 samples, 0.02%)</title><rect x="1092.5" y="1941" width="0.1" height="15.0" fill="rgb(209,136,0)" rx="2" ry="2" />
<text x="1095.46" y="1951.5" ></text>
</g>
<g >
<title>node::Environment::ToggleImmediateRef (156,067,372 samples, 0.14%)</title><rect x="125.5" y="37" width="1.6" height="15.0" fill="rgb(231,149,54)" rx="2" ry="2" />
<text x="128.47" y="47.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (29,061,215 samples, 0.03%)</title><rect x="83.7" y="2021" width="0.3" height="15.0" fill="rgb(236,196,25)" rx="2" ry="2" />
<text x="86.68" y="2031.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (22,272,198 samples, 0.02%)</title><rect x="385.5" y="1781" width="0.3" height="15.0" fill="rgb(233,183,19)" rx="2" ry="2" />
<text x="388.55" y="1791.5" ></text>
</g>
<g >
<title>newidle_balance (48,881,016 samples, 0.04%)</title><rect x="335.4" y="1893" width="0.5" height="15.0" fill="rgb(247,101,41)" rx="2" ry="2" />
<text x="338.36" y="1903.5" ></text>
</g>
<g >
<title>update_curr (225,825,001 samples, 0.20%)</title><rect x="273.6" y="1861" width="2.3" height="15.0" fill="rgb(251,118,54)" rx="2" ry="2" />
<text x="276.61" y="1871.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock (16,897,152 samples, 0.01%)</title><rect x="223.6" y="2037" width="0.2" height="15.0" fill="rgb(217,159,30)" rx="2" ry="2" />
<text x="226.61" y="2047.5" ></text>
</g>
<g >
<title>schedule (386,482,422 samples, 0.34%)</title><rect x="135.4" y="1957" width="3.9" height="15.0" fill="rgb(223,132,33)" rx="2" ry="2" />
<text x="138.38" y="1967.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (24,655,285 samples, 0.02%)</title><rect x="379.6" y="1861" width="0.2" height="15.0" fill="rgb(242,116,37)" rx="2" ry="2" />
<text x="382.56" y="1871.5" ></text>
</g>
<g >
<title>ksys_read (115,481,192 samples, 0.10%)</title><rect x="366.5" y="1989" width="1.1" height="15.0" fill="rgb(217,228,4)" rx="2" ry="2" />
<text x="369.46" y="1999.5" ></text>
</g>
<g >
<title>ksys_write (491,991,958 samples, 0.43%)</title><rect x="1092.5" y="1989" width="5.0" height="15.0" fill="rgb(234,24,37)" rx="2" ry="2" />
<text x="1095.46" y="1999.5" ></text>
</g>
<g >
<title>enqueue_task_fair (41,974,591 samples, 0.04%)</title><rect x="53.9" y="1749" width="0.4" height="15.0" fill="rgb(217,148,44)" rx="2" ry="2" />
<text x="56.88" y="1759.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (288,211,918 samples, 0.25%)</title><rect x="382.6" y="1829" width="2.9" height="15.0" fill="rgb(232,28,26)" rx="2" ry="2" />
<text x="385.60" y="1839.5" ></text>
</g>
<g >
<title>update_load_avg (25,796,355 samples, 0.02%)</title><rect x="54.0" y="1717" width="0.3" height="15.0" fill="rgb(248,108,2)" rx="2" ry="2" />
<text x="57.05" y="1727.5" ></text>
</g>
<g >
<title>rd_kafka_broker_op_serve (51,942,231 samples, 0.05%)</title><rect x="225.0" y="2037" width="0.5" height="15.0" fill="rgb(216,206,44)" rx="2" ry="2" />
<text x="227.98" y="2047.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (16,325,069 samples, 0.01%)</title><rect x="82.6" y="1989" width="0.1" height="15.0" fill="rgb(248,48,40)" rx="2" ry="2" />
<text x="85.58" y="1999.5" ></text>
</g>
<g >
<title>rd_kafka_timers_next (2,659,478,099 samples, 2.31%)</title><rect x="599.5" y="1973" width="27.3" height="15.0" fill="rgb(220,186,28)" rx="2" ry="2" />
<text x="602.54" y="1983.5" >r..</text>
</g>
<g >
<title>load_balance (266,334,026 samples, 0.23%)</title><rect x="165.7" y="1877" width="2.7" height="15.0" fill="rgb(230,120,45)" rx="2" ry="2" />
<text x="168.70" y="1887.5" ></text>
</g>
<g >
<title>psi_task_change (35,382,388 samples, 0.03%)</title><rect x="376.0" y="1909" width="0.4" height="15.0" fill="rgb(239,128,12)" rx="2" ry="2" />
<text x="379.04" y="1919.5" ></text>
</g>
<g >
<title>process_backlog (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1717" width="0.7" height="15.0" fill="rgb(206,48,32)" rx="2" ry="2" />
<text x="254.35" y="1727.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1797" width="1.1" height="15.0" fill="rgb(247,108,52)" rx="2" ry="2" />
<text x="298.98" y="1807.5" ></text>
</g>
<g >
<title>cfree (47,246,667 samples, 0.04%)</title><rect x="91.3" y="2021" width="0.5" height="15.0" fill="rgb(226,191,10)" rx="2" ry="2" />
<text x="94.33" y="2031.5" ></text>
</g>
<g >
<title>CRYPTO_gcm128_finish (29,198,329 samples, 0.03%)</title><rect x="175.4" y="2037" width="0.3" height="15.0" fill="rgb(212,37,1)" rx="2" ry="2" />
<text x="178.35" y="2047.5" ></text>
</g>
<g >
<title>__d_lookup (26,213,777 samples, 0.02%)</title><rect x="128.0" y="1893" width="0.3" height="15.0" fill="rgb(239,186,19)" rx="2" ry="2" />
<text x="131.00" y="1903.5" ></text>
</g>
<g >
<title>_raw_spin_lock (20,668,473 samples, 0.02%)</title><rect x="346.3" y="1829" width="0.2" height="15.0" fill="rgb(224,161,19)" rx="2" ry="2" />
<text x="349.28" y="1839.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (465,395,973 samples, 0.40%)</title><rect x="314.7" y="1829" width="4.8" height="15.0" fill="rgb(234,146,9)" rx="2" ry="2" />
<text x="317.74" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1541" width="1.7" height="15.0" fill="rgb(216,72,6)" rx="2" ry="2" />
<text x="128.36" y="1551.5" ></text>
</g>
<g >
<title>do_sys_poll (1,642,124,431 samples, 1.42%)</title><rect x="339.6" y="1925" width="16.8" height="15.0" fill="rgb(225,205,41)" rx="2" ry="2" />
<text x="342.55" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (1,583,573,438 samples, 1.37%)</title><rect x="398.2" y="2021" width="16.2" height="15.0" fill="rgb(206,19,20)" rx="2" ry="2" />
<text x="401.23" y="2031.5" ></text>
</g>
<g >
<title>update_cfs_group (17,449,177 samples, 0.02%)</title><rect x="1014.0" y="1861" width="0.2" height="15.0" fill="rgb(254,206,21)" rx="2" ry="2" />
<text x="1017.03" y="1871.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (24,745,751 samples, 0.02%)</title><rect x="255.6" y="1909" width="0.3" height="15.0" fill="rgb(233,203,13)" rx="2" ry="2" />
<text x="258.65" y="1919.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (14,856,781 samples, 0.01%)</title><rect x="236.5" y="2005" width="0.2" height="15.0" fill="rgb(221,23,12)" rx="2" ry="2" />
<text x="239.52" y="2015.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (103,264,119 samples, 0.09%)</title><rect x="401.9" y="1845" width="1.1" height="15.0" fill="rgb(225,8,47)" rx="2" ry="2" />
<text x="404.91" y="1855.5" ></text>
</g>
<g >
<title>psi_group_change (22,095,266 samples, 0.02%)</title><rect x="1097.1" y="1829" width="0.2" height="15.0" fill="rgb(225,81,17)" rx="2" ry="2" />
<text x="1100.06" y="1839.5" ></text>
</g>
<g >
<title>[libnode.so.108] (353,554,013 samples, 0.31%)</title><rect x="13.8" y="2037" width="3.6" height="15.0" fill="rgb(232,18,8)" rx="2" ry="2" />
<text x="16.77" y="2047.5" ></text>
</g>
<g >
<title>pick_next_task_idle (23,448,590 samples, 0.02%)</title><rect x="387.1" y="1845" width="0.2" height="15.0" fill="rgb(253,188,34)" rx="2" ry="2" />
<text x="390.10" y="1855.5" ></text>
</g>
<g >
<title>pipe_write (474,015,644 samples, 0.41%)</title><rect x="1092.6" y="1941" width="4.9" height="15.0" fill="rgb(235,224,10)" rx="2" ry="2" />
<text x="1095.65" y="1951.5" ></text>
</g>
<g >
<title>mtx_lock (294,587,374 samples, 0.26%)</title><rect x="569.0" y="1973" width="3.1" height="15.0" fill="rgb(244,78,38)" rx="2" ry="2" />
<text x="572.04" y="1983.5" ></text>
</g>
<g >
<title>update_curr (47,814,418 samples, 0.04%)</title><rect x="343.5" y="1829" width="0.5" height="15.0" fill="rgb(209,203,27)" rx="2" ry="2" />
<text x="346.48" y="1839.5" ></text>
</g>
<g >
<title>newidle_balance (150,313,381 samples, 0.13%)</title><rect x="280.7" y="1877" width="1.5" height="15.0" fill="rgb(241,1,40)" rx="2" ry="2" />
<text x="283.67" y="1887.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (22,963,911 samples, 0.02%)</title><rect x="54.4" y="1845" width="0.2" height="15.0" fill="rgb(215,159,16)" rx="2" ry="2" />
<text x="57.35" y="1855.5" ></text>
</g>
<g >
<title>set_task_cpu (26,008,981 samples, 0.02%)</title><rect x="62.2" y="1861" width="0.3" height="15.0" fill="rgb(240,99,3)" rx="2" ry="2" />
<text x="65.22" y="1871.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (295,682,166 samples, 0.26%)</title><rect x="332.8" y="1957" width="3.1" height="15.0" fill="rgb(233,99,13)" rx="2" ry="2" />
<text x="335.83" y="1967.5" ></text>
</g>
<g >
<title>RdKafka::KafkaConsumerImpl::consume (97,235,838 samples, 0.08%)</title><rect x="86.9" y="2005" width="1.0" height="15.0" fill="rgb(208,19,26)" rx="2" ry="2" />
<text x="89.92" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="405" width="1.7" height="15.0" fill="rgb(220,24,12)" rx="2" ry="2" />
<text x="128.36" y="415.5" ></text>
</g>
<g >
<title>record_times (54,130,057 samples, 0.05%)</title><rect x="65.8" y="1877" width="0.5" height="15.0" fill="rgb(254,132,38)" rx="2" ry="2" />
<text x="68.77" y="1887.5" ></text>
</g>
<g >
<title>switch_fpu_return (27,231,542 samples, 0.02%)</title><rect x="220.6" y="1973" width="0.3" height="15.0" fill="rgb(240,128,53)" rx="2" ry="2" />
<text x="223.64" y="1983.5" ></text>
</g>
<g >
<title>CRYPTO_zalloc (26,903,993 samples, 0.02%)</title><rect x="149.0" y="2053" width="0.3" height="15.0" fill="rgb(245,117,33)" rx="2" ry="2" />
<text x="152.03" y="2063.5" ></text>
</g>
<g >
<title>__fdget_pos (20,664,710 samples, 0.02%)</title><rect x="145.1" y="1989" width="0.2" height="15.0" fill="rgb(254,139,54)" rx="2" ry="2" />
<text x="148.06" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1205" width="1.7" height="15.0" fill="rgb(227,136,24)" rx="2" ry="2" />
<text x="128.36" y="1215.5" ></text>
</g>
<g >
<title>rd_kafka_broker_bufq_timeout_scan (38,104,553 samples, 0.03%)</title><rect x="391.9" y="2053" width="0.4" height="15.0" fill="rgb(213,16,38)" rx="2" ry="2" />
<text x="394.86" y="2063.5" ></text>
</g>
<g >
<title>inet_recvmsg (135,467,584 samples, 0.12%)</title><rect x="294.6" y="1925" width="1.4" height="15.0" fill="rgb(231,55,37)" rx="2" ry="2" />
<text x="297.60" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1813" width="1.7" height="15.0" fill="rgb(236,226,43)" rx="2" ry="2" />
<text x="128.36" y="1823.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (135,524,268 samples, 0.12%)</title><rect x="763.7" y="1989" width="1.4" height="15.0" fill="rgb(235,162,51)" rx="2" ry="2" />
<text x="766.70" y="1999.5" ></text>
</g>
<g >
<title>tick_sched_timer (20,956,988 samples, 0.02%)</title><rect x="385.5" y="1733" width="0.3" height="15.0" fill="rgb(240,137,53)" rx="2" ry="2" />
<text x="388.55" y="1743.5" ></text>
</g>
<g >
<title>__secure_computing (52,192,642 samples, 0.05%)</title><rect x="82.9" y="1973" width="0.5" height="15.0" fill="rgb(235,91,19)" rx="2" ry="2" />
<text x="85.85" y="1983.5" ></text>
</g>
<g >
<title>irq_exit_rcu (22,963,911 samples, 0.02%)</title><rect x="54.4" y="1861" width="0.2" height="15.0" fill="rgb(211,126,15)" rx="2" ry="2" />
<text x="57.35" y="1871.5" ></text>
</g>
<g >
<title>inet6_recvmsg (79,990,077 samples, 0.07%)</title><rect x="366.8" y="1925" width="0.8" height="15.0" fill="rgb(226,155,1)" rx="2" ry="2" />
<text x="369.82" y="1935.5" ></text>
</g>
<g >
<title>dequeue_entity (297,701,588 samples, 0.26%)</title><rect x="272.9" y="1877" width="3.0" height="15.0" fill="rgb(254,181,53)" rx="2" ry="2" />
<text x="275.87" y="1887.5" ></text>
</g>
<g >
<title>__fget_light (125,822,112 samples, 0.11%)</title><rect x="269.0" y="1941" width="1.2" height="15.0" fill="rgb(252,82,34)" rx="2" ry="2" />
<text x="271.96" y="1951.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (25,889,312 samples, 0.02%)</title><rect x="196.6" y="1925" width="0.3" height="15.0" fill="rgb(218,20,8)" rx="2" ry="2" />
<text x="199.61" y="1935.5" ></text>
</g>
<g >
<title>ktime_get (26,086,921 samples, 0.02%)</title><rect x="233.7" y="1861" width="0.3" height="15.0" fill="rgb(206,80,35)" rx="2" ry="2" />
<text x="236.70" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (3,583,596,763 samples, 3.11%)</title><rect x="260.9" y="2053" width="36.7" height="15.0" fill="rgb(207,29,35)" rx="2" ry="2" />
<text x="263.89" y="2063.5" >[un..</text>
</g>
<g >
<title>__errno_location (48,542,266 samples, 0.04%)</title><rect x="132.2" y="2053" width="0.5" height="15.0" fill="rgb(216,215,26)" rx="2" ry="2" />
<text x="135.25" y="2063.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (51,506,538 samples, 0.04%)</title><rect x="352.0" y="1813" width="0.5" height="15.0" fill="rgb(225,195,18)" rx="2" ry="2" />
<text x="354.96" y="1823.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromise0 /srv/service/node_modules/bluebird/js/release/promise.js:644 (24,649,178 samples, 0.02%)</title><rect x="75.3" y="1829" width="0.3" height="15.0" fill="rgb(215,150,31)" rx="2" ry="2" />
<text x="78.35" y="1839.5" ></text>
</g>
<g >
<title>do_syscall_64 (131,648,858 samples, 0.11%)</title><rect x="327.5" y="2005" width="1.4" height="15.0" fill="rgb(220,78,1)" rx="2" ry="2" />
<text x="330.52" y="2015.5" ></text>
</g>
<g >
<title>enqueue_task_fair (27,230,806 samples, 0.02%)</title><rect x="319.8" y="1717" width="0.3" height="15.0" fill="rgb(240,58,51)" rx="2" ry="2" />
<text x="322.77" y="1727.5" ></text>
</g>
<g >
<title>rd_kafka_cgrp_serve (2,155,744,540 samples, 1.87%)</title><rect x="807.9" y="2021" width="22.0" height="15.0" fill="rgb(242,173,43)" rx="2" ry="2" />
<text x="810.86" y="2031.5" >r..</text>
</g>
<g >
<title>psi_task_change (56,652,307 samples, 0.05%)</title><rect x="147.0" y="1845" width="0.6" height="15.0" fill="rgb(218,169,44)" rx="2" ry="2" />
<text x="150.03" y="1855.5" ></text>
</g>
<g >
<title>rd_kafka_toppar_get0 (415,987,126 samples, 0.36%)</title><rect x="362.2" y="2037" width="4.3" height="15.0" fill="rgb(247,38,38)" rx="2" ry="2" />
<text x="365.20" y="2047.5" ></text>
</g>
<g >
<title>__fget_files (89,969,210 samples, 0.08%)</title><rect x="341.4" y="1893" width="1.0" height="15.0" fill="rgb(236,73,31)" rx="2" ry="2" />
<text x="344.44" y="1903.5" ></text>
</g>
<g >
<title>merge_sched_in (65,797,575 samples, 0.06%)</title><rect x="162.4" y="1845" width="0.6" height="15.0" fill="rgb(213,91,53)" rx="2" ry="2" />
<text x="165.37" y="1855.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (40,197,790 samples, 0.03%)</title><rect x="360.4" y="2037" width="0.4" height="15.0" fill="rgb(231,0,35)" rx="2" ry="2" />
<text x="363.36" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (16,586,629 samples, 0.01%)</title><rect x="379.4" y="1861" width="0.2" height="15.0" fill="rgb(217,35,26)" rx="2" ry="2" />
<text x="382.39" y="1871.5" ></text>
</g>
<g >
<title>node (13,480,319,595 samples, 11.70%)</title><rect x="10.0" y="2069" width="138.0" height="15.0" fill="rgb(212,1,7)" rx="2" ry="2" />
<text x="13.00" y="2079.5" >node</text>
</g>
<g >
<title>__schedule (304,804,827 samples, 0.26%)</title><rect x="255.6" y="1925" width="3.2" height="15.0" fill="rgb(254,159,28)" rx="2" ry="2" />
<text x="258.65" y="1935.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (117,391,884 samples, 0.10%)</title><rect x="167.2" y="1797" width="1.2" height="15.0" fill="rgb(205,200,7)" rx="2" ry="2" />
<text x="170.23" y="1807.5" ></text>
</g>
<g >
<title>rb_next (82,374,568 samples, 0.07%)</title><rect x="52.3" y="1845" width="0.8" height="15.0" fill="rgb(223,200,24)" rx="2" ry="2" />
<text x="55.30" y="1855.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (32,090,743 samples, 0.03%)</title><rect x="336.0" y="2005" width="0.3" height="15.0" fill="rgb(227,201,38)" rx="2" ry="2" />
<text x="338.95" y="2015.5" ></text>
</g>
<g >
<title>__tls_get_addr (55,147,446 samples, 0.05%)</title><rect x="328.9" y="2053" width="0.5" height="15.0" fill="rgb(239,22,44)" rx="2" ry="2" />
<text x="331.87" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (2,065,646,248 samples, 1.79%)</title><rect x="339.1" y="2005" width="21.1" height="15.0" fill="rgb(250,63,34)" rx="2" ry="2" />
<text x="342.05" y="2015.5" ></text>
</g>
<g >
<title>update_blocked_averages (66,005,860 samples, 0.06%)</title><rect x="320.6" y="1845" width="0.7" height="15.0" fill="rgb(231,132,3)" rx="2" ry="2" />
<text x="323.63" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1317" width="1.7" height="15.0" fill="rgb(246,35,40)" rx="2" ry="2" />
<text x="128.36" y="1327.5" ></text>
</g>
<g >
<title>tcp_recvmsg (88,168,985 samples, 0.08%)</title><rect x="233.1" y="1909" width="0.9" height="15.0" fill="rgb(220,190,18)" rx="2" ry="2" />
<text x="236.06" y="1919.5" ></text>
</g>
<g >
<title>ip6_xmit (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1829" width="1.1" height="15.0" fill="rgb(242,40,52)" rx="2" ry="2" />
<text x="373.99" y="1839.5" ></text>
</g>
<g >
<title>[libc.so.6] (4,734,122,375 samples, 4.11%)</title><rect x="417.6" y="2053" width="48.5" height="15.0" fill="rgb(213,50,47)" rx="2" ry="2" />
<text x="420.60" y="2063.5" >[lib..</text>
</g>
<g >
<title>update_cfs_group (19,127,635 samples, 0.02%)</title><rect x="34.8" y="1893" width="0.2" height="15.0" fill="rgb(222,196,17)" rx="2" ry="2" />
<text x="37.82" y="1903.5" ></text>
</g>
<g >
<title>v8::internal::compiler::JSHeapBroker::TryGetOrCreateData (26,425,971 samples, 0.02%)</title><rect x="15.6" y="1909" width="0.2" height="15.0" fill="rgb(237,144,26)" rx="2" ry="2" />
<text x="18.57" y="1919.5" ></text>
</g>
<g >
<title>update_rq_clock (16,320,099 samples, 0.01%)</title><rect x="355.0" y="1861" width="0.1" height="15.0" fill="rgb(235,227,39)" rx="2" ry="2" />
<text x="357.98" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (245,164,780 samples, 0.21%)</title><rect x="181.7" y="2021" width="2.5" height="15.0" fill="rgb(219,21,8)" rx="2" ry="2" />
<text x="184.72" y="2031.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (146,835,052 samples, 0.13%)</title><rect x="78.7" y="1941" width="1.5" height="15.0" fill="rgb(234,53,33)" rx="2" ry="2" />
<text x="81.71" y="1951.5" ></text>
</g>
<g >
<title>psi_group_change (21,508,742 samples, 0.02%)</title><rect x="410.5" y="1813" width="0.2" height="15.0" fill="rgb(235,59,36)" rx="2" ry="2" />
<text x="413.52" y="1823.5" ></text>
</g>
<g >
<title>update_blocked_averages (128,342,624 samples, 0.11%)</title><rect x="353.7" y="1829" width="1.3" height="15.0" fill="rgb(241,213,33)" rx="2" ry="2" />
<text x="356.66" y="1839.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (25,285,401 samples, 0.02%)</title><rect x="258.8" y="2005" width="0.2" height="15.0" fill="rgb(249,122,19)" rx="2" ry="2" />
<text x="261.77" y="2015.5" ></text>
</g>
<g >
<title>Function:~ :1 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1749" width="10.2" height="15.0" fill="rgb(225,144,27)" rx="2" ry="2" />
<text x="115.99" y="1759.5" ></text>
</g>
<g >
<title>newidle_balance (378,124,574 samples, 0.33%)</title><rect x="165.3" y="1893" width="3.8" height="15.0" fill="rgb(211,26,7)" rx="2" ry="2" />
<text x="168.27" y="1903.5" ></text>
</g>
<g >
<title>__seccomp_filter (64,256,037 samples, 0.06%)</title><rect x="218.5" y="1973" width="0.7" height="15.0" fill="rgb(209,116,17)" rx="2" ry="2" />
<text x="221.50" y="1983.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1,998,538,757 samples, 1.73%)</title><rect x="196.0" y="1957" width="20.4" height="15.0" fill="rgb(205,23,46)" rx="2" ry="2" />
<text x="198.99" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1141" width="1.7" height="15.0" fill="rgb(245,155,14)" rx="2" ry="2" />
<text x="128.36" y="1151.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (30,666,693 samples, 0.03%)</title><rect x="162.7" y="1797" width="0.3" height="15.0" fill="rgb(253,120,31)" rx="2" ry="2" />
<text x="165.73" y="1807.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (17,260,691 samples, 0.01%)</title><rect x="397.1" y="1845" width="0.1" height="15.0" fill="rgb(219,162,37)" rx="2" ry="2" />
<text x="400.06" y="1855.5" ></text>
</g>
<g >
<title>kmem_cache_free (131,380,437 samples, 0.11%)</title><rect x="231.7" y="1893" width="1.4" height="15.0" fill="rgb(214,141,6)" rx="2" ry="2" />
<text x="234.72" y="1903.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (293,484,369 samples, 0.25%)</title><rect x="348.2" y="1797" width="3.0" height="15.0" fill="rgb(241,203,11)" rx="2" ry="2" />
<text x="351.18" y="1807.5" ></text>
</g>
<g >
<title>psi_task_change (34,140,138 samples, 0.03%)</title><rect x="303.4" y="1909" width="0.3" height="15.0" fill="rgb(247,126,51)" rx="2" ry="2" />
<text x="306.38" y="1919.5" ></text>
</g>
<g >
<title>schedule (304,804,827 samples, 0.26%)</title><rect x="255.6" y="1941" width="3.2" height="15.0" fill="rgb(246,91,2)" rx="2" ry="2" />
<text x="258.65" y="1951.5" ></text>
</g>
<g >
<title>clock_gettime (12,932,344 samples, 0.01%)</title><rect x="360.2" y="2037" width="0.1" height="15.0" fill="rgb(232,150,0)" rx="2" ry="2" />
<text x="363.20" y="2047.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (32,420,248 samples, 0.03%)</title><rect x="335.0" y="1893" width="0.3" height="15.0" fill="rgb(210,72,31)" rx="2" ry="2" />
<text x="338.01" y="1903.5" ></text>
</g>
<g >
<title>__update_load_avg_se (24,861,109 samples, 0.02%)</title><rect x="56.2" y="1813" width="0.3" height="15.0" fill="rgb(221,8,43)" rx="2" ry="2" />
<text x="59.25" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1397" width="1.7" height="15.0" fill="rgb(245,112,31)" rx="2" ry="2" />
<text x="128.36" y="1407.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="389" width="1.7" height="15.0" fill="rgb(221,75,9)" rx="2" ry="2" />
<text x="128.36" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (115,481,192 samples, 0.10%)</title><rect x="366.5" y="2005" width="1.1" height="15.0" fill="rgb(207,109,31)" rx="2" ry="2" />
<text x="369.46" y="2015.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (51,998,656 samples, 0.05%)</title><rect x="389.2" y="1909" width="0.5" height="15.0" fill="rgb(223,33,45)" rx="2" ry="2" />
<text x="392.19" y="1919.5" ></text>
</g>
<g >
<title>rd_kafka_broker_consumer_serve (10,751,667 samples, 0.01%)</title><rect x="299.5" y="2053" width="0.1" height="15.0" fill="rgb(212,174,34)" rx="2" ry="2" />
<text x="302.50" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="357" width="1.7" height="15.0" fill="rgb(245,192,34)" rx="2" ry="2" />
<text x="128.36" y="367.5" ></text>
</g>
<g >
<title>perf_event_sched_in (28,440,883 samples, 0.02%)</title><rect x="210.3" y="1877" width="0.3" height="15.0" fill="rgb(227,197,14)" rx="2" ry="2" />
<text x="213.26" y="1887.5" ></text>
</g>
<g >
<title>psi_task_change (22,230,844 samples, 0.02%)</title><rect x="56.0" y="1845" width="0.2" height="15.0" fill="rgb(251,146,33)" rx="2" ry="2" />
<text x="59.02" y="1855.5" ></text>
</g>
<g >
<title>try_to_wake_up (34,086,996 samples, 0.03%)</title><rect x="807.5" y="1909" width="0.4" height="15.0" fill="rgb(240,101,52)" rx="2" ry="2" />
<text x="810.51" y="1919.5" ></text>
</g>
<g >
<title>update_curr (20,956,988 samples, 0.02%)</title><rect x="385.5" y="1653" width="0.3" height="15.0" fill="rgb(250,186,3)" rx="2" ry="2" />
<text x="388.55" y="1663.5" ></text>
</g>
<g >
<title>native_sched_clock (23,486,656 samples, 0.02%)</title><rect x="303.1" y="1813" width="0.3" height="15.0" fill="rgb(206,35,16)" rx="2" ry="2" />
<text x="306.14" y="1823.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (246,268,689 samples, 0.21%)</title><rect x="256.1" y="1893" width="2.5" height="15.0" fill="rgb(222,221,25)" rx="2" ry="2" />
<text x="259.10" y="1903.5" ></text>
</g>
<g >
<title>reweight_entity (19,186,226 samples, 0.02%)</title><rect x="255.9" y="1877" width="0.2" height="15.0" fill="rgb(244,35,8)" rx="2" ry="2" />
<text x="258.90" y="1887.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (21,560,596 samples, 0.02%)</title><rect x="381.2" y="1829" width="0.3" height="15.0" fill="rgb(238,159,18)" rx="2" ry="2" />
<text x="384.25" y="1839.5" ></text>
</g>
<g >
<title>try_to_wake_up (14,604,161 samples, 0.01%)</title><rect x="258.6" y="1781" width="0.2" height="15.0" fill="rgb(231,22,32)" rx="2" ry="2" />
<text x="261.62" y="1791.5" ></text>
</g>
<g >
<title>ttwu_do_activate (27,230,806 samples, 0.02%)</title><rect x="319.8" y="1733" width="0.3" height="15.0" fill="rgb(226,148,43)" rx="2" ry="2" />
<text x="322.77" y="1743.5" ></text>
</g>
<g >
<title>pipe_poll (207,243,228 samples, 0.18%)</title><rect x="192.9" y="1957" width="2.2" height="15.0" fill="rgb(236,42,38)" rx="2" ry="2" />
<text x="195.93" y="1967.5" ></text>
</g>
<g >
<title>timerqueue_add (25,120,985 samples, 0.02%)</title><rect x="53.5" y="1781" width="0.3" height="15.0" fill="rgb(224,199,7)" rx="2" ry="2" />
<text x="56.52" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="293" width="1.7" height="15.0" fill="rgb(242,98,32)" rx="2" ry="2" />
<text x="128.36" y="303.5" ></text>
</g>
<g >
<title>cnd_timedwait_abs (84,031,766 samples, 0.07%)</title><rect x="1097.6" y="2053" width="0.9" height="15.0" fill="rgb(231,14,42)" rx="2" ry="2" />
<text x="1100.62" y="2063.5" ></text>
</g>
<g >
<title>_raw_spin_lock (27,232,437 samples, 0.02%)</title><rect x="202.4" y="1861" width="0.3" height="15.0" fill="rgb(230,104,24)" rx="2" ry="2" />
<text x="205.37" y="1871.5" ></text>
</g>
<g >
<title>__poll (1,763,233,255 samples, 1.53%)</title><rect x="267.2" y="2021" width="18.1" height="15.0" fill="rgb(232,192,11)" rx="2" ry="2" />
<text x="270.21" y="2031.5" ></text>
</g>
<g >
<title>cfree (17,202,226 samples, 0.01%)</title><rect x="869.4" y="2037" width="0.1" height="15.0" fill="rgb(229,114,47)" rx="2" ry="2" />
<text x="872.37" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (6,017,040,563 samples, 5.22%)</title><rect x="175.1" y="2053" width="61.6" height="15.0" fill="rgb(212,107,40)" rx="2" ry="2" />
<text x="178.07" y="2063.5" >[unkno..</text>
</g>
<g >
<title>newidle_balance (59,150,418 samples, 0.05%)</title><rect x="79.6" y="1877" width="0.6" height="15.0" fill="rgb(234,52,21)" rx="2" ry="2" />
<text x="82.61" y="1887.5" ></text>
</g>
<g >
<title>uv_timer_start (157,757,854 samples, 0.14%)</title><rect x="143.2" y="2053" width="1.6" height="15.0" fill="rgb(240,163,6)" rx="2" ry="2" />
<text x="146.19" y="2063.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1749" width="0.7" height="15.0" fill="rgb(212,90,20)" rx="2" ry="2" />
<text x="254.35" y="1759.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (272,969,053 samples, 0.24%)</title><rect x="406.3" y="1813" width="2.8" height="15.0" fill="rgb(219,33,35)" rx="2" ry="2" />
<text x="409.30" y="1823.5" ></text>
</g>
<g >
<title>merge_sched_in (73,855,641 samples, 0.06%)</title><rect x="406.6" y="1765" width="0.8" height="15.0" fill="rgb(239,42,15)" rx="2" ry="2" />
<text x="409.63" y="1775.5" ></text>
</g>
<g >
<title>__poll (1,419,623,648 samples, 1.23%)</title><rect x="399.4" y="1957" width="14.5" height="15.0" fill="rgb(234,81,53)" rx="2" ry="2" />
<text x="402.39" y="1967.5" ></text>
</g>
<g >
<title>dequeue_task_fair (24,861,109 samples, 0.02%)</title><rect x="56.2" y="1861" width="0.3" height="15.0" fill="rgb(213,37,34)" rx="2" ry="2" />
<text x="59.25" y="1871.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (27,683,508 samples, 0.02%)</title><rect x="294.3" y="1893" width="0.3" height="15.0" fill="rgb(205,1,24)" rx="2" ry="2" />
<text x="297.31" y="1903.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (27,274,688 samples, 0.02%)</title><rect x="367.9" y="2053" width="0.3" height="15.0" fill="rgb(208,95,38)" rx="2" ry="2" />
<text x="370.93" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (1,610,119,012 samples, 1.40%)</title><rect x="398.2" y="2053" width="16.5" height="15.0" fill="rgb(207,133,52)" rx="2" ry="2" />
<text x="401.23" y="2063.5" ></text>
</g>
<g >
<title>__do_sys_newfstatat (26,213,777 samples, 0.02%)</title><rect x="128.0" y="1989" width="0.3" height="15.0" fill="rgb(211,54,6)" rx="2" ry="2" />
<text x="131.00" y="1999.5" ></text>
</g>
<g >
<title>LazyCompile:*enabledHooksExist node:internal/async_hooks:474 (29,288,668 samples, 0.03%)</title><rect x="123.2" y="1877" width="0.3" height="15.0" fill="rgb(209,114,23)" rx="2" ry="2" />
<text x="126.20" y="1887.5" ></text>
</g>
<g >
<title>dequeue_task_fair (138,536,401 samples, 0.12%)</title><rect x="333.6" y="1909" width="1.4" height="15.0" fill="rgb(254,57,8)" rx="2" ry="2" />
<text x="336.60" y="1919.5" ></text>
</g>
<g >
<title>sched_clock (21,508,742 samples, 0.02%)</title><rect x="410.5" y="1765" width="0.2" height="15.0" fill="rgb(231,40,25)" rx="2" ry="2" />
<text x="413.52" y="1775.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,358,714,318 samples, 4.65%)</title><rect x="18.0" y="2037" width="54.8" height="15.0" fill="rgb(245,34,9)" rx="2" ry="2" />
<text x="20.95" y="2047.5" >entry..</text>
</g>
<g >
<title>common_interrupt (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1845" width="1.1" height="15.0" fill="rgb(238,111,13)" rx="2" ry="2" />
<text x="298.98" y="1855.5" ></text>
</g>
<g >
<title>cpuacct_charge (29,703,513 samples, 0.03%)</title><rect x="343.7" y="1813" width="0.3" height="15.0" fill="rgb(216,135,6)" rx="2" ry="2" />
<text x="346.67" y="1823.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (22,537,234 samples, 0.02%)</title><rect x="226.9" y="1941" width="0.3" height="15.0" fill="rgb(252,158,20)" rx="2" ry="2" />
<text x="229.94" y="1951.5" ></text>
</g>
<g >
<title>_raw_read_lock_irqsave (13,090,222 samples, 0.01%)</title><rect x="147.6" y="1925" width="0.1" height="15.0" fill="rgb(246,156,4)" rx="2" ry="2" />
<text x="150.61" y="1935.5" ></text>
</g>
<g >
<title>enqueue_entity (23,862,518 samples, 0.02%)</title><rect x="210.6" y="1733" width="0.2" height="15.0" fill="rgb(218,65,23)" rx="2" ry="2" />
<text x="213.57" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1125" width="1.7" height="15.0" fill="rgb(230,167,4)" rx="2" ry="2" />
<text x="128.36" y="1135.5" ></text>
</g>
<g >
<title>update_curr (58,280,701 samples, 0.05%)</title><rect x="203.2" y="1877" width="0.6" height="15.0" fill="rgb(223,120,27)" rx="2" ry="2" />
<text x="206.16" y="1887.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (126,413,940 samples, 0.11%)</title><rect x="626.8" y="2021" width="1.3" height="15.0" fill="rgb(249,37,43)" rx="2" ry="2" />
<text x="629.77" y="2031.5" ></text>
</g>
<g >
<title>hrtimer_active (26,467,649 samples, 0.02%)</title><rect x="196.3" y="1941" width="0.3" height="15.0" fill="rgb(239,29,15)" rx="2" ry="2" />
<text x="199.34" y="1951.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (15,872,499 samples, 0.01%)</title><rect x="390.6" y="2037" width="0.2" height="15.0" fill="rgb(239,64,50)" rx="2" ry="2" />
<text x="393.61" y="2047.5" ></text>
</g>
<g >
<title>__fget_light (215,872,747 samples, 0.19%)</title><rect x="306.8" y="1925" width="2.2" height="15.0" fill="rgb(244,127,31)" rx="2" ry="2" />
<text x="309.82" y="1935.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (27,577,001 samples, 0.02%)</title><rect x="172.3" y="2005" width="0.3" height="15.0" fill="rgb(228,111,29)" rx="2" ry="2" />
<text x="175.28" y="2015.5" ></text>
</g>
<g >
<title>do_futex (3,750,331,986 samples, 3.25%)</title><rect x="425.1" y="1989" width="38.4" height="15.0" fill="rgb(226,188,44)" rx="2" ry="2" />
<text x="428.09" y="1999.5" >do_..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (114,205,807 samples, 0.10%)</title><rect x="962.8" y="1989" width="1.2" height="15.0" fill="rgb(221,193,23)" rx="2" ry="2" />
<text x="965.82" y="1999.5" ></text>
</g>
<g >
<title>pthread_getspecific (147,059,022 samples, 0.13%)</title><rect x="222.1" y="2037" width="1.5" height="15.0" fill="rgb(246,225,44)" rx="2" ry="2" />
<text x="225.11" y="2047.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (50,274,563 samples, 0.04%)</title><rect x="460.3" y="1829" width="0.6" height="15.0" fill="rgb(211,176,45)" rx="2" ry="2" />
<text x="463.35" y="1839.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1605" width="0.1" height="15.0" fill="rgb(223,46,26)" rx="2" ry="2" />
<text x="354.83" y="1615.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (64,256,037 samples, 0.06%)</title><rect x="218.5" y="1989" width="0.7" height="15.0" fill="rgb(228,9,42)" rx="2" ry="2" />
<text x="221.50" y="1999.5" ></text>
</g>
<g >
<title>tcp_stream_memory_free (45,095,784 samples, 0.04%)</title><rect x="388.5" y="1861" width="0.4" height="15.0" fill="rgb(225,171,15)" rx="2" ry="2" />
<text x="391.48" y="1871.5" ></text>
</g>
<g >
<title>dequeue_task_fair (71,270,429 samples, 0.06%)</title><rect x="78.9" y="1893" width="0.7" height="15.0" fill="rgb(223,118,1)" rx="2" ry="2" />
<text x="81.87" y="1903.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (85,707,500 samples, 0.07%)</title><rect x="460.3" y="1893" width="0.9" height="15.0" fill="rgb(239,88,6)" rx="2" ry="2" />
<text x="463.30" y="1903.5" ></text>
</g>
<g >
<title>[libc.so.6] (30,119,116 samples, 0.03%)</title><rect x="266.9" y="2021" width="0.3" height="15.0" fill="rgb(245,181,11)" rx="2" ry="2" />
<text x="269.90" y="2031.5" ></text>
</g>
<g >
<title>put_prev_entity (10,446,515 samples, 0.01%)</title><rect x="66.3" y="1893" width="0.1" height="15.0" fill="rgb(211,61,51)" rx="2" ry="2" />
<text x="69.32" y="1903.5" ></text>
</g>
<g >
<title>__pollwait (27,625,445 samples, 0.02%)</title><rect x="309.3" y="1909" width="0.3" height="15.0" fill="rgb(232,30,33)" rx="2" ry="2" />
<text x="312.29" y="1919.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (117,704,130 samples, 0.10%)</title><rect x="464.0" y="1989" width="1.2" height="15.0" fill="rgb(246,115,0)" rx="2" ry="2" />
<text x="467.03" y="1999.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (22,963,911 samples, 0.02%)</title><rect x="54.4" y="1829" width="0.2" height="15.0" fill="rgb(249,216,2)" rx="2" ry="2" />
<text x="57.35" y="1839.5" ></text>
</g>
<g >
<title>rcu_read_unlock_strict (120,293,176 samples, 0.10%)</title><rect x="200.9" y="1893" width="1.3" height="15.0" fill="rgb(236,203,20)" rx="2" ry="2" />
<text x="203.92" y="1903.5" ></text>
</g>
<g >
<title>tcp_recvmsg (207,961,773 samples, 0.18%)</title><rect x="230.9" y="1909" width="2.2" height="15.0" fill="rgb(214,185,2)" rx="2" ry="2" />
<text x="233.93" y="1919.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1781" width="0.7" height="15.0" fill="rgb(239,78,50)" rx="2" ry="2" />
<text x="254.35" y="1791.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (22,187,420 samples, 0.02%)</title><rect x="165.0" y="1797" width="0.2" height="15.0" fill="rgb(228,183,40)" rx="2" ry="2" />
<text x="168.01" y="1807.5" ></text>
</g>
<g >
<title>__update_idle_core (73,460,774 samples, 0.06%)</title><rect x="63.9" y="1893" width="0.7" height="15.0" fill="rgb(243,200,16)" rx="2" ry="2" />
<text x="66.87" y="1903.5" ></text>
</g>
<g >
<title>ip_forward (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1621" width="0.1" height="15.0" fill="rgb(211,96,39)" rx="2" ry="2" />
<text x="354.83" y="1631.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,906,150 samples, 0.02%)</title><rect x="297.1" y="1957" width="0.3" height="15.0" fill="rgb(238,13,45)" rx="2" ry="2" />
<text x="300.13" y="1967.5" ></text>
</g>
<g >
<title>switch_fpu_return (25,351,791 samples, 0.02%)</title><rect x="358.2" y="1925" width="0.3" height="15.0" fill="rgb(225,47,8)" rx="2" ry="2" />
<text x="361.21" y="1935.5" ></text>
</g>
<g >
<title>sock_read_iter (79,990,077 samples, 0.07%)</title><rect x="366.8" y="1941" width="0.8" height="15.0" fill="rgb(241,21,12)" rx="2" ry="2" />
<text x="369.82" y="1951.5" ></text>
</g>
<g >
<title>futex_wake (74,003,554 samples, 0.06%)</title><rect x="397.2" y="1973" width="0.8" height="15.0" fill="rgb(214,64,7)" rx="2" ry="2" />
<text x="400.24" y="1983.5" ></text>
</g>
<g >
<title>vfs_read (576,451,281 samples, 0.50%)</title><rect x="230.0" y="1973" width="5.9" height="15.0" fill="rgb(242,24,50)" rx="2" ry="2" />
<text x="233.00" y="1983.5" ></text>
</g>
<g >
<title>__schedule (386,482,422 samples, 0.34%)</title><rect x="135.4" y="1941" width="3.9" height="15.0" fill="rgb(244,174,18)" rx="2" ry="2" />
<text x="138.38" y="1951.5" ></text>
</g>
<g >
<title>__cxxabiv1::__class_type_info::__do_dyncast (26,656,505 samples, 0.02%)</title><rect x="127.1" y="2037" width="0.2" height="15.0" fill="rgb(253,137,13)" rx="2" ry="2" />
<text x="130.07" y="2047.5" ></text>
</g>
<g >
<title>schedule (1,138,100,067 samples, 0.99%)</title><rect x="158.5" y="1941" width="11.7" height="15.0" fill="rgb(240,174,20)" rx="2" ry="2" />
<text x="161.51" y="1951.5" ></text>
</g>
<g >
<title>__secure_computing (18,319,271 samples, 0.02%)</title><rect x="297.4" y="1973" width="0.2" height="15.0" fill="rgb(238,10,5)" rx="2" ry="2" />
<text x="300.40" y="1983.5" ></text>
</g>
<g >
<title>__x64_sys_futex (4,932,981,517 samples, 4.28%)</title><rect x="18.2" y="2005" width="50.5" height="15.0" fill="rgb(206,50,31)" rx="2" ry="2" />
<text x="21.22" y="2015.5" >__x64..</text>
</g>
<g >
<title>rd_kafka_consumer_poll (59,793,351 samples, 0.05%)</title><rect x="90.6" y="2005" width="0.6" height="15.0" fill="rgb(211,186,5)" rx="2" ry="2" />
<text x="93.57" y="2015.5" ></text>
</g>
<g >
<title>v8::internal::MemoryAllocator::Unmapper::UnmapFreeMemoryJob::Run (25,238,583 samples, 0.02%)</title><rect x="17.1" y="2005" width="0.3" height="15.0" fill="rgb(252,145,15)" rx="2" ry="2" />
<text x="20.13" y="2015.5" ></text>
</g>
<g >
<title>pick_next_task_fair (150,313,381 samples, 0.13%)</title><rect x="280.7" y="1893" width="1.5" height="15.0" fill="rgb(225,43,15)" rx="2" ry="2" />
<text x="283.67" y="1903.5" ></text>
</g>
<g >
<title>native_write_msr (11,298,622 samples, 0.01%)</title><rect x="346.2" y="1813" width="0.1" height="15.0" fill="rgb(208,11,6)" rx="2" ry="2" />
<text x="349.16" y="1823.5" ></text>
</g>
<g >
<title>schedule (3,626,262,940 samples, 3.15%)</title><rect x="425.5" y="1941" width="37.2" height="15.0" fill="rgb(206,34,34)" rx="2" ry="2" />
<text x="428.53" y="1951.5" >sch..</text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (21,879,529 samples, 0.02%)</title><rect x="388.9" y="1925" width="0.3" height="15.0" fill="rgb(246,162,46)" rx="2" ry="2" />
<text x="391.94" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="197" width="1.7" height="15.0" fill="rgb(254,103,46)" rx="2" ry="2" />
<text x="128.36" y="207.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,674,764,403 samples, 1.45%)</title><rect x="155.1" y="2005" width="17.2" height="15.0" fill="rgb(250,212,30)" rx="2" ry="2" />
<text x="158.14" y="2015.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (18,219,077 samples, 0.02%)</title><rect x="285.1" y="1941" width="0.2" height="15.0" fill="rgb(212,134,32)" rx="2" ry="2" />
<text x="288.08" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1109" width="1.7" height="15.0" fill="rgb(222,36,6)" rx="2" ry="2" />
<text x="128.36" y="1119.5" ></text>
</g>
<g >
<title>merge_sched_in (183,975,906 samples, 0.16%)</title><rect x="277.7" y="1829" width="1.9" height="15.0" fill="rgb(214,32,2)" rx="2" ry="2" />
<text x="280.75" y="1839.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (22,652,600 samples, 0.02%)</title><rect x="218.0" y="1957" width="0.3" height="15.0" fill="rgb(207,102,25)" rx="2" ry="2" />
<text x="221.02" y="1967.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1717" width="1.4" height="15.0" fill="rgb(244,12,20)" rx="2" ry="2" />
<text x="330.52" y="1727.5" ></text>
</g>
<g >
<title>try_to_wake_up (146,344,782 samples, 0.13%)</title><rect x="146.1" y="1877" width="1.5" height="15.0" fill="rgb(224,215,14)" rx="2" ry="2" />
<text x="149.11" y="1887.5" ></text>
</g>
<g >
<title>__put_user_nocheck_8 (25,740,279 samples, 0.02%)</title><rect x="389.5" y="1893" width="0.2" height="15.0" fill="rgb(235,172,17)" rx="2" ry="2" />
<text x="392.46" y="1903.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (28,672,563 samples, 0.02%)</title><rect x="83.4" y="1989" width="0.3" height="15.0" fill="rgb(231,110,2)" rx="2" ry="2" />
<text x="86.39" y="1999.5" ></text>
</g>
<g >
<title>futex_wake (59,141,578 samples, 0.05%)</title><rect x="462.9" y="1973" width="0.6" height="15.0" fill="rgb(227,86,53)" rx="2" ry="2" />
<text x="465.88" y="1983.5" ></text>
</g>
<g >
<title>ctx_sched_in (465,395,973 samples, 0.40%)</title><rect x="314.7" y="1845" width="4.8" height="15.0" fill="rgb(232,2,15)" rx="2" ry="2" />
<text x="317.74" y="1855.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (67,422,408 samples, 0.06%)</title><rect x="302.5" y="1861" width="0.6" height="15.0" fill="rgb(224,143,39)" rx="2" ry="2" />
<text x="305.45" y="1871.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (22,272,198 samples, 0.02%)</title><rect x="385.5" y="1765" width="0.3" height="15.0" fill="rgb(236,191,19)" rx="2" ry="2" />
<text x="388.55" y="1775.5" ></text>
</g>
<g >
<title>__x64_sys_poll (32,832,262 samples, 0.03%)</title><rect x="326.5" y="1973" width="0.3" height="15.0" fill="rgb(208,113,51)" rx="2" ry="2" />
<text x="329.46" y="1983.5" ></text>
</g>
<g >
<title>schedule (102,892,320 samples, 0.09%)</title><rect x="396.2" y="1941" width="1.0" height="15.0" fill="rgb(235,183,28)" rx="2" ry="2" />
<text x="399.18" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1669" width="1.7" height="15.0" fill="rgb(254,40,52)" rx="2" ry="2" />
<text x="128.36" y="1679.5" ></text>
</g>
<g >
<title>new_sync_read (79,990,077 samples, 0.07%)</title><rect x="366.8" y="1957" width="0.8" height="15.0" fill="rgb(218,49,8)" rx="2" ry="2" />
<text x="369.82" y="1967.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (22,272,198 samples, 0.02%)</title><rect x="385.5" y="1829" width="0.3" height="15.0" fill="rgb(230,169,37)" rx="2" ry="2" />
<text x="388.55" y="1839.5" ></text>
</g>
<g >
<title>exc_page_fault (27,895,421 samples, 0.02%)</title><rect x="112.7" y="1845" width="0.3" height="15.0" fill="rgb(238,134,42)" rx="2" ry="2" />
<text x="115.71" y="1855.5" ></text>
</g>
<g >
<title>vfs_read (115,481,192 samples, 0.10%)</title><rect x="366.5" y="1973" width="1.1" height="15.0" fill="rgb(241,225,20)" rx="2" ry="2" />
<text x="369.46" y="1983.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1781" width="1.1" height="15.0" fill="rgb(242,2,40)" rx="2" ry="2" />
<text x="298.98" y="1791.5" ></text>
</g>
<g >
<title>[libnode.so.108] (3,063,302,572 samples, 2.66%)</title><rect x="93.8" y="1973" width="31.4" height="15.0" fill="rgb(222,215,31)" rx="2" ry="2" />
<text x="96.85" y="1983.5" >[l..</text>
</g>
<g >
<title>rdk:broker1005 (2,212,276,358 samples, 1.92%)</title><rect x="394.9" y="2069" width="22.7" height="15.0" fill="rgb(238,21,13)" rx="2" ry="2" />
<text x="397.95" y="2079.5" >r..</text>
</g>
<g >
<title>switch_fpu_return (80,237,224 samples, 0.07%)</title><rect x="465.2" y="1989" width="0.9" height="15.0" fill="rgb(226,132,5)" rx="2" ry="2" />
<text x="468.25" y="1999.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (22,537,234 samples, 0.02%)</title><rect x="226.9" y="1973" width="0.3" height="15.0" fill="rgb(232,30,53)" rx="2" ry="2" />
<text x="229.94" y="1983.5" ></text>
</g>
<g >
<title>pick_next_task_fair (138,879,572 samples, 0.12%)</title><rect x="409.1" y="1829" width="1.4" height="15.0" fill="rgb(244,78,2)" rx="2" ry="2" />
<text x="412.09" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="2037" width="1.7" height="15.0" fill="rgb(224,84,12)" rx="2" ry="2" />
<text x="128.36" y="2047.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (506,932,561 samples, 0.44%)</title><rect x="48.0" y="1861" width="5.1" height="15.0" fill="rgb(223,197,29)" rx="2" ry="2" />
<text x="50.95" y="1871.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_serve (37,121,361 samples, 0.03%)</title><rect x="358.7" y="1989" width="0.4" height="15.0" fill="rgb(252,67,32)" rx="2" ry="2" />
<text x="361.71" y="1999.5" ></text>
</g>
<g >
<title>merge_sched_in (164,172,959 samples, 0.14%)</title><rect x="346.5" y="1797" width="1.7" height="15.0" fill="rgb(235,225,29)" rx="2" ry="2" />
<text x="349.50" y="1807.5" ></text>
</g>
<g >
<title>__schedule (1,069,231,790 samples, 0.93%)</title><rect x="310.8" y="1893" width="11.0" height="15.0" fill="rgb(213,66,47)" rx="2" ry="2" />
<text x="313.84" y="1903.5" ></text>
</g>
<g >
<title>ctx_sched_in (155,780,407 samples, 0.14%)</title><rect x="374.4" y="1877" width="1.6" height="15.0" fill="rgb(246,199,51)" rx="2" ry="2" />
<text x="377.44" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (491,991,958 samples, 0.43%)</title><rect x="1092.5" y="2005" width="5.0" height="15.0" fill="rgb(226,218,26)" rx="2" ry="2" />
<text x="1095.46" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (481,504,416 samples, 0.42%)</title><rect x="254.7" y="2037" width="4.9" height="15.0" fill="rgb(217,82,22)" rx="2" ry="2" />
<text x="257.68" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1045" width="1.7" height="15.0" fill="rgb(216,186,22)" rx="2" ry="2" />
<text x="128.36" y="1055.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1861" width="1.1" height="15.0" fill="rgb(242,70,21)" rx="2" ry="2" />
<text x="373.99" y="1871.5" ></text>
</g>
<g >
<title>rd_kafka_q_pop_serve.localalias (63,901,438 samples, 0.06%)</title><rect x="370.3" y="2053" width="0.7" height="15.0" fill="rgb(247,125,40)" rx="2" ry="2" />
<text x="373.34" y="2063.5" ></text>
</g>
<g >
<title>irq_exit_rcu (30,936,695 samples, 0.03%)</title><rect x="460.9" y="1861" width="0.3" height="15.0" fill="rgb(206,47,32)" rx="2" ry="2" />
<text x="463.86" y="1871.5" ></text>
</g>
<g >
<title>perf_event_sched_in (23,486,656 samples, 0.02%)</title><rect x="303.1" y="1877" width="0.3" height="15.0" fill="rgb(237,25,50)" rx="2" ry="2" />
<text x="306.14" y="1887.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (16,541,092 samples, 0.01%)</title><rect x="230.5" y="1925" width="0.1" height="15.0" fill="rgb(222,36,47)" rx="2" ry="2" />
<text x="233.45" y="1935.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (28,886,549 samples, 0.03%)</title><rect x="374.1" y="1877" width="0.3" height="15.0" fill="rgb(239,57,5)" rx="2" ry="2" />
<text x="377.15" y="1887.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_event.constprop.0 (126,570,673 samples, 0.11%)</title><rect x="324.8" y="2005" width="1.2" height="15.0" fill="rgb(225,123,5)" rx="2" ry="2" />
<text x="327.75" y="2015.5" ></text>
</g>
<g >
<title>update_blocked_averages (109,677,741 samples, 0.10%)</title><rect x="62.5" y="1877" width="1.1" height="15.0" fill="rgb(232,61,29)" rx="2" ry="2" />
<text x="65.49" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1381" width="1.7" height="15.0" fill="rgb(243,127,42)" rx="2" ry="2" />
<text x="128.36" y="1391.5" ></text>
</g>
<g >
<title>[libnode.so.108] (95,884,613 samples, 0.08%)</title><rect x="75.0" y="1909" width="0.9" height="15.0" fill="rgb(248,15,49)" rx="2" ry="2" />
<text x="77.95" y="1919.5" ></text>
</g>
<g >
<title>event_sched_in (54,969,171 samples, 0.05%)</title><rect x="458.2" y="1829" width="0.5" height="15.0" fill="rgb(240,158,44)" rx="2" ry="2" />
<text x="461.18" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (156,067,372 samples, 0.14%)</title><rect x="125.5" y="101" width="1.6" height="15.0" fill="rgb(231,34,4)" rx="2" ry="2" />
<text x="128.47" y="111.5" ></text>
</g>
<g >
<title>[unknown] (1,583,573,438 samples, 1.37%)</title><rect x="398.2" y="2037" width="16.2" height="15.0" fill="rgb(212,67,30)" rx="2" ry="2" />
<text x="401.23" y="2047.5" ></text>
</g>
<g >
<title>rb_next (46,124,186 samples, 0.04%)</title><rect x="209.8" y="1845" width="0.5" height="15.0" fill="rgb(244,97,49)" rx="2" ry="2" />
<text x="212.79" y="1855.5" ></text>
</g>
<g >
<title>load_balance (115,294,184 samples, 0.10%)</title><rect x="352.5" y="1829" width="1.2" height="15.0" fill="rgb(239,219,7)" rx="2" ry="2" />
<text x="355.48" y="1839.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (110,848,538 samples, 0.10%)</title><rect x="138.2" y="1861" width="1.1" height="15.0" fill="rgb(220,51,51)" rx="2" ry="2" />
<text x="141.20" y="1871.5" ></text>
</g>
<g >
<title>update_blocked_averages (125,073,013 samples, 0.11%)</title><rect x="280.7" y="1813" width="1.3" height="15.0" fill="rgb(234,64,32)" rx="2" ry="2" />
<text x="283.67" y="1823.5" ></text>
</g>
<g >
<title>rd_kafka_send (24,770,093 samples, 0.02%)</title><rect x="248.9" y="2053" width="0.3" height="15.0" fill="rgb(237,72,13)" rx="2" ry="2" />
<text x="251.91" y="2063.5" ></text>
</g>
<g >
<title>inet6_recvmsg (132,186,802 samples, 0.11%)</title><rect x="293.2" y="1925" width="1.4" height="15.0" fill="rgb(211,78,33)" rx="2" ry="2" />
<text x="296.24" y="1935.5" ></text>
</g>
<g >
<title>perf_event_sched_in (28,540,463 samples, 0.02%)</title><rect x="385.3" y="1813" width="0.2" height="15.0" fill="rgb(218,184,46)" rx="2" ry="2" />
<text x="388.26" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1653" width="1.7" height="15.0" fill="rgb(205,97,0)" rx="2" ry="2" />
<text x="128.36" y="1663.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1669" width="0.1" height="15.0" fill="rgb(246,50,14)" rx="2" ry="2" />
<text x="354.83" y="1679.5" ></text>
</g>
<g >
<title>remove_wait_queue (24,042,749 samples, 0.02%)</title><rect x="401.5" y="1861" width="0.2" height="15.0" fill="rgb(243,229,11)" rx="2" ry="2" />
<text x="404.48" y="1871.5" ></text>
</g>
<g >
<title>do_syscall_64 (119,857,351 samples, 0.10%)</title><rect x="466.7" y="2005" width="1.2" height="15.0" fill="rgb(230,126,37)" rx="2" ry="2" />
<text x="469.72" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="773" width="1.7" height="15.0" fill="rgb(219,139,6)" rx="2" ry="2" />
<text x="128.36" y="783.5" ></text>
</g>
<g >
<title>mtx_unlock@plt (136,593,653 samples, 0.12%)</title><rect x="574.7" y="1973" width="1.4" height="15.0" fill="rgb(229,107,29)" rx="2" ry="2" />
<text x="577.66" y="1983.5" ></text>
</g>
<g >
<title>ttwu_do_activate (110,704,710 samples, 0.10%)</title><rect x="146.5" y="1861" width="1.1" height="15.0" fill="rgb(214,50,40)" rx="2" ry="2" />
<text x="149.48" y="1871.5" ></text>
</g>
<g >
<title>[libuv.so.1.0.0] (156,067,372 samples, 0.14%)</title><rect x="125.5" y="69" width="1.6" height="15.0" fill="rgb(234,130,47)" rx="2" ry="2" />
<text x="128.47" y="79.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (2,293,144,176 samples, 1.99%)</title><rect x="576.1" y="1973" width="23.4" height="15.0" fill="rgb(225,119,3)" rx="2" ry="2" />
<text x="579.06" y="1983.5" >p..</text>
</g>
<g >
<title>[libssl.so.3] (52,220,991 samples, 0.05%)</title><rect x="181.2" y="2037" width="0.5" height="15.0" fill="rgb(216,59,13)" rx="2" ry="2" />
<text x="184.18" y="2047.5" ></text>
</g>
<g >
<title>kfree (27,311,093 samples, 0.02%)</title><rect x="367.1" y="1877" width="0.3" height="15.0" fill="rgb(254,107,34)" rx="2" ry="2" />
<text x="370.08" y="1887.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (22,537,234 samples, 0.02%)</title><rect x="226.9" y="1957" width="0.3" height="15.0" fill="rgb(210,101,42)" rx="2" ry="2" />
<text x="229.94" y="1967.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,388,802,328 samples, 1.20%)</title><rect x="513.3" y="1941" width="14.2" height="15.0" fill="rgb(230,103,43)" rx="2" ry="2" />
<text x="516.32" y="1951.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (40,150,079 samples, 0.03%)</title><rect x="289.8" y="2037" width="0.4" height="15.0" fill="rgb(249,205,2)" rx="2" ry="2" />
<text x="292.75" y="2047.5" ></text>
</g>
<g >
<title>poll_select_set_timeout (46,161,742 samples, 0.04%)</title><rect x="218.0" y="1973" width="0.5" height="15.0" fill="rgb(236,172,13)" rx="2" ry="2" />
<text x="221.02" y="1983.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (84,126,636 samples, 0.07%)</title><rect x="368.9" y="2053" width="0.9" height="15.0" fill="rgb(243,64,7)" rx="2" ry="2" />
<text x="371.94" y="2063.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (17,388,773 samples, 0.02%)</title><rect x="210.8" y="1829" width="0.2" height="15.0" fill="rgb(253,44,1)" rx="2" ry="2" />
<text x="213.84" y="1839.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1765" width="0.1" height="15.0" fill="rgb(206,76,17)" rx="2" ry="2" />
<text x="354.83" y="1775.5" ></text>
</g>
<g >
<title>update_min_vruntime (21,364,390 samples, 0.02%)</title><rect x="405.7" y="1781" width="0.2" height="15.0" fill="rgb(211,100,43)" rx="2" ry="2" />
<text x="408.66" y="1791.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (197,932,219 samples, 0.17%)</title><rect x="458.0" y="1861" width="2.1" height="15.0" fill="rgb(250,94,42)" rx="2" ry="2" />
<text x="461.04" y="1871.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (21,387,822 samples, 0.02%)</title><rect x="397.0" y="1893" width="0.2" height="15.0" fill="rgb(231,199,43)" rx="2" ry="2" />
<text x="400.02" y="1903.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (256,219,300 samples, 0.22%)</title><rect x="251.3" y="1909" width="2.7" height="15.0" fill="rgb(226,40,44)" rx="2" ry="2" />
<text x="254.35" y="1919.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (17,721,263 samples, 0.02%)</title><rect x="72.6" y="1973" width="0.2" height="15.0" fill="rgb(246,206,7)" rx="2" ry="2" />
<text x="75.63" y="1983.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (203,840,794 samples, 0.18%)</title><rect x="145.5" y="1925" width="2.1" height="15.0" fill="rgb(253,113,14)" rx="2" ry="2" />
<text x="148.52" y="1935.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (37,121,361 samples, 0.03%)</title><rect x="358.7" y="1973" width="0.4" height="15.0" fill="rgb(239,81,49)" rx="2" ry="2" />
<text x="361.71" y="1983.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (28,624,151 samples, 0.02%)</title><rect x="319.8" y="1765" width="0.3" height="15.0" fill="rgb(206,82,16)" rx="2" ry="2" />
<text x="322.76" y="1775.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (31,451,381 samples, 0.03%)</title><rect x="79.7" y="1829" width="0.3" height="15.0" fill="rgb(238,228,3)" rx="2" ry="2" />
<text x="82.71" y="1839.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (155,720,994 samples, 0.14%)</title><rect x="156.9" y="1925" width="1.6" height="15.0" fill="rgb(242,77,17)" rx="2" ry="2" />
<text x="159.92" y="1935.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (17,388,773 samples, 0.02%)</title><rect x="210.8" y="1845" width="0.2" height="15.0" fill="rgb(220,27,53)" rx="2" ry="2" />
<text x="213.84" y="1855.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (816,227,062 samples, 0.71%)</title><rect x="379.4" y="1893" width="8.3" height="15.0" fill="rgb(252,150,41)" rx="2" ry="2" />
<text x="382.36" y="1903.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (19,502,697 samples, 0.02%)</title><rect x="34.0" y="1861" width="0.2" height="15.0" fill="rgb(237,98,47)" rx="2" ry="2" />
<text x="37.04" y="1871.5" ></text>
</g>
<g >
<title>sch_direct_xmit (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1653" width="1.4" height="15.0" fill="rgb(229,170,11)" rx="2" ry="2" />
<text x="330.52" y="1663.5" ></text>
</g>
<g >
<title>put_prev_task_fair (10,446,515 samples, 0.01%)</title><rect x="66.3" y="1909" width="0.1" height="15.0" fill="rgb(212,66,47)" rx="2" ry="2" />
<text x="69.32" y="1919.5" ></text>
</g>
<g >
<title>ip6t_do_table (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1637" width="1.1" height="15.0" fill="rgb(208,183,27)" rx="2" ry="2" />
<text x="373.99" y="1647.5" ></text>
</g>
<g >
<title>__calc_delta (24,534,703 samples, 0.02%)</title><rect x="311.6" y="1829" width="0.2" height="15.0" fill="rgb(232,226,8)" rx="2" ry="2" />
<text x="314.56" y="1839.5" ></text>
</g>
<g >
<title>__cxxabiv1::__vmi_class_type_info::__do_dyncast (38,641,405 samples, 0.03%)</title><rect x="127.3" y="2037" width="0.4" height="15.0" fill="rgb(217,64,36)" rx="2" ry="2" />
<text x="130.34" y="2047.5" ></text>
</g>
<g >
<title>[libc.so.6] (37,685,598 samples, 0.03%)</title><rect x="376.5" y="1973" width="0.4" height="15.0" fill="rgb(228,220,13)" rx="2" ry="2" />
<text x="379.50" y="1983.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (17,449,177 samples, 0.02%)</title><rect x="1014.0" y="1973" width="0.2" height="15.0" fill="rgb(240,122,35)" rx="2" ry="2" />
<text x="1017.03" y="1983.5" ></text>
</g>
<g >
<title>try_to_wake_up (47,217,617 samples, 0.04%)</title><rect x="460.4" y="1781" width="0.4" height="15.0" fill="rgb(220,107,24)" rx="2" ry="2" />
<text x="463.36" y="1791.5" ></text>
</g>
<g >
<title>_raw_spin_lock (30,276,276 samples, 0.03%)</title><rect x="301.3" y="1957" width="0.3" height="15.0" fill="rgb(211,13,23)" rx="2" ry="2" />
<text x="304.32" y="1967.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (50,274,563 samples, 0.04%)</title><rect x="460.3" y="1845" width="0.6" height="15.0" fill="rgb(217,123,29)" rx="2" ry="2" />
<text x="463.35" y="1855.5" ></text>
</g>
<g >
<title>pick_next_task_fair (95,687,806 samples, 0.08%)</title><rect x="320.3" y="1877" width="1.0" height="15.0" fill="rgb(205,180,34)" rx="2" ry="2" />
<text x="323.33" y="1887.5" ></text>
</g>
<g >
<title>update_blocked_averages (85,995,228 samples, 0.07%)</title><rect x="213.0" y="1829" width="0.9" height="15.0" fill="rgb(218,121,45)" rx="2" ry="2" />
<text x="216.01" y="1839.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (123,453,141 samples, 0.11%)</title><rect x="1181.2" y="2021" width="1.3" height="15.0" fill="rgb(226,117,15)" rx="2" ry="2" />
<text x="1184.21" y="2031.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (17,449,177 samples, 0.02%)</title><rect x="1014.0" y="2021" width="0.2" height="15.0" fill="rgb(209,78,25)" rx="2" ry="2" />
<text x="1017.03" y="2031.5" ></text>
</g>
<g >
<title>__x64_sys_mprotect (25,238,583 samples, 0.02%)</title><rect x="17.1" y="1925" width="0.3" height="15.0" fill="rgb(218,102,22)" rx="2" ry="2" />
<text x="20.13" y="1935.5" ></text>
</g>
<g >
<title>rd_kafka_thread_main (1,539,159,177 samples, 1.34%)</title><rect x="848.3" y="2021" width="15.7" height="15.0" fill="rgb(219,8,7)" rx="2" ry="2" />
<text x="851.26" y="2031.5" ></text>
</g>
<g >
<title>ctx_sched_in (20,096,746 samples, 0.02%)</title><rect x="397.0" y="1877" width="0.2" height="15.0" fill="rgb(213,89,41)" rx="2" ry="2" />
<text x="400.03" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,882,419,133 samples, 1.63%)</title><rect x="339.2" y="1973" width="19.3" height="15.0" fill="rgb(221,188,38)" rx="2" ry="2" />
<text x="342.19" y="1983.5" ></text>
</g>
<g >
<title>all (115,254,407,149 samples, 100%)</title><rect x="10.0" y="2085" width="1180.0" height="15.0" fill="rgb(219,131,20)" rx="2" ry="2" />
<text x="13.00" y="2095.5" ></text>
</g>
<g >
<title>load_balance (31,451,381 samples, 0.03%)</title><rect x="79.7" y="1861" width="0.3" height="15.0" fill="rgb(215,54,31)" rx="2" ry="2" />
<text x="82.71" y="1871.5" ></text>
</g>
<g >
<title>timerqueue_add (25,830,843 samples, 0.02%)</title><rect x="373.3" y="1909" width="0.2" height="15.0" fill="rgb(219,125,3)" rx="2" ry="2" />
<text x="376.25" y="1919.5" ></text>
</g>
<g >
<title>rd_kafka_transport_poll (27,953,121 samples, 0.02%)</title><rect x="326.2" y="2005" width="0.3" height="15.0" fill="rgb(243,63,41)" rx="2" ry="2" />
<text x="329.18" y="2015.5" ></text>
</g>
<g >
<title>update_load_avg (152,165,520 samples, 0.13%)</title><rect x="344.0" y="1829" width="1.5" height="15.0" fill="rgb(222,180,32)" rx="2" ry="2" />
<text x="346.97" y="1839.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (101,950,082 samples, 0.09%)</title><rect x="389.2" y="1941" width="1.0" height="15.0" fill="rgb(253,122,15)" rx="2" ry="2" />
<text x="392.17" y="1951.5" ></text>
</g>
<g >
<title>irq_exit_rcu (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1829" width="1.1" height="15.0" fill="rgb(215,70,20)" rx="2" ry="2" />
<text x="298.98" y="1839.5" ></text>
</g>
<g >
<title>set_task_cpu (20,126,065 samples, 0.02%)</title><rect x="146.3" y="1861" width="0.2" height="15.0" fill="rgb(221,138,42)" rx="2" ry="2" />
<text x="149.27" y="1871.5" ></text>
</g>
<g >
<title>asm_common_interrupt (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1861" width="1.1" height="15.0" fill="rgb(238,184,9)" rx="2" ry="2" />
<text x="298.98" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="2005" width="1.7" height="15.0" fill="rgb(246,214,11)" rx="2" ry="2" />
<text x="128.36" y="2015.5" ></text>
</g>
<g >
<title>BIO_ctrl@plt (155,684,977 samples, 0.14%)</title><rect x="336.5" y="2037" width="1.6" height="15.0" fill="rgb(242,209,0)" rx="2" ry="2" />
<text x="339.55" y="2047.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (19,083,052 samples, 0.02%)</title><rect x="280.5" y="1845" width="0.2" height="15.0" fill="rgb(228,200,48)" rx="2" ry="2" />
<text x="283.47" y="1855.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ApiVersion_supported (11,909,837 samples, 0.01%)</title><rect x="1138.7" y="2053" width="0.1" height="15.0" fill="rgb(238,83,49)" rx="2" ry="2" />
<text x="1141.69" y="2063.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (1,543,905,097 samples, 1.34%)</title><rect x="998.4" y="2037" width="15.8" height="15.0" fill="rgb(224,125,25)" rx="2" ry="2" />
<text x="1001.40" y="2047.5" ></text>
</g>
<g >
<title>update_blocked_averages (200,719,022 samples, 0.17%)</title><rect x="213.9" y="1877" width="2.0" height="15.0" fill="rgb(215,135,0)" rx="2" ry="2" />
<text x="216.89" y="1887.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_serve (48,210,875 samples, 0.04%)</title><rect x="413.9" y="1957" width="0.5" height="15.0" fill="rgb(250,138,30)" rx="2" ry="2" />
<text x="416.93" y="1967.5" ></text>
</g>
<g >
<title>[libssl.so.3] (81,731,579 samples, 0.07%)</title><rect x="266.1" y="2037" width="0.8" height="15.0" fill="rgb(223,216,25)" rx="2" ry="2" />
<text x="269.07" y="2047.5" ></text>
</g>
<g >
<title>do_user_addr_fault (27,895,421 samples, 0.02%)</title><rect x="112.7" y="1829" width="0.3" height="15.0" fill="rgb(236,3,3)" rx="2" ry="2" />
<text x="115.71" y="1839.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (122,331,389 samples, 0.11%)</title><rect x="128.8" y="2037" width="1.3" height="15.0" fill="rgb(225,122,2)" rx="2" ry="2" />
<text x="131.83" y="2047.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (490,619,399 samples, 0.43%)</title><rect x="346.5" y="1813" width="5.0" height="15.0" fill="rgb(209,194,8)" rx="2" ry="2" />
<text x="349.50" y="1823.5" ></text>
</g>
<g >
<title>[libcrypto.so.3] (125,119,818 samples, 0.11%)</title><rect x="259.6" y="2053" width="1.3" height="15.0" fill="rgb(244,222,31)" rx="2" ry="2" />
<text x="262.61" y="2063.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (27,133,029 samples, 0.02%)</title><rect x="329.9" y="2053" width="0.2" height="15.0" fill="rgb(254,28,38)" rx="2" ry="2" />
<text x="332.86" y="2063.5" ></text>
</g>
<g >
<title>update_blocked_averages (25,240,368 samples, 0.02%)</title><rect x="282.0" y="1861" width="0.2" height="15.0" fill="rgb(236,189,33)" rx="2" ry="2" />
<text x="284.95" y="1871.5" ></text>
</g>
<g >
<title>ipt_do_table (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1653" width="0.7" height="15.0" fill="rgb(213,96,9)" rx="2" ry="2" />
<text x="254.35" y="1663.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (123,453,141 samples, 0.11%)</title><rect x="1181.2" y="1989" width="1.3" height="15.0" fill="rgb(219,111,23)" rx="2" ry="2" />
<text x="1184.21" y="1999.5" ></text>
</g>
<g >
<title>LazyCompile:*finallyHandler /srv/service/node_modules/bluebird/js/release/finally.js:49 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1717" width="10.2" height="15.0" fill="rgb(213,145,29)" rx="2" ry="2" />
<text x="115.99" y="1727.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (19,083,052 samples, 0.02%)</title><rect x="280.5" y="1877" width="0.2" height="15.0" fill="rgb(232,122,49)" rx="2" ry="2" />
<text x="283.47" y="1887.5" ></text>
</g>
<g >
<title>BIO_ctrl (15,929,705 samples, 0.01%)</title><rect x="260.9" y="2037" width="0.2" height="15.0" fill="rgb(231,188,47)" rx="2" ry="2" />
<text x="263.89" y="2047.5" ></text>
</g>
<g >
<title>[libuv.so.1.0.0] (277,855,241 samples, 0.24%)</title><rect x="73.1" y="2053" width="2.8" height="15.0" fill="rgb(213,211,21)" rx="2" ry="2" />
<text x="76.09" y="2063.5" ></text>
</g>
<g >
<title>update_cfs_group (161,267,331 samples, 0.14%)</title><rect x="30.1" y="1877" width="1.7" height="15.0" fill="rgb(228,26,42)" rx="2" ry="2" />
<text x="33.12" y="1887.5" ></text>
</g>
<g >
<title>LazyCompile:*ret :4 (858,340,713 samples, 0.74%)</title><rect x="113.0" y="1669" width="8.8" height="15.0" fill="rgb(223,111,10)" rx="2" ry="2" />
<text x="115.99" y="1679.5" ></text>
</g>
<g >
<title>pthread_cond_wait (11,452,867 samples, 0.01%)</title><rect x="141.7" y="2053" width="0.1" height="15.0" fill="rgb(250,213,34)" rx="2" ry="2" />
<text x="144.65" y="2063.5" ></text>
</g>
<g >
<title>dequeue_entity (146,278,856 samples, 0.13%)</title><rect x="404.5" y="1813" width="1.5" height="15.0" fill="rgb(235,194,43)" rx="2" ry="2" />
<text x="407.55" y="1823.5" ></text>
</g>
<g >
<title>[libc.so.6] (204,517,884 samples, 0.18%)</title><rect x="466.1" y="2037" width="2.1" height="15.0" fill="rgb(215,97,14)" rx="2" ry="2" />
<text x="469.07" y="2047.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock (27,132,580 samples, 0.02%)</title><rect x="299.0" y="2053" width="0.3" height="15.0" fill="rgb(215,65,3)" rx="2" ry="2" />
<text x="302.00" y="2063.5" ></text>
</g>
<g >
<title>vfs_write (241,909,321 samples, 0.21%)</title><rect x="145.3" y="1989" width="2.4" height="15.0" fill="rgb(205,154,7)" rx="2" ry="2" />
<text x="148.27" y="1999.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1701" width="1.4" height="15.0" fill="rgb(237,54,34)" rx="2" ry="2" />
<text x="330.52" y="1711.5" ></text>
</g>
<g >
<title>reweight_entity (42,859,856 samples, 0.04%)</title><rect x="404.8" y="1797" width="0.4" height="15.0" fill="rgb(217,13,30)" rx="2" ry="2" />
<text x="407.78" y="1807.5" ></text>
</g>
<g >
<title>timerqueue_add (29,019,047 samples, 0.03%)</title><rect x="395.9" y="1909" width="0.3" height="15.0" fill="rgb(241,54,7)" rx="2" ry="2" />
<text x="398.89" y="1919.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (28,659,469 samples, 0.02%)</title><rect x="255.4" y="1925" width="0.2" height="15.0" fill="rgb(209,174,21)" rx="2" ry="2" />
<text x="258.36" y="1935.5" ></text>
</g>
<g >
<title>update_rq_clock (18,311,754 samples, 0.02%)</title><rect x="387.5" y="1845" width="0.2" height="15.0" fill="rgb(235,133,1)" rx="2" ry="2" />
<text x="390.53" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1429" width="1.7" height="15.0" fill="rgb(206,168,54)" rx="2" ry="2" />
<text x="128.36" y="1439.5" ></text>
</g>
<g >
<title>native_write_msr (26,358,255 samples, 0.02%)</title><rect x="257.5" y="1861" width="0.3" height="15.0" fill="rgb(239,110,21)" rx="2" ry="2" />
<text x="260.54" y="1871.5" ></text>
</g>
<g >
<title>dequeue_task_fair (105,016,242 samples, 0.09%)</title><rect x="381.5" y="1845" width="1.0" height="15.0" fill="rgb(218,174,33)" rx="2" ry="2" />
<text x="384.47" y="1855.5" ></text>
</g>
<g >
<title>_raw_spin_lock (29,195,968 samples, 0.03%)</title><rect x="80.5" y="1941" width="0.3" height="15.0" fill="rgb(250,14,39)" rx="2" ry="2" />
<text x="83.49" y="1951.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (17,388,773 samples, 0.02%)</title><rect x="210.8" y="1813" width="0.2" height="15.0" fill="rgb(245,217,47)" rx="2" ry="2" />
<text x="213.84" y="1823.5" ></text>
</g>
<g >
<title>load_balance (696,977,709 samples, 0.60%)</title><rect x="55.3" y="1877" width="7.2" height="15.0" fill="rgb(251,150,52)" rx="2" ry="2" />
<text x="58.35" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (232,137,850 samples, 0.20%)</title><rect x="395.9" y="2037" width="2.3" height="15.0" fill="rgb(243,18,53)" rx="2" ry="2" />
<text x="398.85" y="2047.5" ></text>
</g>
<g >
<title>__x64_sys_poll (1,624,721,531 samples, 1.41%)</title><rect x="267.2" y="1973" width="16.6" height="15.0" fill="rgb(244,60,3)" rx="2" ry="2" />
<text x="270.21" y="1983.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (187,441,907 samples, 0.16%)</title><rect x="356.5" y="1941" width="2.0" height="15.0" fill="rgb(245,6,26)" rx="2" ry="2" />
<text x="359.55" y="1951.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (53,162,448 samples, 0.05%)</title><rect x="217.3" y="1909" width="0.6" height="15.0" fill="rgb(222,219,54)" rx="2" ry="2" />
<text x="220.33" y="1919.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (86,322,128 samples, 0.07%)</title><rect x="458.7" y="1845" width="0.9" height="15.0" fill="rgb(215,159,6)" rx="2" ry="2" />
<text x="461.75" y="1855.5" ></text>
</g>
<g >
<title>sched_clock_cpu (18,311,754 samples, 0.02%)</title><rect x="387.5" y="1829" width="0.2" height="15.0" fill="rgb(231,178,47)" rx="2" ry="2" />
<text x="390.53" y="1839.5" ></text>
</g>
<g >
<title>do_sys_poll (32,832,262 samples, 0.03%)</title><rect x="326.5" y="1957" width="0.3" height="15.0" fill="rgb(213,7,13)" rx="2" ry="2" />
<text x="329.46" y="1967.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (322,595,339 samples, 0.28%)</title><rect x="161.7" y="1893" width="3.3" height="15.0" fill="rgb(212,156,24)" rx="2" ry="2" />
<text x="164.70" y="1903.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (266,209,758 samples, 0.23%)</title><rect x="277.7" y="1845" width="2.8" height="15.0" fill="rgb(246,111,24)" rx="2" ry="2" />
<text x="280.75" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="485" width="1.7" height="15.0" fill="rgb(211,130,20)" rx="2" ry="2" />
<text x="128.36" y="495.5" ></text>
</g>
<g >
<title>update_min_vruntime (26,821,803 samples, 0.02%)</title><rect x="161.4" y="1893" width="0.3" height="15.0" fill="rgb(241,129,25)" rx="2" ry="2" />
<text x="164.39" y="1903.5" ></text>
</g>
<g >
<title>ctx_sched_in (150,083,105 samples, 0.13%)</title><rect x="136.7" y="1893" width="1.5" height="15.0" fill="rgb(247,174,1)" rx="2" ry="2" />
<text x="139.66" y="1903.5" ></text>
</g>
<g >
<title>find_busiest_group (558,335,955 samples, 0.48%)</title><rect x="56.5" y="1861" width="5.7" height="15.0" fill="rgb(206,120,46)" rx="2" ry="2" />
<text x="59.50" y="1871.5" ></text>
</g>
<g >
<title>path_lookupat (26,213,777 samples, 0.02%)</title><rect x="128.0" y="1941" width="0.3" height="15.0" fill="rgb(250,196,1)" rx="2" ry="2" />
<text x="131.00" y="1951.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (1,369,900,974 samples, 1.19%)</title><rect x="429.3" y="1829" width="14.0" height="15.0" fill="rgb(228,28,8)" rx="2" ry="2" />
<text x="432.29" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1061" width="1.7" height="15.0" fill="rgb(215,115,14)" rx="2" ry="2" />
<text x="128.36" y="1071.5" ></text>
</g>
<g >
<title>mprotect_fixup (25,238,583 samples, 0.02%)</title><rect x="17.1" y="1893" width="0.3" height="15.0" fill="rgb(237,81,10)" rx="2" ry="2" />
<text x="20.13" y="1903.5" ></text>
</g>
<g >
<title>ksys_read (379,708,620 samples, 0.33%)</title><rect x="293.2" y="1989" width="3.9" height="15.0" fill="rgb(225,50,30)" rx="2" ry="2" />
<text x="296.24" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (423,934,041 samples, 0.37%)</title><rect x="293.2" y="2021" width="4.4" height="15.0" fill="rgb(239,77,25)" rx="2" ry="2" />
<text x="296.24" y="2031.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (13,018,296 samples, 0.01%)</title><rect x="460.7" y="1765" width="0.1" height="15.0" fill="rgb(211,0,2)" rx="2" ry="2" />
<text x="463.70" y="1775.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (135,524,268 samples, 0.12%)</title><rect x="763.7" y="1877" width="1.4" height="15.0" fill="rgb(241,121,23)" rx="2" ry="2" />
<text x="766.70" y="1887.5" ></text>
</g>
<g >
<title>pthread_cond_wait (55,069,874 samples, 0.05%)</title><rect x="128.3" y="2037" width="0.5" height="15.0" fill="rgb(251,160,37)" rx="2" ry="2" />
<text x="131.27" y="2047.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1685" width="0.1" height="15.0" fill="rgb(215,131,12)" rx="2" ry="2" />
<text x="354.83" y="1695.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,665,667,040 samples, 1.45%)</title><rect x="305.4" y="1973" width="17.1" height="15.0" fill="rgb(208,155,11)" rx="2" ry="2" />
<text x="308.40" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1365" width="1.7" height="15.0" fill="rgb(215,31,28)" rx="2" ry="2" />
<text x="128.36" y="1375.5" ></text>
</g>
<g >
<title>find_busiest_group (129,125,182 samples, 0.11%)</title><rect x="385.8" y="1797" width="1.3" height="15.0" fill="rgb(214,19,17)" rx="2" ry="2" />
<text x="388.78" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (1,583,573,438 samples, 1.37%)</title><rect x="398.2" y="2005" width="16.2" height="15.0" fill="rgb(253,208,12)" rx="2" ry="2" />
<text x="401.23" y="2015.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (196,798,351 samples, 0.17%)</title><rect x="322.5" y="1957" width="2.0" height="15.0" fill="rgb(213,146,43)" rx="2" ry="2" />
<text x="325.45" y="1967.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (116,562,301 samples, 0.10%)</title><rect x="312.6" y="1813" width="1.2" height="15.0" fill="rgb(232,12,29)" rx="2" ry="2" />
<text x="315.65" y="1823.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromise /srv/service/node_modules/bluebird/js/release/promise.js:577 (38,595,760 samples, 0.03%)</title><rect x="75.0" y="1813" width="0.3" height="15.0" fill="rgb(240,165,20)" rx="2" ry="2" />
<text x="77.95" y="1823.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (393,471,822 samples, 0.34%)</title><rect x="249.9" y="2037" width="4.1" height="15.0" fill="rgb(245,188,33)" rx="2" ry="2" />
<text x="252.94" y="2047.5" ></text>
</g>
<g >
<title>sock_sendmsg (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1941" width="1.1" height="15.0" fill="rgb(217,120,1)" rx="2" ry="2" />
<text x="373.99" y="1951.5" ></text>
</g>
<g >
<title>__get_user_8 (25,316,473 samples, 0.02%)</title><rect x="412.9" y="1877" width="0.3" height="15.0" fill="rgb(238,119,11)" rx="2" ry="2" />
<text x="415.92" y="1887.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (23,702,985 samples, 0.02%)</title><rect x="165.0" y="1845" width="0.3" height="15.0" fill="rgb(209,62,21)" rx="2" ry="2" />
<text x="168.01" y="1855.5" ></text>
</g>
<g >
<title>psi_task_change (18,791,483 samples, 0.02%)</title><rect x="387.3" y="1845" width="0.2" height="15.0" fill="rgb(252,197,29)" rx="2" ry="2" />
<text x="390.34" y="1855.5" ></text>
</g>
<g >
<title>node::Environment::RunAndClearNativeImmediates (10,635,804 samples, 0.01%)</title><rect x="125.4" y="85" width="0.1" height="15.0" fill="rgb(233,88,36)" rx="2" ry="2" />
<text x="128.36" y="95.5" ></text>
</g>
<g >
<title>ip_rcv (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1685" width="0.7" height="15.0" fill="rgb(207,125,20)" rx="2" ry="2" />
<text x="254.35" y="1695.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (106,908,892 samples, 0.09%)</title><rect x="172.6" y="2021" width="1.1" height="15.0" fill="rgb(213,117,30)" rx="2" ry="2" />
<text x="175.56" y="2031.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (25,120,985 samples, 0.02%)</title><rect x="53.5" y="1797" width="0.3" height="15.0" fill="rgb(254,72,27)" rx="2" ry="2" />
<text x="56.52" y="1807.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (155,780,407 samples, 0.14%)</title><rect x="374.4" y="1861" width="1.6" height="15.0" fill="rgb(216,10,49)" rx="2" ry="2" />
<text x="377.44" y="1871.5" ></text>
</g>
<g >
<title>malloc (31,048,852 samples, 0.03%)</title><rect x="238.0" y="2053" width="0.4" height="15.0" fill="rgb(213,7,24)" rx="2" ry="2" />
<text x="241.04" y="2063.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (26,883,729 samples, 0.02%)</title><rect x="72.8" y="2037" width="0.3" height="15.0" fill="rgb(233,42,11)" rx="2" ry="2" />
<text x="75.81" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock (27,665,602 samples, 0.02%)</title><rect x="26.3" y="1893" width="0.3" height="15.0" fill="rgb(231,72,49)" rx="2" ry="2" />
<text x="29.29" y="1903.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (256,741,895 samples, 0.22%)</title><rect x="49.7" y="1845" width="2.6" height="15.0" fill="rgb(206,93,28)" rx="2" ry="2" />
<text x="52.67" y="1855.5" ></text>
</g>
<g >
<title>_raw_spin_lock (21,560,596 samples, 0.02%)</title><rect x="381.2" y="1845" width="0.3" height="15.0" fill="rgb(225,212,37)" rx="2" ry="2" />
<text x="384.25" y="1855.5" ></text>
</g>
<g >
<title>timerqueue_add (253,097,037 samples, 0.22%)</title><rect x="196.9" y="1909" width="2.6" height="15.0" fill="rgb(230,136,44)" rx="2" ry="2" />
<text x="199.87" y="1919.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (3,795,169,960 samples, 3.29%)</title><rect x="769.0" y="2021" width="38.9" height="15.0" fill="rgb(240,68,14)" rx="2" ry="2" />
<text x="772.00" y="2031.5" >pth..</text>
</g>
<g >
<title>__seccomp_filter (25,285,401 samples, 0.02%)</title><rect x="258.8" y="1989" width="0.2" height="15.0" fill="rgb(233,136,18)" rx="2" ry="2" />
<text x="261.77" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (3,062,988,571 samples, 2.66%)</title><rect x="336.3" y="2053" width="31.3" height="15.0" fill="rgb(229,203,0)" rx="2" ry="2" />
<text x="339.28" y="2063.5" >[u..</text>
</g>
<g >
<title>entry_SYSCALL_64 (31,981,083 samples, 0.03%)</title><rect x="395.5" y="2037" width="0.4" height="15.0" fill="rgb(229,98,9)" rx="2" ry="2" />
<text x="398.53" y="2047.5" ></text>
</g>
<g >
<title>rd_kafka_q_destroy_final (797,431,849 samples, 0.69%)</title><rect x="1019.8" y="2037" width="8.2" height="15.0" fill="rgb(209,92,15)" rx="2" ry="2" />
<text x="1022.82" y="2047.5" ></text>
</g>
<g >
<title>Function:~ :1 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1813" width="10.2" height="15.0" fill="rgb(238,115,29)" rx="2" ry="2" />
<text x="115.99" y="1823.5" ></text>
</g>
<g >
<title>perf_swevent_add (32,014,896 samples, 0.03%)</title><rect x="162.7" y="1813" width="0.3" height="15.0" fill="rgb(238,11,24)" rx="2" ry="2" />
<text x="165.72" y="1823.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (38,253,251 samples, 0.03%)</title><rect x="55.6" y="1845" width="0.4" height="15.0" fill="rgb(217,8,41)" rx="2" ry="2" />
<text x="58.63" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1733" width="1.7" height="15.0" fill="rgb(211,59,14)" rx="2" ry="2" />
<text x="128.36" y="1743.5" ></text>
</g>
<g >
<title>restore_regs_and_return_to_kernel (20,247,195 samples, 0.02%)</title><rect x="54.6" y="1893" width="0.2" height="15.0" fill="rgb(208,175,40)" rx="2" ry="2" />
<text x="57.59" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1461" width="1.7" height="15.0" fill="rgb(249,40,16)" rx="2" ry="2" />
<text x="128.36" y="1471.5" ></text>
</g>
<g >
<title>__fget_light (288,039,324 samples, 0.25%)</title><rect x="190.0" y="1957" width="2.9" height="15.0" fill="rgb(216,10,39)" rx="2" ry="2" />
<text x="192.98" y="1967.5" ></text>
</g>
<g >
<title>find_busiest_group (124,048,700 samples, 0.11%)</title><rect x="461.2" y="1861" width="1.2" height="15.0" fill="rgb(225,77,12)" rx="2" ry="2" />
<text x="464.18" y="1871.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (48,881,016 samples, 0.04%)</title><rect x="335.4" y="1845" width="0.5" height="15.0" fill="rgb(243,202,12)" rx="2" ry="2" />
<text x="338.36" y="1855.5" ></text>
</g>
<g >
<title>rd_kafka_timer_schedule_next (14,738,346 samples, 0.01%)</title><rect x="1028.0" y="2037" width="0.1" height="15.0" fill="rgb(254,92,49)" rx="2" ry="2" />
<text x="1030.98" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="213" width="1.7" height="15.0" fill="rgb(249,94,29)" rx="2" ry="2" />
<text x="128.36" y="223.5" ></text>
</g>
<g >
<title>schedule (4,173,529,277 samples, 3.62%)</title><rect x="23.7" y="1941" width="42.7" height="15.0" fill="rgb(227,144,25)" rx="2" ry="2" />
<text x="26.70" y="1951.5" >sche..</text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="997" width="1.7" height="15.0" fill="rgb(242,214,6)" rx="2" ry="2" />
<text x="128.36" y="1007.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1797" width="1.1" height="15.0" fill="rgb(229,101,21)" rx="2" ry="2" />
<text x="373.99" y="1807.5" ></text>
</g>
<g >
<title>[libnode.so.108] (2,465,704,792 samples, 2.14%)</title><rect x="100.0" y="1957" width="25.2" height="15.0" fill="rgb(253,208,6)" rx="2" ry="2" />
<text x="102.97" y="1967.5" >[..</text>
</g>
<g >
<title>[unknown] (156,067,372 samples, 0.14%)</title><rect x="125.5" y="85" width="1.6" height="15.0" fill="rgb(234,102,50)" rx="2" ry="2" />
<text x="128.47" y="95.5" ></text>
</g>
<g >
<title>v8::internal::OptimizedCompilationJob::ExecuteJob (201,826,645 samples, 0.18%)</title><rect x="15.1" y="1989" width="2.0" height="15.0" fill="rgb(224,133,22)" rx="2" ry="2" />
<text x="18.06" y="1999.5" ></text>
</g>
<g >
<title>schedule (1,210,647,645 samples, 1.05%)</title><rect x="342.8" y="1893" width="12.3" height="15.0" fill="rgb(247,132,37)" rx="2" ry="2" />
<text x="345.75" y="1903.5" ></text>
</g>
<g >
<title>detach_entity_cfs_rq (26,008,981 samples, 0.02%)</title><rect x="62.2" y="1829" width="0.3" height="15.0" fill="rgb(252,206,35)" rx="2" ry="2" />
<text x="65.22" y="1839.5" ></text>
</g>
<g >
<title>v8::internal::compiler::Schedule::IsScheduled (125,329,974 samples, 0.11%)</title><rect x="15.8" y="1909" width="1.3" height="15.0" fill="rgb(250,202,38)" rx="2" ry="2" />
<text x="18.85" y="1919.5" ></text>
</g>
<g >
<title>[libc.so.6] (4,220,615,101 samples, 3.66%)</title><rect x="484.3" y="1973" width="43.2" height="15.0" fill="rgb(212,216,21)" rx="2" ry="2" />
<text x="487.33" y="1983.5" >[lib..</text>
</g>
<g >
<title>v8::internal::OptimizingCompileDispatcher::CompileNext (201,826,645 samples, 0.18%)</title><rect x="15.1" y="2005" width="2.0" height="15.0" fill="rgb(250,135,25)" rx="2" ry="2" />
<text x="18.06" y="2015.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1813" width="0.7" height="15.0" fill="rgb(224,32,22)" rx="2" ry="2" />
<text x="254.35" y="1823.5" ></text>
</g>
<g >
<title>rd_buf_write_ensure (16,242,064 samples, 0.01%)</title><rect x="1138.5" y="2053" width="0.2" height="15.0" fill="rgb(233,125,51)" rx="2" ry="2" />
<text x="1141.53" y="2063.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (23,702,985 samples, 0.02%)</title><rect x="165.0" y="1861" width="0.3" height="15.0" fill="rgb(249,227,33)" rx="2" ry="2" />
<text x="168.01" y="1871.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (76,581,336 samples, 0.07%)</title><rect x="230.9" y="1893" width="0.8" height="15.0" fill="rgb(225,63,29)" rx="2" ry="2" />
<text x="233.93" y="1903.5" ></text>
</g>
<g >
<title>__x64_sys_futex (209,047,297 samples, 0.18%)</title><rect x="395.9" y="2005" width="2.1" height="15.0" fill="rgb(239,160,47)" rx="2" ry="2" />
<text x="398.85" y="2015.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (23,307,312 samples, 0.02%)</title><rect x="390.0" y="1893" width="0.2" height="15.0" fill="rgb(213,5,45)" rx="2" ry="2" />
<text x="392.97" y="1903.5" ></text>
</g>
<g >
<title>scheduler_tick (20,956,988 samples, 0.02%)</title><rect x="385.5" y="1685" width="0.3" height="15.0" fill="rgb(211,99,39)" rx="2" ry="2" />
<text x="388.55" y="1695.5" ></text>
</g>
<g >
<title>record_times (21,508,742 samples, 0.02%)</title><rect x="410.5" y="1797" width="0.2" height="15.0" fill="rgb(216,189,41)" rx="2" ry="2" />
<text x="413.52" y="1807.5" ></text>
</g>
<g >
<title>rd_kafka_q_pop_serve.localalias (15,348,097 samples, 0.01%)</title><rect x="394.8" y="2053" width="0.1" height="15.0" fill="rgb(240,57,47)" rx="2" ry="2" />
<text x="397.79" y="2063.5" ></text>
</g>
<g >
<title>_raw_spin_lock (49,350,802 samples, 0.04%)</title><rect x="205.6" y="1877" width="0.5" height="15.0" fill="rgb(226,153,39)" rx="2" ry="2" />
<text x="208.57" y="1887.5" ></text>
</g>
<g >
<title>enqueue_entity (13,708,425 samples, 0.01%)</title><rect x="165.0" y="1733" width="0.2" height="15.0" fill="rgb(223,157,22)" rx="2" ry="2" />
<text x="168.03" y="1743.5" ></text>
</g>
<g >
<title>rd_kafka_q_pop_serve.localalias (27,264,768 samples, 0.02%)</title><rect x="300.0" y="2053" width="0.3" height="15.0" fill="rgb(233,119,51)" rx="2" ry="2" />
<text x="303.02" y="2063.5" ></text>
</g>
<g >
<title>_raw_spin_lock (17,529,933 samples, 0.02%)</title><rect x="396.2" y="1893" width="0.2" height="15.0" fill="rgb(225,227,40)" rx="2" ry="2" />
<text x="399.18" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (47,758,929 samples, 0.04%)</title><rect x="184.8" y="2021" width="0.5" height="15.0" fill="rgb(207,78,51)" rx="2" ry="2" />
<text x="187.85" y="2031.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1909" width="1.1" height="15.0" fill="rgb(212,61,22)" rx="2" ry="2" />
<text x="298.98" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1077" width="1.7" height="15.0" fill="rgb(242,194,16)" rx="2" ry="2" />
<text x="128.36" y="1087.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromises /srv/service/node_modules/bluebird/js/release/promise.js:718 (38,595,760 samples, 0.03%)</title><rect x="75.0" y="1845" width="0.3" height="15.0" fill="rgb(246,3,43)" rx="2" ry="2" />
<text x="77.95" y="1855.5" ></text>
</g>
<g >
<title>do_futex (4,871,627,099 samples, 4.23%)</title><rect x="18.8" y="1989" width="49.9" height="15.0" fill="rgb(211,158,6)" rx="2" ry="2" />
<text x="21.84" y="1999.5" >do_fu..</text>
</g>
<g >
<title>rd_kafka_cgrp_join_state_serve (36,273,406 samples, 0.03%)</title><rect x="1139.0" y="2053" width="0.4" height="15.0" fill="rgb(253,65,50)" rx="2" ry="2" />
<text x="1141.99" y="2063.5" ></text>
</g>
<g >
<title>ERR_clear_error (73,940,941 samples, 0.06%)</title><rect x="175.7" y="2037" width="0.7" height="15.0" fill="rgb(251,160,41)" rx="2" ry="2" />
<text x="178.65" y="2047.5" ></text>
</g>
<g >
<title>[libuv.so.1.0.0] (10,635,804 samples, 0.01%)</title><rect x="125.4" y="117" width="0.1" height="15.0" fill="rgb(218,61,54)" rx="2" ry="2" />
<text x="128.36" y="127.5" ></text>
</g>
<g >
<title>ttwu_do_activate (23,862,518 samples, 0.02%)</title><rect x="210.6" y="1765" width="0.2" height="15.0" fill="rgb(221,55,34)" rx="2" ry="2" />
<text x="213.57" y="1775.5" ></text>
</g>
<g >
<title>select_task_rq_fair (24,901,204 samples, 0.02%)</title><rect x="1096.5" y="1861" width="0.3" height="15.0" fill="rgb(234,96,29)" rx="2" ry="2" />
<text x="1099.54" y="1871.5" ></text>
</g>
<g >
<title>ctx_sched_in (266,209,758 samples, 0.23%)</title><rect x="277.7" y="1861" width="2.8" height="15.0" fill="rgb(226,216,28)" rx="2" ry="2" />
<text x="280.75" y="1871.5" ></text>
</g>
<g >
<title>finish_task_switch (315,772,298 samples, 0.27%)</title><rect x="382.5" y="1845" width="3.3" height="15.0" fill="rgb(211,139,52)" rx="2" ry="2" />
<text x="385.54" y="1855.5" ></text>
</g>
<g >
<title>dequeue_entity (26,554,073 samples, 0.02%)</title><rect x="79.3" y="1877" width="0.3" height="15.0" fill="rgb(208,9,30)" rx="2" ry="2" />
<text x="82.33" y="1887.5" ></text>
</g>
<g >
<title>rd_kafka_cgrp_join_state_serve (503,196,092 samples, 0.44%)</title><rect x="1014.4" y="2037" width="5.1" height="15.0" fill="rgb(234,151,53)" rx="2" ry="2" />
<text x="1017.36" y="2047.5" ></text>
</g>
<g >
<title>dequeue_entity (123,753,716 samples, 0.11%)</title><rect x="135.4" y="1909" width="1.2" height="15.0" fill="rgb(244,154,42)" rx="2" ry="2" />
<text x="138.38" y="1919.5" ></text>
</g>
<g >
<title>LazyCompile:*_consume /srv/service/lib/base_executor.js:159 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1685" width="10.2" height="15.0" fill="rgb(212,106,14)" rx="2" ry="2" />
<text x="115.99" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (61,674,266,609 samples, 53.51%)</title><rect x="466.1" y="2053" width="631.4" height="15.0" fill="rgb(240,33,7)" rx="2" ry="2" />
<text x="469.07" y="2063.5" >[unknown]</text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="693" width="1.7" height="15.0" fill="rgb(248,149,33)" rx="2" ry="2" />
<text x="128.36" y="703.5" ></text>
</g>
<g >
<title>[libssl.so.3] (136,343,450 samples, 0.12%)</title><rect x="173.7" y="2053" width="1.4" height="15.0" fill="rgb(220,204,18)" rx="2" ry="2" />
<text x="176.67" y="2063.5" ></text>
</g>
<g >
<title>dequeue_entity (84,798,303 samples, 0.07%)</title><rect x="381.5" y="1829" width="0.8" height="15.0" fill="rgb(230,16,15)" rx="2" ry="2" />
<text x="384.47" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (2,065,646,248 samples, 1.79%)</title><rect x="339.1" y="2037" width="21.1" height="15.0" fill="rgb(250,85,8)" rx="2" ry="2" />
<text x="342.05" y="2047.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (46,499,021 samples, 0.04%)</title><rect x="527.5" y="1973" width="0.5" height="15.0" fill="rgb(225,50,16)" rx="2" ry="2" />
<text x="530.54" y="1983.5" ></text>
</g>
<g >
<title>pthread_rwlock_unlock@plt (28,368,879 samples, 0.02%)</title><rect x="90.3" y="2005" width="0.3" height="15.0" fill="rgb(235,193,37)" rx="2" ry="2" />
<text x="93.28" y="2015.5" ></text>
</g>
<g >
<title>rdk:broker1004 (2,234,812,491 samples, 1.94%)</title><rect x="372.1" y="2069" width="22.8" height="15.0" fill="rgb(220,62,13)" rx="2" ry="2" />
<text x="375.07" y="2079.5" >r..</text>
</g>
<g >
<title>pthread_mutex_lock (43,920,755 samples, 0.04%)</title><rect x="298.5" y="2053" width="0.5" height="15.0" fill="rgb(219,102,46)" rx="2" ry="2" />
<text x="301.55" y="2063.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_serve (28,470,286 samples, 0.02%)</title><rect x="287.9" y="2021" width="0.3" height="15.0" fill="rgb(241,23,41)" rx="2" ry="2" />
<text x="290.89" y="2031.5" ></text>
</g>
<g >
<title>__tls_get_addr (12,687,279 samples, 0.01%)</title><rect x="390.8" y="2053" width="0.1" height="15.0" fill="rgb(246,135,50)" rx="2" ry="2" />
<text x="393.77" y="2063.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (73,447,387 samples, 0.06%)</title><rect x="413.2" y="1877" width="0.7" height="15.0" fill="rgb(250,52,22)" rx="2" ry="2" />
<text x="416.18" y="1887.5" ></text>
</g>
<g >
<title>tcp_poll (45,095,784 samples, 0.04%)</title><rect x="388.5" y="1877" width="0.4" height="15.0" fill="rgb(216,10,11)" rx="2" ry="2" />
<text x="391.48" y="1887.5" ></text>
</g>
<g >
<title>__get_user_nocheck_4 (33,680,838 samples, 0.03%)</title><rect x="67.7" y="1941" width="0.4" height="15.0" fill="rgb(221,141,38)" rx="2" ry="2" />
<text x="70.72" y="1951.5" ></text>
</g>
<g >
<title>tick_sched_timer (17,449,177 samples, 0.02%)</title><rect x="1014.0" y="1941" width="0.2" height="15.0" fill="rgb(242,88,46)" rx="2" ry="2" />
<text x="1017.03" y="1951.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (18,899,113 samples, 0.02%)</title><rect x="290.5" y="2037" width="0.2" height="15.0" fill="rgb(222,42,17)" rx="2" ry="2" />
<text x="293.46" y="2047.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (25,238,583 samples, 0.02%)</title><rect x="17.1" y="1845" width="0.3" height="15.0" fill="rgb(226,218,12)" rx="2" ry="2" />
<text x="20.13" y="1855.5" ></text>
</g>
<g >
<title>tick_sched_handle (37,121,361 samples, 0.03%)</title><rect x="358.7" y="1877" width="0.4" height="15.0" fill="rgb(251,198,22)" rx="2" ry="2" />
<text x="361.71" y="1887.5" ></text>
</g>
<g >
<title>pick_next_task_fair (860,945,368 samples, 0.75%)</title><rect x="54.8" y="1909" width="8.8" height="15.0" fill="rgb(218,115,13)" rx="2" ry="2" />
<text x="57.79" y="1919.5" ></text>
</g>
<g >
<title>update_blocked_averages (21,798,461 samples, 0.02%)</title><rect x="463.3" y="1845" width="0.2" height="15.0" fill="rgb(249,29,36)" rx="2" ry="2" />
<text x="466.26" y="1855.5" ></text>
</g>
<g >
<title>[libnode.so.108] (24,649,178 samples, 0.02%)</title><rect x="75.3" y="1733" width="0.3" height="15.0" fill="rgb(232,1,22)" rx="2" ry="2" />
<text x="78.35" y="1743.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (20,982,314 samples, 0.02%)</title><rect x="467.9" y="2021" width="0.3" height="15.0" fill="rgb(253,119,52)" rx="2" ry="2" />
<text x="470.95" y="2031.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (151,880,168 samples, 0.13%)</title><rect x="136.6" y="1909" width="1.6" height="15.0" fill="rgb(237,20,27)" rx="2" ry="2" />
<text x="139.65" y="1919.5" ></text>
</g>
<g >
<title>__alloc_skb (31,406,251 samples, 0.03%)</title><rect x="233.1" y="1877" width="0.3" height="15.0" fill="rgb(207,16,44)" rx="2" ry="2" />
<text x="236.06" y="1887.5" ></text>
</g>
<g >
<title>ctx_sched_in (256,574,647 samples, 0.22%)</title><rect x="162.4" y="1877" width="2.6" height="15.0" fill="rgb(222,97,23)" rx="2" ry="2" />
<text x="165.37" y="1887.5" ></text>
</g>
<g >
<title>ERR_clear_error (15,261,633 samples, 0.01%)</title><rect x="261.5" y="2037" width="0.1" height="15.0" fill="rgb(224,58,51)" rx="2" ry="2" />
<text x="264.48" y="2047.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (37,772,572 samples, 0.03%)</title><rect x="133.5" y="2037" width="0.4" height="15.0" fill="rgb(245,90,52)" rx="2" ry="2" />
<text x="136.54" y="2047.5" ></text>
</g>
<g >
<title>__update_load_avg_se (17,320,414 samples, 0.02%)</title><rect x="396.8" y="1861" width="0.2" height="15.0" fill="rgb(248,124,8)" rx="2" ry="2" />
<text x="399.84" y="1871.5" ></text>
</g>
<g >
<title>__schedule (696,647,288 samples, 0.60%)</title><rect x="380.6" y="1861" width="7.1" height="15.0" fill="rgb(230,204,53)" rx="2" ry="2" />
<text x="383.58" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="709" width="1.7" height="15.0" fill="rgb(254,169,24)" rx="2" ry="2" />
<text x="128.36" y="719.5" ></text>
</g>
<g >
<title>mtx_unlock (780,585,770 samples, 0.68%)</title><rect x="1098.5" y="2053" width="8.0" height="15.0" fill="rgb(236,90,20)" rx="2" ry="2" />
<text x="1101.48" y="2063.5" ></text>
</g>
<g >
<title>__schedule (146,835,052 samples, 0.13%)</title><rect x="78.7" y="1909" width="1.5" height="15.0" fill="rgb(242,171,36)" rx="2" ry="2" />
<text x="81.71" y="1919.5" ></text>
</g>
<g >
<title>perf_swevent_add (133,384,839 samples, 0.12%)</title><rect x="48.3" y="1813" width="1.4" height="15.0" fill="rgb(215,101,27)" rx="2" ry="2" />
<text x="51.30" y="1823.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (310,436,282 samples, 0.27%)</title><rect x="144.8" y="2037" width="3.2" height="15.0" fill="rgb(220,109,10)" rx="2" ry="2" />
<text x="147.84" y="2047.5" ></text>
</g>
<g >
<title>__schedule (241,239,187 samples, 0.21%)</title><rect x="333.4" y="1925" width="2.5" height="15.0" fill="rgb(242,218,24)" rx="2" ry="2" />
<text x="336.39" y="1935.5" ></text>
</g>
<g >
<title>rd_kafka_q_concat0.constprop.0 (29,960,354 samples, 0.03%)</title><rect x="1019.5" y="2037" width="0.3" height="15.0" fill="rgb(252,138,32)" rx="2" ry="2" />
<text x="1022.51" y="2047.5" ></text>
</g>
<g >
<title>__get_user_8 (26,199,641 samples, 0.02%)</title><rect x="336.0" y="1973" width="0.2" height="15.0" fill="rgb(235,17,43)" rx="2" ry="2" />
<text x="338.95" y="1983.5" ></text>
</g>
<g >
<title>tg3_poll_msix (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1733" width="0.1" height="15.0" fill="rgb(218,2,43)" rx="2" ry="2" />
<text x="354.83" y="1743.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (99,445,996 samples, 0.09%)</title><rect x="238.9" y="2053" width="1.1" height="15.0" fill="rgb(218,6,15)" rx="2" ry="2" />
<text x="241.95" y="2063.5" ></text>
</g>
<g >
<title>update_load_avg (17,320,414 samples, 0.02%)</title><rect x="396.8" y="1877" width="0.2" height="15.0" fill="rgb(224,166,25)" rx="2" ry="2" />
<text x="399.84" y="1887.5" ></text>
</g>
<g >
<title>update_curr (180,806,555 samples, 0.16%)</title><rect x="31.8" y="1877" width="1.8" height="15.0" fill="rgb(240,37,13)" rx="2" ry="2" />
<text x="34.77" y="1887.5" ></text>
</g>
<g >
<title>load_balance (110,848,538 samples, 0.10%)</title><rect x="138.2" y="1893" width="1.1" height="15.0" fill="rgb(240,212,49)" rx="2" ry="2" />
<text x="141.20" y="1903.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (392,175,600 samples, 0.34%)</title><rect x="135.3" y="1973" width="4.0" height="15.0" fill="rgb(214,196,51)" rx="2" ry="2" />
<text x="138.32" y="1983.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1813" width="1.1" height="15.0" fill="rgb(222,61,51)" rx="2" ry="2" />
<text x="373.99" y="1823.5" ></text>
</g>
<g >
<title>enqueue_entity (41,974,591 samples, 0.04%)</title><rect x="53.9" y="1733" width="0.4" height="15.0" fill="rgb(248,192,46)" rx="2" ry="2" />
<text x="56.88" y="1743.5" ></text>
</g>
<g >
<title>__errno_location (13,984,144 samples, 0.01%)</title><rect x="339.1" y="1989" width="0.1" height="15.0" fill="rgb(219,138,46)" rx="2" ry="2" />
<text x="342.05" y="1999.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (46,791,589 samples, 0.04%)</title><rect x="205.1" y="1877" width="0.5" height="15.0" fill="rgb(210,126,50)" rx="2" ry="2" />
<text x="208.09" y="1887.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1813" width="0.1" height="15.0" fill="rgb(220,91,35)" rx="2" ry="2" />
<text x="354.83" y="1823.5" ></text>
</g>
<g >
<title>rd_kafka_buf_destroy_final.localalias (114,185,046 samples, 0.10%)</title><rect x="393.6" y="2053" width="1.2" height="15.0" fill="rgb(213,98,15)" rx="2" ry="2" />
<text x="396.62" y="2063.5" ></text>
</g>
<g >
<title>pthread_rwlock_rdlock (26,425,971 samples, 0.02%)</title><rect x="15.6" y="1893" width="0.2" height="15.0" fill="rgb(244,69,3)" rx="2" ry="2" />
<text x="18.57" y="1903.5" ></text>
</g>
<g >
<title>_pthread_cleanup_pop (27,409,412 samples, 0.02%)</title><rect x="390.9" y="2053" width="0.3" height="15.0" fill="rgb(248,146,50)" rx="2" ry="2" />
<text x="393.90" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (60,956,441 samples, 0.05%)</title><rect x="235.9" y="1989" width="0.6" height="15.0" fill="rgb(230,128,13)" rx="2" ry="2" />
<text x="238.90" y="1999.5" ></text>
</g>
<g >
<title>update_dl_rq_load_avg (24,873,872 samples, 0.02%)</title><rect x="321.1" y="1829" width="0.2" height="15.0" fill="rgb(224,198,4)" rx="2" ry="2" />
<text x="324.05" y="1839.5" ></text>
</g>
<g >
<title>scheduler_tick (123,453,141 samples, 0.11%)</title><rect x="1181.2" y="1909" width="1.3" height="15.0" fill="rgb(254,160,36)" rx="2" ry="2" />
<text x="1184.21" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1445" width="1.7" height="15.0" fill="rgb(218,130,36)" rx="2" ry="2" />
<text x="128.36" y="1455.5" ></text>
</g>
<g >
<title>load_balance (129,125,182 samples, 0.11%)</title><rect x="385.8" y="1813" width="1.3" height="15.0" fill="rgb(226,8,38)" rx="2" ry="2" />
<text x="388.78" y="1823.5" ></text>
</g>
<g >
<title>sched_clock (24,166,173 samples, 0.02%)</title><rect x="385.3" y="1765" width="0.2" height="15.0" fill="rgb(254,20,51)" rx="2" ry="2" />
<text x="388.30" y="1775.5" ></text>
</g>
<g >
<title>__fget_files (245,926,797 samples, 0.21%)</title><rect x="190.4" y="1941" width="2.5" height="15.0" fill="rgb(254,29,4)" rx="2" ry="2" />
<text x="193.41" y="1951.5" ></text>
</g>
<g >
<title>read (423,934,041 samples, 0.37%)</title><rect x="293.2" y="2037" width="4.4" height="15.0" fill="rgb(206,92,52)" rx="2" ry="2" />
<text x="296.24" y="2047.5" ></text>
</g>
<g >
<title>LazyCompile:* /srv/service/lib/base_executor.js:237 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1701" width="10.2" height="15.0" fill="rgb(216,108,6)" rx="2" ry="2" />
<text x="115.99" y="1711.5" ></text>
</g>
<g >
<title>ksys_read (576,451,281 samples, 0.50%)</title><rect x="230.0" y="1989" width="5.9" height="15.0" fill="rgb(211,221,9)" rx="2" ry="2" />
<text x="233.00" y="1999.5" ></text>
</g>
<g >
<title>futex_wake (158,873,059 samples, 0.14%)</title><rect x="170.7" y="1973" width="1.6" height="15.0" fill="rgb(207,60,0)" rx="2" ry="2" />
<text x="173.66" y="1983.5" ></text>
</g>
<g >
<title>v8::Object::Set (141,496,336 samples, 0.12%)</title><rect x="91.8" y="1957" width="1.5" height="15.0" fill="rgb(226,225,19)" rx="2" ry="2" />
<text x="94.82" y="1967.5" ></text>
</g>
<g >
<title>[[vdso]] (21,836,477 samples, 0.02%)</title><rect x="221.6" y="2021" width="0.3" height="15.0" fill="rgb(242,125,54)" rx="2" ry="2" />
<text x="224.64" y="2031.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (29,268,169 samples, 0.03%)</title><rect x="33.3" y="1813" width="0.3" height="15.0" fill="rgb(209,137,17)" rx="2" ry="2" />
<text x="36.30" y="1823.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromises /srv/service/node_modules/bluebird/js/release/promise.js:718 (24,649,178 samples, 0.02%)</title><rect x="75.3" y="1845" width="0.3" height="15.0" fill="rgb(208,46,30)" rx="2" ry="2" />
<text x="78.35" y="1855.5" ></text>
</g>
<g >
<title>ctx_sched_in (506,932,561 samples, 0.44%)</title><rect x="48.0" y="1877" width="5.1" height="15.0" fill="rgb(236,199,27)" rx="2" ry="2" />
<text x="50.95" y="1887.5" ></text>
</g>
<g >
<title>filename_lookup (26,213,777 samples, 0.02%)</title><rect x="128.0" y="1957" width="0.3" height="15.0" fill="rgb(209,5,31)" rx="2" ry="2" />
<text x="131.00" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="933" width="1.7" height="15.0" fill="rgb(227,37,30)" rx="2" ry="2" />
<text x="128.36" y="943.5" ></text>
</g>
<g >
<title>rb_insert_color (61,267,995 samples, 0.05%)</title><rect x="157.9" y="1893" width="0.6" height="15.0" fill="rgb(233,6,4)" rx="2" ry="2" />
<text x="160.89" y="1903.5" ></text>
</g>
<g >
<title>timespec64_add_safe (23,509,142 samples, 0.02%)</title><rect x="218.3" y="1957" width="0.2" height="15.0" fill="rgb(240,188,52)" rx="2" ry="2" />
<text x="221.26" y="1967.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (26,551,759 samples, 0.02%)</title><rect x="165.0" y="1893" width="0.3" height="15.0" fill="rgb(219,105,5)" rx="2" ry="2" />
<text x="168.00" y="1903.5" ></text>
</g>
<g >
<title>sched_clock_cpu (29,833,241 samples, 0.03%)</title><rect x="351.5" y="1797" width="0.3" height="15.0" fill="rgb(235,111,24)" rx="2" ry="2" />
<text x="354.53" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="229" width="1.7" height="15.0" fill="rgb(252,205,28)" rx="2" ry="2" />
<text x="128.36" y="239.5" ></text>
</g>
<g >
<title>Function:~ :1 (24,649,178 samples, 0.02%)</title><rect x="75.3" y="1861" width="0.3" height="15.0" fill="rgb(221,159,0)" rx="2" ry="2" />
<text x="78.35" y="1871.5" ></text>
</g>
<g >
<title>pick_next_task_fair (243,636,808 samples, 0.21%)</title><rect x="352.5" y="1861" width="2.5" height="15.0" fill="rgb(222,132,29)" rx="2" ry="2" />
<text x="355.48" y="1871.5" ></text>
</g>
<g >
<title>EVP_MD_CTX_get0_md (30,801,705 samples, 0.03%)</title><rect x="149.7" y="2053" width="0.3" height="15.0" fill="rgb(222,4,41)" rx="2" ry="2" />
<text x="152.69" y="2063.5" ></text>
</g>
<g >
<title>v8::base::SharedMutex::UnlockExclusive (138,476,523 samples, 0.12%)</title><rect x="121.8" y="1621" width="1.4" height="15.0" fill="rgb(253,163,35)" rx="2" ry="2" />
<text x="124.78" y="1631.5" ></text>
</g>
<g >
<title>dequeue_entity (43,903,140 samples, 0.04%)</title><rect x="373.7" y="1893" width="0.4" height="15.0" fill="rgb(206,97,7)" rx="2" ry="2" />
<text x="376.66" y="1903.5" ></text>
</g>
<g >
<title>find_busiest_group (254,620,474 samples, 0.22%)</title><rect x="211.3" y="1861" width="2.6" height="15.0" fill="rgb(241,151,20)" rx="2" ry="2" />
<text x="214.28" y="1871.5" ></text>
</g>
<g >
<title>perf_swevent_add (23,618,792 samples, 0.02%)</title><rect x="374.7" y="1813" width="0.3" height="15.0" fill="rgb(231,135,29)" rx="2" ry="2" />
<text x="377.73" y="1823.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (28,335,436 samples, 0.02%)</title><rect x="329.6" y="2037" width="0.3" height="15.0" fill="rgb(248,225,16)" rx="2" ry="2" />
<text x="332.57" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock (27,572,863 samples, 0.02%)</title><rect x="27.1" y="1909" width="0.3" height="15.0" fill="rgb(251,6,48)" rx="2" ry="2" />
<text x="30.14" y="1919.5" ></text>
</g>
<g >
<title>[libcrypto.so.3] (147,823,002 samples, 0.13%)</title><rect x="179.7" y="2037" width="1.5" height="15.0" fill="rgb(210,59,15)" rx="2" ry="2" />
<text x="182.67" y="2047.5" ></text>
</g>
<g >
<title>dequeue_task_fair (35,910,834 samples, 0.03%)</title><rect x="302.1" y="1909" width="0.3" height="15.0" fill="rgb(248,164,35)" rx="2" ry="2" />
<text x="305.06" y="1919.5" ></text>
</g>
<g >
<title>futex_wait (297,196,088 samples, 0.26%)</title><rect x="332.8" y="1973" width="3.1" height="15.0" fill="rgb(217,124,7)" rx="2" ry="2" />
<text x="335.82" y="1983.5" ></text>
</g>
<g >
<title>psi_task_change (29,605,068 samples, 0.03%)</title><rect x="82.3" y="1893" width="0.3" height="15.0" fill="rgb(253,153,9)" rx="2" ry="2" />
<text x="85.28" y="1903.5" ></text>
</g>
<g >
<title>update_load_avg (21,203,607 samples, 0.02%)</title><rect x="334.8" y="1877" width="0.2" height="15.0" fill="rgb(219,66,8)" rx="2" ry="2" />
<text x="337.80" y="1887.5" ></text>
</g>
<g >
<title>pick_next_task_fair (110,848,538 samples, 0.10%)</title><rect x="138.2" y="1925" width="1.1" height="15.0" fill="rgb(252,212,9)" rx="2" ry="2" />
<text x="141.20" y="1935.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (1,686,756,642 samples, 1.46%)</title><rect x="36.1" y="1893" width="17.2" height="15.0" fill="rgb(229,26,53)" rx="2" ry="2" />
<text x="39.08" y="1903.5" ></text>
</g>
<g >
<title>ip6_xmit (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1861" width="1.4" height="15.0" fill="rgb(235,125,43)" rx="2" ry="2" />
<text x="330.52" y="1871.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (30,675,813 samples, 0.03%)</title><rect x="233.4" y="1893" width="0.3" height="15.0" fill="rgb(210,149,12)" rx="2" ry="2" />
<text x="236.38" y="1903.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (27,349,869 samples, 0.02%)</title><rect x="367.4" y="1893" width="0.2" height="15.0" fill="rgb(235,37,25)" rx="2" ry="2" />
<text x="370.36" y="1903.5" ></text>
</g>
<g >
<title>update_process_times (17,449,177 samples, 0.02%)</title><rect x="1014.0" y="1909" width="0.2" height="15.0" fill="rgb(225,137,28)" rx="2" ry="2" />
<text x="1017.03" y="1919.5" ></text>
</g>
<g >
<title>rd_kafka_timers_next (149,378,396 samples, 0.13%)</title><rect x="864.0" y="2021" width="1.5" height="15.0" fill="rgb(253,181,7)" rx="2" ry="2" />
<text x="867.02" y="2031.5" ></text>
</g>
<g >
<title>sock_sendmsg (393,471,822 samples, 0.34%)</title><rect x="249.9" y="1941" width="4.1" height="15.0" fill="rgb(250,166,51)" rx="2" ry="2" />
<text x="252.94" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1589" width="1.7" height="15.0" fill="rgb(217,59,29)" rx="2" ry="2" />
<text x="128.36" y="1599.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (22,272,198 samples, 0.02%)</title><rect x="385.5" y="1797" width="0.3" height="15.0" fill="rgb(232,150,26)" rx="2" ry="2" />
<text x="388.55" y="1807.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (28,624,151 samples, 0.02%)</title><rect x="319.8" y="1781" width="0.3" height="15.0" fill="rgb(253,168,50)" rx="2" ry="2" />
<text x="322.76" y="1791.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (22,963,911 samples, 0.02%)</title><rect x="54.4" y="1813" width="0.2" height="15.0" fill="rgb(241,215,34)" rx="2" ry="2" />
<text x="57.35" y="1823.5" ></text>
</g>
<g >
<title>task_tick_fair (20,956,988 samples, 0.02%)</title><rect x="385.5" y="1669" width="0.3" height="15.0" fill="rgb(253,71,0)" rx="2" ry="2" />
<text x="388.55" y="1679.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (1,323,673,018 samples, 1.15%)</title><rect x="156.6" y="1957" width="13.6" height="15.0" fill="rgb(213,86,46)" rx="2" ry="2" />
<text x="159.61" y="1967.5" ></text>
</g>
<g >
<title>rdk:broker1002 (3,123,916,636 samples, 2.71%)</title><rect x="300.3" y="2069" width="32.0" height="15.0" fill="rgb(239,21,44)" rx="2" ry="2" />
<text x="303.30" y="2079.5" >rd..</text>
</g>
<g >
<title>__pollwait (17,643,450 samples, 0.02%)</title><rect x="322.3" y="1893" width="0.2" height="15.0" fill="rgb(244,225,38)" rx="2" ry="2" />
<text x="325.27" y="1903.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_serve (12,689,170 samples, 0.01%)</title><rect x="326.0" y="2005" width="0.2" height="15.0" fill="rgb(206,169,54)" rx="2" ry="2" />
<text x="329.05" y="2015.5" ></text>
</g>
<g >
<title>ctx_sched_in (23,486,656 samples, 0.02%)</title><rect x="303.1" y="1861" width="0.3" height="15.0" fill="rgb(240,10,46)" rx="2" ry="2" />
<text x="306.14" y="1871.5" ></text>
</g>
<g >
<title>enqueue_task_fair (54,052,403 samples, 0.05%)</title><rect x="146.5" y="1845" width="0.5" height="15.0" fill="rgb(206,67,19)" rx="2" ry="2" />
<text x="149.48" y="1855.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (25,830,843 samples, 0.02%)</title><rect x="373.3" y="1925" width="0.2" height="15.0" fill="rgb(237,113,42)" rx="2" ry="2" />
<text x="376.25" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,475,768,184 samples, 3.02%)</title><rect x="185.3" y="2021" width="35.6" height="15.0" fill="rgb(231,174,12)" rx="2" ry="2" />
<text x="188.34" y="2031.5" >ent..</text>
</g>
<g >
<title>rdk:broker-1 (10,348,927,021 samples, 8.98%)</title><rect x="148.0" y="2069" width="106.0" height="15.0" fill="rgb(232,53,30)" rx="2" ry="2" />
<text x="151.01" y="2079.5" >rdk:broker-1</text>
</g>
<g >
<title>timerqueue_add (25,077,917 samples, 0.02%)</title><rect x="301.8" y="1909" width="0.3" height="15.0" fill="rgb(232,34,17)" rx="2" ry="2" />
<text x="304.80" y="1919.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (28,570,352 samples, 0.02%)</title><rect x="210.6" y="1893" width="0.2" height="15.0" fill="rgb(212,145,20)" rx="2" ry="2" />
<text x="213.55" y="1903.5" ></text>
</g>
<g >
<title>fsnotify (16,297,030 samples, 0.01%)</title><rect x="230.0" y="1957" width="0.2" height="15.0" fill="rgb(225,94,42)" rx="2" ry="2" />
<text x="233.00" y="1967.5" ></text>
</g>
<g >
<title>rb_next (10,829,915 samples, 0.01%)</title><rect x="385.1" y="1781" width="0.2" height="15.0" fill="rgb(254,93,41)" rx="2" ry="2" />
<text x="388.14" y="1791.5" ></text>
</g>
<g >
<title>do_softirq (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1813" width="1.4" height="15.0" fill="rgb(236,187,14)" rx="2" ry="2" />
<text x="330.52" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1989" width="1.7" height="15.0" fill="rgb(213,89,52)" rx="2" ry="2" />
<text x="128.36" y="1999.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1685" width="1.1" height="15.0" fill="rgb(248,192,48)" rx="2" ry="2" />
<text x="373.99" y="1695.5" ></text>
</g>
<g >
<title>read (680,829,895 samples, 0.59%)</title><rect x="229.7" y="2037" width="7.0" height="15.0" fill="rgb(230,89,28)" rx="2" ry="2" />
<text x="232.70" y="2047.5" ></text>
</g>
<g >
<title>pick_next_task_fair (480,922,144 samples, 0.42%)</title><rect x="211.0" y="1909" width="4.9" height="15.0" fill="rgb(249,170,50)" rx="2" ry="2" />
<text x="214.02" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1525" width="1.7" height="15.0" fill="rgb(223,110,31)" rx="2" ry="2" />
<text x="128.36" y="1535.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (123,453,141 samples, 0.11%)</title><rect x="1181.2" y="2005" width="1.3" height="15.0" fill="rgb(228,181,13)" rx="2" ry="2" />
<text x="1184.21" y="2015.5" ></text>
</g>
<g >
<title>schedule (163,638,700 samples, 0.14%)</title><rect x="302.1" y="1941" width="1.6" height="15.0" fill="rgb(254,93,52)" rx="2" ry="2" />
<text x="305.06" y="1951.5" ></text>
</g>
<g >
<title>tcp_poll (117,581,424 samples, 0.10%)</title><rect x="216.8" y="1941" width="1.2" height="15.0" fill="rgb(230,94,0)" rx="2" ry="2" />
<text x="219.82" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (1,583,573,438 samples, 1.37%)</title><rect x="398.2" y="1989" width="16.2" height="15.0" fill="rgb(237,96,28)" rx="2" ry="2" />
<text x="401.23" y="1999.5" ></text>
</g>
<g >
<title>add_wait_queue (71,855,538 samples, 0.06%)</title><rect x="217.1" y="1925" width="0.8" height="15.0" fill="rgb(241,121,37)" rx="2" ry="2" />
<text x="220.14" y="1935.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (121,443,493 samples, 0.11%)</title><rect x="139.3" y="2005" width="1.3" height="15.0" fill="rgb(236,60,0)" rx="2" ry="2" />
<text x="142.34" y="2015.5" ></text>
</g>
<g >
<title>switch_fpu_return (68,887,033 samples, 0.06%)</title><rect x="173.0" y="1989" width="0.7" height="15.0" fill="rgb(210,167,25)" rx="2" ry="2" />
<text x="175.95" y="1999.5" ></text>
</g>
<g >
<title>merge_sched_in (166,504,193 samples, 0.14%)</title><rect x="48.0" y="1845" width="1.7" height="15.0" fill="rgb(213,14,52)" rx="2" ry="2" />
<text x="50.97" y="1855.5" ></text>
</g>
<g >
<title>cfree (48,730,251 samples, 0.04%)</title><rect x="221.1" y="2037" width="0.5" height="15.0" fill="rgb(223,71,11)" rx="2" ry="2" />
<text x="224.14" y="2047.5" ></text>
</g>
<g >
<title>select_task_rq_fair (19,327,958 samples, 0.02%)</title><rect x="82.1" y="1909" width="0.2" height="15.0" fill="rgb(234,214,53)" rx="2" ry="2" />
<text x="85.08" y="1919.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (34,086,996 samples, 0.03%)</title><rect x="807.5" y="1941" width="0.4" height="15.0" fill="rgb(235,46,4)" rx="2" ry="2" />
<text x="810.51" y="1951.5" ></text>
</g>
<g >
<title>psi_group_change (69,713,565 samples, 0.06%)</title><rect x="169.5" y="1893" width="0.7" height="15.0" fill="rgb(227,86,6)" rx="2" ry="2" />
<text x="172.45" y="1903.5" ></text>
</g>
<g >
<title>load_balance (254,620,474 samples, 0.22%)</title><rect x="211.3" y="1877" width="2.6" height="15.0" fill="rgb(215,162,16)" rx="2" ry="2" />
<text x="214.28" y="1887.5" ></text>
</g>
<g >
<title>rb_next (42,361,665 samples, 0.04%)</title><rect x="459.6" y="1845" width="0.5" height="15.0" fill="rgb(210,181,26)" rx="2" ry="2" />
<text x="462.63" y="1855.5" ></text>
</g>
<g >
<title>hrtimer_init_sleeper (49,308,365 samples, 0.04%)</title><rect x="271.3" y="1925" width="0.5" height="15.0" fill="rgb(221,60,15)" rx="2" ry="2" />
<text x="274.34" y="1935.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (53,011,410 samples, 0.05%)</title><rect x="323.6" y="1941" width="0.6" height="15.0" fill="rgb(212,213,30)" rx="2" ry="2" />
<text x="326.62" y="1951.5" ></text>
</g>
<g >
<title>write (393,471,822 samples, 0.34%)</title><rect x="249.9" y="2053" width="4.1" height="15.0" fill="rgb(232,37,1)" rx="2" ry="2" />
<text x="252.94" y="2063.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (14,856,781 samples, 0.01%)</title><rect x="236.5" y="1973" width="0.2" height="15.0" fill="rgb(217,97,23)" rx="2" ry="2" />
<text x="239.52" y="1983.5" ></text>
</g>
<g >
<title>schedule (1,568,471,562 samples, 1.36%)</title><rect x="200.4" y="1941" width="16.0" height="15.0" fill="rgb(253,161,16)" rx="2" ry="2" />
<text x="203.39" y="1951.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (22,272,198 samples, 0.02%)</title><rect x="385.5" y="1749" width="0.3" height="15.0" fill="rgb(245,154,49)" rx="2" ry="2" />
<text x="388.55" y="1759.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (21,090,549 samples, 0.02%)</title><rect x="405.4" y="1749" width="0.3" height="15.0" fill="rgb(238,160,51)" rx="2" ry="2" />
<text x="408.44" y="1759.5" ></text>
</g>
<g >
<title>ep_poll_callback (216,931,016 samples, 0.19%)</title><rect x="145.5" y="1941" width="2.2" height="15.0" fill="rgb(223,137,44)" rx="2" ry="2" />
<text x="148.52" y="1951.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock (13,935,263 samples, 0.01%)</title><rect x="330.1" y="2053" width="0.2" height="15.0" fill="rgb(231,135,29)" rx="2" ry="2" />
<text x="333.14" y="2063.5" ></text>
</g>
<g >
<title>enqueue_task_fair (23,862,518 samples, 0.02%)</title><rect x="210.6" y="1749" width="0.2" height="15.0" fill="rgb(243,187,46)" rx="2" ry="2" />
<text x="213.57" y="1759.5" ></text>
</g>
<g >
<title>rd_kafka_transport_poll (139,675,611 samples, 0.12%)</title><rect x="291.8" y="2037" width="1.4" height="15.0" fill="rgb(226,156,5)" rx="2" ry="2" />
<text x="294.81" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (52,861,202 samples, 0.05%)</title><rect x="351.9" y="1845" width="0.6" height="15.0" fill="rgb(252,12,43)" rx="2" ry="2" />
<text x="354.94" y="1855.5" ></text>
</g>
<g >
<title>BIO_read (41,648,656 samples, 0.04%)</title><rect x="261.1" y="2037" width="0.4" height="15.0" fill="rgb(230,225,24)" rx="2" ry="2" />
<text x="264.06" y="2047.5" ></text>
</g>
<g >
<title>__dynamic_cast (42,383,418 samples, 0.04%)</title><rect x="87.9" y="2005" width="0.4" height="15.0" fill="rgb(207,7,27)" rx="2" ry="2" />
<text x="90.91" y="2015.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (205,301,466 samples, 0.18%)</title><rect x="301.6" y="1957" width="2.1" height="15.0" fill="rgb(241,94,27)" rx="2" ry="2" />
<text x="304.63" y="1967.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (106,908,892 samples, 0.09%)</title><rect x="172.6" y="2005" width="1.1" height="15.0" fill="rgb(215,124,23)" rx="2" ry="2" />
<text x="175.56" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (251,972,472 samples, 0.22%)</title><rect x="301.3" y="2037" width="2.6" height="15.0" fill="rgb(220,85,51)" rx="2" ry="2" />
<text x="304.32" y="2047.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2,418,111,179 samples, 2.10%)</title><rect x="964.0" y="2021" width="24.7" height="15.0" fill="rgb(218,26,6)" rx="2" ry="2" />
<text x="966.99" y="2031.5" >_..</text>
</g>
<g >
<title>asm_call_sysvec_on_stack (21,798,461 samples, 0.02%)</title><rect x="463.3" y="1893" width="0.2" height="15.0" fill="rgb(249,105,49)" rx="2" ry="2" />
<text x="466.26" y="1903.5" ></text>
</g>
<g >
<title>common_interrupt (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1829" width="0.1" height="15.0" fill="rgb(246,72,1)" rx="2" ry="2" />
<text x="354.83" y="1839.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (283,998,168 samples, 0.25%)</title><rect x="20.0" y="1941" width="2.9" height="15.0" fill="rgb(238,95,5)" rx="2" ry="2" />
<text x="23.03" y="1951.5" ></text>
</g>
<g >
<title>load_balance (125,073,013 samples, 0.11%)</title><rect x="280.7" y="1861" width="1.3" height="15.0" fill="rgb(231,203,41)" rx="2" ry="2" />
<text x="283.67" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="325" width="1.7" height="15.0" fill="rgb(208,223,18)" rx="2" ry="2" />
<text x="128.36" y="335.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (41,131,988 samples, 0.04%)</title><rect x="320.6" y="1829" width="0.5" height="15.0" fill="rgb(230,92,40)" rx="2" ry="2" />
<text x="323.63" y="1839.5" ></text>
</g>
<g >
<title>update_load_avg (40,983,090 samples, 0.04%)</title><rect x="203.8" y="1877" width="0.4" height="15.0" fill="rgb(210,29,20)" rx="2" ry="2" />
<text x="206.76" y="1887.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (270,025,183 samples, 0.23%)</title><rect x="207.0" y="1845" width="2.8" height="15.0" fill="rgb(240,150,29)" rx="2" ry="2" />
<text x="210.02" y="1855.5" ></text>
</g>
<g >
<title>task_tick_fair (17,449,177 samples, 0.02%)</title><rect x="1014.0" y="1877" width="0.2" height="15.0" fill="rgb(246,26,15)" rx="2" ry="2" />
<text x="1017.03" y="1887.5" ></text>
</g>
<g >
<title>update_curr (222,498,558 samples, 0.19%)</title><rect x="311.6" y="1845" width="2.2" height="15.0" fill="rgb(221,175,51)" rx="2" ry="2" />
<text x="314.56" y="1855.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (27,033,319 samples, 0.02%)</title><rect x="210.6" y="1861" width="0.2" height="15.0" fill="rgb(248,63,1)" rx="2" ry="2" />
<text x="213.57" y="1871.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1909" width="1.1" height="15.0" fill="rgb(238,219,8)" rx="2" ry="2" />
<text x="373.99" y="1919.5" ></text>
</g>
<g >
<title>native_write_msr (37,581,635 samples, 0.03%)</title><rect x="276.3" y="1845" width="0.4" height="15.0" fill="rgb(245,52,43)" rx="2" ry="2" />
<text x="279.27" y="1855.5" ></text>
</g>
<g >
<title>do_syscall_64 (393,471,822 samples, 0.34%)</title><rect x="249.9" y="2021" width="4.1" height="15.0" fill="rgb(238,228,14)" rx="2" ry="2" />
<text x="252.94" y="2031.5" ></text>
</g>
<g >
<title>rb_erase (87,408,617 samples, 0.08%)</title><rect x="199.5" y="1893" width="0.9" height="15.0" fill="rgb(250,178,26)" rx="2" ry="2" />
<text x="202.46" y="1903.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (49,507,902 samples, 0.04%)</title><rect x="412.7" y="1893" width="0.5" height="15.0" fill="rgb(205,126,2)" rx="2" ry="2" />
<text x="415.67" y="1903.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (140,489,587 samples, 0.12%)</title><rect x="407.4" y="1765" width="1.4" height="15.0" fill="rgb(206,198,54)" rx="2" ry="2" />
<text x="410.38" y="1775.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (114,205,807 samples, 0.10%)</title><rect x="962.8" y="1925" width="1.2" height="15.0" fill="rgb(227,229,46)" rx="2" ry="2" />
<text x="965.82" y="1935.5" ></text>
</g>
<g >
<title>rd_kafka_transport_recv (108,213,405 samples, 0.09%)</title><rect x="359.1" y="1989" width="1.1" height="15.0" fill="rgb(212,17,36)" rx="2" ry="2" />
<text x="362.09" y="1999.5" ></text>
</g>
<g >
<title>skb_release_head_state (104,503,294 samples, 0.09%)</title><rect x="293.2" y="1877" width="1.1" height="15.0" fill="rgb(218,23,8)" rx="2" ry="2" />
<text x="296.24" y="1887.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (27,850,660 samples, 0.02%)</title><rect x="81.8" y="1813" width="0.3" height="15.0" fill="rgb(231,110,48)" rx="2" ry="2" />
<text x="84.80" y="1823.5" ></text>
</g>
<g >
<title>timerqueue_add (52,493,533 samples, 0.05%)</title><rect x="271.8" y="1893" width="0.6" height="15.0" fill="rgb(207,64,51)" rx="2" ry="2" />
<text x="274.84" y="1903.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (1,414,396,824 samples, 1.23%)</title><rect x="443.6" y="1877" width="14.4" height="15.0" fill="rgb(210,115,43)" rx="2" ry="2" />
<text x="446.56" y="1887.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (27,850,660 samples, 0.02%)</title><rect x="81.8" y="1877" width="0.3" height="15.0" fill="rgb(251,5,6)" rx="2" ry="2" />
<text x="84.80" y="1887.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (93,241,391 samples, 0.08%)</title><rect x="53.4" y="1829" width="1.0" height="15.0" fill="rgb(225,14,40)" rx="2" ry="2" />
<text x="56.40" y="1839.5" ></text>
</g>
<g >
<title>perf_event_sched_in (30,736,608 samples, 0.03%)</title><rect x="351.5" y="1829" width="0.3" height="15.0" fill="rgb(251,24,2)" rx="2" ry="2" />
<text x="354.52" y="1839.5" ></text>
</g>
<g >
<title>v8::internal::compiler::PipelineImpl::ComputeScheduledGraph (125,329,974 samples, 0.11%)</title><rect x="15.8" y="1941" width="1.3" height="15.0" fill="rgb(250,168,36)" rx="2" ry="2" />
<text x="18.85" y="1951.5" ></text>
</g>
<g >
<title>do_syscall_64 (219,226,408 samples, 0.19%)</title><rect x="395.9" y="2021" width="2.2" height="15.0" fill="rgb(218,139,14)" rx="2" ry="2" />
<text x="398.85" y="2031.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (77,533,233 samples, 0.07%)</title><rect x="284.3" y="1957" width="0.8" height="15.0" fill="rgb(253,49,26)" rx="2" ry="2" />
<text x="287.28" y="1967.5" ></text>
</g>
<g >
<title>ip6_forward (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1669" width="1.1" height="15.0" fill="rgb(221,100,5)" rx="2" ry="2" />
<text x="373.99" y="1679.5" ></text>
</g>
<g >
<title>__x64_sys_poll (1,665,667,040 samples, 1.45%)</title><rect x="305.4" y="1957" width="17.1" height="15.0" fill="rgb(240,72,34)" rx="2" ry="2" />
<text x="308.40" y="1967.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (79,863,886 samples, 0.07%)</title><rect x="273.6" y="1845" width="0.8" height="15.0" fill="rgb(206,8,42)" rx="2" ry="2" />
<text x="276.61" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1221" width="1.7" height="15.0" fill="rgb(249,37,12)" rx="2" ry="2" />
<text x="128.36" y="1231.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (19,083,052 samples, 0.02%)</title><rect x="280.5" y="1813" width="0.2" height="15.0" fill="rgb(226,9,10)" rx="2" ry="2" />
<text x="283.47" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1237" width="1.7" height="15.0" fill="rgb(233,206,29)" rx="2" ry="2" />
<text x="128.36" y="1247.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (14,604,161 samples, 0.01%)</title><rect x="258.6" y="1797" width="0.2" height="15.0" fill="rgb(240,38,17)" rx="2" ry="2" />
<text x="261.62" y="1807.5" ></text>
</g>
<g >
<title>mtx_unlock@plt (98,802,205 samples, 0.09%)</title><rect x="1106.5" y="2053" width="1.0" height="15.0" fill="rgb(254,227,9)" rx="2" ry="2" />
<text x="1109.48" y="2063.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (37,581,635 samples, 0.03%)</title><rect x="276.3" y="1861" width="0.4" height="15.0" fill="rgb(248,223,21)" rx="2" ry="2" />
<text x="279.27" y="1871.5" ></text>
</g>
<g >
<title>[libcrypto.so.3] (126,231,636 samples, 0.11%)</title><rect x="264.8" y="2037" width="1.3" height="15.0" fill="rgb(238,146,20)" rx="2" ry="2" />
<text x="267.77" y="2047.5" ></text>
</g>
<g >
<title>LazyCompile:*processTimers node:internal/timers:492 (1,221,246,705 samples, 1.06%)</title><rect x="100.2" y="1941" width="12.5" height="15.0" fill="rgb(227,82,52)" rx="2" ry="2" />
<text x="103.21" y="1951.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (13,989,398 samples, 0.01%)</title><rect x="390.5" y="2037" width="0.1" height="15.0" fill="rgb(211,187,28)" rx="2" ry="2" />
<text x="393.47" y="2047.5" ></text>
</g>
<g >
<title>clock_gettime (45,712,955 samples, 0.04%)</title><rect x="221.6" y="2037" width="0.5" height="15.0" fill="rgb(247,120,52)" rx="2" ry="2" />
<text x="224.64" y="2047.5" ></text>
</g>
<g >
<title>__put_user_nocheck_4 (11,692,355 samples, 0.01%)</title><rect x="465.1" y="1973" width="0.1" height="15.0" fill="rgb(245,156,10)" rx="2" ry="2" />
<text x="468.10" y="1983.5" ></text>
</g>
<g >
<title>finish_task_switch (21,387,822 samples, 0.02%)</title><rect x="397.0" y="1909" width="0.2" height="15.0" fill="rgb(205,105,12)" rx="2" ry="2" />
<text x="400.02" y="1919.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (43,973,527 samples, 0.04%)</title><rect x="412.2" y="1909" width="0.5" height="15.0" fill="rgb(250,14,48)" rx="2" ry="2" />
<text x="415.20" y="1919.5" ></text>
</g>
<g >
<title>do_sys_poll (1,665,667,040 samples, 1.45%)</title><rect x="305.4" y="1941" width="17.1" height="15.0" fill="rgb(228,132,47)" rx="2" ry="2" />
<text x="308.40" y="1951.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (48,881,016 samples, 0.04%)</title><rect x="335.4" y="1813" width="0.5" height="15.0" fill="rgb(224,223,16)" rx="2" ry="2" />
<text x="338.36" y="1823.5" ></text>
</g>
<g >
<title>ttwu_do_activate (29,605,068 samples, 0.03%)</title><rect x="82.3" y="1909" width="0.3" height="15.0" fill="rgb(230,19,44)" rx="2" ry="2" />
<text x="85.28" y="1919.5" ></text>
</g>
<g >
<title>rd_kafka_broker_bufq_timeout_scan (262,696,822 samples, 0.23%)</title><rect x="241.7" y="2053" width="2.7" height="15.0" fill="rgb(247,75,1)" rx="2" ry="2" />
<text x="244.69" y="2063.5" ></text>
</g>
<g >
<title>clock_gettime (13,384,245,057 samples, 11.61%)</title><rect x="628.1" y="2021" width="137.0" height="15.0" fill="rgb(247,35,0)" rx="2" ry="2" />
<text x="631.06" y="2031.5" >clock_gettime</text>
</g>
<g >
<title>get_futex_key (20,983,313 samples, 0.02%)</title><rect x="68.1" y="1941" width="0.2" height="15.0" fill="rgb(254,3,49)" rx="2" ry="2" />
<text x="71.06" y="1951.5" ></text>
</g>
<g >
<title>futex_wait (135,043,743 samples, 0.12%)</title><rect x="395.9" y="1973" width="1.3" height="15.0" fill="rgb(235,123,32)" rx="2" ry="2" />
<text x="398.85" y="1983.5" ></text>
</g>
<g >
<title>write (104,981,425 samples, 0.09%)</title><rect x="371.0" y="2053" width="1.1" height="15.0" fill="rgb(235,11,27)" rx="2" ry="2" />
<text x="373.99" y="2063.5" ></text>
</g>
<g >
<title>_raw_spin_lock (106,847,506 samples, 0.09%)</title><rect x="276.7" y="1861" width="1.0" height="15.0" fill="rgb(234,32,50)" rx="2" ry="2" />
<text x="279.66" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1301" width="1.7" height="15.0" fill="rgb(211,109,26)" rx="2" ry="2" />
<text x="128.36" y="1311.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (121,256,260 samples, 0.11%)</title><rect x="53.3" y="1893" width="1.3" height="15.0" fill="rgb(229,157,41)" rx="2" ry="2" />
<text x="56.34" y="1903.5" ></text>
</g>
<g >
<title>[[vdso]] (8,832,177,272 samples, 7.66%)</title><rect x="873.6" y="2021" width="90.4" height="15.0" fill="rgb(232,27,31)" rx="2" ry="2" />
<text x="876.57" y="2031.5" >[[vdso]]</text>
</g>
<g >
<title>_raw_spin_lock_irq (12,498,599 samples, 0.01%)</title><rect x="53.4" y="1797" width="0.1" height="15.0" fill="rgb(207,140,1)" rx="2" ry="2" />
<text x="56.40" y="1807.5" ></text>
</g>
<g >
<title>dequeue_task_fair (271,367,125 samples, 0.24%)</title><rect x="158.9" y="1909" width="2.8" height="15.0" fill="rgb(219,72,35)" rx="2" ry="2" />
<text x="161.89" y="1919.5" ></text>
</g>
<g >
<title>select_estimate_accuracy (29,789,553 samples, 0.03%)</title><rect x="326.5" y="1941" width="0.3" height="15.0" fill="rgb(243,126,34)" rx="2" ry="2" />
<text x="329.49" y="1951.5" ></text>
</g>
<g >
<title>rd_kafka_q_serve.localalias (563,307,917 samples, 0.49%)</title><rect x="1184.2" y="2053" width="5.8" height="15.0" fill="rgb(240,111,16)" rx="2" ry="2" />
<text x="1187.23" y="2063.5" ></text>
</g>
<g >
<title>clock_gettime@plt (130,202,191 samples, 0.11%)</title><rect x="765.1" y="2021" width="1.3" height="15.0" fill="rgb(244,30,36)" rx="2" ry="2" />
<text x="768.09" y="2031.5" ></text>
</g>
<g >
<title>sched_clock_cpu (18,791,483 samples, 0.02%)</title><rect x="387.3" y="1797" width="0.2" height="15.0" fill="rgb(248,144,42)" rx="2" ry="2" />
<text x="390.34" y="1807.5" ></text>
</g>
<g >
<title>v8::internal::Execution::Call (95,884,613 samples, 0.08%)</title><rect x="75.0" y="1957" width="0.9" height="15.0" fill="rgb(234,134,54)" rx="2" ry="2" />
<text x="77.95" y="1967.5" ></text>
</g>
<g >
<title>run_rebalance_domains (22,537,234 samples, 0.02%)</title><rect x="226.9" y="1925" width="0.3" height="15.0" fill="rgb(205,103,40)" rx="2" ry="2" />
<text x="229.94" y="1935.5" ></text>
</g>
<g >
<title>__schedule (102,892,320 samples, 0.09%)</title><rect x="396.2" y="1925" width="1.0" height="15.0" fill="rgb(231,166,8)" rx="2" ry="2" />
<text x="399.18" y="1935.5" ></text>
</g>
<g >
<title>rdk:main (75,442,957,122 samples, 65.46%)</title><rect x="417.6" y="2069" width="772.4" height="15.0" fill="rgb(219,2,5)" rx="2" ry="2" />
<text x="420.60" y="2079.5" >rdk:main</text>
</g>
<g >
<title>[libnode.so.108] (1,221,050,399 samples, 1.06%)</title><rect x="112.7" y="1941" width="12.5" height="15.0" fill="rgb(207,194,24)" rx="2" ry="2" />
<text x="115.71" y="1951.5" ></text>
</g>
<g >
<title>[libc.so.6] (154,589,380 samples, 0.13%)</title><rect x="263.2" y="2037" width="1.6" height="15.0" fill="rgb(233,206,42)" rx="2" ry="2" />
<text x="266.19" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (25,331,477 samples, 0.02%)</title><rect x="195.4" y="1941" width="0.3" height="15.0" fill="rgb(251,29,46)" rx="2" ry="2" />
<text x="198.42" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (2,065,646,248 samples, 1.79%)</title><rect x="339.1" y="2021" width="21.1" height="15.0" fill="rgb(253,125,7)" rx="2" ry="2" />
<text x="342.05" y="2031.5" ></text>
</g>
<g >
<title>update_blocked_averages (103,505,572 samples, 0.09%)</title><rect x="386.0" y="1765" width="1.1" height="15.0" fill="rgb(218,188,10)" rx="2" ry="2" />
<text x="389.04" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1157" width="1.7" height="15.0" fill="rgb(225,96,29)" rx="2" ry="2" />
<text x="128.36" y="1167.5" ></text>
</g>
<g >
<title>futex_wait (235,577,742 samples, 0.20%)</title><rect x="301.3" y="1973" width="2.4" height="15.0" fill="rgb(242,88,54)" rx="2" ry="2" />
<text x="304.32" y="1983.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (114,205,807 samples, 0.10%)</title><rect x="962.8" y="2005" width="1.2" height="15.0" fill="rgb(213,104,30)" rx="2" ry="2" />
<text x="965.82" y="2015.5" ></text>
</g>
<g >
<title>update_curr (1,551,215,496 samples, 1.35%)</title><rect x="427.4" y="1877" width="15.9" height="15.0" fill="rgb(226,103,0)" rx="2" ry="2" />
<text x="430.43" y="1887.5" ></text>
</g>
<g >
<title>psi_group_change (22,230,844 samples, 0.02%)</title><rect x="56.0" y="1829" width="0.2" height="15.0" fill="rgb(217,32,34)" rx="2" ry="2" />
<text x="59.02" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="549" width="1.7" height="15.0" fill="rgb(219,226,46)" rx="2" ry="2" />
<text x="128.36" y="559.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (27,850,660 samples, 0.02%)</title><rect x="81.8" y="1829" width="0.3" height="15.0" fill="rgb(239,172,4)" rx="2" ry="2" />
<text x="84.80" y="1839.5" ></text>
</g>
<g >
<title>irq_exit_rcu (114,205,807 samples, 0.10%)</title><rect x="962.8" y="1973" width="1.2" height="15.0" fill="rgb(205,130,10)" rx="2" ry="2" />
<text x="965.82" y="1983.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (140,076,554 samples, 0.12%)</title><rect x="360.8" y="2037" width="1.4" height="15.0" fill="rgb(253,1,36)" rx="2" ry="2" />
<text x="363.77" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock (25,388,894 samples, 0.02%)</title><rect x="425.2" y="1957" width="0.2" height="15.0" fill="rgb(250,40,30)" rx="2" ry="2" />
<text x="428.17" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (24,285,801 samples, 0.02%)</title><rect x="147.8" y="2021" width="0.2" height="15.0" fill="rgb(235,86,46)" rx="2" ry="2" />
<text x="150.77" y="2031.5" ></text>
</g>
<g >
<title>try_to_wake_up (22,187,420 samples, 0.02%)</title><rect x="165.0" y="1781" width="0.2" height="15.0" fill="rgb(225,175,7)" rx="2" ry="2" />
<text x="168.01" y="1791.5" ></text>
</g>
<g >
<title>__x64_sys_poll (1,694,977,226 samples, 1.47%)</title><rect x="339.2" y="1941" width="17.3" height="15.0" fill="rgb(217,46,22)" rx="2" ry="2" />
<text x="342.19" y="1951.5" ></text>
</g>
<g >
<title>__update_load_avg_se (18,657,943 samples, 0.02%)</title><rect x="204.0" y="1861" width="0.2" height="15.0" fill="rgb(253,164,45)" rx="2" ry="2" />
<text x="206.99" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (2,107,124,473 samples, 1.83%)</title><rect x="266.9" y="2037" width="21.6" height="15.0" fill="rgb(247,14,6)" rx="2" ry="2" />
<text x="269.90" y="2047.5" >[..</text>
</g>
<g >
<title>tcp_recvmsg (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1909" width="1.4" height="15.0" fill="rgb(245,96,29)" rx="2" ry="2" />
<text x="330.52" y="1919.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (56,072,886 samples, 0.05%)</title><rect x="309.7" y="1909" width="0.6" height="15.0" fill="rgb(216,179,47)" rx="2" ry="2" />
<text x="312.71" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1893" width="1.7" height="15.0" fill="rgb(206,119,10)" rx="2" ry="2" />
<text x="128.36" y="1903.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (10,434,908 samples, 0.01%)</title><rect x="237.4" y="2053" width="0.1" height="15.0" fill="rgb(212,163,11)" rx="2" ry="2" />
<text x="240.36" y="2063.5" ></text>
</g>
<g >
<title>ttwu_do_activate (44,074,611 samples, 0.04%)</title><rect x="53.9" y="1765" width="0.4" height="15.0" fill="rgb(247,164,31)" rx="2" ry="2" />
<text x="56.88" y="1775.5" ></text>
</g>
<g >
<title>v8::internal::Factory::AllocateRawWithAllocationSite (10,635,804 samples, 0.01%)</title><rect x="125.4" y="37" width="0.1" height="15.0" fill="rgb(250,79,48)" rx="2" ry="2" />
<text x="128.36" y="47.5" ></text>
</g>
<g >
<title>rd_kafka_timers_run (296,668,771 samples, 0.26%)</title><rect x="865.5" y="2021" width="3.1" height="15.0" fill="rgb(223,152,14)" rx="2" ry="2" />
<text x="868.55" y="2031.5" ></text>
</g>
<g >
<title>[libc.so.6] (27,403,698 samples, 0.02%)</title><rect x="303.9" y="2037" width="0.3" height="15.0" fill="rgb(248,71,29)" rx="2" ry="2" />
<text x="306.90" y="2047.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (17,388,773 samples, 0.02%)</title><rect x="210.8" y="1877" width="0.2" height="15.0" fill="rgb(247,216,32)" rx="2" ry="2" />
<text x="213.84" y="1887.5" ></text>
</g>
<g >
<title>native_write_msr (1,414,396,824 samples, 1.23%)</title><rect x="443.6" y="1861" width="14.4" height="15.0" fill="rgb(246,200,24)" rx="2" ry="2" />
<text x="446.56" y="1871.5" ></text>
</g>
<g >
<title>v8::internal::Object::SetProperty (141,496,336 samples, 0.12%)</title><rect x="91.8" y="1925" width="1.5" height="15.0" fill="rgb(217,53,45)" rx="2" ry="2" />
<text x="94.82" y="1935.5" ></text>
</g>
<g >
<title>__bitmap_and (27,287,569 samples, 0.02%)</title><rect x="55.3" y="1861" width="0.3" height="15.0" fill="rgb(224,206,25)" rx="2" ry="2" />
<text x="58.35" y="1871.5" ></text>
</g>
<g >
<title>ctx_sched_in (28,540,463 samples, 0.02%)</title><rect x="385.3" y="1797" width="0.2" height="15.0" fill="rgb(218,218,18)" rx="2" ry="2" />
<text x="388.26" y="1807.5" ></text>
</g>
<g >
<title>__fget_files (83,786,492 samples, 0.07%)</title><rect x="377.9" y="1877" width="0.9" height="15.0" fill="rgb(251,15,17)" rx="2" ry="2" />
<text x="380.93" y="1887.5" ></text>
</g>
<g >
<title>v8::Object::New (10,635,804 samples, 0.01%)</title><rect x="125.4" y="69" width="0.1" height="15.0" fill="rgb(252,66,49)" rx="2" ry="2" />
<text x="128.36" y="79.5" ></text>
</g>
<g >
<title>update_load_avg (123,753,716 samples, 0.11%)</title><rect x="135.4" y="1893" width="1.2" height="15.0" fill="rgb(233,25,3)" rx="2" ry="2" />
<text x="138.38" y="1903.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (38,253,251 samples, 0.03%)</title><rect x="55.6" y="1861" width="0.4" height="15.0" fill="rgb(236,117,10)" rx="2" ry="2" />
<text x="58.63" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="533" width="1.7" height="15.0" fill="rgb(234,7,46)" rx="2" ry="2" />
<text x="128.36" y="543.5" ></text>
</g>
<g >
<title>rebalance_domains (114,205,807 samples, 0.10%)</title><rect x="962.8" y="1909" width="1.2" height="15.0" fill="rgb(237,30,14)" rx="2" ry="2" />
<text x="965.82" y="1919.5" ></text>
</g>
<g >
<title>__fdget_pos (17,976,314 samples, 0.02%)</title><rect x="1092.5" y="1973" width="0.1" height="15.0" fill="rgb(238,35,39)" rx="2" ry="2" />
<text x="1095.46" y="1983.5" ></text>
</g>
<g >
<title>reweight_entity (23,210,123 samples, 0.02%)</title><rect x="343.0" y="1829" width="0.2" height="15.0" fill="rgb(236,84,49)" rx="2" ry="2" />
<text x="345.98" y="1839.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (141,653,236 samples, 0.12%)</title><rect x="60.8" y="1813" width="1.4" height="15.0" fill="rgb(210,227,43)" rx="2" ry="2" />
<text x="63.77" y="1823.5" ></text>
</g>
<g >
<title>enqueue_entity (22,040,167 samples, 0.02%)</title><rect x="460.4" y="1733" width="0.2" height="15.0" fill="rgb(205,17,30)" rx="2" ry="2" />
<text x="463.38" y="1743.5" ></text>
</g>
<g >
<title>[[vdso]] (11,716,842 samples, 0.01%)</title><rect x="414.9" y="2037" width="0.1" height="15.0" fill="rgb(236,148,54)" rx="2" ry="2" />
<text x="417.86" y="2047.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (26,008,981 samples, 0.02%)</title><rect x="62.2" y="1845" width="0.3" height="15.0" fill="rgb(211,134,48)" rx="2" ry="2" />
<text x="65.22" y="1855.5" ></text>
</g>
<g >
<title>___slab_alloc (31,406,251 samples, 0.03%)</title><rect x="233.1" y="1829" width="0.3" height="15.0" fill="rgb(238,108,8)" rx="2" ry="2" />
<text x="236.06" y="1839.5" ></text>
</g>
<g >
<title>__schedule (1,210,647,645 samples, 1.05%)</title><rect x="342.8" y="1877" width="12.3" height="15.0" fill="rgb(241,57,52)" rx="2" ry="2" />
<text x="345.75" y="1887.5" ></text>
</g>
<g >
<title>update_blocked_averages (31,451,381 samples, 0.03%)</title><rect x="79.7" y="1813" width="0.3" height="15.0" fill="rgb(243,39,47)" rx="2" ry="2" />
<text x="82.71" y="1823.5" ></text>
</g>
<g >
<title>psi_task_change (20,562,304 samples, 0.02%)</title><rect x="462.4" y="1909" width="0.3" height="15.0" fill="rgb(216,48,4)" rx="2" ry="2" />
<text x="465.45" y="1919.5" ></text>
</g>
<g >
<title>LazyCompile:*processTimers node:internal/timers:492 (1,221,050,399 samples, 1.06%)</title><rect x="112.7" y="1925" width="12.5" height="15.0" fill="rgb(234,195,22)" rx="2" ry="2" />
<text x="115.71" y="1935.5" ></text>
</g>
<g >
<title>[libnode.so.108] (138,476,523 samples, 0.12%)</title><rect x="121.8" y="1669" width="1.4" height="15.0" fill="rgb(240,220,9)" rx="2" ry="2" />
<text x="124.78" y="1679.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (48,881,016 samples, 0.04%)</title><rect x="335.4" y="1797" width="0.5" height="15.0" fill="rgb(237,148,42)" rx="2" ry="2" />
<text x="338.36" y="1807.5" ></text>
</g>
<g >
<title>rd_kafka_consume0 (93,590,654 samples, 0.08%)</title><rect x="142.2" y="2053" width="1.0" height="15.0" fill="rgb(252,104,33)" rx="2" ry="2" />
<text x="145.24" y="2063.5" ></text>
</g>
<g >
<title>eventfd_write (216,931,016 samples, 0.19%)</title><rect x="145.5" y="1973" width="2.2" height="15.0" fill="rgb(226,167,21)" rx="2" ry="2" />
<text x="148.52" y="1983.5" ></text>
</g>
<g >
<title>v8::internal::Runtime_AllocateInYoungGeneration (138,476,523 samples, 0.12%)</title><rect x="121.8" y="1653" width="1.4" height="15.0" fill="rgb(219,26,49)" rx="2" ry="2" />
<text x="124.78" y="1663.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (34,432,858 samples, 0.03%)</title><rect x="407.0" y="1717" width="0.4" height="15.0" fill="rgb(208,175,37)" rx="2" ry="2" />
<text x="410.03" y="1727.5" ></text>
</g>
<g >
<title>update_blocked_averages (87,686,586 samples, 0.08%)</title><rect x="352.8" y="1781" width="0.9" height="15.0" fill="rgb(248,4,7)" rx="2" ry="2" />
<text x="355.77" y="1791.5" ></text>
</g>
<g >
<title>v8::internal::Object::SetPropertyWithAccessor (141,496,336 samples, 0.12%)</title><rect x="91.8" y="1909" width="1.5" height="15.0" fill="rgb(221,103,25)" rx="2" ry="2" />
<text x="94.82" y="1919.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromise0 /srv/service/node_modules/bluebird/js/release/promise.js:644 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1781" width="10.2" height="15.0" fill="rgb(227,162,5)" rx="2" ry="2" />
<text x="115.99" y="1791.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1829" width="1.4" height="15.0" fill="rgb(221,25,15)" rx="2" ry="2" />
<text x="330.52" y="1839.5" ></text>
</g>
<g >
<title>reweight_entity (28,444,409 samples, 0.02%)</title><rect x="426.7" y="1877" width="0.3" height="15.0" fill="rgb(225,33,8)" rx="2" ry="2" />
<text x="429.73" y="1887.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (68,887,033 samples, 0.06%)</title><rect x="173.0" y="1973" width="0.7" height="15.0" fill="rgb(227,228,23)" rx="2" ry="2" />
<text x="175.95" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="181" width="1.7" height="15.0" fill="rgb(223,62,14)" rx="2" ry="2" />
<text x="128.36" y="191.5" ></text>
</g>
<g >
<title>update_load_avg (26,008,981 samples, 0.02%)</title><rect x="62.2" y="1813" width="0.3" height="15.0" fill="rgb(221,148,15)" rx="2" ry="2" />
<text x="65.22" y="1823.5" ></text>
</g>
<g >
<title>apparmor_file_permission (171,622,652 samples, 0.15%)</title><rect x="234.1" y="1941" width="1.8" height="15.0" fill="rgb(251,19,31)" rx="2" ry="2" />
<text x="237.14" y="1951.5" ></text>
</g>
<g >
<title>event_sched_in (42,448,528 samples, 0.04%)</title><rect x="382.8" y="1765" width="0.4" height="15.0" fill="rgb(233,150,32)" rx="2" ry="2" />
<text x="385.80" y="1775.5" ></text>
</g>
<g >
<title>run_rebalance_domains (21,798,461 samples, 0.02%)</title><rect x="463.3" y="1861" width="0.2" height="15.0" fill="rgb(238,107,35)" rx="2" ry="2" />
<text x="466.26" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1605" width="1.7" height="15.0" fill="rgb(212,75,32)" rx="2" ry="2" />
<text x="128.36" y="1615.5" ></text>
</g>
<g >
<title>OPENSSL_init_crypto (83,768,887 samples, 0.07%)</title><rect x="178.2" y="2037" width="0.9" height="15.0" fill="rgb(209,78,20)" rx="2" ry="2" />
<text x="181.19" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (28,565,392 samples, 0.02%)</title><rect x="229.7" y="2021" width="0.3" height="15.0" fill="rgb(235,186,16)" rx="2" ry="2" />
<text x="232.70" y="2031.5" ></text>
</g>
<g >
<title>tcp_stream_memory_free (14,702,082 samples, 0.01%)</title><rect x="217.9" y="1925" width="0.1" height="15.0" fill="rgb(242,17,44)" rx="2" ry="2" />
<text x="220.87" y="1935.5" ></text>
</g>
<g >
<title>sock_poll (54,887,365 samples, 0.05%)</title><rect x="411.5" y="1877" width="0.5" height="15.0" fill="rgb(208,61,26)" rx="2" ry="2" />
<text x="414.45" y="1887.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (441,910,272 samples, 0.38%)</title><rect x="276.0" y="1877" width="4.5" height="15.0" fill="rgb(216,137,40)" rx="2" ry="2" />
<text x="278.95" y="1887.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (123,453,141 samples, 0.11%)</title><rect x="1181.2" y="1973" width="1.3" height="15.0" fill="rgb(233,106,27)" rx="2" ry="2" />
<text x="1184.21" y="1983.5" ></text>
</g>
<g >
<title>psi_group_change (18,791,483 samples, 0.02%)</title><rect x="387.3" y="1829" width="0.2" height="15.0" fill="rgb(254,179,1)" rx="2" ry="2" />
<text x="390.34" y="1839.5" ></text>
</g>
<g >
<title>__tcp_send_ack.part.0 (31,406,251 samples, 0.03%)</title><rect x="233.1" y="1893" width="0.3" height="15.0" fill="rgb(249,156,52)" rx="2" ry="2" />
<text x="236.06" y="1903.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1893" width="1.1" height="15.0" fill="rgb(227,98,39)" rx="2" ry="2" />
<text x="373.99" y="1903.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (27,895,421 samples, 0.02%)</title><rect x="112.7" y="1861" width="0.3" height="15.0" fill="rgb(210,144,11)" rx="2" ry="2" />
<text x="115.71" y="1871.5" ></text>
</g>
<g >
<title>ctx_sched_in (30,736,608 samples, 0.03%)</title><rect x="351.5" y="1813" width="0.3" height="15.0" fill="rgb(246,112,31)" rx="2" ry="2" />
<text x="354.52" y="1823.5" ></text>
</g>
<g >
<title>event_sched_in (160,383,694 samples, 0.14%)</title><rect x="48.0" y="1829" width="1.7" height="15.0" fill="rgb(209,223,44)" rx="2" ry="2" />
<text x="51.03" y="1839.5" ></text>
</g>
<g >
<title>pipe_read (75,279,426 samples, 0.07%)</title><rect x="230.2" y="1941" width="0.7" height="15.0" fill="rgb(220,110,47)" rx="2" ry="2" />
<text x="233.16" y="1951.5" ></text>
</g>
<g >
<title>futex_wait_setup (47,869,644 samples, 0.04%)</title><rect x="170.2" y="1957" width="0.5" height="15.0" fill="rgb(226,140,4)" rx="2" ry="2" />
<text x="173.17" y="1967.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1749" width="1.1" height="15.0" fill="rgb(206,0,38)" rx="2" ry="2" />
<text x="373.99" y="1759.5" ></text>
</g>
<g >
<title>finish_task_switch (297,760,810 samples, 0.26%)</title><rect x="406.0" y="1829" width="3.1" height="15.0" fill="rgb(251,115,51)" rx="2" ry="2" />
<text x="409.05" y="1839.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (19,087,684 samples, 0.02%)</title><rect x="63.2" y="1861" width="0.2" height="15.0" fill="rgb(213,71,23)" rx="2" ry="2" />
<text x="66.21" y="1871.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (93,241,391 samples, 0.08%)</title><rect x="53.4" y="1845" width="1.0" height="15.0" fill="rgb(229,61,51)" rx="2" ry="2" />
<text x="56.40" y="1855.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (17,449,177 samples, 0.02%)</title><rect x="1014.0" y="2005" width="0.2" height="15.0" fill="rgb(249,79,8)" rx="2" ry="2" />
<text x="1017.03" y="2015.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (22,537,234 samples, 0.02%)</title><rect x="226.9" y="2005" width="0.3" height="15.0" fill="rgb(220,47,28)" rx="2" ry="2" />
<text x="229.94" y="2015.5" ></text>
</g>
<g >
<title>poll_freewait (31,782,815 samples, 0.03%)</title><rect x="379.0" y="1893" width="0.4" height="15.0" fill="rgb(240,193,18)" rx="2" ry="2" />
<text x="382.04" y="1903.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (25,238,583 samples, 0.02%)</title><rect x="17.1" y="1909" width="0.3" height="15.0" fill="rgb(228,37,6)" rx="2" ry="2" />
<text x="20.13" y="1919.5" ></text>
</g>
<g >
<title>update_load_avg (34,086,996 samples, 0.03%)</title><rect x="807.5" y="1845" width="0.4" height="15.0" fill="rgb(214,15,27)" rx="2" ry="2" />
<text x="810.51" y="1855.5" ></text>
</g>
<g >
<title>reweight_entity (37,121,361 samples, 0.03%)</title><rect x="358.7" y="1813" width="0.4" height="15.0" fill="rgb(221,201,20)" rx="2" ry="2" />
<text x="361.71" y="1823.5" ></text>
</g>
<g >
<title>tcp_rcv_space_adjust (26,086,921 samples, 0.02%)</title><rect x="233.7" y="1893" width="0.3" height="15.0" fill="rgb(208,62,43)" rx="2" ry="2" />
<text x="236.70" y="1903.5" ></text>
</g>
<g >
<title>arch_perf_update_userpage (28,652,171 samples, 0.02%)</title><rect x="206.7" y="1781" width="0.3" height="15.0" fill="rgb(234,39,24)" rx="2" ry="2" />
<text x="209.70" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1493" width="1.7" height="15.0" fill="rgb(230,47,24)" rx="2" ry="2" />
<text x="128.36" y="1503.5" ></text>
</g>
<g >
<title>tick_sched_timer (37,121,361 samples, 0.03%)</title><rect x="358.7" y="1893" width="0.4" height="15.0" fill="rgb(243,120,26)" rx="2" ry="2" />
<text x="361.71" y="1903.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (247,339,740 samples, 0.21%)</title><rect x="382.7" y="1797" width="2.6" height="15.0" fill="rgb(235,41,23)" rx="2" ry="2" />
<text x="385.72" y="1807.5" ></text>
</g>
<g >
<title>clock_gettime (56,131,087 samples, 0.05%)</title><rect x="237.5" y="2053" width="0.5" height="15.0" fill="rgb(251,75,13)" rx="2" ry="2" />
<text x="240.47" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (10,179,111 samples, 0.01%)</title><rect x="398.0" y="2005" width="0.1" height="15.0" fill="rgb(247,57,51)" rx="2" ry="2" />
<text x="400.99" y="2015.5" ></text>
</g>
<g >
<title>read (115,492,152 samples, 0.10%)</title><rect x="366.5" y="2037" width="1.1" height="15.0" fill="rgb(213,161,16)" rx="2" ry="2" />
<text x="369.46" y="2047.5" ></text>
</g>
<g >
<title>Eval:~ :1 (27,895,421 samples, 0.02%)</title><rect x="112.7" y="1909" width="0.3" height="15.0" fill="rgb(254,72,25)" rx="2" ry="2" />
<text x="115.71" y="1919.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (43,253,581 samples, 0.04%)</title><rect x="168.4" y="1861" width="0.5" height="15.0" fill="rgb(214,13,12)" rx="2" ry="2" />
<text x="171.43" y="1871.5" ></text>
</g>
<g >
<title>do_softirq (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1781" width="1.1" height="15.0" fill="rgb(208,155,23)" rx="2" ry="2" />
<text x="373.99" y="1791.5" ></text>
</g>
<g >
<title>do_futex (378,360,877 samples, 0.33%)</title><rect x="78.7" y="1973" width="3.9" height="15.0" fill="rgb(237,56,17)" rx="2" ry="2" />
<text x="81.71" y="1983.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (96,969,148 samples, 0.08%)</title><rect x="315.9" y="1765" width="1.0" height="15.0" fill="rgb(215,7,23)" rx="2" ry="2" />
<text x="318.86" y="1775.5" ></text>
</g>
<g >
<title>_raw_spin_lock (28,008,466 samples, 0.02%)</title><rect x="156.3" y="1957" width="0.3" height="15.0" fill="rgb(228,189,21)" rx="2" ry="2" />
<text x="159.33" y="1967.5" ></text>
</g>
<g >
<title>do_syscall_64 (26,213,777 samples, 0.02%)</title><rect x="128.0" y="2005" width="0.3" height="15.0" fill="rgb(242,72,13)" rx="2" ry="2" />
<text x="131.00" y="2015.5" ></text>
</g>
<g >
<title>ip_finish_output2 (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1829" width="0.7" height="15.0" fill="rgb(220,144,21)" rx="2" ry="2" />
<text x="254.35" y="1839.5" ></text>
</g>
<g >
<title>rd_kafka_broker_consumer_serve (25,939,292 samples, 0.02%)</title><rect x="290.2" y="2037" width="0.2" height="15.0" fill="rgb(224,45,27)" rx="2" ry="2" />
<text x="293.16" y="2047.5" ></text>
</g>
<g >
<title>do_sys_poll (1,184,621,532 samples, 1.03%)</title><rect x="399.9" y="1893" width="12.1" height="15.0" fill="rgb(227,115,16)" rx="2" ry="2" />
<text x="402.89" y="1903.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (135,524,268 samples, 0.12%)</title><rect x="763.7" y="1973" width="1.4" height="15.0" fill="rgb(231,114,34)" rx="2" ry="2" />
<text x="766.70" y="1983.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (17,388,773 samples, 0.02%)</title><rect x="210.8" y="1861" width="0.2" height="15.0" fill="rgb(248,83,21)" rx="2" ry="2" />
<text x="213.84" y="1871.5" ></text>
</g>
<g >
<title>ctx_sched_in (23,623,954 samples, 0.02%)</title><rect x="319.5" y="1829" width="0.2" height="15.0" fill="rgb(225,42,11)" rx="2" ry="2" />
<text x="322.50" y="1839.5" ></text>
</g>
<g >
<title>pick_next_task_idle (98,614,105 samples, 0.09%)</title><rect x="63.6" y="1909" width="1.0" height="15.0" fill="rgb(211,17,35)" rx="2" ry="2" />
<text x="66.61" y="1919.5" ></text>
</g>
<g >
<title>native_sched_clock (24,166,173 samples, 0.02%)</title><rect x="385.3" y="1749" width="0.2" height="15.0" fill="rgb(243,61,44)" rx="2" ry="2" />
<text x="388.30" y="1759.5" ></text>
</g>
<g >
<title>_raw_spin_lock (21,025,581 samples, 0.02%)</title><rect x="406.4" y="1797" width="0.2" height="15.0" fill="rgb(210,146,52)" rx="2" ry="2" />
<text x="409.40" y="1807.5" ></text>
</g>
<g >
<title>update_min_vruntime (145,961,115 samples, 0.13%)</title><rect x="274.4" y="1845" width="1.5" height="15.0" fill="rgb(248,65,6)" rx="2" ry="2" />
<text x="277.43" y="1855.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (233,396,094 samples, 0.20%)</title><rect x="463.7" y="2021" width="2.4" height="15.0" fill="rgb(252,19,11)" rx="2" ry="2" />
<text x="466.68" y="2031.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (14,856,781 samples, 0.01%)</title><rect x="236.5" y="1989" width="0.2" height="15.0" fill="rgb(248,126,1)" rx="2" ry="2" />
<text x="239.52" y="1999.5" ></text>
</g>
<g >
<title>new_sync_write (393,471,822 samples, 0.34%)</title><rect x="249.9" y="1973" width="4.1" height="15.0" fill="rgb(222,26,33)" rx="2" ry="2" />
<text x="252.94" y="1983.5" ></text>
</g>
<g >
<title>newidle_balance (243,636,808 samples, 0.21%)</title><rect x="352.5" y="1845" width="2.5" height="15.0" fill="rgb(213,141,2)" rx="2" ry="2" />
<text x="355.48" y="1855.5" ></text>
</g>
<g >
<title>OSSL_PARAM_construct_octet_string (27,365,316 samples, 0.02%)</title><rect x="179.1" y="2037" width="0.2" height="15.0" fill="rgb(250,215,15)" rx="2" ry="2" />
<text x="182.05" y="2047.5" ></text>
</g>
<g >
<title>enqueue_task_fair (13,708,425 samples, 0.01%)</title><rect x="165.0" y="1749" width="0.2" height="15.0" fill="rgb(226,120,46)" rx="2" ry="2" />
<text x="168.03" y="1759.5" ></text>
</g>
<g >
<title>[libnode.so.108] (27,895,421 samples, 0.02%)</title><rect x="112.7" y="1877" width="0.3" height="15.0" fill="rgb(237,9,40)" rx="2" ry="2" />
<text x="115.71" y="1887.5" ></text>
</g>
<g >
<title>timerqueue_add (269,174,271 samples, 0.23%)</title><rect x="20.0" y="1909" width="2.8" height="15.0" fill="rgb(210,75,24)" rx="2" ry="2" />
<text x="23.03" y="1919.5" ></text>
</g>
<g >
<title>EVP_CIPHER_get_flags (36,973,579 samples, 0.03%)</title><rect x="149.3" y="2053" width="0.4" height="15.0" fill="rgb(206,167,53)" rx="2" ry="2" />
<text x="152.31" y="2063.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (27,850,660 samples, 0.02%)</title><rect x="81.8" y="1845" width="0.3" height="15.0" fill="rgb(229,46,29)" rx="2" ry="2" />
<text x="84.80" y="1855.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (29,019,047 samples, 0.03%)</title><rect x="395.9" y="1925" width="0.3" height="15.0" fill="rgb(220,5,49)" rx="2" ry="2" />
<text x="398.89" y="1935.5" ></text>
</g>
<g >
<title>update_curr (35,910,834 samples, 0.03%)</title><rect x="302.1" y="1877" width="0.3" height="15.0" fill="rgb(216,78,26)" rx="2" ry="2" />
<text x="305.06" y="1887.5" ></text>
</g>
<g >
<title>__get_user_8 (116,779,977 samples, 0.10%)</title><rect x="219.4" y="1957" width="1.2" height="15.0" fill="rgb(208,126,48)" rx="2" ry="2" />
<text x="222.45" y="1967.5" ></text>
</g>
<g >
<title>EVP_CIPHER_CTX_get0_cipher (25,603,492 samples, 0.02%)</title><rect x="262.5" y="2037" width="0.3" height="15.0" fill="rgb(241,4,20)" rx="2" ry="2" />
<text x="265.51" y="2047.5" ></text>
</g>
<g >
<title>napi_schedule_prep (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1717" width="1.1" height="15.0" fill="rgb(221,108,37)" rx="2" ry="2" />
<text x="298.98" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (5,469,688,081 samples, 4.75%)</title><rect x="75.9" y="2053" width="56.0" height="15.0" fill="rgb(209,168,30)" rx="2" ry="2" />
<text x="78.93" y="2063.5" >[unkn..</text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="645" width="1.7" height="15.0" fill="rgb(247,15,3)" rx="2" ry="2" />
<text x="128.36" y="655.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (17,045,921 samples, 0.01%)</title><rect x="327.1" y="2037" width="0.1" height="15.0" fill="rgb(246,56,17)" rx="2" ry="2" />
<text x="330.06" y="2047.5" ></text>
</g>
<g >
<title>rd_kafka_broker_bufq_timeout_scan (43,395,528 samples, 0.04%)</title><rect x="415.3" y="2053" width="0.5" height="15.0" fill="rgb(223,164,24)" rx="2" ry="2" />
<text x="418.31" y="2063.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (25,077,917 samples, 0.02%)</title><rect x="301.8" y="1925" width="0.3" height="15.0" fill="rgb(206,146,21)" rx="2" ry="2" />
<text x="304.80" y="1935.5" ></text>
</g>
<g >
<title>finish_task_switch (1,931,915,394 samples, 1.68%)</title><rect x="35.0" y="1909" width="19.8" height="15.0" fill="rgb(239,169,23)" rx="2" ry="2" />
<text x="38.01" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="661" width="1.7" height="15.0" fill="rgb(213,115,22)" rx="2" ry="2" />
<text x="128.36" y="671.5" ></text>
</g>
<g >
<title>select_estimate_accuracy (69,929,926 samples, 0.06%)</title><rect x="410.7" y="1877" width="0.8" height="15.0" fill="rgb(224,20,19)" rx="2" ry="2" />
<text x="413.74" y="1887.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1813" width="1.1" height="15.0" fill="rgb(245,71,12)" rx="2" ry="2" />
<text x="298.98" y="1823.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (52,493,533 samples, 0.05%)</title><rect x="271.8" y="1925" width="0.6" height="15.0" fill="rgb(247,20,15)" rx="2" ry="2" />
<text x="274.84" y="1935.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (27,850,660 samples, 0.02%)</title><rect x="81.8" y="1909" width="0.3" height="15.0" fill="rgb(217,210,1)" rx="2" ry="2" />
<text x="84.80" y="1919.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1781" width="0.1" height="15.0" fill="rgb(214,209,8)" rx="2" ry="2" />
<text x="354.83" y="1791.5" ></text>
</g>
<g >
<title>Function:~ :1 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1877" width="10.2" height="15.0" fill="rgb(212,153,35)" rx="2" ry="2" />
<text x="115.99" y="1887.5" ></text>
</g>
<g >
<title>ctx_sched_in (197,932,219 samples, 0.17%)</title><rect x="458.0" y="1877" width="2.1" height="15.0" fill="rgb(218,91,19)" rx="2" ry="2" />
<text x="461.04" y="1887.5" ></text>
</g>
<g >
<title>poll_select_set_timeout (17,642,395 samples, 0.02%)</title><rect x="356.4" y="1925" width="0.1" height="15.0" fill="rgb(208,148,24)" rx="2" ry="2" />
<text x="359.37" y="1935.5" ></text>
</g>
<g >
<title>pick_next_task_fair (124,048,700 samples, 0.11%)</title><rect x="461.2" y="1909" width="1.2" height="15.0" fill="rgb(248,186,46)" rx="2" ry="2" />
<text x="464.18" y="1919.5" ></text>
</g>
<g >
<title>sched_clock_cpu (23,486,656 samples, 0.02%)</title><rect x="303.1" y="1845" width="0.3" height="15.0" fill="rgb(243,59,25)" rx="2" ry="2" />
<text x="306.14" y="1855.5" ></text>
</g>
<g >
<title>__remove_hrtimer (87,408,617 samples, 0.08%)</title><rect x="199.5" y="1925" width="0.9" height="15.0" fill="rgb(227,114,50)" rx="2" ry="2" />
<text x="202.46" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1861" width="1.7" height="15.0" fill="rgb(239,15,46)" rx="2" ry="2" />
<text x="128.36" y="1871.5" ></text>
</g>
<g >
<title>[libcrypto.so.3] (28,868,679 samples, 0.03%)</title><rect x="304.2" y="2037" width="0.3" height="15.0" fill="rgb(216,53,41)" rx="2" ry="2" />
<text x="307.18" y="2047.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1893" width="1.4" height="15.0" fill="rgb(245,51,22)" rx="2" ry="2" />
<text x="330.52" y="1903.5" ></text>
</g>
<g >
<title>__put_user_nocheck_4 (26,638,112 samples, 0.02%)</title><rect x="323.3" y="1925" width="0.3" height="15.0" fill="rgb(254,63,40)" rx="2" ry="2" />
<text x="326.34" y="1935.5" ></text>
</g>
<g >
<title>[libc.so.6] (551,316,730 samples, 0.48%)</title><rect x="254.0" y="2053" width="5.6" height="15.0" fill="rgb(208,109,28)" rx="2" ry="2" />
<text x="256.97" y="2063.5" ></text>
</g>
<g >
<title>rd_kafka_broker_timeout_scan (52,743,794 samples, 0.05%)</title><rect x="369.8" y="2053" width="0.5" height="15.0" fill="rgb(243,161,28)" rx="2" ry="2" />
<text x="372.80" y="2063.5" ></text>
</g>
<g >
<title>[libnode.so.108] (136,487,207 samples, 0.12%)</title><rect x="123.5" y="1877" width="1.4" height="15.0" fill="rgb(206,59,17)" rx="2" ry="2" />
<text x="126.50" y="1887.5" ></text>
</g>
<g >
<title>rd_kafka_buf_finalize.constprop.0 (14,727,483 samples, 0.01%)</title><rect x="1014.2" y="2037" width="0.2" height="15.0" fill="rgb(239,196,13)" rx="2" ry="2" />
<text x="1017.21" y="2047.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (73,762,237 samples, 0.06%)</title><rect x="279.6" y="1829" width="0.8" height="15.0" fill="rgb(237,22,48)" rx="2" ry="2" />
<text x="282.63" y="1839.5" ></text>
</g>
<g >
<title>inet6_recvmsg (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1925" width="1.4" height="15.0" fill="rgb(220,34,16)" rx="2" ry="2" />
<text x="330.52" y="1935.5" ></text>
</g>
<g >
<title>__seccomp_filter (119,857,351 samples, 0.10%)</title><rect x="466.7" y="1973" width="1.2" height="15.0" fill="rgb(230,72,5)" rx="2" ry="2" />
<text x="469.72" y="1983.5" ></text>
</g>
<g >
<title>[libnode.so.108] (24,649,178 samples, 0.02%)</title><rect x="75.3" y="1749" width="0.3" height="15.0" fill="rgb(231,178,48)" rx="2" ry="2" />
<text x="78.35" y="1759.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,388,802,328 samples, 1.20%)</title><rect x="513.3" y="1893" width="14.2" height="15.0" fill="rgb(235,200,18)" rx="2" ry="2" />
<text x="516.32" y="1903.5" ></text>
</g>
<g >
<title>do_softirq (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1797" width="0.7" height="15.0" fill="rgb(210,188,49)" rx="2" ry="2" />
<text x="254.35" y="1807.5" ></text>
</g>
<g >
<title>pollwake (72,142,892 samples, 0.06%)</title><rect x="1096.5" y="1893" width="0.8" height="15.0" fill="rgb(232,107,29)" rx="2" ry="2" />
<text x="1099.54" y="1903.5" ></text>
</g>
<g >
<title>rd_kafka_recv (27,758,130 samples, 0.02%)</title><rect x="324.5" y="2005" width="0.3" height="15.0" fill="rgb(221,28,49)" rx="2" ry="2" />
<text x="327.47" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="837" width="1.7" height="15.0" fill="rgb(236,82,53)" rx="2" ry="2" />
<text x="128.36" y="847.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (172,574,804 samples, 0.15%)</title><rect x="219.2" y="1989" width="1.7" height="15.0" fill="rgb(230,78,36)" rx="2" ry="2" />
<text x="222.15" y="1999.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (24,885,032 samples, 0.02%)</title><rect x="220.7" y="1957" width="0.2" height="15.0" fill="rgb(219,111,18)" rx="2" ry="2" />
<text x="223.67" y="1967.5" ></text>
</g>
<g >
<title>[libc.so.6] (326,067,758 samples, 0.28%)</title><rect x="300.6" y="2053" width="3.3" height="15.0" fill="rgb(219,143,4)" rx="2" ry="2" />
<text x="303.56" y="2063.5" ></text>
</g>
<g >
<title>perf_iterate_sb (25,238,583 samples, 0.02%)</title><rect x="17.1" y="1861" width="0.3" height="15.0" fill="rgb(249,149,37)" rx="2" ry="2" />
<text x="20.13" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (14,563,542 samples, 0.01%)</title><rect x="236.2" y="1957" width="0.2" height="15.0" fill="rgb(213,208,32)" rx="2" ry="2" />
<text x="239.21" y="1967.5" ></text>
</g>
<g >
<title>perf_swevent_add (37,301,500 samples, 0.03%)</title><rect x="382.9" y="1749" width="0.3" height="15.0" fill="rgb(249,215,12)" rx="2" ry="2" />
<text x="385.85" y="1759.5" ></text>
</g>
<g >
<title>rd_kafka_recv (243,128,057 samples, 0.21%)</title><rect x="285.4" y="2021" width="2.5" height="15.0" fill="rgb(205,179,42)" rx="2" ry="2" />
<text x="288.40" y="2031.5" ></text>
</g>
<g >
<title>write (491,991,958 samples, 0.43%)</title><rect x="1092.5" y="2037" width="5.0" height="15.0" fill="rgb(232,117,51)" rx="2" ry="2" />
<text x="1095.46" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (26,213,777 samples, 0.02%)</title><rect x="128.0" y="2021" width="0.3" height="15.0" fill="rgb(233,45,12)" rx="2" ry="2" />
<text x="131.00" y="2031.5" ></text>
</g>
<g >
<title>[libc.so.6] (433,213,181 samples, 0.38%)</title><rect x="372.1" y="2053" width="4.4" height="15.0" fill="rgb(239,24,19)" rx="2" ry="2" />
<text x="375.07" y="2063.5" ></text>
</g>
<g >
<title>futex_wake (27,624,754 samples, 0.02%)</title><rect x="68.4" y="1973" width="0.3" height="15.0" fill="rgb(218,135,13)" rx="2" ry="2" />
<text x="71.44" y="1983.5" ></text>
</g>
<g >
<title>dequeue_entity (1,620,223,581 samples, 1.41%)</title><rect x="426.7" y="1893" width="16.6" height="15.0" fill="rgb(246,9,40)" rx="2" ry="2" />
<text x="429.73" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="421" width="1.7" height="15.0" fill="rgb(218,62,51)" rx="2" ry="2" />
<text x="128.36" y="431.5" ></text>
</g>
<g >
<title>update_process_times (20,956,988 samples, 0.02%)</title><rect x="385.5" y="1701" width="0.3" height="15.0" fill="rgb(227,68,11)" rx="2" ry="2" />
<text x="388.55" y="1711.5" ></text>
</g>
<g >
<title>scheduler_tick (17,449,177 samples, 0.02%)</title><rect x="1014.0" y="1893" width="0.2" height="15.0" fill="rgb(240,137,29)" rx="2" ry="2" />
<text x="1017.03" y="1903.5" ></text>
</g>
<g >
<title>v8::internal::JSArray::MayHaveReadOnlyLength (141,496,336 samples, 0.12%)</title><rect x="91.8" y="1877" width="1.5" height="15.0" fill="rgb(251,61,11)" rx="2" ry="2" />
<text x="94.82" y="1887.5" ></text>
</g>
<g >
<title>[libnode.so.108] (95,884,613 samples, 0.08%)</title><rect x="75.0" y="1941" width="0.9" height="15.0" fill="rgb(240,176,49)" rx="2" ry="2" />
<text x="77.95" y="1951.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1781" width="1.4" height="15.0" fill="rgb(250,131,11)" rx="2" ry="2" />
<text x="330.52" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1509" width="1.7" height="15.0" fill="rgb(237,198,47)" rx="2" ry="2" />
<text x="128.36" y="1519.5" ></text>
</g>
<g >
<title>[unknown] (1,363,674,621 samples, 1.18%)</title><rect x="376.5" y="2021" width="14.0" height="15.0" fill="rgb(220,221,39)" rx="2" ry="2" />
<text x="379.50" y="2031.5" ></text>
</g>
<g >
<title>find_busiest_group (115,294,184 samples, 0.10%)</title><rect x="352.5" y="1813" width="1.2" height="15.0" fill="rgb(207,176,22)" rx="2" ry="2" />
<text x="355.48" y="1823.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (85,995,228 samples, 0.07%)</title><rect x="213.0" y="1813" width="0.9" height="15.0" fill="rgb(224,159,2)" rx="2" ry="2" />
<text x="216.01" y="1823.5" ></text>
</g>
<g >
<title>[[vdso]] (7,429,456,986 samples, 6.45%)</title><rect x="660.2" y="2005" width="76.0" height="15.0" fill="rgb(253,210,44)" rx="2" ry="2" />
<text x="663.18" y="2015.5" >[[vdso]]</text>
</g>
<g >
<title>EVP_CIPHER_get_block_size (40,761,850 samples, 0.04%)</title><rect x="262.8" y="2037" width="0.4" height="15.0" fill="rgb(218,130,26)" rx="2" ry="2" />
<text x="265.77" y="2047.5" ></text>
</g>
<g >
<title>dequeue_entity (176,421,733 samples, 0.15%)</title><rect x="202.4" y="1893" width="1.8" height="15.0" fill="rgb(250,125,38)" rx="2" ry="2" />
<text x="205.37" y="1903.5" ></text>
</g>
<g >
<title>try_to_wake_up (175,352,608 samples, 0.15%)</title><rect x="80.8" y="1925" width="1.8" height="15.0" fill="rgb(231,16,15)" rx="2" ry="2" />
<text x="83.79" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="917" width="1.7" height="15.0" fill="rgb(225,57,43)" rx="2" ry="2" />
<text x="128.36" y="927.5" ></text>
</g>
<g >
<title>[unknown] (13,941,181,614 samples, 12.10%)</title><rect x="484.0" y="2021" width="142.8" height="15.0" fill="rgb(212,169,35)" rx="2" ry="2" />
<text x="487.03" y="2031.5" >[unknown]</text>
</g>
<g >
<title>__ip_queue_xmit (135,467,584 samples, 0.12%)</title><rect x="294.6" y="1877" width="1.4" height="15.0" fill="rgb(247,122,1)" rx="2" ry="2" />
<text x="297.60" y="1887.5" ></text>
</g>
<g >
<title>rd_kafka_broker_consumer_serve (62,715,490 samples, 0.05%)</title><rect x="415.8" y="2053" width="0.6" height="15.0" fill="rgb(238,173,39)" rx="2" ry="2" />
<text x="418.76" y="2063.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (14,444,043 samples, 0.01%)</title><rect x="391.7" y="2053" width="0.2" height="15.0" fill="rgb(222,47,9)" rx="2" ry="2" />
<text x="394.71" y="2063.5" ></text>
</g>
<g >
<title>[libssl.so.3] (144,009,641 samples, 0.12%)</title><rect x="182.3" y="2005" width="1.4" height="15.0" fill="rgb(238,79,44)" rx="2" ry="2" />
<text x="185.26" y="2015.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (2,993,655,891 samples, 2.60%)</title><rect x="1107.7" y="2053" width="30.7" height="15.0" fill="rgb(254,200,43)" rx="2" ry="2" />
<text x="1110.74" y="2063.5" >pt..</text>
</g>
<g >
<title>update_curr (21,151,350 samples, 0.02%)</title><rect x="382.1" y="1813" width="0.2" height="15.0" fill="rgb(245,179,30)" rx="2" ry="2" />
<text x="385.12" y="1823.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (187,441,907 samples, 0.16%)</title><rect x="356.5" y="1957" width="2.0" height="15.0" fill="rgb(245,205,14)" rx="2" ry="2" />
<text x="359.55" y="1967.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (103,264,119 samples, 0.09%)</title><rect x="401.9" y="1861" width="1.1" height="15.0" fill="rgb(212,124,36)" rx="2" ry="2" />
<text x="404.91" y="1871.5" ></text>
</g>
<g >
<title>Function:^tryConvertToPromise /srv/service/node_modules/bluebird/js/release/thenables.js:7 (24,649,178 samples, 0.02%)</title><rect x="75.3" y="1765" width="0.3" height="15.0" fill="rgb(212,107,54)" rx="2" ry="2" />
<text x="78.35" y="1775.5" ></text>
</g>
<g >
<title>__tls_get_addr (27,601,634 samples, 0.02%)</title><rect x="367.6" y="2053" width="0.3" height="15.0" fill="rgb(237,204,34)" rx="2" ry="2" />
<text x="370.64" y="2063.5" ></text>
</g>
<g >
<title>futex_wait_setup (180,747,411 samples, 0.16%)</title><rect x="66.4" y="1957" width="1.9" height="15.0" fill="rgb(242,189,40)" rx="2" ry="2" />
<text x="69.43" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="565" width="1.7" height="15.0" fill="rgb(210,69,31)" rx="2" ry="2" />
<text x="128.36" y="575.5" ></text>
</g>
<g >
<title>node::InternalCallbackScope::~InternalCallbackScope (141,496,336 samples, 0.12%)</title><rect x="91.8" y="2005" width="1.5" height="15.0" fill="rgb(251,83,12)" rx="2" ry="2" />
<text x="94.82" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (27,862,497 samples, 0.02%)</title><rect x="154.9" y="2037" width="0.2" height="15.0" fill="rgb(250,102,15)" rx="2" ry="2" />
<text x="157.85" y="2047.5" ></text>
</g>
<g >
<title>reweight_entity (123,453,141 samples, 0.11%)</title><rect x="1181.2" y="1877" width="1.3" height="15.0" fill="rgb(253,19,25)" rx="2" ry="2" />
<text x="1184.21" y="1887.5" ></text>
</g>
<g >
<title>__seccomp_filter (27,577,001 samples, 0.02%)</title><rect x="172.3" y="1989" width="0.3" height="15.0" fill="rgb(244,217,0)" rx="2" ry="2" />
<text x="175.28" y="1999.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (96,049,775 samples, 0.08%)</title><rect x="280.7" y="1797" width="1.0" height="15.0" fill="rgb(220,171,31)" rx="2" ry="2" />
<text x="283.67" y="1807.5" ></text>
</g>
<g >
<title>perf_swevent_add (174,519,247 samples, 0.15%)</title><rect x="277.8" y="1797" width="1.8" height="15.0" fill="rgb(219,122,15)" rx="2" ry="2" />
<text x="280.85" y="1807.5" ></text>
</g>
<g >
<title>pipe_poll (53,561,283 samples, 0.05%)</title><rect x="309.0" y="1925" width="0.6" height="15.0" fill="rgb(237,202,4)" rx="2" ry="2" />
<text x="312.03" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="901" width="1.7" height="15.0" fill="rgb(251,99,33)" rx="2" ry="2" />
<text x="128.36" y="911.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (34,086,996 samples, 0.03%)</title><rect x="807.5" y="1973" width="0.4" height="15.0" fill="rgb(213,4,35)" rx="2" ry="2" />
<text x="810.51" y="1983.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (55,177,038 samples, 0.05%)</title><rect x="323.1" y="1941" width="0.5" height="15.0" fill="rgb(252,214,36)" rx="2" ry="2" />
<text x="326.05" y="1951.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (31,651,377 samples, 0.03%)</title><rect x="319.7" y="1797" width="0.4" height="15.0" fill="rgb(238,65,12)" rx="2" ry="2" />
<text x="322.74" y="1807.5" ></text>
</g>
<g >
<title>native_write_msr (24,310,607 samples, 0.02%)</title><rect x="205.3" y="1861" width="0.3" height="15.0" fill="rgb(212,109,10)" rx="2" ry="2" />
<text x="208.32" y="1871.5" ></text>
</g>
<g >
<title>[libc.so.6] (24,495,724 samples, 0.02%)</title><rect x="74.7" y="2005" width="0.3" height="15.0" fill="rgb(244,168,0)" rx="2" ry="2" />
<text x="77.70" y="2015.5" ></text>
</g>
<g >
<title>Function:~ :1 (38,595,760 samples, 0.03%)</title><rect x="75.0" y="1861" width="0.3" height="15.0" fill="rgb(247,190,0)" rx="2" ry="2" />
<text x="77.95" y="1871.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,550,391,022 samples, 1.35%)</title><rect x="468.2" y="2021" width="15.8" height="15.0" fill="rgb(242,111,54)" rx="2" ry="2" />
<text x="471.16" y="2031.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (20,655,430 samples, 0.02%)</title><rect x="203.5" y="1861" width="0.3" height="15.0" fill="rgb(205,14,18)" rx="2" ry="2" />
<text x="206.55" y="1871.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (114,205,807 samples, 0.10%)</title><rect x="962.8" y="1941" width="1.2" height="15.0" fill="rgb(213,197,52)" rx="2" ry="2" />
<text x="965.82" y="1951.5" ></text>
</g>
<g >
<title>ctx_sched_in (19,826,309 samples, 0.02%)</title><rect x="53.1" y="1861" width="0.2" height="15.0" fill="rgb(233,229,19)" rx="2" ry="2" />
<text x="56.14" y="1871.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (17,529,933 samples, 0.02%)</title><rect x="396.2" y="1909" width="0.2" height="15.0" fill="rgb(230,166,22)" rx="2" ry="2" />
<text x="399.18" y="1919.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (45,862,448 samples, 0.04%)</title><rect x="206.6" y="1797" width="0.4" height="15.0" fill="rgb(205,51,11)" rx="2" ry="2" />
<text x="209.55" y="1807.5" ></text>
</g>
<g >
<title>psi_group_change (16,648,677 samples, 0.01%)</title><rect x="376.2" y="1893" width="0.2" height="15.0" fill="rgb(209,157,20)" rx="2" ry="2" />
<text x="379.23" y="1903.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1637" width="0.1" height="15.0" fill="rgb(254,12,43)" rx="2" ry="2" />
<text x="354.83" y="1647.5" ></text>
</g>
<g >
<title>do_epoll_wait (392,175,600 samples, 0.34%)</title><rect x="135.3" y="1989" width="4.0" height="15.0" fill="rgb(232,202,26)" rx="2" ry="2" />
<text x="138.32" y="1999.5" ></text>
</g>
<g >
<title>load_balance (124,048,700 samples, 0.11%)</title><rect x="461.2" y="1877" width="1.2" height="15.0" fill="rgb(241,107,3)" rx="2" ry="2" />
<text x="464.18" y="1887.5" ></text>
</g>
<g >
<title>record_times (18,791,483 samples, 0.02%)</title><rect x="387.3" y="1813" width="0.2" height="15.0" fill="rgb(206,186,53)" rx="2" ry="2" />
<text x="390.34" y="1823.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (25,238,583 samples, 0.02%)</title><rect x="17.1" y="1957" width="0.3" height="15.0" fill="rgb(216,91,32)" rx="2" ry="2" />
<text x="20.13" y="1967.5" ></text>
</g>
<g >
<title>run_rebalance_domains (22,963,911 samples, 0.02%)</title><rect x="54.4" y="1797" width="0.2" height="15.0" fill="rgb(226,132,36)" rx="2" ry="2" />
<text x="57.35" y="1807.5" ></text>
</g>
<g >
<title>do_syscall_64 (104,981,425 samples, 0.09%)</title><rect x="371.0" y="2021" width="1.1" height="15.0" fill="rgb(254,226,35)" rx="2" ry="2" />
<text x="373.99" y="2031.5" ></text>
</g>
<g >
<title>find_busiest_group (266,334,026 samples, 0.23%)</title><rect x="165.7" y="1861" width="2.7" height="15.0" fill="rgb(242,75,50)" rx="2" ry="2" />
<text x="168.70" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (2,438,761,097 samples, 2.12%)</title><rect x="303.9" y="2053" width="25.0" height="15.0" fill="rgb(233,92,48)" rx="2" ry="2" />
<text x="306.90" y="2063.5" >[..</text>
</g>
<g >
<title>ERR_clear_error (52,740,064 samples, 0.05%)</title><rect x="181.7" y="2005" width="0.6" height="15.0" fill="rgb(247,93,44)" rx="2" ry="2" />
<text x="184.72" y="2015.5" ></text>
</g>
<g >
<title>__get_user_8 (139,225,037 samples, 0.12%)</title><rect x="356.8" y="1909" width="1.4" height="15.0" fill="rgb(215,35,22)" rx="2" ry="2" />
<text x="359.78" y="1919.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (37,121,361 samples, 0.03%)</title><rect x="358.7" y="1925" width="0.4" height="15.0" fill="rgb(220,162,19)" rx="2" ry="2" />
<text x="361.71" y="1935.5" ></text>
</g>
<g >
<title>enqueue_task_fair (22,040,167 samples, 0.02%)</title><rect x="460.4" y="1749" width="0.2" height="15.0" fill="rgb(250,165,45)" rx="2" ry="2" />
<text x="463.38" y="1759.5" ></text>
</g>
<g >
<title>newidle_balance (480,922,144 samples, 0.42%)</title><rect x="211.0" y="1893" width="4.9" height="15.0" fill="rgb(209,16,38)" rx="2" ry="2" />
<text x="214.02" y="1903.5" ></text>
</g>
<g >
<title>rd_kafka_broker_consumer_serve (45,877,592 samples, 0.04%)</title><rect x="368.5" y="2053" width="0.4" height="15.0" fill="rgb(229,92,29)" rx="2" ry="2" />
<text x="371.47" y="2063.5" ></text>
</g>
<g >
<title>newidle_balance (110,848,538 samples, 0.10%)</title><rect x="138.2" y="1909" width="1.1" height="15.0" fill="rgb(222,31,46)" rx="2" ry="2" />
<text x="141.20" y="1919.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (29,019,047 samples, 0.03%)</title><rect x="395.9" y="1941" width="0.3" height="15.0" fill="rgb(231,200,5)" rx="2" ry="2" />
<text x="398.89" y="1951.5" ></text>
</g>
<g >
<title>clock_gettime (11,643,238,071 samples, 10.10%)</title><rect x="869.5" y="2037" width="119.2" height="15.0" fill="rgb(233,183,32)" rx="2" ry="2" />
<text x="872.54" y="2047.5" >clock_gettime</text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="165" width="1.7" height="15.0" fill="rgb(251,19,54)" rx="2" ry="2" />
<text x="128.36" y="175.5" ></text>
</g>
<g >
<title>rb_next (56,854,075 samples, 0.05%)</title><rect x="318.9" y="1813" width="0.6" height="15.0" fill="rgb(230,117,15)" rx="2" ry="2" />
<text x="321.92" y="1823.5" ></text>
</g>
<g >
<title>futex_wake (231,525,825 samples, 0.20%)</title><rect x="80.2" y="1957" width="2.4" height="15.0" fill="rgb(254,121,12)" rx="2" ry="2" />
<text x="83.21" y="1967.5" ></text>
</g>
<g >
<title>LazyCompile:*emitAfterScript node:internal/async_hooks:517 (30,561,867 samples, 0.03%)</title><rect x="124.9" y="1909" width="0.3" height="15.0" fill="rgb(210,208,19)" rx="2" ry="2" />
<text x="127.90" y="1919.5" ></text>
</g>
<g >
<title>__x64_sys_poll (1,138,903,665 samples, 0.99%)</title><rect x="377.3" y="1925" width="11.6" height="15.0" fill="rgb(249,25,7)" rx="2" ry="2" />
<text x="380.28" y="1935.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (24,178,556 samples, 0.02%)</title><rect x="333.1" y="1925" width="0.3" height="15.0" fill="rgb(223,124,1)" rx="2" ry="2" />
<text x="336.14" y="1935.5" ></text>
</g>
<g >
<title>update_blocked_averages (22,537,234 samples, 0.02%)</title><rect x="226.9" y="1909" width="0.3" height="15.0" fill="rgb(230,228,15)" rx="2" ry="2" />
<text x="229.94" y="1919.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromise /srv/service/node_modules/bluebird/js/release/promise.js:577 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1765" width="10.2" height="15.0" fill="rgb(242,181,53)" rx="2" ry="2" />
<text x="115.99" y="1775.5" ></text>
</g>
<g >
<title>psi_task_change (46,929,705 samples, 0.04%)</title><rect x="321.3" y="1877" width="0.5" height="15.0" fill="rgb(227,226,3)" rx="2" ry="2" />
<text x="324.31" y="1887.5" ></text>
</g>
<g >
<title>node::AsyncHooks::pop_async_context (141,496,336 samples, 0.12%)</title><rect x="91.8" y="1973" width="1.5" height="15.0" fill="rgb(234,207,47)" rx="2" ry="2" />
<text x="94.82" y="1983.5" ></text>
</g>
<g >
<title>rd_kafka_q_serve.localalias (1,528,599,096 samples, 1.33%)</title><rect x="832.6" y="2021" width="15.7" height="15.0" fill="rgb(248,45,51)" rx="2" ry="2" />
<text x="835.61" y="2031.5" ></text>
</g>
<g >
<title>NodeKafka::Connection::IsConnected (26,841,851 samples, 0.02%)</title><rect x="86.6" y="2005" width="0.3" height="15.0" fill="rgb(235,171,38)" rx="2" ry="2" />
<text x="89.64" y="2015.5" ></text>
</g>
<g >
<title>poll_freewait (32,610,912 samples, 0.03%)</title><rect x="270.6" y="1941" width="0.4" height="15.0" fill="rgb(212,148,19)" rx="2" ry="2" />
<text x="273.64" y="1951.5" ></text>
</g>
<g >
<title>tcp_mstamp_refresh (26,086,921 samples, 0.02%)</title><rect x="233.7" y="1877" width="0.3" height="15.0" fill="rgb(228,164,11)" rx="2" ry="2" />
<text x="236.70" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1877" width="1.7" height="15.0" fill="rgb(216,110,4)" rx="2" ry="2" />
<text x="128.36" y="1887.5" ></text>
</g>
<g >
<title>ctx_sched_in (67,422,408 samples, 0.06%)</title><rect x="302.5" y="1877" width="0.6" height="15.0" fill="rgb(215,202,30)" rx="2" ry="2" />
<text x="305.45" y="1887.5" ></text>
</g>
<g >
<title>rd_kafka_interceptors_on_response_received (113,592,024 samples, 0.10%)</title><rect x="290.7" y="2037" width="1.1" height="15.0" fill="rgb(220,54,26)" rx="2" ry="2" />
<text x="293.65" y="2047.5" ></text>
</g>
<g >
<title>mtx_unlock (254,929,562 samples, 0.22%)</title><rect x="572.1" y="1973" width="2.6" height="15.0" fill="rgb(239,62,31)" rx="2" ry="2" />
<text x="575.05" y="1983.5" ></text>
</g>
<g >
<title>dequeue_task_fair (271,429,313 samples, 0.24%)</title><rect x="342.8" y="1861" width="2.7" height="15.0" fill="rgb(218,84,31)" rx="2" ry="2" />
<text x="345.75" y="1871.5" ></text>
</g>
<g >
<title>enqueue_entity (54,052,403 samples, 0.05%)</title><rect x="146.5" y="1829" width="0.5" height="15.0" fill="rgb(225,180,38)" rx="2" ry="2" />
<text x="149.48" y="1839.5" ></text>
</g>
<g >
<title>update_load_avg (35,764,785 samples, 0.03%)</title><rect x="146.7" y="1813" width="0.3" height="15.0" fill="rgb(244,102,26)" rx="2" ry="2" />
<text x="149.66" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="437" width="1.7" height="15.0" fill="rgb(237,154,50)" rx="2" ry="2" />
<text x="128.36" y="447.5" ></text>
</g>
<g >
<title>__schedule (950,845,156 samples, 0.82%)</title><rect x="272.7" y="1909" width="9.7" height="15.0" fill="rgb(216,80,32)" rx="2" ry="2" />
<text x="275.68" y="1919.5" ></text>
</g>
<g >
<title>futex_wait (396,881,558 samples, 0.34%)</title><rect x="372.4" y="1973" width="4.0" height="15.0" fill="rgb(211,170,46)" rx="2" ry="2" />
<text x="375.35" y="1983.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (54,054,750 samples, 0.05%)</title><rect x="53.8" y="1797" width="0.5" height="15.0" fill="rgb(223,104,36)" rx="2" ry="2" />
<text x="56.78" y="1807.5" ></text>
</g>
<g >
<title>rd_kafka_broker_timeout_scan (26,030,022 samples, 0.02%)</title><rect x="299.8" y="2053" width="0.2" height="15.0" fill="rgb(230,180,22)" rx="2" ry="2" />
<text x="302.76" y="2063.5" ></text>
</g>
<g >
<title>scheduler_tick (37,121,361 samples, 0.03%)</title><rect x="358.7" y="1845" width="0.4" height="15.0" fill="rgb(246,50,30)" rx="2" ry="2" />
<text x="361.71" y="1855.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (135,883,190 samples, 0.12%)</title><rect x="130.1" y="2021" width="1.4" height="15.0" fill="rgb(229,12,25)" rx="2" ry="2" />
<text x="133.08" y="2031.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (27,496,177 samples, 0.02%)</title><rect x="327.2" y="2037" width="0.3" height="15.0" fill="rgb(246,229,35)" rx="2" ry="2" />
<text x="330.24" y="2047.5" ></text>
</g>
<g >
<title>pthread_self (27,949,900 samples, 0.02%)</title><rect x="330.3" y="2053" width="0.3" height="15.0" fill="rgb(248,102,23)" rx="2" ry="2" />
<text x="333.28" y="2063.5" ></text>
</g>
<g >
<title>update_blocked_averages (17,597,405 samples, 0.02%)</title><rect x="80.0" y="1861" width="0.2" height="15.0" fill="rgb(205,229,46)" rx="2" ry="2" />
<text x="83.03" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,899,290 samples, 0.02%)</title><rect x="463.5" y="1973" width="0.2" height="15.0" fill="rgb(231,167,35)" rx="2" ry="2" />
<text x="466.48" y="1983.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (23,876,478 samples, 0.02%)</title><rect x="221.9" y="2021" width="0.2" height="15.0" fill="rgb(210,36,49)" rx="2" ry="2" />
<text x="224.86" y="2031.5" ></text>
</g>
<g >
<title>rd_kafka_q_concat0.constprop.0 (171,631,451 samples, 0.15%)</title><rect x="1182.5" y="2053" width="1.7" height="15.0" fill="rgb(232,214,9)" rx="2" ry="2" />
<text x="1185.48" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="469" width="1.7" height="15.0" fill="rgb(241,192,46)" rx="2" ry="2" />
<text x="128.36" y="479.5" ></text>
</g>
<g >
<title>psi_task_change (21,508,742 samples, 0.02%)</title><rect x="410.5" y="1829" width="0.2" height="15.0" fill="rgb(208,84,53)" rx="2" ry="2" />
<text x="413.52" y="1839.5" ></text>
</g>
<g >
<title>epoll_wait (522,681,639 samples, 0.45%)</title><rect x="135.3" y="2053" width="5.3" height="15.0" fill="rgb(248,133,35)" rx="2" ry="2" />
<text x="138.29" y="2063.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (50,838,054 samples, 0.04%)</title><rect x="273.9" y="1829" width="0.5" height="15.0" fill="rgb(222,12,28)" rx="2" ry="2" />
<text x="276.91" y="1839.5" ></text>
</g>
<g >
<title>merge_sched_in (49,957,397 samples, 0.04%)</title><rect x="382.7" y="1781" width="0.5" height="15.0" fill="rgb(220,95,42)" rx="2" ry="2" />
<text x="385.72" y="1791.5" ></text>
</g>
<g >
<title>EVP_CIPHER_CTX_ctrl (126,917,080 samples, 0.11%)</title><rect x="176.4" y="2037" width="1.3" height="15.0" fill="rgb(225,200,43)" rx="2" ry="2" />
<text x="179.41" y="2047.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (116,779,977 samples, 0.10%)</title><rect x="219.4" y="1973" width="1.2" height="15.0" fill="rgb(235,154,30)" rx="2" ry="2" />
<text x="222.45" y="1983.5" ></text>
</g>
<g >
<title>update_load_avg (26,242,953 samples, 0.02%)</title><rect x="168.9" y="1861" width="0.2" height="15.0" fill="rgb(237,31,20)" rx="2" ry="2" />
<text x="171.87" y="1871.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (364,319,095 samples, 0.32%)</title><rect x="244.4" y="2053" width="3.7" height="15.0" fill="rgb(247,97,47)" rx="2" ry="2" />
<text x="247.37" y="2063.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (186,333,323 samples, 0.16%)</title><rect x="163.0" y="1845" width="2.0" height="15.0" fill="rgb(211,207,1)" rx="2" ry="2" />
<text x="166.05" y="1855.5" ></text>
</g>
<g >
<title>update_cfs_group (18,287,618 samples, 0.02%)</title><rect x="146.5" y="1813" width="0.2" height="15.0" fill="rgb(224,176,5)" rx="2" ry="2" />
<text x="149.48" y="1823.5" ></text>
</g>
<g >
<title>[libnode.so.108] (38,595,760 samples, 0.03%)</title><rect x="75.0" y="1765" width="0.3" height="15.0" fill="rgb(242,130,37)" rx="2" ry="2" />
<text x="77.95" y="1775.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (23,618,792 samples, 0.02%)</title><rect x="374.7" y="1797" width="0.3" height="15.0" fill="rgb(234,54,3)" rx="2" ry="2" />
<text x="377.73" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="629" width="1.7" height="15.0" fill="rgb(240,204,12)" rx="2" ry="2" />
<text x="128.36" y="639.5" ></text>
</g>
<g >
<title>rd_kafka_broker_consumer_serve (56,145,857 samples, 0.05%)</title><rect x="392.3" y="2053" width="0.5" height="15.0" fill="rgb(224,84,10)" rx="2" ry="2" />
<text x="395.25" y="2063.5" ></text>
</g>
<g >
<title>rd_kafka_cgrp_try_terminate (261,988,012 samples, 0.23%)</title><rect x="829.9" y="2021" width="2.7" height="15.0" fill="rgb(239,113,45)" rx="2" ry="2" />
<text x="832.93" y="2031.5" ></text>
</g>
<g >
<title>try_to_wake_up (54,054,750 samples, 0.05%)</title><rect x="53.8" y="1781" width="0.5" height="15.0" fill="rgb(219,202,46)" rx="2" ry="2" />
<text x="56.78" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1797" width="1.7" height="15.0" fill="rgb(219,144,0)" rx="2" ry="2" />
<text x="128.36" y="1807.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromise /srv/service/node_modules/bluebird/js/release/promise.js:577 (24,649,178 samples, 0.02%)</title><rect x="75.3" y="1813" width="0.3" height="15.0" fill="rgb(212,63,6)" rx="2" ry="2" />
<text x="78.35" y="1823.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (188,263,209 samples, 0.16%)</title><rect x="374.1" y="1893" width="1.9" height="15.0" fill="rgb(245,32,21)" rx="2" ry="2" />
<text x="377.11" y="1903.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (1,646,261,158 samples, 1.43%)</title><rect x="443.4" y="1893" width="16.9" height="15.0" fill="rgb(242,93,14)" rx="2" ry="2" />
<text x="446.45" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="373" width="1.7" height="15.0" fill="rgb(243,176,14)" rx="2" ry="2" />
<text x="128.36" y="383.5" ></text>
</g>
<g >
<title>sched_clock_cpu (21,508,742 samples, 0.02%)</title><rect x="410.5" y="1781" width="0.2" height="15.0" fill="rgb(229,54,25)" rx="2" ry="2" />
<text x="413.52" y="1791.5" ></text>
</g>
<g >
<title>ttwu_do_activate (31,162,840 samples, 0.03%)</title><rect x="460.4" y="1765" width="0.3" height="15.0" fill="rgb(241,139,51)" rx="2" ry="2" />
<text x="463.38" y="1775.5" ></text>
</g>
<g >
<title>futex_wait_setup (15,612,847 samples, 0.01%)</title><rect x="462.7" y="1957" width="0.1" height="15.0" fill="rgb(217,11,33)" rx="2" ry="2" />
<text x="465.66" y="1967.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (104,981,425 samples, 0.09%)</title><rect x="371.0" y="2037" width="1.1" height="15.0" fill="rgb(235,43,21)" rx="2" ry="2" />
<text x="373.99" y="2047.5" ></text>
</g>
<g >
<title>EVP_MD_CTX_get0_md (47,380,524 samples, 0.04%)</title><rect x="177.7" y="2037" width="0.5" height="15.0" fill="rgb(229,58,38)" rx="2" ry="2" />
<text x="180.71" y="2047.5" ></text>
</g>
<g >
<title>v8::platform::DefaultJobWorker::Run (25,238,583 samples, 0.02%)</title><rect x="17.1" y="2021" width="0.3" height="15.0" fill="rgb(210,92,11)" rx="2" ry="2" />
<text x="20.13" y="2031.5" ></text>
</g>
<g >
<title>[libuv.so.1.0.0] (4,041,874,552 samples, 3.51%)</title><rect x="84.0" y="2037" width="41.4" height="15.0" fill="rgb(248,35,48)" rx="2" ry="2" />
<text x="86.98" y="2047.5" >[li..</text>
</g>
<g >
<title>update_cfs_group (109,106,774 samples, 0.09%)</title><rect x="159.2" y="1877" width="1.1" height="15.0" fill="rgb(236,214,26)" rx="2" ry="2" />
<text x="162.19" y="1887.5" ></text>
</g>
<g >
<title>update_cfs_group (42,474,532 samples, 0.04%)</title><rect x="273.2" y="1861" width="0.4" height="15.0" fill="rgb(206,140,29)" rx="2" ry="2" />
<text x="276.17" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1253" width="1.7" height="15.0" fill="rgb(240,133,43)" rx="2" ry="2" />
<text x="128.36" y="1263.5" ></text>
</g>
<g >
<title>find_busiest_group (29,681,946 samples, 0.03%)</title><rect x="320.3" y="1829" width="0.3" height="15.0" fill="rgb(230,34,12)" rx="2" ry="2" />
<text x="323.33" y="1839.5" ></text>
</g>
<g >
<title>dequeue_task_fair (288,652,021 samples, 0.25%)</title><rect x="311.4" y="1877" width="2.9" height="15.0" fill="rgb(243,49,21)" rx="2" ry="2" />
<text x="314.36" y="1887.5" ></text>
</g>
<g >
<title>sock_poll (153,782,933 samples, 0.13%)</title><rect x="216.4" y="1957" width="1.6" height="15.0" fill="rgb(214,119,26)" rx="2" ry="2" />
<text x="219.45" y="1967.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (93,241,391 samples, 0.08%)</title><rect x="53.4" y="1861" width="1.0" height="15.0" fill="rgb(235,138,35)" rx="2" ry="2" />
<text x="56.40" y="1871.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,702,341,404 samples, 1.48%)</title><rect x="155.1" y="2021" width="17.5" height="15.0" fill="rgb(243,140,54)" rx="2" ry="2" />
<text x="158.14" y="2031.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (52,493,533 samples, 0.05%)</title><rect x="271.8" y="1909" width="0.6" height="15.0" fill="rgb(216,37,41)" rx="2" ry="2" />
<text x="274.84" y="1919.5" ></text>
</g>
<g >
<title>__cxxabiv1::__vmi_class_type_info::__do_dyncast (25,692,071 samples, 0.02%)</title><rect x="127.7" y="2005" width="0.3" height="15.0" fill="rgb(235,143,53)" rx="2" ry="2" />
<text x="130.74" y="2015.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (21,798,461 samples, 0.02%)</title><rect x="463.3" y="1877" width="0.2" height="15.0" fill="rgb(235,202,17)" rx="2" ry="2" />
<text x="466.26" y="1887.5" ></text>
</g>
<g >
<title>perf_swevent_add (63,662,000 samples, 0.06%)</title><rect x="406.7" y="1733" width="0.7" height="15.0" fill="rgb(207,25,21)" rx="2" ry="2" />
<text x="409.73" y="1743.5" ></text>
</g>
<g >
<title>sched_clock (23,486,656 samples, 0.02%)</title><rect x="303.1" y="1829" width="0.3" height="15.0" fill="rgb(236,137,31)" rx="2" ry="2" />
<text x="306.14" y="1839.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (34,877,920 samples, 0.03%)</title><rect x="302.8" y="1845" width="0.3" height="15.0" fill="rgb(240,177,2)" rx="2" ry="2" />
<text x="305.76" y="1855.5" ></text>
</g>
<g >
<title>pick_next_task_fair (129,125,182 samples, 0.11%)</title><rect x="385.8" y="1845" width="1.3" height="15.0" fill="rgb(231,49,4)" rx="2" ry="2" />
<text x="388.78" y="1855.5" ></text>
</g>
<g >
<title>__seccomp_filter (16,946,748 samples, 0.01%)</title><rect x="236.2" y="1973" width="0.2" height="15.0" fill="rgb(244,150,8)" rx="2" ry="2" />
<text x="239.18" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1701" width="1.7" height="15.0" fill="rgb(253,229,36)" rx="2" ry="2" />
<text x="128.36" y="1711.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (22,272,198 samples, 0.02%)</title><rect x="385.5" y="1813" width="0.3" height="15.0" fill="rgb(227,201,22)" rx="2" ry="2" />
<text x="388.55" y="1823.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (25,830,843 samples, 0.02%)</title><rect x="373.3" y="1941" width="0.2" height="15.0" fill="rgb(206,114,4)" rx="2" ry="2" />
<text x="376.25" y="1951.5" ></text>
</g>
<g >
<title>timerqueue_add (24,178,556 samples, 0.02%)</title><rect x="333.1" y="1909" width="0.3" height="15.0" fill="rgb(238,63,8)" rx="2" ry="2" />
<text x="336.14" y="1919.5" ></text>
</g>
<g >
<title>perf_event_sched_in (23,623,954 samples, 0.02%)</title><rect x="319.5" y="1845" width="0.2" height="15.0" fill="rgb(225,214,28)" rx="2" ry="2" />
<text x="322.50" y="1855.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_event.constprop.0 (48,704,472 samples, 0.04%)</title><rect x="249.2" y="2053" width="0.5" height="15.0" fill="rgb(218,1,52)" rx="2" ry="2" />
<text x="252.17" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,763,233,255 samples, 1.53%)</title><rect x="267.2" y="2005" width="18.1" height="15.0" fill="rgb(224,118,31)" rx="2" ry="2" />
<text x="270.21" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,208,375 samples, 0.02%)</title><rect x="372.1" y="2037" width="0.2" height="15.0" fill="rgb(221,140,27)" rx="2" ry="2" />
<text x="375.07" y="2047.5" ></text>
</g>
<g >
<title>finish_task_switch (1,745,049,752 samples, 1.51%)</title><rect x="443.3" y="1909" width="17.9" height="15.0" fill="rgb(242,203,30)" rx="2" ry="2" />
<text x="446.31" y="1919.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (76,156,816 samples, 0.07%)</title><rect x="868.6" y="2037" width="0.8" height="15.0" fill="rgb(207,95,50)" rx="2" ry="2" />
<text x="871.59" y="2047.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (392,175,600 samples, 0.34%)</title><rect x="135.3" y="2005" width="4.0" height="15.0" fill="rgb(215,66,33)" rx="2" ry="2" />
<text x="138.32" y="2015.5" ></text>
</g>
<g >
<title>schedule (281,577,338 samples, 0.24%)</title><rect x="373.5" y="1941" width="2.9" height="15.0" fill="rgb(245,118,5)" rx="2" ry="2" />
<text x="376.52" y="1951.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (14,604,161 samples, 0.01%)</title><rect x="258.6" y="1893" width="0.2" height="15.0" fill="rgb(228,197,16)" rx="2" ry="2" />
<text x="261.62" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1333" width="1.7" height="15.0" fill="rgb(254,227,13)" rx="2" ry="2" />
<text x="128.36" y="1343.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (155,720,994 samples, 0.14%)</title><rect x="156.9" y="1941" width="1.6" height="15.0" fill="rgb(215,81,10)" rx="2" ry="2" />
<text x="159.92" y="1951.5" ></text>
</g>
<g >
<title>irq_exit_rcu (21,798,461 samples, 0.02%)</title><rect x="463.3" y="1925" width="0.2" height="15.0" fill="rgb(248,61,1)" rx="2" ry="2" />
<text x="466.26" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (55,094,584 samples, 0.05%)</title><rect x="17.4" y="2037" width="0.6" height="15.0" fill="rgb(233,210,22)" rx="2" ry="2" />
<text x="20.39" y="2047.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (51,506,538 samples, 0.04%)</title><rect x="352.0" y="1765" width="0.5" height="15.0" fill="rgb(205,207,21)" rx="2" ry="2" />
<text x="354.96" y="1775.5" ></text>
</g>
<g >
<title>CRYPTO_THREAD_run_once (26,087,838 samples, 0.02%)</title><rect x="148.8" y="2053" width="0.2" height="15.0" fill="rgb(205,148,1)" rx="2" ry="2" />
<text x="151.77" y="2063.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (54,765,505 samples, 0.05%)</title><rect x="49.1" y="1797" width="0.6" height="15.0" fill="rgb(244,194,31)" rx="2" ry="2" />
<text x="52.11" y="1807.5" ></text>
</g>
<g >
<title>BIO_ctrl (46,455,849 samples, 0.04%)</title><rect x="148.0" y="2053" width="0.5" height="15.0" fill="rgb(246,29,16)" rx="2" ry="2" />
<text x="151.01" y="2063.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_event.constprop.0 (51,140,365 samples, 0.04%)</title><rect x="228.7" y="2037" width="0.6" height="15.0" fill="rgb(238,151,32)" rx="2" ry="2" />
<text x="231.74" y="2047.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._resolveCallback /srv/service/node_modules/bluebird/js/release/promise.js:461 (24,649,178 samples, 0.02%)</title><rect x="75.3" y="1781" width="0.3" height="15.0" fill="rgb(226,29,49)" rx="2" ry="2" />
<text x="78.35" y="1791.5" ></text>
</g>
<g >
<title>__schedule (281,577,338 samples, 0.24%)</title><rect x="373.5" y="1925" width="2.9" height="15.0" fill="rgb(251,3,54)" rx="2" ry="2" />
<text x="376.52" y="1935.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (16,394,730 samples, 0.01%)</title><rect x="303.7" y="2005" width="0.2" height="15.0" fill="rgb(235,180,0)" rx="2" ry="2" />
<text x="306.73" y="2015.5" ></text>
</g>
<g >
<title>Eval:~ :1 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1829" width="10.2" height="15.0" fill="rgb(215,117,24)" rx="2" ry="2" />
<text x="115.99" y="1839.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromise0 /srv/service/node_modules/bluebird/js/release/promise.js:644 (38,595,760 samples, 0.03%)</title><rect x="75.0" y="1829" width="0.3" height="15.0" fill="rgb(228,193,16)" rx="2" ry="2" />
<text x="77.95" y="1839.5" ></text>
</g>
<g >
<title>perf_event_sched_in (19,826,309 samples, 0.02%)</title><rect x="53.1" y="1877" width="0.2" height="15.0" fill="rgb(240,229,15)" rx="2" ry="2" />
<text x="56.14" y="1887.5" ></text>
</g>
<g >
<title>mtx_unlock (139,407,016 samples, 0.12%)</title><rect x="767.6" y="2021" width="1.4" height="15.0" fill="rgb(241,189,49)" rx="2" ry="2" />
<text x="770.58" y="2031.5" ></text>
</g>
<g >
<title>tg3_poll_work (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1733" width="1.1" height="15.0" fill="rgb(242,209,21)" rx="2" ry="2" />
<text x="298.98" y="1743.5" ></text>
</g>
<g >
<title>sock_read_iter (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1941" width="1.4" height="15.0" fill="rgb(253,53,16)" rx="2" ry="2" />
<text x="330.52" y="1951.5" ></text>
</g>
<g >
<title>vfs_read (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1973" width="1.4" height="15.0" fill="rgb(232,52,45)" rx="2" ry="2" />
<text x="330.52" y="1983.5" ></text>
</g>
<g >
<title>update_cfs_group (22,110,216 samples, 0.02%)</title><rect x="405.2" y="1797" width="0.2" height="15.0" fill="rgb(236,85,31)" rx="2" ry="2" />
<text x="408.22" y="1807.5" ></text>
</g>
<g >
<title>find_busiest_group (110,848,538 samples, 0.10%)</title><rect x="138.2" y="1877" width="1.1" height="15.0" fill="rgb(208,189,17)" rx="2" ry="2" />
<text x="141.20" y="1887.5" ></text>
</g>
<g >
<title>clock_gettime (41,483,899 samples, 0.04%)</title><rect x="329.4" y="2053" width="0.5" height="15.0" fill="rgb(250,99,2)" rx="2" ry="2" />
<text x="332.43" y="2063.5" ></text>
</g>
<g >
<title>[libc.so.6] (113,654,868 samples, 0.10%)</title><rect x="398.2" y="1957" width="1.2" height="15.0" fill="rgb(218,117,14)" rx="2" ry="2" />
<text x="401.23" y="1967.5" ></text>
</g>
<g >
<title>tcp_stream_memory_free (24,766,404 samples, 0.02%)</title><rect x="411.8" y="1845" width="0.2" height="15.0" fill="rgb(214,89,53)" rx="2" ry="2" />
<text x="414.76" y="1855.5" ></text>
</g>
<g >
<title>[libc.so.6] (75,221,828 samples, 0.07%)</title><rect x="304.5" y="2005" width="0.7" height="15.0" fill="rgb(230,56,38)" rx="2" ry="2" />
<text x="307.48" y="2015.5" ></text>
</g>
<g >
<title>ttwu_do_activate (27,850,660 samples, 0.02%)</title><rect x="81.8" y="1765" width="0.3" height="15.0" fill="rgb(210,162,26)" rx="2" ry="2" />
<text x="84.80" y="1775.5" ></text>
</g>
<g >
<title>v8::internal::compiler::PipelineImpl::CreateGraph (76,496,671 samples, 0.07%)</title><rect x="15.1" y="1957" width="0.7" height="15.0" fill="rgb(238,197,1)" rx="2" ry="2" />
<text x="18.06" y="1967.5" ></text>
</g>
<g >
<title>update_min_vruntime (20,217,939 samples, 0.02%)</title><rect x="382.3" y="1829" width="0.2" height="15.0" fill="rgb(239,66,33)" rx="2" ry="2" />
<text x="385.34" y="1839.5" ></text>
</g>
<g >
<title>ksys_write (104,981,425 samples, 0.09%)</title><rect x="371.0" y="2005" width="1.1" height="15.0" fill="rgb(248,102,4)" rx="2" ry="2" />
<text x="373.99" y="2015.5" ></text>
</g>
<g >
<title>vfs_statx (26,213,777 samples, 0.02%)</title><rect x="128.0" y="1973" width="0.3" height="15.0" fill="rgb(239,187,22)" rx="2" ry="2" />
<text x="131.00" y="1983.5" ></text>
</g>
<g >
<title>__x64_sys_futex (398,436,899 samples, 0.35%)</title><rect x="372.3" y="2005" width="4.1" height="15.0" fill="rgb(219,201,13)" rx="2" ry="2" />
<text x="375.34" y="2015.5" ></text>
</g>
<g >
<title>update_blocked_averages (515,154,456 samples, 0.45%)</title><rect x="56.9" y="1829" width="5.3" height="15.0" fill="rgb(250,4,24)" rx="2" ry="2" />
<text x="59.94" y="1839.5" ></text>
</g>
<g >
<title>__seccomp_filter (43,973,527 samples, 0.04%)</title><rect x="412.2" y="1893" width="0.5" height="15.0" fill="rgb(236,39,5)" rx="2" ry="2" />
<text x="415.20" y="1903.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (14,129,940 samples, 0.01%)</title><rect x="299.6" y="2053" width="0.2" height="15.0" fill="rgb(207,190,13)" rx="2" ry="2" />
<text x="302.61" y="2063.5" ></text>
</g>
<g >
<title>[libnode.so.108] (95,884,613 samples, 0.08%)</title><rect x="75.0" y="1925" width="0.9" height="15.0" fill="rgb(246,191,6)" rx="2" ry="2" />
<text x="77.95" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="501" width="1.7" height="15.0" fill="rgb(215,173,28)" rx="2" ry="2" />
<text x="128.36" y="511.5" ></text>
</g>
<g >
<title>irq_exit_rcu (22,537,234 samples, 0.02%)</title><rect x="226.9" y="1989" width="0.3" height="15.0" fill="rgb(250,198,43)" rx="2" ry="2" />
<text x="229.94" y="1999.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (27,850,660 samples, 0.02%)</title><rect x="81.8" y="1861" width="0.3" height="15.0" fill="rgb(215,217,6)" rx="2" ry="2" />
<text x="84.80" y="1871.5" ></text>
</g>
<g >
<title>[libc.so.6] (33,037,459 samples, 0.03%)</title><rect x="179.3" y="2037" width="0.4" height="15.0" fill="rgb(238,218,11)" rx="2" ry="2" />
<text x="182.33" y="2047.5" ></text>
</g>
<g >
<title>v8::Function::Call (3,120,015,693 samples, 2.71%)</title><rect x="93.3" y="2005" width="31.9" height="15.0" fill="rgb(252,80,42)" rx="2" ry="2" />
<text x="96.27" y="2015.5" >v8..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (31,651,377 samples, 0.03%)</title><rect x="319.7" y="1861" width="0.4" height="15.0" fill="rgb(245,65,30)" rx="2" ry="2" />
<text x="322.74" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="805" width="1.7" height="15.0" fill="rgb(240,107,32)" rx="2" ry="2" />
<text x="128.36" y="815.5" ></text>
</g>
<g >
<title>__calc_delta (18,110,905 samples, 0.02%)</title><rect x="343.5" y="1813" width="0.2" height="15.0" fill="rgb(222,52,52)" rx="2" ry="2" />
<text x="346.48" y="1823.5" ></text>
</g>
<g >
<title>__errno_location (37,166,433 samples, 0.03%)</title><rect x="236.7" y="2053" width="0.4" height="15.0" fill="rgb(210,59,21)" rx="2" ry="2" />
<text x="239.67" y="2063.5" ></text>
</g>
<g >
<title>node::Environment::RunTimers (3,261,512,029 samples, 2.83%)</title><rect x="91.8" y="2021" width="33.4" height="15.0" fill="rgb(240,105,22)" rx="2" ry="2" />
<text x="94.82" y="2031.5" >no..</text>
</g>
<g >
<title>v8::internal::compiler::TryMakeRef&lt;v8::internal::JSFunction, void&gt; (26,425,971 samples, 0.02%)</title><rect x="15.6" y="1925" width="0.2" height="15.0" fill="rgb(214,100,7)" rx="2" ry="2" />
<text x="18.57" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (652,264,503 samples, 0.57%)</title><rect x="230.0" y="2021" width="6.7" height="15.0" fill="rgb(205,213,10)" rx="2" ry="2" />
<text x="233.00" y="2031.5" ></text>
</g>
<g >
<title>poll_select_set_timeout (18,181,730 samples, 0.02%)</title><rect x="412.0" y="1893" width="0.2" height="15.0" fill="rgb(208,99,33)" rx="2" ry="2" />
<text x="415.01" y="1903.5" ></text>
</g>
<g >
<title>psi_task_change (166,284,241 samples, 0.14%)</title><rect x="64.6" y="1909" width="1.7" height="15.0" fill="rgb(213,85,21)" rx="2" ry="2" />
<text x="67.62" y="1919.5" ></text>
</g>
<g >
<title>__fget_light (17,976,314 samples, 0.02%)</title><rect x="1092.5" y="1957" width="0.1" height="15.0" fill="rgb(218,182,32)" rx="2" ry="2" />
<text x="1095.46" y="1967.5" ></text>
</g>
<g >
<title>timerqueue_del (87,408,617 samples, 0.08%)</title><rect x="199.5" y="1909" width="0.9" height="15.0" fill="rgb(248,58,53)" rx="2" ry="2" />
<text x="202.46" y="1919.5" ></text>
</g>
<g >
<title>__x64_sys_poll (1,202,803,262 samples, 1.04%)</title><rect x="399.9" y="1909" width="12.3" height="15.0" fill="rgb(213,138,36)" rx="2" ry="2" />
<text x="402.89" y="1919.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (253,097,037 samples, 0.22%)</title><rect x="196.9" y="1925" width="2.6" height="15.0" fill="rgb(249,47,41)" rx="2" ry="2" />
<text x="199.87" y="1935.5" ></text>
</g>
<g >
<title>sock_write_iter (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1957" width="1.1" height="15.0" fill="rgb(234,9,19)" rx="2" ry="2" />
<text x="373.99" y="1967.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (22,537,234 samples, 0.02%)</title><rect x="226.9" y="2021" width="0.3" height="15.0" fill="rgb(252,139,5)" rx="2" ry="2" />
<text x="229.94" y="2031.5" ></text>
</g>
<g >
<title>__poll (32,832,262 samples, 0.03%)</title><rect x="326.5" y="2021" width="0.3" height="15.0" fill="rgb(237,128,8)" rx="2" ry="2" />
<text x="329.46" y="2031.5" ></text>
</g>
<g >
<title>__poll (1,301,140,077 samples, 1.13%)</title><rect x="376.9" y="1973" width="13.3" height="15.0" fill="rgb(225,145,8)" rx="2" ry="2" />
<text x="379.89" y="1983.5" ></text>
</g>
<g >
<title>__cxxabiv1::__vmi_class_type_info::__do_dyncast (30,508,088 samples, 0.03%)</title><rect x="131.9" y="2053" width="0.3" height="15.0" fill="rgb(245,149,10)" rx="2" ry="2" />
<text x="134.93" y="2063.5" ></text>
</g>
<g >
<title>schedule (758,732,860 samples, 0.66%)</title><rect x="403.0" y="1861" width="7.7" height="15.0" fill="rgb(221,191,16)" rx="2" ry="2" />
<text x="405.97" y="1871.5" ></text>
</g>
<g >
<title>sock_read_iter (379,708,620 samples, 0.33%)</title><rect x="293.2" y="1941" width="3.9" height="15.0" fill="rgb(241,76,8)" rx="2" ry="2" />
<text x="296.24" y="1951.5" ></text>
</g>
<g >
<title>[libssl.so.3] (88,649,372 samples, 0.08%)</title><rect x="338.1" y="2037" width="1.0" height="15.0" fill="rgb(247,14,46)" rx="2" ry="2" />
<text x="341.14" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (286,150,481 samples, 0.25%)</title><rect x="144.8" y="2021" width="3.0" height="15.0" fill="rgb(247,65,10)" rx="2" ry="2" />
<text x="147.84" y="2031.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (30,780,439 samples, 0.03%)</title><rect x="347.9" y="1749" width="0.3" height="15.0" fill="rgb(215,3,24)" rx="2" ry="2" />
<text x="350.86" y="1759.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (27,033,319 samples, 0.02%)</title><rect x="210.6" y="1845" width="0.2" height="15.0" fill="rgb(228,177,17)" rx="2" ry="2" />
<text x="213.57" y="1855.5" ></text>
</g>
<g >
<title>rd_kafka_recv (28,440,117 samples, 0.02%)</title><rect x="228.5" y="2037" width="0.2" height="15.0" fill="rgb(249,155,44)" rx="2" ry="2" />
<text x="231.45" y="2047.5" ></text>
</g>
<g >
<title>tick_sched_handle (123,453,141 samples, 0.11%)</title><rect x="1181.2" y="1941" width="1.3" height="15.0" fill="rgb(233,84,54)" rx="2" ry="2" />
<text x="1184.21" y="1951.5" ></text>
</g>
<g >
<title>dequeue_entity (658,266,969 samples, 0.57%)</title><rect x="28.1" y="1893" width="6.7" height="15.0" fill="rgb(235,26,17)" rx="2" ry="2" />
<text x="31.08" y="1903.5" ></text>
</g>
<g >
<title>dequeue_entity (63,974,565 samples, 0.06%)</title><rect x="396.4" y="1893" width="0.6" height="15.0" fill="rgb(222,194,47)" rx="2" ry="2" />
<text x="399.36" y="1903.5" ></text>
</g>
<g >
<title>tracing_record_taskinfo_sched_switch (26,124,404 samples, 0.02%)</title><rect x="216.2" y="1909" width="0.2" height="15.0" fill="rgb(251,112,5)" rx="2" ry="2" />
<text x="219.18" y="1919.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (62,544,397 samples, 0.05%)</title><rect x="82.7" y="1989" width="0.7" height="15.0" fill="rgb(237,127,42)" rx="2" ry="2" />
<text x="85.75" y="1999.5" ></text>
</g>
<g >
<title>net_rx_action (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1749" width="0.1" height="15.0" fill="rgb(209,84,43)" rx="2" ry="2" />
<text x="354.83" y="1759.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (135,467,584 samples, 0.12%)</title><rect x="294.6" y="1893" width="1.4" height="15.0" fill="rgb(241,149,41)" rx="2" ry="2" />
<text x="297.60" y="1903.5" ></text>
</g>
<g >
<title>operator new (48,549,686 samples, 0.04%)</title><rect x="88.4" y="2005" width="0.5" height="15.0" fill="rgb(252,136,2)" rx="2" ry="2" />
<text x="91.37" y="2015.5" ></text>
</g>
<g >
<title>rd_kafka_q_pop_serve.localalias (33,846,397 samples, 0.03%)</title><rect x="228.1" y="2037" width="0.4" height="15.0" fill="rgb(253,41,44)" rx="2" ry="2" />
<text x="231.10" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2,180,405,065 samples, 1.89%)</title><rect x="304.5" y="2037" width="22.3" height="15.0" fill="rgb(229,112,54)" rx="2" ry="2" />
<text x="307.48" y="2047.5" >[..</text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (150,083,105 samples, 0.13%)</title><rect x="136.7" y="1877" width="1.5" height="15.0" fill="rgb(215,214,29)" rx="2" ry="2" />
<text x="139.66" y="1887.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (227,516,499 samples, 0.20%)</title><rect x="211.6" y="1845" width="2.3" height="15.0" fill="rgb(229,17,38)" rx="2" ry="2" />
<text x="214.56" y="1855.5" ></text>
</g>
<g >
<title>inet6_csk_xmit (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1877" width="1.4" height="15.0" fill="rgb(253,87,20)" rx="2" ry="2" />
<text x="330.52" y="1887.5" ></text>
</g>
<g >
<title>[libc.so.6] (28,706,924 samples, 0.02%)</title><rect x="484.0" y="2005" width="0.3" height="15.0" fill="rgb(247,43,50)" rx="2" ry="2" />
<text x="487.03" y="2015.5" ></text>
</g>
<g >
<title>remove_wait_queue (30,266,762 samples, 0.03%)</title><rect x="195.7" y="1941" width="0.3" height="15.0" fill="rgb(228,93,21)" rx="2" ry="2" />
<text x="198.68" y="1951.5" ></text>
</g>
<g >
<title>pipe_poll (24,432,872 samples, 0.02%)</title><rect x="378.8" y="1893" width="0.2" height="15.0" fill="rgb(210,197,0)" rx="2" ry="2" />
<text x="381.79" y="1903.5" ></text>
</g>
<g >
<title>[libnode.so.108] (136,487,207 samples, 0.12%)</title><rect x="123.5" y="1893" width="1.4" height="15.0" fill="rgb(215,151,30)" rx="2" ry="2" />
<text x="126.50" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1349" width="1.7" height="15.0" fill="rgb(233,111,31)" rx="2" ry="2" />
<text x="128.36" y="1359.5" ></text>
</g>
<g >
<title>[unknown] (1,363,674,621 samples, 1.18%)</title><rect x="376.5" y="2037" width="14.0" height="15.0" fill="rgb(246,52,1)" rx="2" ry="2" />
<text x="379.50" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (32,090,743 samples, 0.03%)</title><rect x="336.0" y="2021" width="0.3" height="15.0" fill="rgb(251,115,7)" rx="2" ry="2" />
<text x="338.95" y="2031.5" ></text>
</g>
<g >
<title>net_rx_action (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1749" width="1.4" height="15.0" fill="rgb(222,191,7)" rx="2" ry="2" />
<text x="330.52" y="1759.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (19,083,052 samples, 0.02%)</title><rect x="280.5" y="1829" width="0.2" height="15.0" fill="rgb(210,143,15)" rx="2" ry="2" />
<text x="283.47" y="1839.5" ></text>
</g>
<g >
<title>newidle_balance (138,879,572 samples, 0.12%)</title><rect x="409.1" y="1813" width="1.4" height="15.0" fill="rgb(249,60,28)" rx="2" ry="2" />
<text x="412.09" y="1823.5" ></text>
</g>
<g >
<title>ksys_write (393,471,822 samples, 0.34%)</title><rect x="249.9" y="2005" width="4.1" height="15.0" fill="rgb(207,89,19)" rx="2" ry="2" />
<text x="252.94" y="2015.5" ></text>
</g>
<g >
<title>sched_clock_cpu (54,130,057 samples, 0.05%)</title><rect x="65.8" y="1861" width="0.5" height="15.0" fill="rgb(221,114,2)" rx="2" ry="2" />
<text x="68.77" y="1871.5" ></text>
</g>
<g >
<title>__x64_sys_futex (3,777,156,226 samples, 3.28%)</title><rect x="424.8" y="2005" width="38.7" height="15.0" fill="rgb(213,194,45)" rx="2" ry="2" />
<text x="427.81" y="2015.5" >__x..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (27,850,660 samples, 0.02%)</title><rect x="81.8" y="1893" width="0.3" height="15.0" fill="rgb(242,114,7)" rx="2" ry="2" />
<text x="84.80" y="1903.5" ></text>
</g>
<g >
<title>__account_cfs_rq_runtime (27,232,437 samples, 0.02%)</title><rect x="202.4" y="1877" width="0.3" height="15.0" fill="rgb(224,120,32)" rx="2" ry="2" />
<text x="205.37" y="1887.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (141,653,236 samples, 0.12%)</title><rect x="60.8" y="1797" width="1.4" height="15.0" fill="rgb(240,47,1)" rx="2" ry="2" />
<text x="63.77" y="1807.5" ></text>
</g>
<g >
<title>__seccomp_filter (10,827,159 samples, 0.01%)</title><rect x="389.1" y="1909" width="0.1" height="15.0" fill="rgb(230,90,3)" rx="2" ry="2" />
<text x="392.06" y="1919.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (20,126,065 samples, 0.02%)</title><rect x="146.3" y="1845" width="0.2" height="15.0" fill="rgb(226,166,44)" rx="2" ry="2" />
<text x="149.27" y="1855.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1765" width="1.1" height="15.0" fill="rgb(252,124,38)" rx="2" ry="2" />
<text x="373.99" y="1775.5" ></text>
</g>
<g >
<title>update_load_avg (24,861,109 samples, 0.02%)</title><rect x="56.2" y="1829" width="0.3" height="15.0" fill="rgb(254,8,31)" rx="2" ry="2" />
<text x="59.25" y="1839.5" ></text>
</g>
<g >
<title>update_cfs_group (17,428,233 samples, 0.02%)</title><rect x="373.7" y="1877" width="0.1" height="15.0" fill="rgb(215,37,44)" rx="2" ry="2" />
<text x="376.66" y="1887.5" ></text>
</g>
<g >
<title>node::Environment::CheckImmediate (156,067,372 samples, 0.14%)</title><rect x="125.5" y="53" width="1.6" height="15.0" fill="rgb(223,139,49)" rx="2" ry="2" />
<text x="128.47" y="63.5" ></text>
</g>
<g >
<title>rd_kafka_broker_consumer_serve (22,522,287 samples, 0.02%)</title><rect x="224.7" y="2037" width="0.3" height="15.0" fill="rgb(239,20,40)" rx="2" ry="2" />
<text x="227.75" y="2047.5" ></text>
</g>
<g >
<title>NodeKafka::Workers::KafkaConsumerConsumeNum::Execute (562,185,209 samples, 0.49%)</title><rect x="85.6" y="2021" width="5.7" height="15.0" fill="rgb(205,193,9)" rx="2" ry="2" />
<text x="88.58" y="2031.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (91,674,334 samples, 0.08%)</title><rect x="53.4" y="1813" width="0.9" height="15.0" fill="rgb(242,96,23)" rx="2" ry="2" />
<text x="56.40" y="1823.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (124,842,310 samples, 0.11%)</title><rect x="412.7" y="1909" width="1.2" height="15.0" fill="rgb(252,115,28)" rx="2" ry="2" />
<text x="415.65" y="1919.5" ></text>
</g>
<g >
<title>__seccomp_filter (10,179,111 samples, 0.01%)</title><rect x="398.0" y="1989" width="0.1" height="15.0" fill="rgb(228,72,15)" rx="2" ry="2" />
<text x="400.99" y="1999.5" ></text>
</g>
<g >
<title>hrtimer_sleeper_start_expires (13,448,392 samples, 0.01%)</title><rect x="19.9" y="1941" width="0.1" height="15.0" fill="rgb(236,116,43)" rx="2" ry="2" />
<text x="22.89" y="1951.5" ></text>
</g>
<g >
<title>rd_kafka_broker_timeout_scan (43,515,881 samples, 0.04%)</title><rect x="248.1" y="2053" width="0.5" height="15.0" fill="rgb(215,176,31)" rx="2" ry="2" />
<text x="251.10" y="2063.5" ></text>
</g>
<g >
<title>net_rx_action (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1765" width="1.1" height="15.0" fill="rgb(232,187,7)" rx="2" ry="2" />
<text x="298.98" y="1775.5" ></text>
</g>
<g >
<title>tcp_poll (34,155,092 samples, 0.03%)</title><rect x="356.0" y="1893" width="0.4" height="15.0" fill="rgb(206,180,51)" rx="2" ry="2" />
<text x="359.02" y="1903.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (37,121,361 samples, 0.03%)</title><rect x="358.7" y="1941" width="0.4" height="15.0" fill="rgb(250,10,19)" rx="2" ry="2" />
<text x="361.71" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (1,583,573,438 samples, 1.37%)</title><rect x="398.2" y="1973" width="16.2" height="15.0" fill="rgb(232,3,5)" rx="2" ry="2" />
<text x="401.23" y="1983.5" ></text>
</g>
<g >
<title>schedule (241,239,187 samples, 0.21%)</title><rect x="333.4" y="1941" width="2.5" height="15.0" fill="rgb(214,152,1)" rx="2" ry="2" />
<text x="336.39" y="1951.5" ></text>
</g>
<g >
<title>event_sched_in (69,961,657 samples, 0.06%)</title><rect x="406.7" y="1749" width="0.7" height="15.0" fill="rgb(223,83,0)" rx="2" ry="2" />
<text x="409.67" y="1759.5" ></text>
</g>
<g >
<title>__fget_files (26,609,152 samples, 0.02%)</title><rect x="400.7" y="1861" width="0.3" height="15.0" fill="rgb(222,145,30)" rx="2" ry="2" />
<text x="403.73" y="1871.5" ></text>
</g>
<g >
<title>load_balance (48,881,016 samples, 0.04%)</title><rect x="335.4" y="1877" width="0.5" height="15.0" fill="rgb(243,79,34)" rx="2" ry="2" />
<text x="338.36" y="1887.5" ></text>
</g>
<g >
<title>try_to_wake_up (27,850,660 samples, 0.02%)</title><rect x="81.8" y="1781" width="0.3" height="15.0" fill="rgb(223,229,48)" rx="2" ry="2" />
<text x="84.80" y="1791.5" ></text>
</g>
<g >
<title>__slab_alloc (31,406,251 samples, 0.03%)</title><rect x="233.1" y="1845" width="0.3" height="15.0" fill="rgb(228,73,7)" rx="2" ry="2" />
<text x="236.06" y="1855.5" ></text>
</g>
<g >
<title>get_futex_key (24,633,347 samples, 0.02%)</title><rect x="172.0" y="1957" width="0.3" height="15.0" fill="rgb(229,90,7)" rx="2" ry="2" />
<text x="175.03" y="1967.5" ></text>
</g>
<g >
<title>rb_insert_color (110,480,988 samples, 0.10%)</title><rect x="21.7" y="1893" width="1.1" height="15.0" fill="rgb(212,132,16)" rx="2" ry="2" />
<text x="24.65" y="1903.5" ></text>
</g>
<g >
<title>timekeeping_advance (135,524,268 samples, 0.12%)</title><rect x="763.7" y="1893" width="1.4" height="15.0" fill="rgb(234,196,25)" rx="2" ry="2" />
<text x="766.70" y="1903.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (131,648,858 samples, 0.11%)</title><rect x="327.5" y="2021" width="1.4" height="15.0" fill="rgb(248,218,48)" rx="2" ry="2" />
<text x="330.52" y="2031.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,388,802,328 samples, 1.20%)</title><rect x="513.3" y="1957" width="14.2" height="15.0" fill="rgb(227,159,17)" rx="2" ry="2" />
<text x="516.32" y="1967.5" ></text>
</g>
<g >
<title>sock_poll (64,972,068 samples, 0.06%)</title><rect x="321.8" y="1925" width="0.7" height="15.0" fill="rgb(231,31,54)" rx="2" ry="2" />
<text x="324.79" y="1935.5" ></text>
</g>
<g >
<title>new_sync_read (379,708,620 samples, 0.33%)</title><rect x="293.2" y="1957" width="3.9" height="15.0" fill="rgb(244,88,4)" rx="2" ry="2" />
<text x="296.24" y="1967.5" ></text>
</g>
<g >
<title>tcp_write_xmit (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1877" width="1.1" height="15.0" fill="rgb(241,202,47)" rx="2" ry="2" />
<text x="373.99" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="789" width="1.7" height="15.0" fill="rgb(207,81,49)" rx="2" ry="2" />
<text x="128.36" y="799.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (101,037,473 samples, 0.09%)</title><rect x="375.0" y="1845" width="1.0" height="15.0" fill="rgb(253,211,16)" rx="2" ry="2" />
<text x="377.97" y="1855.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (21,798,461 samples, 0.02%)</title><rect x="463.3" y="1909" width="0.2" height="15.0" fill="rgb(229,133,48)" rx="2" ry="2" />
<text x="466.26" y="1919.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (31,651,377 samples, 0.03%)</title><rect x="319.7" y="1845" width="0.4" height="15.0" fill="rgb(235,39,26)" rx="2" ry="2" />
<text x="322.74" y="1855.5" ></text>
</g>
<g >
<title>update_blocked_averages (48,881,016 samples, 0.04%)</title><rect x="335.4" y="1829" width="0.5" height="15.0" fill="rgb(219,50,33)" rx="2" ry="2" />
<text x="338.36" y="1839.5" ></text>
</g>
<g >
<title>pthread_self (25,705,830 samples, 0.02%)</title><rect x="368.2" y="2053" width="0.3" height="15.0" fill="rgb(222,22,4)" rx="2" ry="2" />
<text x="371.20" y="2063.5" ></text>
</g>
<g >
<title>load_balance (29,681,946 samples, 0.03%)</title><rect x="320.3" y="1845" width="0.3" height="15.0" fill="rgb(216,143,21)" rx="2" ry="2" />
<text x="323.33" y="1855.5" ></text>
</g>
<g >
<title>non-virtual thunk to v8::internal::CancelableTask::Run (328,315,430 samples, 0.28%)</title><rect x="13.8" y="2021" width="3.3" height="15.0" fill="rgb(224,84,49)" rx="2" ry="2" />
<text x="16.77" y="2031.5" ></text>
</g>
<g >
<title>[[vdso]] (25,892,699 samples, 0.02%)</title><rect x="326.8" y="2021" width="0.3" height="15.0" fill="rgb(237,99,51)" rx="2" ry="2" />
<text x="329.80" y="2031.5" ></text>
</g>
<g >
<title>pick_next_task_fair (48,881,016 samples, 0.04%)</title><rect x="335.4" y="1909" width="0.5" height="15.0" fill="rgb(244,11,15)" rx="2" ry="2" />
<text x="338.36" y="1919.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1861" width="0.7" height="15.0" fill="rgb(250,193,44)" rx="2" ry="2" />
<text x="254.35" y="1871.5" ></text>
</g>
<g >
<title>__seccomp_filter (121,443,493 samples, 0.11%)</title><rect x="139.3" y="1989" width="1.3" height="15.0" fill="rgb(216,49,9)" rx="2" ry="2" />
<text x="142.34" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (424,458,842 samples, 0.37%)</title><rect x="254.7" y="2021" width="4.3" height="15.0" fill="rgb(254,209,31)" rx="2" ry="2" />
<text x="257.68" y="2031.5" ></text>
</g>
<g >
<title>v8::internal::compiler::PipelineImpl::OptimizeGraph (125,329,974 samples, 0.11%)</title><rect x="15.8" y="1957" width="1.3" height="15.0" fill="rgb(231,24,3)" rx="2" ry="2" />
<text x="18.85" y="1967.5" ></text>
</g>
<g >
<title>inet6_recvmsg (207,961,773 samples, 0.18%)</title><rect x="230.9" y="1925" width="2.2" height="15.0" fill="rgb(239,39,30)" rx="2" ry="2" />
<text x="233.93" y="1935.5" ></text>
</g>
<g >
<title>plist_add (74,276,675 samples, 0.06%)</title><rect x="22.9" y="1941" width="0.8" height="15.0" fill="rgb(236,203,52)" rx="2" ry="2" />
<text x="25.94" y="1951.5" ></text>
</g>
<g >
<title>tick_sched_timer (135,524,268 samples, 0.12%)</title><rect x="763.7" y="1909" width="1.4" height="15.0" fill="rgb(238,36,26)" rx="2" ry="2" />
<text x="766.70" y="1919.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (1,505,638,345 samples, 1.31%)</title><rect x="427.9" y="1861" width="15.4" height="15.0" fill="rgb(241,156,30)" rx="2" ry="2" />
<text x="430.90" y="1871.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (17,642,395 samples, 0.02%)</title><rect x="356.4" y="1909" width="0.1" height="15.0" fill="rgb(225,187,36)" rx="2" ry="2" />
<text x="359.37" y="1919.5" ></text>
</g>
<g >
<title>ksys_read (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1989" width="1.4" height="15.0" fill="rgb(208,153,15)" rx="2" ry="2" />
<text x="330.52" y="1999.5" ></text>
</g>
<g >
<title>dequeue_task_fair (19,186,226 samples, 0.02%)</title><rect x="255.9" y="1909" width="0.2" height="15.0" fill="rgb(220,0,8)" rx="2" ry="2" />
<text x="258.90" y="1919.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (117,391,884 samples, 0.10%)</title><rect x="167.2" y="1813" width="1.2" height="15.0" fill="rgb(235,44,23)" rx="2" ry="2" />
<text x="170.23" y="1823.5" ></text>
</g>
<g >
<title>tcp_poll (47,535,958 samples, 0.04%)</title><rect x="283.4" y="1925" width="0.4" height="15.0" fill="rgb(239,62,9)" rx="2" ry="2" />
<text x="286.36" y="1935.5" ></text>
</g>
<g >
<title>perf_event_update_time (25,534,105 samples, 0.02%)</title><rect x="48.0" y="1813" width="0.3" height="15.0" fill="rgb(216,174,34)" rx="2" ry="2" />
<text x="51.04" y="1823.5" ></text>
</g>
<g >
<title>process_backlog (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1733" width="1.4" height="15.0" fill="rgb(228,74,35)" rx="2" ry="2" />
<text x="330.52" y="1743.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,809,250,296 samples, 1.57%)</title><rect x="155.1" y="2037" width="18.6" height="15.0" fill="rgb(208,197,48)" rx="2" ry="2" />
<text x="158.14" y="2047.5" ></text>
</g>
<g >
<title>__get_user_8 (77,533,233 samples, 0.07%)</title><rect x="284.3" y="1941" width="0.8" height="15.0" fill="rgb(231,196,5)" rx="2" ry="2" />
<text x="287.28" y="1951.5" ></text>
</g>
<g >
<title>do_futex (373,537,506 samples, 0.32%)</title><rect x="254.9" y="1989" width="3.9" height="15.0" fill="rgb(233,41,17)" rx="2" ry="2" />
<text x="257.95" y="1999.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (34,086,996 samples, 0.03%)</title><rect x="807.5" y="1989" width="0.4" height="15.0" fill="rgb(224,83,33)" rx="2" ry="2" />
<text x="810.51" y="1999.5" ></text>
</g>
<g >
<title>ctx_sched_in (491,527,118 samples, 0.43%)</title><rect x="346.5" y="1829" width="5.0" height="15.0" fill="rgb(236,8,42)" rx="2" ry="2" />
<text x="349.49" y="1839.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (186,552,428 samples, 0.16%)</title><rect x="383.2" y="1781" width="1.9" height="15.0" fill="rgb(238,69,24)" rx="2" ry="2" />
<text x="386.23" y="1791.5" ></text>
</g>
<g >
<title>enqueue_task_fair (27,850,660 samples, 0.02%)</title><rect x="81.8" y="1749" width="0.3" height="15.0" fill="rgb(252,168,41)" rx="2" ry="2" />
<text x="84.80" y="1759.5" ></text>
</g>
<g >
<title>finish_task_switch (463,786,431 samples, 0.40%)</title><rect x="275.9" y="1893" width="4.8" height="15.0" fill="rgb(232,142,19)" rx="2" ry="2" />
<text x="278.92" y="1903.5" ></text>
</g>
<g >
<title>event_sched_in (198,357,521 samples, 0.17%)</title><rect x="314.8" y="1797" width="2.1" height="15.0" fill="rgb(244,39,31)" rx="2" ry="2" />
<text x="317.82" y="1807.5" ></text>
</g>
<g >
<title>operator delete (14,775,214 samples, 0.01%)</title><rect x="125.2" y="2021" width="0.2" height="15.0" fill="rgb(235,111,28)" rx="2" ry="2" />
<text x="128.21" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1637" width="1.7" height="15.0" fill="rgb(213,222,28)" rx="2" ry="2" />
<text x="128.36" y="1647.5" ></text>
</g>
<g >
<title>newidle_balance (124,048,700 samples, 0.11%)</title><rect x="461.2" y="1893" width="1.2" height="15.0" fill="rgb(244,12,0)" rx="2" ry="2" />
<text x="464.18" y="1903.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,294,781,338 samples, 1.12%)</title><rect x="399.4" y="1925" width="13.3" height="15.0" fill="rgb(221,53,36)" rx="2" ry="2" />
<text x="402.39" y="1935.5" ></text>
</g>
<g >
<title>_raw_spin_lock (18,207,362 samples, 0.02%)</title><rect x="158.7" y="1909" width="0.2" height="15.0" fill="rgb(225,167,31)" rx="2" ry="2" />
<text x="161.70" y="1919.5" ></text>
</g>
<g >
<title>node::InternalMakeCallback (95,884,613 samples, 0.08%)</title><rect x="75.0" y="1989" width="0.9" height="15.0" fill="rgb(217,200,5)" rx="2" ry="2" />
<text x="77.95" y="1999.5" ></text>
</g>
<g >
<title>futex_wait (3,691,190,408 samples, 3.20%)</title><rect x="425.1" y="1973" width="37.8" height="15.0" fill="rgb(210,130,53)" rx="2" ry="2" />
<text x="428.09" y="1983.5" >fut..</text>
</g>
<g >
<title>sock_write_iter (393,471,822 samples, 0.34%)</title><rect x="249.9" y="1957" width="4.1" height="15.0" fill="rgb(226,80,7)" rx="2" ry="2" />
<text x="252.94" y="1967.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (29,023,238 samples, 0.03%)</title><rect x="281.7" y="1797" width="0.3" height="15.0" fill="rgb(224,218,52)" rx="2" ry="2" />
<text x="284.65" y="1807.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1,220,520,757 samples, 1.06%)</title><rect x="342.6" y="1909" width="12.5" height="15.0" fill="rgb(250,206,43)" rx="2" ry="2" />
<text x="345.65" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (75,842,767 samples, 0.07%)</title><rect x="69.5" y="1973" width="0.8" height="15.0" fill="rgb(234,168,14)" rx="2" ry="2" />
<text x="72.48" y="1983.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (23,702,985 samples, 0.02%)</title><rect x="165.0" y="1829" width="0.3" height="15.0" fill="rgb(229,129,53)" rx="2" ry="2" />
<text x="168.01" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1093" width="1.7" height="15.0" fill="rgb(210,101,31)" rx="2" ry="2" />
<text x="128.36" y="1103.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (51,506,538 samples, 0.04%)</title><rect x="352.0" y="1797" width="0.5" height="15.0" fill="rgb(225,215,30)" rx="2" ry="2" />
<text x="354.96" y="1807.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (81,211,258 samples, 0.07%)</title><rect x="460.3" y="1877" width="0.9" height="15.0" fill="rgb(228,54,48)" rx="2" ry="2" />
<text x="463.35" y="1887.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (57,045,574 samples, 0.05%)</title><rect x="259.0" y="2005" width="0.6" height="15.0" fill="rgb(223,165,10)" rx="2" ry="2" />
<text x="262.03" y="2015.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (44,334,919 samples, 0.04%)</title><rect x="33.1" y="1829" width="0.5" height="15.0" fill="rgb(250,110,14)" rx="2" ry="2" />
<text x="36.15" y="1839.5" ></text>
</g>
<g >
<title>__qdisc_run (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1669" width="1.4" height="15.0" fill="rgb(240,6,27)" rx="2" ry="2" />
<text x="330.52" y="1679.5" ></text>
</g>
<g >
<title>pick_next_task_fair (378,124,574 samples, 0.33%)</title><rect x="165.3" y="1909" width="3.8" height="15.0" fill="rgb(242,97,1)" rx="2" ry="2" />
<text x="168.27" y="1919.5" ></text>
</g>
<g >
<title>[[vdso]] (25,413,940 samples, 0.02%)</title><rect x="391.4" y="2037" width="0.3" height="15.0" fill="rgb(249,34,54)" rx="2" ry="2" />
<text x="394.44" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1973" width="1.7" height="15.0" fill="rgb(219,31,28)" rx="2" ry="2" />
<text x="128.36" y="1983.5" ></text>
</g>
<g >
<title>__x64_sys_poll (3,037,395,457 samples, 2.64%)</title><rect x="187.4" y="1989" width="31.1" height="15.0" fill="rgb(207,195,18)" rx="2" ry="2" />
<text x="190.40" y="1999.5" >__..</text>
</g>
<g >
<title>tcp_sendmsg (393,471,822 samples, 0.34%)</title><rect x="249.9" y="1925" width="4.1" height="15.0" fill="rgb(206,96,54)" rx="2" ry="2" />
<text x="252.94" y="1935.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (30,936,695 samples, 0.03%)</title><rect x="460.9" y="1845" width="0.3" height="15.0" fill="rgb(254,156,6)" rx="2" ry="2" />
<text x="463.86" y="1855.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (30,266,762 samples, 0.03%)</title><rect x="195.7" y="1925" width="0.3" height="15.0" fill="rgb(216,113,37)" rx="2" ry="2" />
<text x="198.68" y="1935.5" ></text>
</g>
<g >
<title>__wake_up_common (216,931,016 samples, 0.19%)</title><rect x="145.5" y="1957" width="2.2" height="15.0" fill="rgb(247,152,45)" rx="2" ry="2" />
<text x="148.52" y="1967.5" ></text>
</g>
<g >
<title>enqueue_entity (27,850,660 samples, 0.02%)</title><rect x="81.8" y="1733" width="0.3" height="15.0" fill="rgb(216,134,42)" rx="2" ry="2" />
<text x="84.80" y="1743.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (74,134,569 samples, 0.06%)</title><rect x="330.7" y="2053" width="0.8" height="15.0" fill="rgb(240,143,53)" rx="2" ry="2" />
<text x="333.75" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (14,387,470 samples, 0.01%)</title><rect x="377.1" y="1957" width="0.2" height="15.0" fill="rgb(244,214,0)" rx="2" ry="2" />
<text x="380.14" y="1967.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromises /srv/service/node_modules/bluebird/js/release/promise.js:718 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1797" width="10.2" height="15.0" fill="rgb(251,12,22)" rx="2" ry="2" />
<text x="115.99" y="1807.5" ></text>
</g>
<g >
<title>sched_clock_cpu (27,563,893 samples, 0.02%)</title><rect x="210.3" y="1845" width="0.3" height="15.0" fill="rgb(213,95,12)" rx="2" ry="2" />
<text x="213.27" y="1855.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (14,604,161 samples, 0.01%)</title><rect x="258.6" y="1829" width="0.2" height="15.0" fill="rgb(242,109,6)" rx="2" ry="2" />
<text x="261.62" y="1839.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (25,260,500 samples, 0.02%)</title><rect x="165.0" y="1877" width="0.3" height="15.0" fill="rgb(236,148,17)" rx="2" ry="2" />
<text x="168.01" y="1887.5" ></text>
</g>
<g >
<title>do_futex (1,674,764,403 samples, 1.45%)</title><rect x="155.1" y="1989" width="17.2" height="15.0" fill="rgb(248,221,26)" rx="2" ry="2" />
<text x="158.14" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,179,111 samples, 0.01%)</title><rect x="398.0" y="1973" width="0.1" height="15.0" fill="rgb(244,37,52)" rx="2" ry="2" />
<text x="400.99" y="1983.5" ></text>
</g>
<g >
<title>psi_group_change (138,347,512 samples, 0.12%)</title><rect x="64.9" y="1893" width="1.4" height="15.0" fill="rgb(216,107,37)" rx="2" ry="2" />
<text x="67.90" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1717" width="1.7" height="15.0" fill="rgb(254,117,42)" rx="2" ry="2" />
<text x="128.36" y="1727.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,303,193,380 samples, 2.87%)</title><rect x="185.3" y="2005" width="33.9" height="15.0" fill="rgb(253,78,18)" rx="2" ry="2" />
<text x="188.34" y="2015.5" >do..</text>
</g>
<g >
<title>psi_group_change (21,046,062 samples, 0.02%)</title><rect x="321.6" y="1861" width="0.2" height="15.0" fill="rgb(205,84,25)" rx="2" ry="2" />
<text x="324.57" y="1871.5" ></text>
</g>
<g >
<title>ctx_sched_in (409,171,969 samples, 0.36%)</title><rect x="206.1" y="1877" width="4.2" height="15.0" fill="rgb(206,170,28)" rx="2" ry="2" />
<text x="209.07" y="1887.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (51,506,538 samples, 0.04%)</title><rect x="352.0" y="1829" width="0.5" height="15.0" fill="rgb(227,2,32)" rx="2" ry="2" />
<text x="354.96" y="1839.5" ></text>
</g>
<g >
<title>finish_task_switch (668,448,662 samples, 0.58%)</title><rect x="204.2" y="1909" width="6.8" height="15.0" fill="rgb(238,106,19)" rx="2" ry="2" />
<text x="207.18" y="1919.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (11,016,041 samples, 0.01%)</title><rect x="314.6" y="1845" width="0.1" height="15.0" fill="rgb(209,95,21)" rx="2" ry="2" />
<text x="317.62" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="261" width="1.7" height="15.0" fill="rgb(222,85,22)" rx="2" ry="2" />
<text x="128.36" y="271.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (19,083,052 samples, 0.02%)</title><rect x="280.5" y="1797" width="0.2" height="15.0" fill="rgb(212,229,23)" rx="2" ry="2" />
<text x="283.47" y="1807.5" ></text>
</g>
<g >
<title>__kfree_skb (104,503,294 samples, 0.09%)</title><rect x="293.2" y="1893" width="1.1" height="15.0" fill="rgb(211,195,1)" rx="2" ry="2" />
<text x="296.24" y="1903.5" ></text>
</g>
<g >
<title>clock_gettime (25,892,699 samples, 0.02%)</title><rect x="326.8" y="2037" width="0.3" height="15.0" fill="rgb(212,69,19)" rx="2" ry="2" />
<text x="329.80" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (156,067,372 samples, 0.14%)</title><rect x="125.5" y="117" width="1.6" height="15.0" fill="rgb(207,170,33)" rx="2" ry="2" />
<text x="128.47" y="127.5" ></text>
</g>
<g >
<title>mutex_lock (21,464,035 samples, 0.02%)</title><rect x="1097.3" y="1925" width="0.2" height="15.0" fill="rgb(244,133,14)" rx="2" ry="2" />
<text x="1100.28" y="1935.5" ></text>
</g>
<g >
<title>walk_component (26,213,777 samples, 0.02%)</title><rect x="128.0" y="1925" width="0.3" height="15.0" fill="rgb(242,136,6)" rx="2" ry="2" />
<text x="131.00" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="725" width="1.7" height="15.0" fill="rgb(225,186,1)" rx="2" ry="2" />
<text x="128.36" y="735.5" ></text>
</g>
<g >
<title>rd_kafka_q_pop_serve.localalias (37,115,185 samples, 0.03%)</title><rect x="331.9" y="2053" width="0.4" height="15.0" fill="rgb(251,219,1)" rx="2" ry="2" />
<text x="334.90" y="2063.5" ></text>
</g>
<g >
<title>ctx_sched_in (240,559,639 samples, 0.21%)</title><rect x="406.6" y="1797" width="2.5" height="15.0" fill="rgb(237,169,1)" rx="2" ry="2" />
<text x="409.61" y="1807.5" ></text>
</g>
<g >
<title>tick_sched_timer (123,453,141 samples, 0.11%)</title><rect x="1181.2" y="1957" width="1.3" height="15.0" fill="rgb(205,156,45)" rx="2" ry="2" />
<text x="1184.21" y="1967.5" ></text>
</g>
<g >
<title>[libc.so.6] (776,733,183 samples, 0.67%)</title><rect x="76.0" y="2037" width="8.0" height="15.0" fill="rgb(226,94,0)" rx="2" ry="2" />
<text x="79.03" y="2047.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (27,850,660 samples, 0.02%)</title><rect x="81.8" y="1797" width="0.3" height="15.0" fill="rgb(245,214,47)" rx="2" ry="2" />
<text x="84.80" y="1807.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (17,388,773 samples, 0.02%)</title><rect x="210.8" y="1797" width="0.2" height="15.0" fill="rgb(230,139,20)" rx="2" ry="2" />
<text x="213.84" y="1807.5" ></text>
</g>
<g >
<title>get_nohz_timer_target (17,394,589 samples, 0.02%)</title><rect x="379.8" y="1861" width="0.2" height="15.0" fill="rgb(252,132,13)" rx="2" ry="2" />
<text x="382.81" y="1871.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (130,224,442 samples, 0.11%)</title><rect x="25.8" y="1909" width="1.3" height="15.0" fill="rgb(249,227,39)" rx="2" ry="2" />
<text x="28.80" y="1919.5" ></text>
</g>
<g >
<title>CRYPTO_gcm128_aad (25,458,621 samples, 0.02%)</title><rect x="300.3" y="2053" width="0.3" height="15.0" fill="rgb(216,60,6)" rx="2" ry="2" />
<text x="303.30" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="133" width="1.7" height="15.0" fill="rgb(219,118,9)" rx="2" ry="2" />
<text x="128.36" y="143.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (1,015,985,951 samples, 0.88%)</title><rect x="37.6" y="1877" width="10.4" height="15.0" fill="rgb(251,115,4)" rx="2" ry="2" />
<text x="40.55" y="1887.5" ></text>
</g>
<g >
<title>__calc_delta (53,769,097 samples, 0.05%)</title><rect x="160.8" y="1861" width="0.6" height="15.0" fill="rgb(212,28,22)" rx="2" ry="2" />
<text x="163.84" y="1871.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (78,685,996 samples, 0.07%)</title><rect x="465.3" y="1973" width="0.8" height="15.0" fill="rgb(230,80,6)" rx="2" ry="2" />
<text x="468.26" y="1983.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (114,205,807 samples, 0.10%)</title><rect x="962.8" y="1957" width="1.2" height="15.0" fill="rgb(244,153,14)" rx="2" ry="2" />
<text x="965.82" y="1967.5" ></text>
</g>
<g >
<title>sched_clock (29,833,241 samples, 0.03%)</title><rect x="351.5" y="1781" width="0.3" height="15.0" fill="rgb(218,201,46)" rx="2" ry="2" />
<text x="354.53" y="1791.5" ></text>
</g>
<g >
<title>CRYPTO_atomic_load (27,776,713 samples, 0.02%)</title><rect x="175.1" y="2037" width="0.3" height="15.0" fill="rgb(225,15,40)" rx="2" ry="2" />
<text x="178.07" y="2047.5" ></text>
</g>
<g >
<title>pthread_once (113,147,656 samples, 0.10%)</title><rect x="240.0" y="2053" width="1.1" height="15.0" fill="rgb(226,114,25)" rx="2" ry="2" />
<text x="242.97" y="2063.5" ></text>
</g>
<g >
<title>futex_wait (146,835,052 samples, 0.13%)</title><rect x="78.7" y="1957" width="1.5" height="15.0" fill="rgb(246,187,19)" rx="2" ry="2" />
<text x="81.71" y="1967.5" ></text>
</g>
<g >
<title>native_write_msr (28,144,856 samples, 0.02%)</title><rect x="374.2" y="1861" width="0.2" height="15.0" fill="rgb(236,106,10)" rx="2" ry="2" />
<text x="377.15" y="1871.5" ></text>
</g>
<g >
<title>__alloc_skb (191,981,523 samples, 0.17%)</title><rect x="252.0" y="1877" width="2.0" height="15.0" fill="rgb(216,122,32)" rx="2" ry="2" />
<text x="255.00" y="1887.5" ></text>
</g>
<g >
<title>tcp_sendmsg (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1925" width="1.1" height="15.0" fill="rgb(223,105,32)" rx="2" ry="2" />
<text x="373.99" y="1935.5" ></text>
</g>
<g >
<title>__fget_light (36,006,835 samples, 0.03%)</title><rect x="400.6" y="1877" width="0.4" height="15.0" fill="rgb(252,172,15)" rx="2" ry="2" />
<text x="403.63" y="1887.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (203,840,794 samples, 0.18%)</title><rect x="145.5" y="1893" width="2.1" height="15.0" fill="rgb(245,111,33)" rx="2" ry="2" />
<text x="148.52" y="1903.5" ></text>
</g>
<g >
<title>wake_up_q (175,352,608 samples, 0.15%)</title><rect x="80.8" y="1941" width="1.8" height="15.0" fill="rgb(239,199,53)" rx="2" ry="2" />
<text x="83.79" y="1951.5" ></text>
</g>
<g >
<title>__seccomp_filter (147,387,933 samples, 0.13%)</title><rect x="68.7" y="1989" width="1.6" height="15.0" fill="rgb(250,180,5)" rx="2" ry="2" />
<text x="71.74" y="1999.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,388,802,328 samples, 1.20%)</title><rect x="513.3" y="1909" width="14.2" height="15.0" fill="rgb(246,44,7)" rx="2" ry="2" />
<text x="516.32" y="1919.5" ></text>
</g>
<g >
<title>lookup_fast (26,213,777 samples, 0.02%)</title><rect x="128.0" y="1909" width="0.3" height="15.0" fill="rgb(227,71,11)" rx="2" ry="2" />
<text x="131.00" y="1919.5" ></text>
</g>
<g >
<title>clock_gettime (25,825,037 samples, 0.02%)</title><rect x="414.7" y="2053" width="0.3" height="15.0" fill="rgb(234,100,41)" rx="2" ry="2" />
<text x="417.71" y="2063.5" ></text>
</g>
<g >
<title>update_curr (17,552,471 samples, 0.02%)</title><rect x="396.7" y="1877" width="0.1" height="15.0" fill="rgb(216,89,4)" rx="2" ry="2" />
<text x="399.66" y="1887.5" ></text>
</g>
<g >
<title>__schedule (741,181,878 samples, 0.64%)</title><rect x="403.1" y="1845" width="7.6" height="15.0" fill="rgb(225,25,16)" rx="2" ry="2" />
<text x="406.15" y="1855.5" ></text>
</g>
<g >
<title>aa_label_sk_perm.part.0 (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1877" width="1.1" height="15.0" fill="rgb(241,226,39)" rx="2" ry="2" />
<text x="298.98" y="1887.5" ></text>
</g>
<g >
<title>native_write_msr (11,016,041 samples, 0.01%)</title><rect x="314.6" y="1829" width="0.1" height="15.0" fill="rgb(245,158,33)" rx="2" ry="2" />
<text x="317.62" y="1839.5" ></text>
</g>
<g >
<title>__ip_finish_output (135,467,584 samples, 0.12%)</title><rect x="294.6" y="1861" width="1.4" height="15.0" fill="rgb(227,89,43)" rx="2" ry="2" />
<text x="297.60" y="1871.5" ></text>
</g>
<g >
<title>__fget_light (96,159,459 samples, 0.08%)</title><rect x="377.8" y="1893" width="1.0" height="15.0" fill="rgb(218,54,28)" rx="2" ry="2" />
<text x="380.80" y="1903.5" ></text>
</g>
<g >
<title>ctx_sched_in (28,440,883 samples, 0.02%)</title><rect x="210.3" y="1861" width="0.3" height="15.0" fill="rgb(247,147,10)" rx="2" ry="2" />
<text x="213.26" y="1871.5" ></text>
</g>
<g >
<title>__schedule (3,509,884,337 samples, 3.05%)</title><rect x="426.7" y="1925" width="36.0" height="15.0" fill="rgb(240,219,42)" rx="2" ry="2" />
<text x="429.73" y="1935.5" >__s..</text>
</g>
<g >
<title>rd_kafka_transport_io_serve (38,087,750 samples, 0.03%)</title><rect x="229.3" y="2037" width="0.4" height="15.0" fill="rgb(241,26,42)" rx="2" ry="2" />
<text x="232.27" y="2047.5" ></text>
</g>
<g >
<title>fib_table_lookup (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1605" width="0.7" height="15.0" fill="rgb(219,94,43)" rx="2" ry="2" />
<text x="254.35" y="1615.5" ></text>
</g>
<g >
<title>read (131,648,858 samples, 0.11%)</title><rect x="327.5" y="2037" width="1.4" height="15.0" fill="rgb(207,150,44)" rx="2" ry="2" />
<text x="330.52" y="2047.5" ></text>
</g>
<g >
<title>__schedule (1,563,817,695 samples, 1.36%)</title><rect x="200.4" y="1925" width="16.0" height="15.0" fill="rgb(210,49,31)" rx="2" ry="2" />
<text x="203.44" y="1935.5" ></text>
</g>
<g >
<title>__schedule (4,107,329,985 samples, 3.56%)</title><rect x="24.4" y="1925" width="42.0" height="15.0" fill="rgb(254,136,0)" rx="2" ry="2" />
<text x="27.38" y="1935.5" >__s..</text>
</g>
<g >
<title>poll_freewait (91,227,457 samples, 0.08%)</title><rect x="195.1" y="1957" width="0.9" height="15.0" fill="rgb(218,34,16)" rx="2" ry="2" />
<text x="198.05" y="1967.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (21,798,461 samples, 0.02%)</title><rect x="463.3" y="1941" width="0.2" height="15.0" fill="rgb(213,175,25)" rx="2" ry="2" />
<text x="466.26" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1765" width="1.7" height="15.0" fill="rgb(217,15,48)" rx="2" ry="2" />
<text x="128.36" y="1775.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (491,991,958 samples, 0.43%)</title><rect x="1092.5" y="2021" width="5.0" height="15.0" fill="rgb(235,189,51)" rx="2" ry="2" />
<text x="1095.46" y="2031.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (20,096,746 samples, 0.02%)</title><rect x="397.0" y="1861" width="0.2" height="15.0" fill="rgb(214,42,7)" rx="2" ry="2" />
<text x="400.03" y="1871.5" ></text>
</g>
<g >
<title>v8::internal::Execution::Call (3,063,302,572 samples, 2.66%)</title><rect x="93.8" y="1989" width="31.4" height="15.0" fill="rgb(214,35,31)" rx="2" ry="2" />
<text x="96.85" y="1999.5" >v8..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,285,401 samples, 0.02%)</title><rect x="258.8" y="1973" width="0.2" height="15.0" fill="rgb(235,193,45)" rx="2" ry="2" />
<text x="261.77" y="1983.5" ></text>
</g>
<g >
<title>security_file_permission (188,744,067 samples, 0.16%)</title><rect x="234.0" y="1957" width="1.9" height="15.0" fill="rgb(228,73,11)" rx="2" ry="2" />
<text x="236.97" y="1967.5" ></text>
</g>
<g >
<title>__pollwait (30,048,894 samples, 0.03%)</title><rect x="283.5" y="1909" width="0.3" height="15.0" fill="rgb(247,139,54)" rx="2" ry="2" />
<text x="286.54" y="1919.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (390,589,112 samples, 0.34%)</title><rect x="332.3" y="2037" width="4.0" height="15.0" fill="rgb(225,118,27)" rx="2" ry="2" />
<text x="335.28" y="2047.5" ></text>
</g>
<g >
<title>[[vdso]] (12,932,344 samples, 0.01%)</title><rect x="360.2" y="2021" width="0.1" height="15.0" fill="rgb(231,212,24)" rx="2" ry="2" />
<text x="363.20" y="2031.5" ></text>
</g>
<g >
<title>merge_sched_in (29,749,534 samples, 0.03%)</title><rect x="302.5" y="1845" width="0.3" height="15.0" fill="rgb(216,167,42)" rx="2" ry="2" />
<text x="305.45" y="1855.5" ></text>
</g>
<g >
<title>ttwu_do_activate (34,086,996 samples, 0.03%)</title><rect x="807.5" y="1893" width="0.4" height="15.0" fill="rgb(206,164,54)" rx="2" ry="2" />
<text x="810.51" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1413" width="1.7" height="15.0" fill="rgb(237,186,37)" rx="2" ry="2" />
<text x="128.36" y="1423.5" ></text>
</g>
<g >
<title>dequeue_task_fair (63,974,565 samples, 0.06%)</title><rect x="396.4" y="1909" width="0.6" height="15.0" fill="rgb(208,85,38)" rx="2" ry="2" />
<text x="399.36" y="1919.5" ></text>
</g>
<g >
<title>__secure_computing (40,571,155 samples, 0.04%)</title><rect x="70.3" y="1989" width="0.4" height="15.0" fill="rgb(208,12,33)" rx="2" ry="2" />
<text x="73.25" y="1999.5" ></text>
</g>
<g >
<title>cfree (124,733,189 samples, 0.11%)</title><rect x="288.5" y="2037" width="1.3" height="15.0" fill="rgb(238,56,47)" rx="2" ry="2" />
<text x="291.48" y="2047.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (608,886,504 samples, 0.53%)</title><rect x="345.6" y="1845" width="6.2" height="15.0" fill="rgb(242,210,18)" rx="2" ry="2" />
<text x="348.60" y="1855.5" ></text>
</g>
<g >
<title>__fget_files (72,516,057 samples, 0.06%)</title><rect x="269.5" y="1925" width="0.7" height="15.0" fill="rgb(208,130,27)" rx="2" ry="2" />
<text x="272.50" y="1935.5" ></text>
</g>
<g >
<title>mtx_unlock (34,278,533 samples, 0.03%)</title><rect x="141.3" y="2053" width="0.4" height="15.0" fill="rgb(242,199,26)" rx="2" ry="2" />
<text x="144.30" y="2063.5" ></text>
</g>
<g >
<title>ERR_set_mark (57,242,499 samples, 0.05%)</title><rect x="261.6" y="2037" width="0.6" height="15.0" fill="rgb(232,224,14)" rx="2" ry="2" />
<text x="264.64" y="2047.5" ></text>
</g>
<g >
<title>do_futex (209,047,297 samples, 0.18%)</title><rect x="395.9" y="1989" width="2.1" height="15.0" fill="rgb(243,150,25)" rx="2" ry="2" />
<text x="398.85" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (25,238,583 samples, 0.02%)</title><rect x="17.1" y="1941" width="0.3" height="15.0" fill="rgb(212,112,20)" rx="2" ry="2" />
<text x="20.13" y="1951.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (27,349,869 samples, 0.02%)</title><rect x="367.4" y="1845" width="0.2" height="15.0" fill="rgb(227,173,38)" rx="2" ry="2" />
<text x="370.36" y="1855.5" ></text>
</g>
<g >
<title>__seccomp_filter (25,906,150 samples, 0.02%)</title><rect x="297.1" y="1973" width="0.3" height="15.0" fill="rgb(245,8,32)" rx="2" ry="2" />
<text x="300.13" y="1983.5" ></text>
</g>
<g >
<title>tick_sched_handle (20,956,988 samples, 0.02%)</title><rect x="385.5" y="1717" width="0.3" height="15.0" fill="rgb(206,77,52)" rx="2" ry="2" />
<text x="388.55" y="1727.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (32,832,262 samples, 0.03%)</title><rect x="326.5" y="2005" width="0.3" height="15.0" fill="rgb(210,49,30)" rx="2" ry="2" />
<text x="329.46" y="2015.5" ></text>
</g>
<g >
<title>perf_event_sched_in (23,292,607 samples, 0.02%)</title><rect x="460.1" y="1877" width="0.2" height="15.0" fill="rgb(254,157,34)" rx="2" ry="2" />
<text x="463.06" y="1887.5" ></text>
</g>
<g >
<title>update_blocked_averages (124,048,700 samples, 0.11%)</title><rect x="461.2" y="1829" width="1.2" height="15.0" fill="rgb(206,157,54)" rx="2" ry="2" />
<text x="464.18" y="1839.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (133,001,800 samples, 0.12%)</title><rect x="283.9" y="1989" width="1.4" height="15.0" fill="rgb(237,168,39)" rx="2" ry="2" />
<text x="286.90" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (423,934,041 samples, 0.37%)</title><rect x="293.2" y="2005" width="4.4" height="15.0" fill="rgb(248,158,40)" rx="2" ry="2" />
<text x="296.24" y="2015.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1845" width="0.7" height="15.0" fill="rgb(219,96,3)" rx="2" ry="2" />
<text x="254.35" y="1855.5" ></text>
</g>
<g >
<title>sk_stream_alloc_skb (191,981,523 samples, 0.17%)</title><rect x="252.0" y="1893" width="2.0" height="15.0" fill="rgb(226,147,54)" rx="2" ry="2" />
<text x="255.00" y="1903.5" ></text>
</g>
<g >
<title>__seccomp_filter (10,351,755 samples, 0.01%)</title><rect x="82.7" y="1973" width="0.2" height="15.0" fill="rgb(205,92,24)" rx="2" ry="2" />
<text x="85.75" y="1983.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (29,023,238 samples, 0.03%)</title><rect x="281.7" y="1781" width="0.3" height="15.0" fill="rgb(239,120,34)" rx="2" ry="2" />
<text x="284.65" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1781" width="1.7" height="15.0" fill="rgb(233,20,50)" rx="2" ry="2" />
<text x="128.36" y="1791.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1,117,972,795 samples, 0.97%)</title><rect x="271.0" y="1941" width="11.4" height="15.0" fill="rgb(215,54,10)" rx="2" ry="2" />
<text x="273.97" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="741" width="1.7" height="15.0" fill="rgb(229,101,41)" rx="2" ry="2" />
<text x="128.36" y="751.5" ></text>
</g>
<g >
<title>aa_sk_perm (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1893" width="1.1" height="15.0" fill="rgb(212,108,37)" rx="2" ry="2" />
<text x="298.98" y="1903.5" ></text>
</g>
<g >
<title>rb_insert_color (25,077,917 samples, 0.02%)</title><rect x="301.8" y="1893" width="0.3" height="15.0" fill="rgb(216,124,42)" rx="2" ry="2" />
<text x="304.80" y="1903.5" ></text>
</g>
<g >
<title>__kfree_skb (27,311,093 samples, 0.02%)</title><rect x="367.1" y="1893" width="0.3" height="15.0" fill="rgb(223,196,20)" rx="2" ry="2" />
<text x="370.08" y="1903.5" ></text>
</g>
<g >
<title>pthread_once (26,749,864 samples, 0.02%)</title><rect x="223.8" y="2037" width="0.3" height="15.0" fill="rgb(247,88,53)" rx="2" ry="2" />
<text x="226.79" y="2047.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (526,414,334 samples, 0.46%)</title><rect x="314.4" y="1861" width="5.3" height="15.0" fill="rgb(211,127,34)" rx="2" ry="2" />
<text x="317.35" y="1871.5" ></text>
</g>
<g >
<title>update_load_avg (45,664,815 samples, 0.04%)</title><rect x="313.8" y="1845" width="0.5" height="15.0" fill="rgb(208,51,8)" rx="2" ry="2" />
<text x="316.84" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (1,393,536,518 samples, 1.21%)</title><rect x="376.5" y="2053" width="14.3" height="15.0" fill="rgb(210,162,11)" rx="2" ry="2" />
<text x="379.50" y="2063.5" ></text>
</g>
<g >
<title>mtx_lock (112,304,008 samples, 0.10%)</title><rect x="766.4" y="2021" width="1.2" height="15.0" fill="rgb(218,168,13)" rx="2" ry="2" />
<text x="769.43" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,630,231,455 samples, 1.41%)</title><rect x="267.2" y="1989" width="16.7" height="15.0" fill="rgb(239,149,42)" rx="2" ry="2" />
<text x="270.21" y="1999.5" ></text>
</g>
<g >
<title>malloc (64,259,050 samples, 0.06%)</title><rect x="140.6" y="2053" width="0.7" height="15.0" fill="rgb(234,30,14)" rx="2" ry="2" />
<text x="143.64" y="2063.5" ></text>
</g>
<g >
<title>rd_kafka_cgrp_serve (4,210,717,614 samples, 3.65%)</title><rect x="1139.4" y="2053" width="43.1" height="15.0" fill="rgb(237,99,46)" rx="2" ry="2" />
<text x="1142.37" y="2063.5" >rd_k..</text>
</g>
<g >
<title>__cgroup_account_cputime (21,090,549 samples, 0.02%)</title><rect x="405.4" y="1781" width="0.3" height="15.0" fill="rgb(223,140,17)" rx="2" ry="2" />
<text x="408.44" y="1791.5" ></text>
</g>
<g >
<title>__poll (1,877,379,881 samples, 1.63%)</title><rect x="305.2" y="2005" width="19.3" height="15.0" fill="rgb(213,13,36)" rx="2" ry="2" />
<text x="308.25" y="2015.5" ></text>
</g>
<g >
<title>psi_group_change (56,652,307 samples, 0.05%)</title><rect x="147.0" y="1829" width="0.6" height="15.0" fill="rgb(226,144,20)" rx="2" ry="2" />
<text x="150.03" y="1839.5" ></text>
</g>
<g >
<title>psi_group_change (34,140,138 samples, 0.03%)</title><rect x="303.4" y="1893" width="0.3" height="15.0" fill="rgb(236,62,16)" rx="2" ry="2" />
<text x="306.38" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1941" width="1.7" height="15.0" fill="rgb(244,85,14)" rx="2" ry="2" />
<text x="128.36" y="1951.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (27,045,541 samples, 0.02%)</title><rect x="352.2" y="1717" width="0.3" height="15.0" fill="rgb(235,88,8)" rx="2" ry="2" />
<text x="355.21" y="1727.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (879,658,387 samples, 0.76%)</title><rect x="401.7" y="1877" width="9.0" height="15.0" fill="rgb(224,201,43)" rx="2" ry="2" />
<text x="404.73" y="1887.5" ></text>
</g>
<g >
<title>rd_kafka_broker_timeout_scan (39,011,229 samples, 0.03%)</title><rect x="331.5" y="2053" width="0.4" height="15.0" fill="rgb(249,150,50)" rx="2" ry="2" />
<text x="334.51" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1013" width="1.7" height="15.0" fill="rgb(252,147,44)" rx="2" ry="2" />
<text x="128.36" y="1023.5" ></text>
</g>
<g >
<title>rb_insert_color (17,516,358 samples, 0.02%)</title><rect x="310.1" y="1861" width="0.2" height="15.0" fill="rgb(227,149,5)" rx="2" ry="2" />
<text x="313.11" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="341" width="1.7" height="15.0" fill="rgb(222,102,14)" rx="2" ry="2" />
<text x="128.36" y="351.5" ></text>
</g>
<g >
<title>newidle_balance (129,125,182 samples, 0.11%)</title><rect x="385.8" y="1829" width="1.3" height="15.0" fill="rgb(241,183,54)" rx="2" ry="2" />
<text x="388.78" y="1839.5" ></text>
</g>
<g >
<title>switch_fpu_return (30,183,524 samples, 0.03%)</title><rect x="324.2" y="1941" width="0.3" height="15.0" fill="rgb(238,82,18)" rx="2" ry="2" />
<text x="327.16" y="1951.5" ></text>
</g>
<g >
<title>clock_gettime (69,069,685 samples, 0.06%)</title><rect x="133.2" y="2053" width="0.7" height="15.0" fill="rgb(250,68,22)" rx="2" ry="2" />
<text x="136.22" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (17,540,836 samples, 0.02%)</title><rect x="280.5" y="1781" width="0.2" height="15.0" fill="rgb(249,10,7)" rx="2" ry="2" />
<text x="283.49" y="1791.5" ></text>
</g>
<g >
<title>tcp_recvmsg (132,186,802 samples, 0.11%)</title><rect x="293.2" y="1909" width="1.4" height="15.0" fill="rgb(235,90,25)" rx="2" ry="2" />
<text x="296.24" y="1919.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (19,083,052 samples, 0.02%)</title><rect x="280.5" y="1861" width="0.2" height="15.0" fill="rgb(211,173,12)" rx="2" ry="2" />
<text x="283.47" y="1871.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (269,174,271 samples, 0.23%)</title><rect x="20.0" y="1925" width="2.8" height="15.0" fill="rgb(216,61,38)" rx="2" ry="2" />
<text x="23.03" y="1935.5" ></text>
</g>
<g >
<title>remove_wait_queue (31,782,815 samples, 0.03%)</title><rect x="379.0" y="1877" width="0.4" height="15.0" fill="rgb(237,12,22)" rx="2" ry="2" />
<text x="382.04" y="1887.5" ></text>
</g>
<g >
<title>put_prev_task_fair (23,059,109 samples, 0.02%)</title><rect x="215.9" y="1909" width="0.3" height="15.0" fill="rgb(241,195,22)" rx="2" ry="2" />
<text x="218.95" y="1919.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (406,950,995 samples, 0.35%)</title><rect x="372.3" y="2037" width="4.2" height="15.0" fill="rgb(230,3,29)" rx="2" ry="2" />
<text x="375.34" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="757" width="1.7" height="15.0" fill="rgb(251,105,50)" rx="2" ry="2" />
<text x="128.36" y="767.5" ></text>
</g>
<g >
<title>ttwu_do_activate (47,241,688 samples, 0.04%)</title><rect x="1096.8" y="1861" width="0.5" height="15.0" fill="rgb(232,227,14)" rx="2" ry="2" />
<text x="1099.80" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1685" width="1.7" height="15.0" fill="rgb(238,182,9)" rx="2" ry="2" />
<text x="128.36" y="1695.5" ></text>
</g>
<g >
<title>newidle_balance (95,687,806 samples, 0.08%)</title><rect x="320.3" y="1861" width="1.0" height="15.0" fill="rgb(254,122,18)" rx="2" ry="2" />
<text x="323.33" y="1871.5" ></text>
</g>
<g >
<title>ctx_sched_in (247,339,740 samples, 0.21%)</title><rect x="382.7" y="1813" width="2.6" height="15.0" fill="rgb(213,124,4)" rx="2" ry="2" />
<text x="385.72" y="1823.5" ></text>
</g>
<g >
<title>new_sync_write (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1973" width="1.1" height="15.0" fill="rgb(224,48,24)" rx="2" ry="2" />
<text x="373.99" y="1983.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (14,604,161 samples, 0.01%)</title><rect x="258.6" y="1813" width="0.2" height="15.0" fill="rgb(205,187,1)" rx="2" ry="2" />
<text x="261.62" y="1823.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (31,651,377 samples, 0.03%)</title><rect x="319.7" y="1829" width="0.4" height="15.0" fill="rgb(244,215,24)" rx="2" ry="2" />
<text x="322.74" y="1839.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (55,177,020 samples, 0.05%)</title><rect x="26.6" y="1893" width="0.5" height="15.0" fill="rgb(248,107,47)" rx="2" ry="2" />
<text x="29.57" y="1903.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (409,171,969 samples, 0.36%)</title><rect x="206.1" y="1861" width="4.2" height="15.0" fill="rgb(208,115,8)" rx="2" ry="2" />
<text x="209.07" y="1871.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (27,106,312 samples, 0.02%)</title><rect x="215.7" y="1861" width="0.2" height="15.0" fill="rgb(245,19,14)" rx="2" ry="2" />
<text x="218.67" y="1871.5" ></text>
</g>
<g >
<title>timerqueue_add (155,720,994 samples, 0.14%)</title><rect x="156.9" y="1909" width="1.6" height="15.0" fill="rgb(244,209,45)" rx="2" ry="2" />
<text x="159.92" y="1919.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (16,394,730 samples, 0.01%)</title><rect x="303.7" y="2021" width="0.2" height="15.0" fill="rgb(229,132,11)" rx="2" ry="2" />
<text x="306.73" y="2031.5" ></text>
</g>
<g >
<title>v8::Function::Call (95,884,613 samples, 0.08%)</title><rect x="75.0" y="1973" width="0.9" height="15.0" fill="rgb(251,149,9)" rx="2" ry="2" />
<text x="77.95" y="1983.5" ></text>
</g>
<g >
<title>fstatat64 (26,213,777 samples, 0.02%)</title><rect x="128.0" y="2037" width="0.3" height="15.0" fill="rgb(212,139,19)" rx="2" ry="2" />
<text x="131.00" y="2047.5" ></text>
</g>
<g >
<title>_copy_to_iter (27,349,869 samples, 0.02%)</title><rect x="367.4" y="1861" width="0.2" height="15.0" fill="rgb(242,108,46)" rx="2" ry="2" />
<text x="370.36" y="1871.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (310,120,624 samples, 0.27%)</title><rect x="373.2" y="1957" width="3.2" height="15.0" fill="rgb(211,2,53)" rx="2" ry="2" />
<text x="376.22" y="1967.5" ></text>
</g>
<g >
<title>switch_fpu_return (25,332,830 samples, 0.02%)</title><rect x="72.6" y="1989" width="0.2" height="15.0" fill="rgb(216,42,45)" rx="2" ry="2" />
<text x="75.56" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,694,977,226 samples, 1.47%)</title><rect x="339.2" y="1957" width="17.3" height="15.0" fill="rgb(244,177,36)" rx="2" ry="2" />
<text x="342.19" y="1967.5" ></text>
</g>
<g >
<title>node::Environment::CheckImmediate (10,635,804 samples, 0.01%)</title><rect x="125.4" y="101" width="0.1" height="15.0" fill="rgb(250,81,33)" rx="2" ry="2" />
<text x="128.36" y="111.5" ></text>
</g>
<g >
<title>new_sync_read (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1957" width="1.4" height="15.0" fill="rgb(234,102,42)" rx="2" ry="2" />
<text x="330.52" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="677" width="1.7" height="15.0" fill="rgb(253,86,52)" rx="2" ry="2" />
<text x="128.36" y="687.5" ></text>
</g>
<g >
<title>deactivate_task (22,230,844 samples, 0.02%)</title><rect x="56.0" y="1861" width="0.2" height="15.0" fill="rgb(229,32,47)" rx="2" ry="2" />
<text x="59.02" y="1871.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (373,537,506 samples, 0.32%)</title><rect x="254.9" y="1957" width="3.9" height="15.0" fill="rgb(229,2,52)" rx="2" ry="2" />
<text x="257.95" y="1967.5" ></text>
</g>
<g >
<title>sched_clock_cpu (24,166,173 samples, 0.02%)</title><rect x="385.3" y="1781" width="0.2" height="15.0" fill="rgb(242,82,46)" rx="2" ry="2" />
<text x="388.30" y="1791.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (26,008,981 samples, 0.02%)</title><rect x="62.2" y="1797" width="0.3" height="15.0" fill="rgb(210,125,6)" rx="2" ry="2" />
<text x="65.22" y="1807.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (125,073,013 samples, 0.11%)</title><rect x="280.7" y="1829" width="1.3" height="15.0" fill="rgb(205,210,41)" rx="2" ry="2" />
<text x="283.67" y="1839.5" ></text>
</g>
<g >
<title>perf_swevent_add (198,357,521 samples, 0.17%)</title><rect x="314.8" y="1781" width="2.1" height="15.0" fill="rgb(219,70,49)" rx="2" ry="2" />
<text x="317.82" y="1791.5" ></text>
</g>
<g >
<title>rd_kafka_broker_consumer_serve (17,718,640 samples, 0.02%)</title><rect x="330.6" y="2053" width="0.1" height="15.0" fill="rgb(254,32,21)" rx="2" ry="2" />
<text x="333.56" y="2063.5" ></text>
</g>
<g >
<title>finish_task_switch (260,872,850 samples, 0.23%)</title><rect x="256.1" y="1909" width="2.7" height="15.0" fill="rgb(244,55,8)" rx="2" ry="2" />
<text x="259.10" y="1919.5" ></text>
</g>
<g >
<title>dequeue_task_fair (316,421,420 samples, 0.27%)</title><rect x="272.7" y="1893" width="3.2" height="15.0" fill="rgb(226,105,54)" rx="2" ry="2" />
<text x="275.68" y="1903.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (34,086,996 samples, 0.03%)</title><rect x="807.5" y="2005" width="0.4" height="15.0" fill="rgb(226,160,42)" rx="2" ry="2" />
<text x="810.51" y="2015.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,638,503 samples, 0.01%)</title><rect x="351.8" y="1701" width="0.1" height="15.0" fill="rgb(214,30,7)" rx="2" ry="2" />
<text x="354.83" y="1711.5" ></text>
</g>
<g >
<title>perf_swevent_add (55,695,738 samples, 0.05%)</title><rect x="206.5" y="1813" width="0.5" height="15.0" fill="rgb(248,24,51)" rx="2" ry="2" />
<text x="209.45" y="1823.5" ></text>
</g>
<g >
<title>rpfilter_mt (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1637" width="0.7" height="15.0" fill="rgb(226,38,32)" rx="2" ry="2" />
<text x="254.35" y="1647.5" ></text>
</g>
<g >
<title>get_nohz_timer_target (14,823,897 samples, 0.01%)</title><rect x="22.8" y="1925" width="0.1" height="15.0" fill="rgb(249,63,27)" rx="2" ry="2" />
<text x="25.79" y="1935.5" ></text>
</g>
<g >
<title>try_to_wake_up (72,142,892 samples, 0.06%)</title><rect x="1096.5" y="1877" width="0.8" height="15.0" fill="rgb(249,87,36)" rx="2" ry="2" />
<text x="1099.54" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (398,436,899 samples, 0.35%)</title><rect x="372.3" y="2021" width="4.1" height="15.0" fill="rgb(246,227,49)" rx="2" ry="2" />
<text x="375.34" y="2031.5" ></text>
</g>
<g >
<title>uv_async_send (30,350,782 samples, 0.03%)</title><rect x="131.5" y="2037" width="0.3" height="15.0" fill="rgb(226,133,52)" rx="2" ry="2" />
<text x="134.48" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (25,692,071 samples, 0.02%)</title><rect x="127.7" y="2021" width="0.3" height="15.0" fill="rgb(218,189,46)" rx="2" ry="2" />
<text x="130.74" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (13,912,474,690 samples, 12.07%)</title><rect x="484.3" y="2005" width="142.5" height="15.0" fill="rgb(206,89,40)" rx="2" ry="2" />
<text x="487.33" y="2015.5" >[unknown]</text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="149" width="1.7" height="15.0" fill="rgb(207,170,48)" rx="2" ry="2" />
<text x="128.36" y="159.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (30,936,695 samples, 0.03%)</title><rect x="460.9" y="1829" width="0.3" height="15.0" fill="rgb(213,213,26)" rx="2" ry="2" />
<text x="463.86" y="1839.5" ></text>
</g>
<g >
<title>__tls_get_addr (30,155,262 samples, 0.03%)</title><rect x="237.1" y="2053" width="0.3" height="15.0" fill="rgb(243,77,43)" rx="2" ry="2" />
<text x="240.05" y="2063.5" ></text>
</g>
<g >
<title>finish_task_switch (151,880,168 samples, 0.13%)</title><rect x="136.6" y="1925" width="1.6" height="15.0" fill="rgb(246,179,35)" rx="2" ry="2" />
<text x="139.65" y="1935.5" ></text>
</g>
<g >
<title>update_rq_clock (20,323,924 samples, 0.02%)</title><rect x="282.2" y="1893" width="0.2" height="15.0" fill="rgb(231,187,23)" rx="2" ry="2" />
<text x="285.21" y="1903.5" ></text>
</g>
<g >
<title>__cxxabiv1::__vmi_class_type_info::~__vmi_class_type_info (25,692,071 samples, 0.02%)</title><rect x="127.7" y="2037" width="0.3" height="15.0" fill="rgb(218,212,23)" rx="2" ry="2" />
<text x="130.74" y="2047.5" ></text>
</g>
<g >
<title>inet6_csk_xmit (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1845" width="1.1" height="15.0" fill="rgb(207,67,21)" rx="2" ry="2" />
<text x="373.99" y="1855.5" ></text>
</g>
<g >
<title>update_blocked_averages (212,776,507 samples, 0.18%)</title><rect x="166.3" y="1829" width="2.1" height="15.0" fill="rgb(229,170,39)" rx="2" ry="2" />
<text x="169.25" y="1839.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (31,651,377 samples, 0.03%)</title><rect x="319.7" y="1813" width="0.4" height="15.0" fill="rgb(234,76,20)" rx="2" ry="2" />
<text x="322.74" y="1823.5" ></text>
</g>
<g >
<title>native_sched_clock (21,508,742 samples, 0.02%)</title><rect x="410.5" y="1749" width="0.2" height="15.0" fill="rgb(254,6,4)" rx="2" ry="2" />
<text x="413.52" y="1759.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (119,857,351 samples, 0.10%)</title><rect x="466.7" y="2021" width="1.2" height="15.0" fill="rgb(211,16,54)" rx="2" ry="2" />
<text x="469.72" y="2031.5" ></text>
</g>
<g >
<title>v8::internal::Accessors::ArrayLengthSetter (141,496,336 samples, 0.12%)</title><rect x="91.8" y="1893" width="1.5" height="15.0" fill="rgb(207,22,21)" rx="2" ry="2" />
<text x="94.82" y="1903.5" ></text>
</g>
<g >
<title>hrtimer_init_sleeper (17,661,408 samples, 0.02%)</title><rect x="401.7" y="1861" width="0.2" height="15.0" fill="rgb(249,114,14)" rx="2" ry="2" />
<text x="404.73" y="1871.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (58,636,503 samples, 0.05%)</title><rect x="379.4" y="1877" width="0.6" height="15.0" fill="rgb(225,94,24)" rx="2" ry="2" />
<text x="382.39" y="1887.5" ></text>
</g>
<g >
<title>update_process_times (123,453,141 samples, 0.11%)</title><rect x="1181.2" y="1925" width="1.3" height="15.0" fill="rgb(247,83,27)" rx="2" ry="2" />
<text x="1184.21" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="821" width="1.7" height="15.0" fill="rgb(231,110,10)" rx="2" ry="2" />
<text x="128.36" y="831.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait (24,481,973 samples, 0.02%)</title><rect x="1107.5" y="2053" width="0.2" height="15.0" fill="rgb(238,95,3)" rx="2" ry="2" />
<text x="1110.49" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (1,363,674,621 samples, 1.18%)</title><rect x="376.5" y="2005" width="14.0" height="15.0" fill="rgb(210,80,5)" rx="2" ry="2" />
<text x="379.50" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (519,784,895 samples, 0.45%)</title><rect x="135.3" y="2037" width="5.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="138.32" y="2047.5" ></text>
</g>
<g >
<title>ksys_write (262,574,031 samples, 0.23%)</title><rect x="145.1" y="2005" width="2.6" height="15.0" fill="rgb(229,42,30)" rx="2" ry="2" />
<text x="148.06" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (196,798,351 samples, 0.17%)</title><rect x="322.5" y="1973" width="2.0" height="15.0" fill="rgb(211,122,4)" rx="2" ry="2" />
<text x="325.45" y="1983.5" ></text>
</g>
<g >
<title>sched_clock (54,130,057 samples, 0.05%)</title><rect x="65.8" y="1845" width="0.5" height="15.0" fill="rgb(240,113,26)" rx="2" ry="2" />
<text x="68.77" y="1855.5" ></text>
</g>
<g >
<title>reweight_entity (117,332,794 samples, 0.10%)</title><rect x="333.6" y="1877" width="1.2" height="15.0" fill="rgb(254,162,7)" rx="2" ry="2" />
<text x="336.60" y="1887.5" ></text>
</g>
<g >
<title>update_process_times (37,121,361 samples, 0.03%)</title><rect x="358.7" y="1861" width="0.4" height="15.0" fill="rgb(211,40,3)" rx="2" ry="2" />
<text x="361.71" y="1871.5" ></text>
</g>
<g >
<title>write (313,112,604 samples, 0.27%)</title><rect x="144.8" y="2053" width="3.2" height="15.0" fill="rgb(240,157,52)" rx="2" ry="2" />
<text x="147.81" y="2063.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (3,636,829,989 samples, 3.16%)</title><rect x="425.4" y="1957" width="37.3" height="15.0" fill="rgb(232,209,49)" rx="2" ry="2" />
<text x="428.43" y="1967.5" >fut..</text>
</g>
<g >
<title>update_cfs_group (43,792,046 samples, 0.04%)</title><rect x="381.7" y="1813" width="0.4" height="15.0" fill="rgb(213,8,6)" rx="2" ry="2" />
<text x="384.67" y="1823.5" ></text>
</g>
<g >
<title>update_load_avg (16,347,206 samples, 0.01%)</title><rect x="405.9" y="1797" width="0.1" height="15.0" fill="rgb(234,51,46)" rx="2" ry="2" />
<text x="408.88" y="1807.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (50,274,563 samples, 0.04%)</title><rect x="460.3" y="1861" width="0.6" height="15.0" fill="rgb(253,4,36)" rx="2" ry="2" />
<text x="463.35" y="1871.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (590,475,920 samples, 0.51%)</title><rect x="204.5" y="1893" width="6.1" height="15.0" fill="rgb(238,188,24)" rx="2" ry="2" />
<text x="207.51" y="1903.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (23,862,518 samples, 0.02%)</title><rect x="210.6" y="1797" width="0.2" height="15.0" fill="rgb(213,147,9)" rx="2" ry="2" />
<text x="213.57" y="1807.5" ></text>
</g>
<g >
<title>__update_load_avg_se (56,575,152 samples, 0.05%)</title><rect x="34.2" y="1861" width="0.6" height="15.0" fill="rgb(243,21,2)" rx="2" ry="2" />
<text x="37.24" y="1871.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (278,986,349 samples, 0.24%)</title><rect x="196.6" y="1941" width="2.9" height="15.0" fill="rgb(233,45,20)" rx="2" ry="2" />
<text x="199.61" y="1951.5" ></text>
</g>
<g >
<title>tcp_poll (42,363,378 samples, 0.04%)</title><rect x="411.6" y="1861" width="0.4" height="15.0" fill="rgb(221,49,27)" rx="2" ry="2" />
<text x="414.58" y="1871.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (106,118,390 samples, 0.09%)</title><rect x="226.1" y="2037" width="1.1" height="15.0" fill="rgb(238,159,46)" rx="2" ry="2" />
<text x="229.09" y="2047.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (135,524,268 samples, 0.12%)</title><rect x="763.7" y="1957" width="1.4" height="15.0" fill="rgb(227,54,53)" rx="2" ry="2" />
<text x="766.70" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1029" width="1.7" height="15.0" fill="rgb(221,213,9)" rx="2" ry="2" />
<text x="128.36" y="1039.5" ></text>
</g>
<g >
<title>psi_task_change (47,241,688 samples, 0.04%)</title><rect x="1096.8" y="1845" width="0.5" height="15.0" fill="rgb(234,69,25)" rx="2" ry="2" />
<text x="1099.80" y="1855.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (21,090,549 samples, 0.02%)</title><rect x="405.4" y="1765" width="0.3" height="15.0" fill="rgb(242,74,21)" rx="2" ry="2" />
<text x="408.44" y="1775.5" ></text>
</g>
<g >
<title>__x64_sys_futex (235,577,742 samples, 0.20%)</title><rect x="301.3" y="2005" width="2.4" height="15.0" fill="rgb(238,201,39)" rx="2" ry="2" />
<text x="304.32" y="2015.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (77,149,767 samples, 0.07%)</title><rect x="257.8" y="1845" width="0.8" height="15.0" fill="rgb(217,201,24)" rx="2" ry="2" />
<text x="260.82" y="1855.5" ></text>
</g>
<g >
<title>dequeue_entity (35,910,834 samples, 0.03%)</title><rect x="302.1" y="1893" width="0.3" height="15.0" fill="rgb(238,221,53)" rx="2" ry="2" />
<text x="305.06" y="1903.5" ></text>
</g>
<g >
<title>do_futex (306,343,104 samples, 0.27%)</title><rect x="332.8" y="1989" width="3.2" height="15.0" fill="rgb(235,149,22)" rx="2" ry="2" />
<text x="335.82" y="1999.5" ></text>
</g>
<g >
<title>__get_user_8 (13,226,315 samples, 0.01%)</title><rect x="303.7" y="1973" width="0.2" height="15.0" fill="rgb(235,150,43)" rx="2" ry="2" />
<text x="306.75" y="1983.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromise0 /srv/service/node_modules/bluebird/js/release/promise.js:644 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1845" width="10.2" height="15.0" fill="rgb(248,46,14)" rx="2" ry="2" />
<text x="115.99" y="1855.5" ></text>
</g>
<g >
<title>do_futex (396,881,558 samples, 0.34%)</title><rect x="372.4" y="1989" width="4.0" height="15.0" fill="rgb(224,67,25)" rx="2" ry="2" />
<text x="375.35" y="1999.5" ></text>
</g>
<g >
<title>schedule (978,873,500 samples, 0.85%)</title><rect x="272.4" y="1925" width="10.0" height="15.0" fill="rgb(235,42,35)" rx="2" ry="2" />
<text x="275.39" y="1935.5" ></text>
</g>
<g >
<title>vfs_write (474,015,644 samples, 0.41%)</title><rect x="1092.6" y="1973" width="4.9" height="15.0" fill="rgb(236,169,7)" rx="2" ry="2" />
<text x="1095.65" y="1983.5" ></text>
</g>
<g >
<title>v8::internal::Factory::NewFillerObject (138,476,523 samples, 0.12%)</title><rect x="121.8" y="1637" width="1.4" height="15.0" fill="rgb(244,49,15)" rx="2" ry="2" />
<text x="124.78" y="1647.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (21,203,607 samples, 0.02%)</title><rect x="334.8" y="1861" width="0.2" height="15.0" fill="rgb(221,136,4)" rx="2" ry="2" />
<text x="337.80" y="1871.5" ></text>
</g>
<g >
<title>update_cfs_group (49,925,505 samples, 0.04%)</title><rect x="202.7" y="1877" width="0.5" height="15.0" fill="rgb(232,192,39)" rx="2" ry="2" />
<text x="205.65" y="1887.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (25,351,791 samples, 0.02%)</title><rect x="358.2" y="1909" width="0.3" height="15.0" fill="rgb(214,180,39)" rx="2" ry="2" />
<text x="361.21" y="1919.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1765" width="0.7" height="15.0" fill="rgb(240,73,22)" rx="2" ry="2" />
<text x="254.35" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1749" width="1.7" height="15.0" fill="rgb(251,184,6)" rx="2" ry="2" />
<text x="128.36" y="1759.5" ></text>
</g>
<g >
<title>do_syscall_64 (487,801,399 samples, 0.42%)</title><rect x="78.4" y="2005" width="5.0" height="15.0" fill="rgb(230,219,50)" rx="2" ry="2" />
<text x="81.39" y="2015.5" ></text>
</g>
<g >
<title>__get_user_8 (27,599,339 samples, 0.02%)</title><rect x="72.2" y="1973" width="0.3" height="15.0" fill="rgb(221,209,31)" rx="2" ry="2" />
<text x="75.21" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,862,465,391 samples, 1.62%)</title><rect x="305.4" y="1989" width="19.1" height="15.0" fill="rgb(250,82,12)" rx="2" ry="2" />
<text x="308.40" y="1999.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (424,274,841 samples, 0.37%)</title><rect x="564.7" y="1957" width="4.3" height="15.0" fill="rgb(240,170,43)" rx="2" ry="2" />
<text x="567.69" y="1967.5" ></text>
</g>
<g >
<title>ip_skb_dst_mtu (135,467,584 samples, 0.12%)</title><rect x="294.6" y="1845" width="1.4" height="15.0" fill="rgb(249,220,23)" rx="2" ry="2" />
<text x="297.60" y="1855.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (452,551,609 samples, 0.39%)</title><rect x="1092.6" y="1925" width="4.7" height="15.0" fill="rgb(235,113,10)" rx="2" ry="2" />
<text x="1095.65" y="1935.5" ></text>
</g>
<g >
<title>__schedule (1,138,100,067 samples, 0.99%)</title><rect x="158.5" y="1925" width="11.7" height="15.0" fill="rgb(211,73,11)" rx="2" ry="2" />
<text x="161.51" y="1935.5" ></text>
</g>
<g >
<title>dequeue_task_fair (146,278,856 samples, 0.13%)</title><rect x="404.5" y="1829" width="1.5" height="15.0" fill="rgb(245,122,24)" rx="2" ry="2" />
<text x="407.55" y="1839.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1701" width="0.7" height="15.0" fill="rgb(231,224,12)" rx="2" ry="2" />
<text x="254.35" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1957" width="1.7" height="15.0" fill="rgb(213,180,37)" rx="2" ry="2" />
<text x="128.36" y="1967.5" ></text>
</g>
<g >
<title>finish_task_switch (562,364,998 samples, 0.49%)</title><rect x="314.3" y="1877" width="5.8" height="15.0" fill="rgb(231,89,23)" rx="2" ry="2" />
<text x="317.31" y="1887.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (133,001,800 samples, 0.12%)</title><rect x="283.9" y="1973" width="1.4" height="15.0" fill="rgb(223,44,38)" rx="2" ry="2" />
<text x="286.90" y="1983.5" ></text>
</g>
<g >
<title>__mprotect (25,238,583 samples, 0.02%)</title><rect x="17.1" y="1973" width="0.3" height="15.0" fill="rgb(244,126,2)" rx="2" ry="2" />
<text x="20.13" y="1983.5" ></text>
</g>
<g >
<title>tcp_recvmsg (79,990,077 samples, 0.07%)</title><rect x="366.8" y="1909" width="0.8" height="15.0" fill="rgb(230,39,1)" rx="2" ry="2" />
<text x="369.82" y="1919.5" ></text>
</g>
<g >
<title>sched_clock (18,791,483 samples, 0.02%)</title><rect x="387.3" y="1781" width="0.2" height="15.0" fill="rgb(221,191,21)" rx="2" ry="2" />
<text x="390.34" y="1791.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1765" width="1.4" height="15.0" fill="rgb(254,63,1)" rx="2" ry="2" />
<text x="330.52" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1925" width="1.7" height="15.0" fill="rgb(243,126,48)" rx="2" ry="2" />
<text x="128.36" y="1935.5" ></text>
</g>
<g >
<title>__secure_computing (15,931,818 samples, 0.01%)</title><rect x="236.4" y="1973" width="0.1" height="15.0" fill="rgb(249,79,44)" rx="2" ry="2" />
<text x="239.36" y="1983.5" ></text>
</g>
<g >
<title>enqueue_entity (34,086,996 samples, 0.03%)</title><rect x="807.5" y="1861" width="0.4" height="15.0" fill="rgb(216,112,12)" rx="2" ry="2" />
<text x="810.51" y="1871.5" ></text>
</g>
<g >
<title>switch_fpu_return (18,219,077 samples, 0.02%)</title><rect x="285.1" y="1957" width="0.2" height="15.0" fill="rgb(245,150,32)" rx="2" ry="2" />
<text x="288.08" y="1967.5" ></text>
</g>
<g >
<title>futex_wait (1,463,704,751 samples, 1.27%)</title><rect x="155.7" y="1973" width="15.0" height="15.0" fill="rgb(253,189,47)" rx="2" ry="2" />
<text x="158.67" y="1983.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (31,782,815 samples, 0.03%)</title><rect x="379.0" y="1861" width="0.4" height="15.0" fill="rgb(251,36,54)" rx="2" ry="2" />
<text x="382.04" y="1871.5" ></text>
</g>
<g >
<title>rd_kafka_buf_calc_timeout (26,472,915 samples, 0.02%)</title><rect x="227.6" y="2037" width="0.3" height="15.0" fill="rgb(206,126,26)" rx="2" ry="2" />
<text x="230.64" y="2047.5" ></text>
</g>
<g >
<title>find_busiest_group (125,073,013 samples, 0.11%)</title><rect x="280.7" y="1845" width="1.3" height="15.0" fill="rgb(206,9,20)" rx="2" ry="2" />
<text x="283.67" y="1855.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (27,033,319 samples, 0.02%)</title><rect x="210.6" y="1877" width="0.2" height="15.0" fill="rgb(220,61,51)" rx="2" ry="2" />
<text x="213.57" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="581" width="1.7" height="15.0" fill="rgb(211,165,50)" rx="2" ry="2" />
<text x="128.36" y="591.5" ></text>
</g>
<g >
<title>schedule (754,926,094 samples, 0.66%)</title><rect x="380.0" y="1877" width="7.7" height="15.0" fill="rgb(248,132,35)" rx="2" ry="2" />
<text x="382.99" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (513,619,093 samples, 0.45%)</title><rect x="135.3" y="2021" width="5.3" height="15.0" fill="rgb(229,106,53)" rx="2" ry="2" />
<text x="138.32" y="2031.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1893" width="0.7" height="15.0" fill="rgb(209,107,51)" rx="2" ry="2" />
<text x="254.35" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="885" width="1.7" height="15.0" fill="rgb(234,81,41)" rx="2" ry="2" />
<text x="128.36" y="895.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (77,649,281 samples, 0.07%)</title><rect x="392.8" y="2053" width="0.8" height="15.0" fill="rgb(242,107,2)" rx="2" ry="2" />
<text x="395.83" y="2063.5" ></text>
</g>
<g >
<title>perf_swevent_add (156,351,514 samples, 0.14%)</title><rect x="346.6" y="1765" width="1.6" height="15.0" fill="rgb(211,56,46)" rx="2" ry="2" />
<text x="349.58" y="1775.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (109,620,697 samples, 0.10%)</title><rect x="403.4" y="1829" width="1.1" height="15.0" fill="rgb(254,74,9)" rx="2" ry="2" />
<text x="406.43" y="1839.5" ></text>
</g>
<g >
<title>inet_recvmsg (88,168,985 samples, 0.08%)</title><rect x="233.1" y="1925" width="0.9" height="15.0" fill="rgb(239,173,39)" rx="2" ry="2" />
<text x="236.06" y="1935.5" ></text>
</g>
<g >
<title>__update_load_avg_se (20,164,399 samples, 0.02%)</title><rect x="345.3" y="1813" width="0.2" height="15.0" fill="rgb(240,94,17)" rx="2" ry="2" />
<text x="348.32" y="1823.5" ></text>
</g>
<g >
<title>hrtick_update (25,323,057 samples, 0.02%)</title><rect x="320.1" y="1877" width="0.2" height="15.0" fill="rgb(228,52,36)" rx="2" ry="2" />
<text x="323.07" y="1887.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (28,659,469 samples, 0.02%)</title><rect x="255.4" y="1941" width="0.2" height="15.0" fill="rgb(225,90,9)" rx="2" ry="2" />
<text x="258.36" y="1951.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (44,225,421 samples, 0.04%)</title><rect x="297.1" y="1989" width="0.5" height="15.0" fill="rgb(246,103,54)" rx="2" ry="2" />
<text x="300.13" y="1999.5" ></text>
</g>
<g >
<title>[libc.so.6] (320,518,000 samples, 0.28%)</title><rect x="394.9" y="2053" width="3.3" height="15.0" fill="rgb(237,135,4)" rx="2" ry="2" />
<text x="397.95" y="2063.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1,183,703,572 samples, 1.03%)</title><rect x="309.7" y="1925" width="12.1" height="15.0" fill="rgb(243,109,26)" rx="2" ry="2" />
<text x="312.67" y="1935.5" ></text>
</g>
<g >
<title>native_sched_clock (18,791,483 samples, 0.02%)</title><rect x="387.3" y="1765" width="0.2" height="15.0" fill="rgb(238,6,31)" rx="2" ry="2" />
<text x="390.34" y="1775.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (11,298,622 samples, 0.01%)</title><rect x="346.2" y="1829" width="0.1" height="15.0" fill="rgb(244,58,22)" rx="2" ry="2" />
<text x="349.16" y="1839.5" ></text>
</g>
<g >
<title>LazyCompile:*emitBeforeScript node:internal/async_hooks:509 (27,895,421 samples, 0.02%)</title><rect x="112.7" y="1893" width="0.3" height="15.0" fill="rgb(237,128,24)" rx="2" ry="2" />
<text x="115.71" y="1903.5" ></text>
</g>
<g >
<title>clock_gettime (29,272,104 samples, 0.03%)</title><rect x="298.2" y="2053" width="0.3" height="15.0" fill="rgb(219,83,40)" rx="2" ry="2" />
<text x="301.25" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (27,033,319 samples, 0.02%)</title><rect x="210.6" y="1829" width="0.2" height="15.0" fill="rgb(238,120,27)" rx="2" ry="2" />
<text x="213.57" y="1839.5" ></text>
</g>
<g >
<title>rb_insert_color (24,655,285 samples, 0.02%)</title><rect x="379.6" y="1829" width="0.2" height="15.0" fill="rgb(242,106,4)" rx="2" ry="2" />
<text x="382.56" y="1839.5" ></text>
</g>
<g >
<title>rb_next (32,962,071 samples, 0.03%)</title><rect x="351.2" y="1797" width="0.3" height="15.0" fill="rgb(249,33,31)" rx="2" ry="2" />
<text x="354.18" y="1807.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (135,524,268 samples, 0.12%)</title><rect x="763.7" y="1941" width="1.4" height="15.0" fill="rgb(243,43,24)" rx="2" ry="2" />
<text x="766.70" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (2,147,572,803 samples, 1.86%)</title><rect x="304.5" y="2021" width="22.0" height="15.0" fill="rgb(217,116,51)" rx="2" ry="2" />
<text x="307.48" y="2031.5" >[..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (116,205,302 samples, 0.10%)</title><rect x="53.4" y="1877" width="1.2" height="15.0" fill="rgb(237,79,28)" rx="2" ry="2" />
<text x="56.40" y="1887.5" ></text>
</g>
<g >
<title>enqueue_task_fair (15,941,509 samples, 0.01%)</title><rect x="280.5" y="1733" width="0.2" height="15.0" fill="rgb(231,54,10)" rx="2" ry="2" />
<text x="283.51" y="1743.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (14,604,161 samples, 0.01%)</title><rect x="258.6" y="1877" width="0.2" height="15.0" fill="rgb(226,131,20)" rx="2" ry="2" />
<text x="261.62" y="1887.5" ></text>
</g>
<g >
<title>clock_gettime (4,006,627,704 samples, 3.48%)</title><rect x="528.0" y="1973" width="41.0" height="15.0" fill="rgb(210,112,42)" rx="2" ry="2" />
<text x="531.02" y="1983.5" >clo..</text>
</g>
<g >
<title>do_syscall_64 (637,407,722 samples, 0.55%)</title><rect x="230.0" y="2005" width="6.5" height="15.0" fill="rgb(228,156,10)" rx="2" ry="2" />
<text x="233.00" y="2015.5" ></text>
</g>
<g >
<title>process_backlog (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1701" width="1.1" height="15.0" fill="rgb(241,23,52)" rx="2" ry="2" />
<text x="373.99" y="1711.5" ></text>
</g>
<g >
<title>rb_insert_color (16,685,311 samples, 0.01%)</title><rect x="402.8" y="1813" width="0.2" height="15.0" fill="rgb(226,85,29)" rx="2" ry="2" />
<text x="405.80" y="1823.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1685" width="1.4" height="15.0" fill="rgb(244,219,12)" rx="2" ry="2" />
<text x="330.52" y="1695.5" ></text>
</g>
<g >
<title>pthread_rwlock_unlock (137,495,075 samples, 0.12%)</title><rect x="88.9" y="2005" width="1.4" height="15.0" fill="rgb(243,209,13)" rx="2" ry="2" />
<text x="91.87" y="2015.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (27,349,869 samples, 0.02%)</title><rect x="367.4" y="1877" width="0.2" height="15.0" fill="rgb(231,36,51)" rx="2" ry="2" />
<text x="370.36" y="1887.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (119,857,351 samples, 0.10%)</title><rect x="466.7" y="1989" width="1.2" height="15.0" fill="rgb(241,106,53)" rx="2" ry="2" />
<text x="469.72" y="1999.5" ></text>
</g>
<g >
<title>[libc.so.6] (390,589,112 samples, 0.34%)</title><rect x="332.3" y="2053" width="4.0" height="15.0" fill="rgb(250,10,44)" rx="2" ry="2" />
<text x="335.28" y="2063.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (56,072,886 samples, 0.05%)</title><rect x="309.7" y="1893" width="0.6" height="15.0" fill="rgb(233,12,6)" rx="2" ry="2" />
<text x="312.71" y="1903.5" ></text>
</g>
<g >
<title>rb_next (25,076,768 samples, 0.02%)</title><rect x="408.8" y="1765" width="0.3" height="15.0" fill="rgb(219,157,22)" rx="2" ry="2" />
<text x="411.82" y="1775.5" ></text>
</g>
<g >
<title>tcp_poll (19,119,106 samples, 0.02%)</title><rect x="322.3" y="1909" width="0.2" height="15.0" fill="rgb(254,28,24)" rx="2" ry="2" />
<text x="325.26" y="1919.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (30,675,813 samples, 0.03%)</title><rect x="233.4" y="1877" width="0.3" height="15.0" fill="rgb(234,92,45)" rx="2" ry="2" />
<text x="236.38" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (39,110,852,800 samples, 33.93%)</title><rect x="468.2" y="2037" width="400.4" height="15.0" fill="rgb(207,103,46)" rx="2" ry="2" />
<text x="471.16" y="2047.5" >[unknown]</text>
</g>
<g >
<title>Nan::AsyncExecuteComplete (20,987,131 samples, 0.02%)</title><rect x="10.0" y="2053" width="0.2" height="15.0" fill="rgb(243,94,18)" rx="2" ry="2" />
<text x="13.00" y="2063.5" ></text>
</g>
<g >
<title>futex_wait (4,839,376,068 samples, 4.20%)</title><rect x="18.9" y="1973" width="49.5" height="15.0" fill="rgb(205,180,36)" rx="2" ry="2" />
<text x="21.89" y="1983.5" >fute..</text>
</g>
<g >
<title>dequeue_entity (19,186,226 samples, 0.02%)</title><rect x="255.9" y="1893" width="0.2" height="15.0" fill="rgb(237,188,54)" rx="2" ry="2" />
<text x="258.90" y="1903.5" ></text>
</g>
<g >
<title>rdk:broker1001 (4,525,407,206 samples, 3.93%)</title><rect x="254.0" y="2069" width="46.3" height="15.0" fill="rgb(222,35,34)" rx="2" ry="2" />
<text x="256.97" y="2079.5" >rdk:..</text>
</g>
<g >
<title>read (135,883,190 samples, 0.12%)</title><rect x="130.1" y="2037" width="1.4" height="15.0" fill="rgb(214,135,44)" rx="2" ry="2" />
<text x="133.08" y="2047.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromises /srv/service/node_modules/bluebird/js/release/promise.js:718 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1861" width="10.2" height="15.0" fill="rgb(215,193,42)" rx="2" ry="2" />
<text x="115.99" y="1871.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (124,048,700 samples, 0.11%)</title><rect x="461.2" y="1845" width="1.2" height="15.0" fill="rgb(234,61,10)" rx="2" ry="2" />
<text x="464.18" y="1855.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (26,199,641 samples, 0.02%)</title><rect x="336.0" y="1989" width="0.2" height="15.0" fill="rgb(209,221,52)" rx="2" ry="2" />
<text x="338.95" y="1999.5" ></text>
</g>
<g >
<title>perf_swevent_add (43,698,895 samples, 0.04%)</title><rect x="458.3" y="1813" width="0.4" height="15.0" fill="rgb(223,207,38)" rx="2" ry="2" />
<text x="461.30" y="1823.5" ></text>
</g>
<g >
<title>Function:^ /srv/service/node_modules/bluebird/js/release/timers.js:26 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1893" width="10.2" height="15.0" fill="rgb(250,20,39)" rx="2" ry="2" />
<text x="115.99" y="1903.5" ></text>
</g>
<g >
<title>finish_task_switch (33,829,835 samples, 0.03%)</title><rect x="335.0" y="1909" width="0.4" height="15.0" fill="rgb(234,194,26)" rx="2" ry="2" />
<text x="338.01" y="1919.5" ></text>
</g>
<g >
<title>BIO_test_flags (26,913,274 samples, 0.02%)</title><rect x="148.5" y="2053" width="0.3" height="15.0" fill="rgb(225,108,43)" rx="2" ry="2" />
<text x="151.49" y="2063.5" ></text>
</g>
<g >
<title>enqueue_task_fair (34,086,996 samples, 0.03%)</title><rect x="807.5" y="1877" width="0.4" height="15.0" fill="rgb(208,22,22)" rx="2" ry="2" />
<text x="810.51" y="1887.5" ></text>
</g>
<g >
<title>EVP_CIPHER_CTX_ctrl (27,893,308 samples, 0.02%)</title><rect x="262.2" y="2037" width="0.3" height="15.0" fill="rgb(242,227,51)" rx="2" ry="2" />
<text x="265.23" y="2047.5" ></text>
</g>
<g >
<title>nf_hook_slow (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1653" width="1.1" height="15.0" fill="rgb(237,129,25)" rx="2" ry="2" />
<text x="373.99" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1621" width="1.7" height="15.0" fill="rgb(229,110,39)" rx="2" ry="2" />
<text x="128.36" y="1631.5" ></text>
</g>
<g >
<title>dequeue_task_fair (123,753,716 samples, 0.11%)</title><rect x="135.4" y="1925" width="1.2" height="15.0" fill="rgb(227,94,24)" rx="2" ry="2" />
<text x="138.38" y="1935.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (43,034,772 samples, 0.04%)</title><rect x="279.2" y="1781" width="0.4" height="15.0" fill="rgb(224,23,2)" rx="2" ry="2" />
<text x="282.19" y="1791.5" ></text>
</g>
<g >
<title>update_curr (26,474,907 samples, 0.02%)</title><rect x="373.8" y="1877" width="0.3" height="15.0" fill="rgb(206,25,44)" rx="2" ry="2" />
<text x="376.84" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1573" width="1.7" height="15.0" fill="rgb(210,135,24)" rx="2" ry="2" />
<text x="128.36" y="1583.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,799,037,954 samples, 3.30%)</title><rect x="424.8" y="2021" width="38.9" height="15.0" fill="rgb(210,163,8)" rx="2" ry="2" />
<text x="427.78" y="2031.5" >do_..</text>
</g>
<g >
<title>Eval:~ :1 (38,595,760 samples, 0.03%)</title><rect x="75.0" y="1893" width="0.3" height="15.0" fill="rgb(219,73,13)" rx="2" ry="2" />
<text x="77.95" y="1903.5" ></text>
</g>
<g >
<title>mtx_lock (32,404,853 samples, 0.03%)</title><rect x="415.0" y="2053" width="0.3" height="15.0" fill="rgb(218,179,12)" rx="2" ry="2" />
<text x="417.98" y="2063.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (30,748,980 samples, 0.03%)</title><rect x="72.2" y="1989" width="0.3" height="15.0" fill="rgb(251,209,38)" rx="2" ry="2" />
<text x="75.21" y="1999.5" ></text>
</g>
<g >
<title>Function:~ :1 (1,162,593,111 samples, 1.01%)</title><rect x="113.0" y="1909" width="11.9" height="15.0" fill="rgb(214,13,35)" rx="2" ry="2" />
<text x="115.99" y="1919.5" ></text>
</g>
<g >
<title>__fget_files (147,433,404 samples, 0.13%)</title><rect x="307.5" y="1909" width="1.5" height="15.0" fill="rgb(235,133,21)" rx="2" ry="2" />
<text x="310.52" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="277" width="1.7" height="15.0" fill="rgb(244,8,16)" rx="2" ry="2" />
<text x="128.36" y="287.5" ></text>
</g>
<g >
<title>__schedule (163,638,700 samples, 0.14%)</title><rect x="302.1" y="1925" width="1.6" height="15.0" fill="rgb(219,12,32)" rx="2" ry="2" />
<text x="305.06" y="1935.5" ></text>
</g>
<g >
<title>Function:~ :1 (24,649,178 samples, 0.02%)</title><rect x="75.3" y="1797" width="0.3" height="15.0" fill="rgb(211,166,33)" rx="2" ry="2" />
<text x="78.35" y="1807.5" ></text>
</g>
<g >
<title>merge_sched_in (51,950,126 samples, 0.05%)</title><rect x="374.4" y="1845" width="0.6" height="15.0" fill="rgb(230,183,22)" rx="2" ry="2" />
<text x="377.44" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,973,527 samples, 0.04%)</title><rect x="412.2" y="1877" width="0.5" height="15.0" fill="rgb(222,34,44)" rx="2" ry="2" />
<text x="415.20" y="1887.5" ></text>
</g>
<g >
<title>perf_event_mmap (25,238,583 samples, 0.02%)</title><rect x="17.1" y="1877" width="0.3" height="15.0" fill="rgb(223,109,39)" rx="2" ry="2" />
<text x="20.13" y="1887.5" ></text>
</g>
<g >
<title>rdk:broker1003 (3,885,790,720 samples, 3.37%)</title><rect x="332.3" y="2069" width="39.8" height="15.0" fill="rgb(244,22,46)" rx="2" ry="2" />
<text x="335.28" y="2079.5" >rdk..</text>
</g>
<g >
<title>try_to_wake_up (28,624,151 samples, 0.02%)</title><rect x="319.8" y="1749" width="0.3" height="15.0" fill="rgb(222,23,37)" rx="2" ry="2" />
<text x="322.76" y="1759.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (12,911,442 samples, 0.01%)</title><rect x="398.1" y="2021" width="0.1" height="15.0" fill="rgb(219,147,48)" rx="2" ry="2" />
<text x="401.10" y="2031.5" ></text>
</g>
<g >
<title>pthread_self (28,392,297 samples, 0.02%)</title><rect x="241.1" y="2053" width="0.3" height="15.0" fill="rgb(230,76,9)" rx="2" ry="2" />
<text x="244.12" y="2063.5" ></text>
</g>
<g >
<title>event_sched_in (156,351,514 samples, 0.14%)</title><rect x="346.6" y="1781" width="1.6" height="15.0" fill="rgb(234,47,1)" rx="2" ry="2" />
<text x="349.58" y="1791.5" ></text>
</g>
<g >
<title>dequeue_entity (248,633,939 samples, 0.22%)</title><rect x="343.0" y="1845" width="2.5" height="15.0" fill="rgb(214,132,54)" rx="2" ry="2" />
<text x="345.98" y="1855.5" ></text>
</g>
<g >
<title>pipe_poll (47,187,156 samples, 0.04%)</title><rect x="401.0" y="1877" width="0.5" height="15.0" fill="rgb(245,208,4)" rx="2" ry="2" />
<text x="404.00" y="1887.5" ></text>
</g>
<g >
<title>rd_kafka_buf_new_request0 (17,358,111 samples, 0.02%)</title><rect x="1138.8" y="2053" width="0.2" height="15.0" fill="rgb(223,180,24)" rx="2" ry="2" />
<text x="1141.82" y="2063.5" ></text>
</g>
<g >
<title>sock_read_iter (296,130,758 samples, 0.26%)</title><rect x="230.9" y="1941" width="3.1" height="15.0" fill="rgb(215,228,48)" rx="2" ry="2" />
<text x="233.93" y="1951.5" ></text>
</g>
<g >
<title>schedule (1,123,287,103 samples, 0.97%)</title><rect x="310.3" y="1909" width="11.5" height="15.0" fill="rgb(218,226,34)" rx="2" ry="2" />
<text x="313.29" y="1919.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (37,121,361 samples, 0.03%)</title><rect x="358.7" y="1957" width="0.4" height="15.0" fill="rgb(251,153,9)" rx="2" ry="2" />
<text x="361.71" y="1967.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (23,670,149 samples, 0.02%)</title><rect x="416.4" y="2053" width="0.2" height="15.0" fill="rgb(210,23,26)" rx="2" ry="2" />
<text x="419.40" y="2063.5" ></text>
</g>
<g >
<title>net_rx_action (64,237,777 samples, 0.06%)</title><rect x="251.3" y="1733" width="0.7" height="15.0" fill="rgb(229,0,24)" rx="2" ry="2" />
<text x="254.35" y="1743.5" ></text>
</g>
<g >
<title>v8::internal::compiler::PipelineImpl::Run&lt;v8::internal::compiler::GraphBuilderPhase&gt; (76,496,671 samples, 0.07%)</title><rect x="15.1" y="1941" width="0.7" height="15.0" fill="rgb(248,19,2)" rx="2" ry="2" />
<text x="18.06" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="949" width="1.7" height="15.0" fill="rgb(211,201,23)" rx="2" ry="2" />
<text x="128.36" y="959.5" ></text>
</g>
<g >
<title>Function:~ :1 (38,595,760 samples, 0.03%)</title><rect x="75.0" y="1797" width="0.3" height="15.0" fill="rgb(245,200,14)" rx="2" ry="2" />
<text x="77.95" y="1807.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (558,335,955 samples, 0.48%)</title><rect x="56.5" y="1845" width="5.7" height="15.0" fill="rgb(223,89,22)" rx="2" ry="2" />
<text x="59.50" y="1855.5" ></text>
</g>
<g >
<title>vfs_read (379,708,620 samples, 0.33%)</title><rect x="293.2" y="1973" width="3.9" height="15.0" fill="rgb(224,58,30)" rx="2" ry="2" />
<text x="296.24" y="1983.5" ></text>
</g>
<g >
<title>tg3_start_xmit (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1621" width="1.4" height="15.0" fill="rgb(218,176,48)" rx="2" ry="2" />
<text x="330.52" y="1631.5" ></text>
</g>
<g >
<title>__calc_delta (22,513,697 samples, 0.02%)</title><rect x="427.7" y="1861" width="0.2" height="15.0" fill="rgb(213,92,54)" rx="2" ry="2" />
<text x="430.67" y="1871.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (51,506,538 samples, 0.04%)</title><rect x="352.0" y="1781" width="0.5" height="15.0" fill="rgb(209,183,1)" rx="2" ry="2" />
<text x="354.96" y="1791.5" ></text>
</g>
<g >
<title>dequeue_task_fair (741,938,680 samples, 0.64%)</title><rect x="27.4" y="1909" width="7.6" height="15.0" fill="rgb(242,94,53)" rx="2" ry="2" />
<text x="30.42" y="1919.5" ></text>
</g>
<g >
<title>sock_poll (119,248,639 samples, 0.10%)</title><rect x="355.1" y="1909" width="1.3" height="15.0" fill="rgb(249,148,17)" rx="2" ry="2" />
<text x="358.15" y="1919.5" ></text>
</g>
<g >
<title>finish_task_switch (679,261,425 samples, 0.59%)</title><rect x="345.5" y="1861" width="7.0" height="15.0" fill="rgb(216,8,50)" rx="2" ry="2" />
<text x="348.53" y="1871.5" ></text>
</g>
<g >
<title>sock_poll (139,579,079 samples, 0.12%)</title><rect x="282.4" y="1941" width="1.4" height="15.0" fill="rgb(206,23,32)" rx="2" ry="2" />
<text x="285.42" y="1951.5" ></text>
</g>
<g >
<title>do_syscall_64 (32,832,262 samples, 0.03%)</title><rect x="326.5" y="1989" width="0.3" height="15.0" fill="rgb(223,151,48)" rx="2" ry="2" />
<text x="329.46" y="1999.5" ></text>
</g>
<g >
<title>newidle_balance (860,945,368 samples, 0.75%)</title><rect x="54.8" y="1893" width="8.8" height="15.0" fill="rgb(236,84,13)" rx="2" ry="2" />
<text x="57.79" y="1903.5" ></text>
</g>
<g >
<title>__calc_delta (17,595,964 samples, 0.02%)</title><rect x="31.8" y="1861" width="0.2" height="15.0" fill="rgb(236,188,44)" rx="2" ry="2" />
<text x="34.77" y="1871.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,149,171,506 samples, 4.47%)</title><rect x="18.0" y="2021" width="52.7" height="15.0" fill="rgb(216,224,49)" rx="2" ry="2" />
<text x="20.95" y="2031.5" >do_sy..</text>
</g>
<g >
<title>__x64_sys_futex (399,173,441 samples, 0.35%)</title><rect x="254.7" y="2005" width="4.1" height="15.0" fill="rgb(240,22,54)" rx="2" ry="2" />
<text x="257.68" y="2015.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (21,798,461 samples, 0.02%)</title><rect x="463.3" y="1957" width="0.2" height="15.0" fill="rgb(251,10,17)" rx="2" ry="2" />
<text x="466.26" y="1967.5" ></text>
</g>
<g >
<title>[libnode.so.108] (858,340,713 samples, 0.74%)</title><rect x="113.0" y="1653" width="8.8" height="15.0" fill="rgb(240,46,31)" rx="2" ry="2" />
<text x="115.99" y="1663.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1637" width="1.4" height="15.0" fill="rgb(219,24,54)" rx="2" ry="2" />
<text x="330.52" y="1647.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (48,822,574 samples, 0.04%)</title><rect x="460.4" y="1813" width="0.5" height="15.0" fill="rgb(225,125,9)" rx="2" ry="2" />
<text x="463.36" y="1823.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (28,672,563 samples, 0.02%)</title><rect x="83.4" y="2005" width="0.3" height="15.0" fill="rgb(224,85,1)" rx="2" ry="2" />
<text x="86.39" y="2015.5" ></text>
</g>
<g >
<title>switch_fpu_return (29,583,140 samples, 0.03%)</title><rect x="259.3" y="1989" width="0.3" height="15.0" fill="rgb(217,157,35)" rx="2" ry="2" />
<text x="262.31" y="1999.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (4,594,946,974 samples, 3.99%)</title><rect x="19.4" y="1957" width="47.0" height="15.0" fill="rgb(241,193,51)" rx="2" ry="2" />
<text x="22.38" y="1967.5" >fute..</text>
</g>
<g >
<title>try_to_wake_up (15,941,509 samples, 0.01%)</title><rect x="280.5" y="1765" width="0.2" height="15.0" fill="rgb(231,193,49)" rx="2" ry="2" />
<text x="283.51" y="1775.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (37,121,361 samples, 0.03%)</title><rect x="358.7" y="1909" width="0.4" height="15.0" fill="rgb(209,155,51)" rx="2" ry="2" />
<text x="361.71" y="1919.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (21,454,566 samples, 0.02%)</title><rect x="220.9" y="2037" width="0.2" height="15.0" fill="rgb(212,184,21)" rx="2" ry="2" />
<text x="223.92" y="2047.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (56,341,289 samples, 0.05%)</title><rect x="225.5" y="2037" width="0.6" height="15.0" fill="rgb(252,194,12)" rx="2" ry="2" />
<text x="228.51" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (17,388,773 samples, 0.02%)</title><rect x="210.8" y="1893" width="0.2" height="15.0" fill="rgb(227,151,0)" rx="2" ry="2" />
<text x="213.84" y="1903.5" ></text>
</g>
<g >
<title>[libc.so.6] (2,312,111,127 samples, 2.01%)</title><rect x="150.0" y="2053" width="23.7" height="15.0" fill="rgb(248,146,5)" rx="2" ry="2" />
<text x="153.00" y="2063.5" >[..</text>
</g>
<g >
<title>__hrtimer_run_queues (23,702,985 samples, 0.02%)</title><rect x="165.0" y="1813" width="0.3" height="15.0" fill="rgb(217,158,48)" rx="2" ry="2" />
<text x="168.01" y="1823.5" ></text>
</g>
<g >
<title>__fget_light (210,432,621 samples, 0.18%)</title><rect x="340.2" y="1909" width="2.2" height="15.0" fill="rgb(249,187,5)" rx="2" ry="2" />
<text x="343.21" y="1919.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait (35,974,621 samples, 0.03%)</title><rect x="238.6" y="2053" width="0.3" height="15.0" fill="rgb(230,156,7)" rx="2" ry="2" />
<text x="241.58" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,160,783,194 samples, 1.01%)</title><rect x="377.3" y="1941" width="11.9" height="15.0" fill="rgb(237,135,15)" rx="2" ry="2" />
<text x="380.28" y="1951.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (14,604,161 samples, 0.01%)</title><rect x="258.6" y="1845" width="0.2" height="15.0" fill="rgb(227,165,12)" rx="2" ry="2" />
<text x="261.62" y="1855.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,032,434,048 samples, 3.50%)</title><rect x="424.8" y="2037" width="41.3" height="15.0" fill="rgb(221,20,39)" rx="2" ry="2" />
<text x="427.78" y="2047.5" >ent..</text>
</g>
<g >
<title>sock_recvmsg (112,054,234 samples, 0.10%)</title><rect x="296.0" y="1925" width="1.1" height="15.0" fill="rgb(221,22,20)" rx="2" ry="2" />
<text x="298.98" y="1935.5" ></text>
</g>
<g >
<title>vfs_write (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1989" width="1.1" height="15.0" fill="rgb(231,87,40)" rx="2" ry="2" />
<text x="373.99" y="1999.5" ></text>
</g>
<g >
<title>dequeue_entity (244,545,322 samples, 0.21%)</title><rect x="158.9" y="1893" width="2.5" height="15.0" fill="rgb(221,203,16)" rx="2" ry="2" />
<text x="161.89" y="1903.5" ></text>
</g>
<g >
<title>run_rebalance_domains (30,936,695 samples, 0.03%)</title><rect x="460.9" y="1797" width="0.3" height="15.0" fill="rgb(206,143,46)" rx="2" ry="2" />
<text x="463.86" y="1807.5" ></text>
</g>
<g >
<title>LazyCompile:* /srv/service/node_modules/node-rdkafka/lib/kafka-consumer.js:466 (24,649,178 samples, 0.02%)</title><rect x="75.3" y="1893" width="0.3" height="15.0" fill="rgb(228,168,22)" rx="2" ry="2" />
<text x="78.35" y="1903.5" ></text>
</g>
<g >
<title>dequeue_entity (24,861,109 samples, 0.02%)</title><rect x="56.2" y="1845" width="0.3" height="15.0" fill="rgb(229,23,24)" rx="2" ry="2" />
<text x="59.25" y="1855.5" ></text>
</g>
<g >
<title>v8::internal::compiler::BuildGraphFromBytecode (50,070,700 samples, 0.04%)</title><rect x="15.1" y="1925" width="0.5" height="15.0" fill="rgb(252,168,10)" rx="2" ry="2" />
<text x="18.06" y="1935.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2,817,779,655 samples, 2.44%)</title><rect x="736.2" y="2005" width="28.9" height="15.0" fill="rgb(231,132,50)" rx="2" ry="2" />
<text x="739.24" y="2015.5" >__..</text>
</g>
<g >
<title>dequeue_task_fair (197,432,478 samples, 0.17%)</title><rect x="202.2" y="1909" width="2.0" height="15.0" fill="rgb(228,199,40)" rx="2" ry="2" />
<text x="205.16" y="1919.5" ></text>
</g>
<g >
<title>v8::internal::MemoryAllocator::Unmapper::PerformFreeMemoryOnQueuedChunks (25,238,583 samples, 0.02%)</title><rect x="17.1" y="1989" width="0.3" height="15.0" fill="rgb(215,104,21)" rx="2" ry="2" />
<text x="20.13" y="1999.5" ></text>
</g>
<g >
<title>native_write_msr (974,507,292 samples, 0.85%)</title><rect x="38.0" y="1861" width="10.0" height="15.0" fill="rgb(244,217,3)" rx="2" ry="2" />
<text x="40.97" y="1871.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (256,574,647 samples, 0.22%)</title><rect x="162.4" y="1861" width="2.6" height="15.0" fill="rgb(234,207,26)" rx="2" ry="2" />
<text x="165.37" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1173" width="1.7" height="15.0" fill="rgb(212,221,46)" rx="2" ry="2" />
<text x="128.36" y="1183.5" ></text>
</g>
<g >
<title>do_futex (235,577,742 samples, 0.20%)</title><rect x="301.3" y="1989" width="2.4" height="15.0" fill="rgb(254,39,8)" rx="2" ry="2" />
<text x="304.32" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1845" width="1.7" height="15.0" fill="rgb(234,62,17)" rx="2" ry="2" />
<text x="128.36" y="1855.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (31,406,251 samples, 0.03%)</title><rect x="233.1" y="1861" width="0.3" height="15.0" fill="rgb(249,228,18)" rx="2" ry="2" />
<text x="236.06" y="1871.5" ></text>
</g>
<g >
<title>update_curr (105,497,415 samples, 0.09%)</title><rect x="160.3" y="1877" width="1.1" height="15.0" fill="rgb(219,217,47)" rx="2" ry="2" />
<text x="163.31" y="1887.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (30,936,695 samples, 0.03%)</title><rect x="460.9" y="1813" width="0.3" height="15.0" fill="rgb(252,168,48)" rx="2" ry="2" />
<text x="463.86" y="1823.5" ></text>
</g>
<g >
<title>Nan::AsyncExecuteComplete (120,380,337 samples, 0.10%)</title><rect x="74.7" y="2037" width="1.2" height="15.0" fill="rgb(251,11,26)" rx="2" ry="2" />
<text x="77.70" y="2047.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (120,293,176 samples, 0.10%)</title><rect x="200.9" y="1909" width="1.3" height="15.0" fill="rgb(249,104,44)" rx="2" ry="2" />
<text x="203.92" y="1919.5" ></text>
</g>
<g >
<title>_raw_spin_lock (109,620,697 samples, 0.10%)</title><rect x="403.4" y="1813" width="1.1" height="15.0" fill="rgb(209,15,43)" rx="2" ry="2" />
<text x="406.43" y="1823.5" ></text>
</g>
<g >
<title>net_rx_action (104,981,425 samples, 0.09%)</title><rect x="371.0" y="1717" width="1.1" height="15.0" fill="rgb(230,111,22)" rx="2" ry="2" />
<text x="373.99" y="1727.5" ></text>
</g>
<g >
<title>try_to_wake_up (23,862,518 samples, 0.02%)</title><rect x="210.6" y="1781" width="0.2" height="15.0" fill="rgb(217,171,41)" rx="2" ry="2" />
<text x="213.57" y="1791.5" ></text>
</g>
<g >
<title>[[vdso]] (3,556,877,969 samples, 3.09%)</title><rect x="528.3" y="1957" width="36.4" height="15.0" fill="rgb(229,45,52)" rx="2" ry="2" />
<text x="531.28" y="1967.5" >[[v..</text>
</g>
<g >
<title>switch_fpu_return (27,218,076 samples, 0.02%)</title><rect x="83.4" y="1973" width="0.3" height="15.0" fill="rgb(252,55,41)" rx="2" ry="2" />
<text x="86.40" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="965" width="1.7" height="15.0" fill="rgb(243,65,10)" rx="2" ry="2" />
<text x="128.36" y="975.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (18,899,290 samples, 0.02%)</title><rect x="463.5" y="2005" width="0.2" height="15.0" fill="rgb(221,34,48)" rx="2" ry="2" />
<text x="466.48" y="2015.5" ></text>
</g>
<g >
<title>tcp_recvmsg (135,467,584 samples, 0.12%)</title><rect x="294.6" y="1909" width="1.4" height="15.0" fill="rgb(216,76,23)" rx="2" ry="2" />
<text x="297.60" y="1919.5" ></text>
</g>
<g >
<title>reweight_entity (91,461,195 samples, 0.08%)</title><rect x="29.2" y="1877" width="0.9" height="15.0" fill="rgb(223,24,11)" rx="2" ry="2" />
<text x="32.19" y="1887.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock (13,631,149 samples, 0.01%)</title><rect x="1138.4" y="2053" width="0.1" height="15.0" fill="rgb(213,160,36)" rx="2" ry="2" />
<text x="1141.39" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel.part.0 (90,546,867 samples, 0.08%)</title><rect x="199.5" y="1941" width="0.9" height="15.0" fill="rgb(215,196,7)" rx="2" ry="2" />
<text x="202.46" y="1951.5" ></text>
</g>
<g >
<title>rd_kafka_q_pop_serve.localalias (93,628,289 samples, 0.08%)</title><rect x="416.6" y="2053" width="1.0" height="15.0" fill="rgb(251,92,28)" rx="2" ry="2" />
<text x="419.64" y="2063.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (14,604,161 samples, 0.01%)</title><rect x="258.6" y="1861" width="0.2" height="15.0" fill="rgb(210,79,41)" rx="2" ry="2" />
<text x="261.62" y="1871.5" ></text>
</g>
<g >
<title>rd_buf_get_writable (13,746,055 samples, 0.01%)</title><rect x="285.3" y="2021" width="0.1" height="15.0" fill="rgb(208,120,6)" rx="2" ry="2" />
<text x="288.26" y="2031.5" ></text>
</g>
<g >
<title>schedule (146,835,052 samples, 0.13%)</title><rect x="78.7" y="1925" width="1.5" height="15.0" fill="rgb(238,164,50)" rx="2" ry="2" />
<text x="81.71" y="1935.5" ></text>
</g>
<g >
<title>try_to_wake_up (27,045,541 samples, 0.02%)</title><rect x="352.2" y="1733" width="0.3" height="15.0" fill="rgb(238,14,5)" rx="2" ry="2" />
<text x="355.21" y="1743.5" ></text>
</g>
<g >
<title>event_sched_in (178,692,357 samples, 0.16%)</title><rect x="277.8" y="1813" width="1.8" height="15.0" fill="rgb(234,91,51)" rx="2" ry="2" />
<text x="280.80" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1189" width="1.7" height="15.0" fill="rgb(240,49,20)" rx="2" ry="2" />
<text x="128.36" y="1199.5" ></text>
</g>
<g >
<title>switch_fpu_return (48,050,838 samples, 0.04%)</title><rect x="389.7" y="1909" width="0.5" height="15.0" fill="rgb(206,82,3)" rx="2" ry="2" />
<text x="392.72" y="1919.5" ></text>
</g>
<g >
<title>pipe_poll (32,102,509 samples, 0.03%)</title><rect x="270.3" y="1941" width="0.3" height="15.0" fill="rgb(216,207,8)" rx="2" ry="2" />
<text x="273.31" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="1909" width="1.7" height="15.0" fill="rgb(221,155,49)" rx="2" ry="2" />
<text x="128.36" y="1919.5" ></text>
</g>
<g >
<title>merge_sched_in (91,530,362 samples, 0.08%)</title><rect x="206.1" y="1845" width="0.9" height="15.0" fill="rgb(214,178,3)" rx="2" ry="2" />
<text x="209.09" y="1855.5" ></text>
</g>
<g >
<title>LazyCompile:*tryCatcher /srv/service/node_modules/bluebird/js/release/util.js:12 (38,595,760 samples, 0.03%)</title><rect x="75.0" y="1781" width="0.3" height="15.0" fill="rgb(236,1,3)" rx="2" ry="2" />
<text x="77.95" y="1791.5" ></text>
</g>
<g >
<title>__poll (1,882,419,133 samples, 1.63%)</title><rect x="339.2" y="1989" width="19.3" height="15.0" fill="rgb(220,191,45)" rx="2" ry="2" />
<text x="342.19" y="1999.5" ></text>
</g>
<g >
<title>cnd_timedwait_abs (130,496,443 samples, 0.11%)</title><rect x="134.0" y="2053" width="1.3" height="15.0" fill="rgb(228,199,0)" rx="2" ry="2" />
<text x="136.95" y="2063.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (26,238,984 samples, 0.02%)</title><rect x="298.0" y="2053" width="0.2" height="15.0" fill="rgb(221,183,3)" rx="2" ry="2" />
<text x="300.98" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="517" width="1.7" height="15.0" fill="rgb(213,158,35)" rx="2" ry="2" />
<text x="128.36" y="527.5" ></text>
</g>
<g >
<title>event_sched_in (61,724,173 samples, 0.05%)</title><rect x="206.4" y="1829" width="0.6" height="15.0" fill="rgb(237,7,2)" rx="2" ry="2" />
<text x="209.39" y="1839.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,262,733,276 samples, 1.10%)</title><rect x="377.3" y="1957" width="12.9" height="15.0" fill="rgb(234,88,12)" rx="2" ry="2" />
<text x="380.28" y="1967.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (115,492,152 samples, 0.10%)</title><rect x="366.5" y="2021" width="1.1" height="15.0" fill="rgb(244,27,20)" rx="2" ry="2" />
<text x="369.46" y="2031.5" ></text>
</g>
<g >
<title>psi_task_change (99,916,591 samples, 0.09%)</title><rect x="169.1" y="1909" width="1.1" height="15.0" fill="rgb(205,5,42)" rx="2" ry="2" />
<text x="172.14" y="1919.5" ></text>
</g>
<g >
<title>ttwu_do_activate (20,598,146 samples, 0.02%)</title><rect x="165.0" y="1765" width="0.2" height="15.0" fill="rgb(210,206,45)" rx="2" ry="2" />
<text x="168.03" y="1775.5" ></text>
</g>
<g >
<title>dequeue_entity (288,652,021 samples, 0.25%)</title><rect x="311.4" y="1861" width="2.9" height="15.0" fill="rgb(239,37,36)" rx="2" ry="2" />
<text x="314.36" y="1871.5" ></text>
</g>
<g >
<title>[libnode.so.108] (32,639,675 samples, 0.03%)</title><rect x="75.6" y="1893" width="0.3" height="15.0" fill="rgb(223,83,47)" rx="2" ry="2" />
<text x="78.60" y="1903.5" ></text>
</g>
<g >
<title>reweight_entity (13,708,425 samples, 0.01%)</title><rect x="165.0" y="1717" width="0.2" height="15.0" fill="rgb(210,110,41)" rx="2" ry="2" />
<text x="168.03" y="1727.5" ></text>
</g>
<g >
<title>put_prev_entity (23,059,109 samples, 0.02%)</title><rect x="215.9" y="1893" width="0.3" height="15.0" fill="rgb(230,100,4)" rx="2" ry="2" />
<text x="218.95" y="1903.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (17,449,177 samples, 0.02%)</title><rect x="1014.0" y="1989" width="0.2" height="15.0" fill="rgb(223,56,21)" rx="2" ry="2" />
<text x="1017.03" y="1999.5" ></text>
</g>
<g >
<title>lock_sock_nested (137,252,522 samples, 0.12%)</title><rect x="249.9" y="1909" width="1.4" height="15.0" fill="rgb(251,144,22)" rx="2" ry="2" />
<text x="252.94" y="1919.5" ></text>
</g>
<g >
<title>__x64_sys_write (21,402,032 samples, 0.02%)</title><rect x="144.8" y="2005" width="0.3" height="15.0" fill="rgb(236,212,4)" rx="2" ry="2" />
<text x="147.84" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (209,542,812 samples, 0.18%)</title><rect x="70.7" y="2021" width="2.1" height="15.0" fill="rgb(234,109,19)" rx="2" ry="2" />
<text x="73.67" y="2031.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (202,049,663 samples, 0.18%)</title><rect x="316.9" y="1813" width="2.0" height="15.0" fill="rgb(213,154,34)" rx="2" ry="2" />
<text x="319.85" y="1823.5" ></text>
</g>
<g >
<title>rd_kafka_transport_poll (24,848,946 samples, 0.02%)</title><rect x="390.2" y="1973" width="0.3" height="15.0" fill="rgb(251,39,35)" rx="2" ry="2" />
<text x="393.21" y="1983.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (266,334,026 samples, 0.23%)</title><rect x="165.7" y="1845" width="2.7" height="15.0" fill="rgb(210,174,35)" rx="2" ry="2" />
<text x="168.70" y="1855.5" ></text>
</g>
<g >
<title>LazyCompile:*tryCatcher /srv/service/node_modules/bluebird/js/release/util.js:12 (996,817,236 samples, 0.86%)</title><rect x="113.0" y="1733" width="10.2" height="15.0" fill="rgb(208,62,48)" rx="2" ry="2" />
<text x="115.99" y="1743.5" ></text>
</g>
<g >
<title>update_blocked_averages (69,496,534 samples, 0.06%)</title><rect x="168.4" y="1877" width="0.7" height="15.0" fill="rgb(237,152,9)" rx="2" ry="2" />
<text x="171.43" y="1887.5" ></text>
</g>
<g >
<title>vfs_write (393,471,822 samples, 0.34%)</title><rect x="249.9" y="1989" width="4.1" height="15.0" fill="rgb(210,105,20)" rx="2" ry="2" />
<text x="252.94" y="1999.5" ></text>
</g>
<g >
<title>sock_poll (119,698,820 samples, 0.10%)</title><rect x="387.7" y="1893" width="1.2" height="15.0" fill="rgb(239,89,46)" rx="2" ry="2" />
<text x="390.72" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (166,703,176 samples, 0.14%)</title><rect x="125.4" y="597" width="1.7" height="15.0" fill="rgb(247,78,23)" rx="2" ry="2" />
<text x="128.36" y="607.5" ></text>
</g>
<g >
<title>update_load_avg (116,526,987 samples, 0.10%)</title><rect x="33.6" y="1877" width="1.2" height="15.0" fill="rgb(252,199,39)" rx="2" ry="2" />
<text x="36.63" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (13,912,474,690 samples, 12.07%)</title><rect x="484.3" y="1989" width="142.5" height="15.0" fill="rgb(240,116,51)" rx="2" ry="2" />
<text x="487.33" y="1999.5" >[unknown]</text>
</g>
<g >
<title>pthread_rwlock_unlock (45,685,403 samples, 0.04%)</title><rect x="141.8" y="2053" width="0.4" height="15.0" fill="rgb(213,183,6)" rx="2" ry="2" />
<text x="144.77" y="2063.5" ></text>
</g>
<g >
<title>update_curr (42,454,939 samples, 0.04%)</title><rect x="405.4" y="1797" width="0.5" height="15.0" fill="rgb(220,166,28)" rx="2" ry="2" />
<text x="408.44" y="1807.5" ></text>
</g>
<g >
<title>rd_kafka_transport_recv (28,427,704 samples, 0.02%)</title><rect x="288.2" y="2021" width="0.3" height="15.0" fill="rgb(221,221,20)" rx="2" ry="2" />
<text x="291.19" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (358,498,369 samples, 0.31%)</title><rect x="332.3" y="2021" width="3.7" height="15.0" fill="rgb(226,100,50)" rx="2" ry="2" />
<text x="335.28" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (1,363,674,621 samples, 1.18%)</title><rect x="376.5" y="1989" width="14.0" height="15.0" fill="rgb(215,221,51)" rx="2" ry="2" />
<text x="379.50" y="1999.5" ></text>
</g>
<g >
<title>update_blocked_averages (22,963,911 samples, 0.02%)</title><rect x="54.4" y="1781" width="0.2" height="15.0" fill="rgb(218,149,1)" rx="2" ry="2" />
<text x="57.35" y="1791.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (516,473,962 samples, 0.45%)</title><rect x="78.4" y="2021" width="5.3" height="15.0" fill="rgb(236,105,17)" rx="2" ry="2" />
<text x="81.39" y="2031.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (135,524,268 samples, 0.12%)</title><rect x="763.7" y="1925" width="1.4" height="15.0" fill="rgb(239,195,11)" rx="2" ry="2" />
<text x="766.70" y="1935.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (25,077,917 samples, 0.02%)</title><rect x="301.8" y="1941" width="0.3" height="15.0" fill="rgb(205,32,18)" rx="2" ry="2" />
<text x="304.80" y="1951.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (131,648,858 samples, 0.11%)</title><rect x="327.5" y="1797" width="1.4" height="15.0" fill="rgb(211,78,49)" rx="2" ry="2" />
<text x="330.52" y="1807.5" ></text>
</g>
<g >
<title>node::InternalCallbackScope::Close (141,496,336 samples, 0.12%)</title><rect x="91.8" y="1989" width="1.5" height="15.0" fill="rgb(254,89,3)" rx="2" ry="2" />
<text x="94.82" y="1999.5" ></text>
</g>
<g >
<title>finish_task_switch (93,587,728 samples, 0.08%)</title><rect x="302.4" y="1909" width="1.0" height="15.0" fill="rgb(234,226,33)" rx="2" ry="2" />
<text x="305.42" y="1919.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (124,842,310 samples, 0.11%)</title><rect x="412.7" y="1925" width="1.2" height="15.0" fill="rgb(241,112,32)" rx="2" ry="2" />
<text x="415.65" y="1935.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (21,151,350 samples, 0.02%)</title><rect x="382.1" y="1797" width="0.2" height="15.0" fill="rgb(215,221,14)" rx="2" ry="2" />
<text x="385.12" y="1807.5" ></text>
</g>
<g >
<title>update_load_avg (19,478,791 samples, 0.02%)</title><rect x="63.4" y="1861" width="0.2" height="15.0" fill="rgb(206,81,13)" rx="2" ry="2" />
<text x="66.41" y="1871.5" ></text>
</g>
<g >
<title>__x64_sys_futex (358,498,369 samples, 0.31%)</title><rect x="332.3" y="2005" width="3.7" height="15.0" fill="rgb(229,62,23)" rx="2" ry="2" />
<text x="335.28" y="2015.5" ></text>
</g>
</g>
</svg>

File Metadata

Mime Type
image/svg+xml
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
13537420
Default Alt Text
out.stacks.2337182.svg (368 KB)

Event Timeline