Page MenuHomePhabricator

out.stacks.2580321.svg

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

out.stacks.2580321.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>InterpretedFunction:a /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (82,679,130 samples, 0.12%)</title><rect x="167.3" y="1701" width="1.4" height="15.0" fill="rgb(216,36,7)" rx="2" ry="2" />
<text x="170.33" y="1711.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromise /srv/service/node_modules/bluebird/js/release/promise.js:577 (191,369,257 samples, 0.28%)</title><rect x="20.3" y="1605" width="3.2" height="15.0" fill="rgb(243,10,2)" rx="2" ry="2" />
<text x="23.29" y="1615.5" ></text>
</g>
<g >
<title>get_timespec64 (24,481,554 samples, 0.04%)</title><rect x="1170.8" y="1989" width="0.4" height="15.0" fill="rgb(219,33,6)" rx="2" ry="2" />
<text x="1173.77" y="1999.5" ></text>
</g>
<g >
<title>mtx_lock (582,853,310 samples, 0.84%)</title><rect x="1043.4" y="2037" width="9.9" height="15.0" fill="rgb(246,69,31)" rx="2" ry="2" />
<text x="1046.43" y="2047.5" ></text>
</g>
<g >
<title>v8::Object::InternalFieldCount (26,203,498 samples, 0.04%)</title><rect x="44.8" y="1653" width="0.4" height="15.0" fill="rgb(239,200,34)" rx="2" ry="2" />
<text x="47.78" y="1663.5" ></text>
</g>
<g >
<title>load_balance (55,732,731 samples, 0.08%)</title><rect x="156.7" y="1877" width="1.0" height="15.0" fill="rgb(241,57,51)" rx="2" ry="2" />
<text x="159.71" y="1887.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (19,783,296 samples, 0.03%)</title><rect x="471.6" y="1893" width="0.4" height="15.0" fill="rgb(211,135,8)" rx="2" ry="2" />
<text x="474.62" y="1903.5" ></text>
</g>
<g >
<title>malloc (59,444,592 samples, 0.09%)</title><rect x="91.1" y="2053" width="1.0" height="15.0" fill="rgb(229,180,24)" rx="2" ry="2" />
<text x="94.14" y="2063.5" ></text>
</g>
<g >
<title>__schedule (523,357,973 samples, 0.75%)</title><rect x="786.1" y="1941" width="8.9" height="15.0" fill="rgb(228,50,29)" rx="2" ry="2" />
<text x="789.13" y="1951.5" ></text>
</g>
<g >
<title>pfifo_fast_dequeue (148,659,567 samples, 0.21%)</title><rect x="597.1" y="1653" width="2.6" height="15.0" fill="rgb(217,158,16)" rx="2" ry="2" />
<text x="600.13" y="1663.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (20,182,638 samples, 0.03%)</title><rect x="646.8" y="2037" width="0.3" height="15.0" fill="rgb(207,137,40)" rx="2" ry="2" />
<text x="649.80" y="2047.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1733" width="0.2" height="15.0" fill="rgb(211,92,4)" rx="2" ry="2" />
<text x="90.79" y="1743.5" ></text>
</g>
<g >
<title>do_futex (68,945,518 samples, 0.10%)</title><rect x="81.7" y="1989" width="1.2" height="15.0" fill="rgb(242,158,20)" rx="2" ry="2" />
<text x="84.72" y="1999.5" ></text>
</g>
<g >
<title>__fget_files (24,069,507 samples, 0.03%)</title><rect x="458.5" y="1957" width="0.4" height="15.0" fill="rgb(254,163,25)" rx="2" ry="2" />
<text x="461.51" y="1967.5" ></text>
</g>
<g >
<title>cfree (134,330,344 samples, 0.19%)</title><rect x="185.6" y="2037" width="2.3" height="15.0" fill="rgb(249,179,12)" rx="2" ry="2" />
<text x="188.61" y="2047.5" ></text>
</g>
<g >
<title>try_to_wake_up (31,259,811 samples, 0.05%)</title><rect x="44.2" y="1605" width="0.6" height="15.0" fill="rgb(218,206,4)" rx="2" ry="2" />
<text x="47.25" y="1615.5" ></text>
</g>
<g >
<title>merge_sched_in (7,888,897 samples, 0.01%)</title><rect x="483.2" y="1845" width="0.2" height="15.0" fill="rgb(206,222,22)" rx="2" ry="2" />
<text x="486.24" y="1855.5" ></text>
</g>
<g >
<title>CRYPTO_gcm128_aad (33,250,387 samples, 0.05%)</title><rect x="391.5" y="2053" width="0.5" height="15.0" fill="rgb(250,211,24)" rx="2" ry="2" />
<text x="394.46" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (72,473,009 samples, 0.10%)</title><rect x="560.5" y="2021" width="1.2" height="15.0" fill="rgb(215,174,36)" rx="2" ry="2" />
<text x="563.49" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (683,182,696 samples, 0.98%)</title><rect x="799.5" y="2037" width="11.6" height="15.0" fill="rgb(235,189,21)" rx="2" ry="2" />
<text x="802.53" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1781" width="13.1" height="15.0" fill="rgb(238,227,17)" rx="2" ry="2" />
<text x="60.02" y="1791.5" ></text>
</g>
<g >
<title>__libc_write (36,294,055 samples, 0.05%)</title><rect x="204.6" y="2021" width="0.6" height="15.0" fill="rgb(247,109,45)" rx="2" ry="2" />
<text x="207.55" y="2031.5" ></text>
</g>
<g >
<title>try_to_wake_up (27,172,777 samples, 0.04%)</title><rect x="782.9" y="1829" width="0.5" height="15.0" fill="rgb(253,121,12)" rx="2" ry="2" />
<text x="785.89" y="1839.5" ></text>
</g>
<g >
<title>psi_group_change (17,054,907 samples, 0.02%)</title><rect x="555.4" y="1909" width="0.3" height="15.0" fill="rgb(219,168,15)" rx="2" ry="2" />
<text x="558.40" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="517" width="13.1" height="15.0" fill="rgb(246,48,20)" rx="2" ry="2" />
<text x="60.02" y="527.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (550,297,329 samples, 0.79%)</title><rect x="120.6" y="1861" width="9.3" height="15.0" fill="rgb(205,212,27)" rx="2" ry="2" />
<text x="123.55" y="1871.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1685" width="4.6" height="15.0" fill="rgb(225,138,41)" rx="2" ry="2" />
<text x="600.13" y="1695.5" ></text>
</g>
<g >
<title>do_syscall_64 (81,057,429 samples, 0.12%)</title><rect x="452.4" y="2005" width="1.4" height="15.0" fill="rgb(211,203,22)" rx="2" ry="2" />
<text x="455.40" y="2015.5" ></text>
</g>
<g >
<title>merge_sched_in (14,265,352 samples, 0.02%)</title><rect x="701.7" y="1845" width="0.2" height="15.0" fill="rgb(250,141,4)" rx="2" ry="2" />
<text x="704.70" y="1855.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,033,037 samples, 0.03%)</title><rect x="68.2" y="133" width="0.3" height="15.0" fill="rgb(206,184,46)" rx="2" ry="2" />
<text x="71.21" y="143.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (36,781,187 samples, 0.05%)</title><rect x="262.9" y="1941" width="0.6" height="15.0" fill="rgb(238,191,50)" rx="2" ry="2" />
<text x="265.92" y="1951.5" ></text>
</g>
<g >
<title>__update_load_avg_se (21,060,428 samples, 0.03%)</title><rect x="545.5" y="1877" width="0.3" height="15.0" fill="rgb(245,142,2)" rx="2" ry="2" />
<text x="548.48" y="1887.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1621" width="1.4" height="15.0" fill="rgb(210,20,32)" rx="2" ry="2" />
<text x="229.35" y="1631.5" ></text>
</g>
<g >
<title>pick_next_task_fair (28,504,033 samples, 0.04%)</title><rect x="69.6" y="101" width="0.5" height="15.0" fill="rgb(219,118,8)" rx="2" ry="2" />
<text x="72.60" y="111.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (143,123,557 samples, 0.21%)</title><rect x="618.7" y="1989" width="2.4" height="15.0" fill="rgb(252,97,54)" rx="2" ry="2" />
<text x="621.68" y="1999.5" ></text>
</g>
<g >
<title>finish_task_switch (224,337,499 samples, 0.32%)</title><rect x="749.8" y="1925" width="3.9" height="15.0" fill="rgb(211,155,31)" rx="2" ry="2" />
<text x="752.84" y="1935.5" ></text>
</g>
<g >
<title>__update_idle_core (19,926,758 samples, 0.03%)</title><rect x="378.0" y="1893" width="0.3" height="15.0" fill="rgb(210,200,29)" rx="2" ry="2" />
<text x="380.99" y="1903.5" ></text>
</g>
<g >
<title>ksys_read (195,550,940 samples, 0.28%)</title><rect x="446.4" y="1989" width="3.3" height="15.0" fill="rgb(209,221,42)" rx="2" ry="2" />
<text x="449.39" y="1999.5" ></text>
</g>
<g >
<title>update_load_avg (60,506,717 samples, 0.09%)</title><rect x="544.8" y="1893" width="1.0" height="15.0" fill="rgb(247,186,11)" rx="2" ry="2" />
<text x="547.81" y="1903.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (22,361,747 samples, 0.03%)</title><rect x="69.2" y="53" width="0.4" height="15.0" fill="rgb(205,194,7)" rx="2" ry="2" />
<text x="72.22" y="63.5" ></text>
</g>
<g >
<title>perf_log_itrace_start (87,774,952 samples, 0.13%)</title><rect x="120.7" y="1813" width="1.5" height="15.0" fill="rgb(243,82,36)" rx="2" ry="2" />
<text x="123.72" y="1823.5" ></text>
</g>
<g >
<title>rb_erase (7,901,192 samples, 0.01%)</title><rect x="356.8" y="1781" width="0.2" height="15.0" fill="rgb(211,125,54)" rx="2" ry="2" />
<text x="359.84" y="1791.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (27,203,064 samples, 0.04%)</title><rect x="748.6" y="1909" width="0.4" height="15.0" fill="rgb(234,61,44)" rx="2" ry="2" />
<text x="751.59" y="1919.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (156,105,459 samples, 0.22%)</title><rect x="486.0" y="1845" width="2.7" height="15.0" fill="rgb(249,6,43)" rx="2" ry="2" />
<text x="489.03" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="565" width="13.1" height="15.0" fill="rgb(239,127,11)" rx="2" ry="2" />
<text x="60.02" y="575.5" ></text>
</g>
<g >
<title>update_rq_clock (21,508,679 samples, 0.03%)</title><rect x="130.0" y="1765" width="0.4" height="15.0" fill="rgb(215,108,13)" rx="2" ry="2" />
<text x="133.00" y="1775.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (28,037,333 samples, 0.04%)</title><rect x="763.6" y="1861" width="0.5" height="15.0" fill="rgb(216,192,46)" rx="2" ry="2" />
<text x="766.59" y="1871.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,420,630 samples, 0.02%)</title><rect x="1168.0" y="1861" width="0.2" height="15.0" fill="rgb(246,6,40)" rx="2" ry="2" />
<text x="1170.99" y="1871.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (26,419,604 samples, 0.04%)</title><rect x="777.0" y="2037" width="0.5" height="15.0" fill="rgb(234,156,8)" rx="2" ry="2" />
<text x="780.03" y="2047.5" ></text>
</g>
<g >
<title>futex_wait (68,945,518 samples, 0.10%)</title><rect x="81.7" y="1973" width="1.2" height="15.0" fill="rgb(246,31,4)" rx="2" ry="2" />
<text x="84.72" y="1983.5" ></text>
</g>
<g >
<title>[libc-2.28.so] (24,576,779 samples, 0.04%)</title><rect x="10.0" y="2053" width="0.4" height="15.0" fill="rgb(228,68,13)" rx="2" ry="2" />
<text x="13.00" y="2063.5" ></text>
</g>
<g >
<title>rd_kafka_transport_ssl_recv (145,471,836 samples, 0.21%)</title><rect x="498.3" y="2053" width="2.5" height="15.0" fill="rgb(245,181,42)" rx="2" ry="2" />
<text x="501.33" y="2063.5" ></text>
</g>
<g >
<title>__poll (1,076,585,592 samples, 1.55%)</title><rect x="780.3" y="2053" width="18.3" height="15.0" fill="rgb(238,117,39)" rx="2" ry="2" />
<text x="783.34" y="2063.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (541,194,704 samples, 0.78%)</title><rect x="699.4" y="2053" width="9.2" height="15.0" fill="rgb(206,30,8)" rx="2" ry="2" />
<text x="702.43" y="2063.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (24,673,970 samples, 0.04%)</title><rect x="716.9" y="2021" width="0.4" height="15.0" fill="rgb(235,134,54)" rx="2" ry="2" />
<text x="719.91" y="2031.5" ></text>
</g>
<g >
<title>sched_clock_cpu (16,002,376 samples, 0.02%)</title><rect x="1170.0" y="1861" width="0.3" height="15.0" fill="rgb(243,146,52)" rx="2" ry="2" />
<text x="1172.98" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="805" width="13.1" height="15.0" fill="rgb(237,88,30)" rx="2" ry="2" />
<text x="60.02" y="815.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1717" width="13.1" height="15.0" fill="rgb(249,88,39)" rx="2" ry="2" />
<text x="60.02" y="1727.5" ></text>
</g>
<g >
<title>perf_swevent_add (7,319,310 samples, 0.01%)</title><rect x="573.1" y="1813" width="0.1" height="15.0" fill="rgb(226,93,22)" rx="2" ry="2" />
<text x="576.06" y="1823.5" ></text>
</g>
<g >
<title>futex_wait (677,771,413 samples, 0.98%)</title><rect x="799.5" y="1973" width="11.6" height="15.0" fill="rgb(209,197,4)" rx="2" ry="2" />
<text x="802.53" y="1983.5" ></text>
</g>
<g >
<title>fput_many (33,603,555 samples, 0.05%)</title><rect x="651.6" y="1957" width="0.6" height="15.0" fill="rgb(232,66,47)" rx="2" ry="2" />
<text x="654.62" y="1967.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (322,548,771 samples, 0.46%)</title><rect x="169.4" y="1573" width="5.4" height="15.0" fill="rgb(215,117,17)" rx="2" ry="2" />
<text x="172.35" y="1583.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (36,855,461 samples, 0.05%)</title><rect x="262.2" y="1957" width="0.6" height="15.0" fill="rgb(232,144,33)" rx="2" ry="2" />
<text x="265.21" y="1967.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (44,444,988 samples, 0.06%)</title><rect x="227.8" y="1669" width="0.7" height="15.0" fill="rgb(246,137,5)" rx="2" ry="2" />
<text x="230.76" y="1679.5" ></text>
</g>
<g >
<title>__seccomp_filter (30,081,940 samples, 0.04%)</title><rect x="770.8" y="1989" width="0.5" height="15.0" fill="rgb(251,72,51)" rx="2" ry="2" />
<text x="773.83" y="1999.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (24,329,495 samples, 0.04%)</title><rect x="560.1" y="1893" width="0.4" height="15.0" fill="rgb(207,93,2)" rx="2" ry="2" />
<text x="563.08" y="1903.5" ></text>
</g>
<g >
<title>__seccomp_filter (65,921,032 samples, 0.09%)</title><rect x="680.6" y="1989" width="1.1" height="15.0" fill="rgb(215,154,49)" rx="2" ry="2" />
<text x="683.56" y="1999.5" ></text>
</g>
<g >
<title>ttwu_do_activate (39,389,132 samples, 0.06%)</title><rect x="68.5" y="85" width="0.7" height="15.0" fill="rgb(220,166,0)" rx="2" ry="2" />
<text x="71.55" y="95.5" ></text>
</g>
<g >
<title>do_syscall_64 (967,226,385 samples, 1.39%)</title><rect x="596.9" y="2005" width="16.4" height="15.0" fill="rgb(225,180,16)" rx="2" ry="2" />
<text x="599.88" y="2015.5" ></text>
</g>
<g >
<title>__update_load_avg_se (30,218,894 samples, 0.04%)</title><rect x="663.0" y="1877" width="0.5" height="15.0" fill="rgb(224,65,27)" rx="2" ry="2" />
<text x="666.03" y="1887.5" ></text>
</g>
<g >
<title>reweight_entity (15,570,171 samples, 0.02%)</title><rect x="327.3" y="1877" width="0.2" height="15.0" fill="rgb(214,72,31)" rx="2" ry="2" />
<text x="330.27" y="1887.5" ></text>
</g>
<g >
<title>update_load_avg (33,620,065 samples, 0.05%)</title><rect x="482.5" y="1877" width="0.5" height="15.0" fill="rgb(206,119,35)" rx="2" ry="2" />
<text x="485.48" y="1887.5" ></text>
</g>
<g >
<title>finish_task_switch (9,923,535 samples, 0.01%)</title><rect x="88.1" y="1925" width="0.2" height="15.0" fill="rgb(243,22,43)" rx="2" ry="2" />
<text x="91.09" y="1935.5" ></text>
</g>
<g >
<title>tg3_poll_msix (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1797" width="0.2" height="15.0" fill="rgb(251,57,52)" rx="2" ry="2" />
<text x="553.58" y="1807.5" ></text>
</g>
<g >
<title>update_blocked_averages (94,836,021 samples, 0.14%)</title><rect x="489.0" y="1829" width="1.6" height="15.0" fill="rgb(224,34,25)" rx="2" ry="2" />
<text x="492.01" y="1839.5" ></text>
</g>
<g >
<title>rb_next (25,795,807 samples, 0.04%)</title><rect x="354.5" y="1845" width="0.4" height="15.0" fill="rgb(250,1,17)" rx="2" ry="2" />
<text x="357.47" y="1855.5" ></text>
</g>
<g >
<title>newidle_balance (168,738,261 samples, 0.24%)</title><rect x="130.4" y="1893" width="2.9" height="15.0" fill="rgb(207,155,48)" rx="2" ry="2" />
<text x="133.40" y="1903.5" ></text>
</g>
<g >
<title>inet6_recvmsg (218,547,148 samples, 0.31%)</title><rect x="214.7" y="1925" width="3.7" height="15.0" fill="rgb(251,177,53)" rx="2" ry="2" />
<text x="217.67" y="1935.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,017,298,911 samples, 1.47%)</title><rect x="719.9" y="2005" width="17.3" height="15.0" fill="rgb(253,119,16)" rx="2" ry="2" />
<text x="722.89" y="2015.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (94,868,082 samples, 0.14%)</title><rect x="572.6" y="1893" width="1.6" height="15.0" fill="rgb(227,188,52)" rx="2" ry="2" />
<text x="575.62" y="1903.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (14,197,649 samples, 0.02%)</title><rect x="541.5" y="1877" width="0.3" height="15.0" fill="rgb(217,129,29)" rx="2" ry="2" />
<text x="544.53" y="1887.5" ></text>
</g>
<g >
<title>__pthread_mutex_lock (126,881,541 samples, 0.18%)</title><rect x="234.6" y="2037" width="2.2" height="15.0" fill="rgb(209,118,39)" rx="2" ry="2" />
<text x="237.62" y="2047.5" ></text>
</g>
<g >
<title>__pthread_rwlock_unlock (15,824,113 samples, 0.02%)</title><rect x="58.0" y="37" width="0.2" height="15.0" fill="rgb(234,166,7)" rx="2" ry="2" />
<text x="60.97" y="47.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (34,551,025 samples, 0.05%)</title><rect x="286.3" y="1813" width="0.6" height="15.0" fill="rgb(229,159,45)" rx="2" ry="2" />
<text x="289.30" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1205" width="13.1" height="15.0" fill="rgb(228,65,16)" rx="2" ry="2" />
<text x="60.02" y="1215.5" ></text>
</g>
<g >
<title>update_curr (47,811,035 samples, 0.07%)</title><rect x="327.5" y="1877" width="0.9" height="15.0" fill="rgb(236,215,6)" rx="2" ry="2" />
<text x="330.54" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,350,466,827 samples, 1.95%)</title><rect x="537.5" y="2021" width="23.0" height="15.0" fill="rgb(219,196,38)" rx="2" ry="2" />
<text x="540.54" y="2031.5" >d..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,354,947,854 samples, 1.95%)</title><rect x="137.1" y="2037" width="23.0" height="15.0" fill="rgb(209,52,1)" rx="2" ry="2" />
<text x="140.05" y="2047.5" >e..</text>
</g>
<g >
<title>__x64_sys_futex (43,082,636 samples, 0.06%)</title><rect x="248.0" y="2005" width="0.8" height="15.0" fill="rgb(228,124,15)" rx="2" ry="2" />
<text x="251.02" y="2015.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (17,770,667 samples, 0.03%)</title><rect x="65.8" y="37" width="0.3" height="15.0" fill="rgb(249,99,13)" rx="2" ry="2" />
<text x="68.78" y="47.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (17,903,662 samples, 0.03%)</title><rect x="719.6" y="1909" width="0.3" height="15.0" fill="rgb(235,173,11)" rx="2" ry="2" />
<text x="722.58" y="1919.5" ></text>
</g>
<g >
<title>pollwake (104,683,936 samples, 0.15%)</title><rect x="988.4" y="1893" width="1.8" height="15.0" fill="rgb(207,41,6)" rx="2" ry="2" />
<text x="991.41" y="1903.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,031,953,741 samples, 2.93%)</title><rect x="647.1" y="2021" width="34.6" height="15.0" fill="rgb(252,198,2)" rx="2" ry="2" />
<text x="650.15" y="2031.5" >do..</text>
</g>
<g >
<title>Builtin:ArgumentsAdaptorTrampoline (441,631,362 samples, 0.64%)</title><rect x="167.3" y="1765" width="7.5" height="15.0" fill="rgb(238,37,35)" rx="2" ry="2" />
<text x="170.33" y="1775.5" ></text>
</g>
<g >
<title>__poll (1,097,855,069 samples, 1.58%)</title><rect x="456.0" y="2053" width="18.7" height="15.0" fill="rgb(207,190,8)" rx="2" ry="2" />
<text x="459.04" y="2063.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (24,891,638 samples, 0.04%)</title><rect x="270.2" y="1925" width="0.5" height="15.0" fill="rgb(229,139,26)" rx="2" ry="2" />
<text x="273.24" y="1935.5" ></text>
</g>
<g >
<title>uv__run_check (7,439,778 samples, 0.01%)</title><rect x="66.8" y="53" width="0.1" height="15.0" fill="rgb(253,169,3)" rx="2" ry="2" />
<text x="69.76" y="63.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1957" width="13.1" height="15.0" fill="rgb(250,147,2)" rx="2" ry="2" />
<text x="60.02" y="1967.5" ></text>
</g>
<g >
<title>rd_kafka_timers_next (103,177,137 samples, 0.15%)</title><rect x="893.5" y="2021" width="1.8" height="15.0" fill="rgb(228,47,25)" rx="2" ry="2" />
<text x="896.55" y="2031.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (231,222,232 samples, 0.33%)</title><rect x="864.1" y="1957" width="3.9" height="15.0" fill="rgb(223,214,42)" rx="2" ry="2" />
<text x="867.08" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="917" width="13.1" height="15.0" fill="rgb(231,127,0)" rx="2" ry="2" />
<text x="60.02" y="927.5" ></text>
</g>
<g >
<title>do_futex (1,285,003,344 samples, 1.85%)</title><rect x="137.1" y="1989" width="21.8" height="15.0" fill="rgb(218,93,27)" rx="2" ry="2" />
<text x="140.08" y="1999.5" >d..</text>
</g>
<g >
<title>timerqueue_add (49,401,779 samples, 0.07%)</title><rect x="463.0" y="1925" width="0.8" height="15.0" fill="rgb(222,73,13)" rx="2" ry="2" />
<text x="466.01" y="1935.5" ></text>
</g>
<g >
<title>perf_swevent_add (83,538,988 samples, 0.12%)</title><rect x="349.6" y="1813" width="1.4" height="15.0" fill="rgb(254,198,26)" rx="2" ry="2" />
<text x="352.61" y="1823.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (62,516,393 samples, 0.09%)</title><rect x="224.1" y="1989" width="1.0" height="15.0" fill="rgb(233,123,16)" rx="2" ry="2" />
<text x="227.05" y="1999.5" ></text>
</g>
<g >
<title>ep_scan_ready_list.constprop.0 (16,499,754 samples, 0.02%)</title><rect x="87.8" y="1973" width="0.3" height="15.0" fill="rgb(235,225,18)" rx="2" ry="2" />
<text x="90.79" y="1983.5" ></text>
</g>
<g >
<title>try_to_wake_up (12,714,523 samples, 0.02%)</title><rect x="1167.7" y="1781" width="0.3" height="15.0" fill="rgb(242,2,24)" rx="2" ry="2" />
<text x="1170.75" y="1791.5" ></text>
</g>
<g >
<title>do_syscall_64 (839,292,990 samples, 1.21%)</title><rect x="566.4" y="2021" width="14.3" height="15.0" fill="rgb(237,215,4)" rx="2" ry="2" />
<text x="569.41" y="2031.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (14,248,885 samples, 0.02%)</title><rect x="704.0" y="1845" width="0.3" height="15.0" fill="rgb(228,229,28)" rx="2" ry="2" />
<text x="707.04" y="1855.5" ></text>
</g>
<g >
<title>operator new (9,199,220 samples, 0.01%)</title><rect x="60.1" y="37" width="0.2" height="15.0" fill="rgb(223,97,25)" rx="2" ry="2" />
<text x="63.11" y="47.5" ></text>
</g>
<g >
<title>ttwu_do_activate (14,770,942 samples, 0.02%)</title><rect x="668.9" y="1781" width="0.3" height="15.0" fill="rgb(217,117,52)" rx="2" ry="2" />
<text x="671.91" y="1791.5" ></text>
</g>
<g >
<title>find_busiest_group (56,318,957 samples, 0.08%)</title><rect x="1168.2" y="1861" width="0.9" height="15.0" fill="rgb(248,3,30)" rx="2" ry="2" />
<text x="1171.16" y="1871.5" ></text>
</g>
<g >
<title>read_tsc (63,049,883 samples, 0.09%)</title><rect x="610.1" y="1845" width="1.1" height="15.0" fill="rgb(218,117,0)" rx="2" ry="2" />
<text x="613.15" y="1855.5" ></text>
</g>
<g >
<title>load_balance (284,862,776 samples, 0.41%)</title><rect x="295.6" y="1893" width="4.9" height="15.0" fill="rgb(224,72,33)" rx="2" ry="2" />
<text x="298.65" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="325" width="13.1" height="15.0" fill="rgb(213,73,36)" rx="2" ry="2" />
<text x="60.02" y="335.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_serve (72,383,898 samples, 0.10%)</title><rect x="521.5" y="2005" width="1.2" height="15.0" fill="rgb(211,74,41)" rx="2" ry="2" />
<text x="524.51" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (909,872,284 samples, 1.31%)</title><rect x="478.4" y="2021" width="15.5" height="15.0" fill="rgb(237,80,50)" rx="2" ry="2" />
<text x="481.39" y="2031.5" ></text>
</g>
<g >
<title>psi_task_change (34,112,160 samples, 0.05%)</title><rect x="493.0" y="1909" width="0.6" height="15.0" fill="rgb(214,62,53)" rx="2" ry="2" />
<text x="496.04" y="1919.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1797" width="1.2" height="15.0" fill="rgb(214,77,53)" rx="2" ry="2" />
<text x="721.38" y="1807.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (9,805,140 samples, 0.01%)</title><rect x="758.4" y="1973" width="0.1" height="15.0" fill="rgb(246,199,39)" rx="2" ry="2" />
<text x="761.37" y="1983.5" ></text>
</g>
<g >
<title>__pthread_enable_asynccancel (149,049,548 samples, 0.21%)</title><rect x="231.1" y="2037" width="2.5" height="15.0" fill="rgb(212,190,5)" rx="2" ry="2" />
<text x="234.05" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1157" width="13.1" height="15.0" fill="rgb(243,145,28)" rx="2" ry="2" />
<text x="60.02" y="1167.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1845" width="1.2" height="15.0" fill="rgb(232,41,2)" rx="2" ry="2" />
<text x="721.38" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1573" width="13.1" height="15.0" fill="rgb(254,155,53)" rx="2" ry="2" />
<text x="60.02" y="1583.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.1] (195,744,949 samples, 0.28%)</title><rect x="585.4" y="2053" width="3.3" height="15.0" fill="rgb(233,149,33)" rx="2" ry="2" />
<text x="588.41" y="2063.5" ></text>
</g>
<g >
<title>sock_recvmsg (43,386,688 samples, 0.06%)</title><rect x="611.2" y="1925" width="0.8" height="15.0" fill="rgb(248,137,16)" rx="2" ry="2" />
<text x="614.22" y="1935.5" ></text>
</g>
<g >
<title>update_blocked_averages (18,244,375 samples, 0.03%)</title><rect x="133.0" y="1877" width="0.3" height="15.0" fill="rgb(232,42,41)" rx="2" ry="2" />
<text x="135.95" y="1887.5" ></text>
</g>
<g >
<title>poll_freewait (37,420,980 samples, 0.05%)</title><rect x="651.6" y="1973" width="0.7" height="15.0" fill="rgb(212,164,44)" rx="2" ry="2" />
<text x="654.62" y="1983.5" ></text>
</g>
<g >
<title>newidle_balance (26,885,788 samples, 0.04%)</title><rect x="472.0" y="1909" width="0.4" height="15.0" fill="rgb(228,66,45)" rx="2" ry="2" />
<text x="474.95" y="1919.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (8,279,708 samples, 0.01%)</title><rect x="88.1" y="1909" width="0.1" height="15.0" fill="rgb(226,149,49)" rx="2" ry="2" />
<text x="91.09" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1093" width="13.1" height="15.0" fill="rgb(213,50,54)" rx="2" ry="2" />
<text x="60.02" y="1103.5" ></text>
</g>
<g >
<title>v8::internal::OptimizedCompilationJob::ExecuteJob (231,690,612 samples, 0.33%)</title><rect x="161.3" y="1989" width="3.9" height="15.0" fill="rgb(230,85,21)" rx="2" ry="2" />
<text x="164.28" y="1999.5" ></text>
</g>
<g >
<title>__libc_read (150,339,559 samples, 0.22%)</title><rect x="717.3" y="2037" width="2.6" height="15.0" fill="rgb(221,130,5)" rx="2" ry="2" />
<text x="720.33" y="2047.5" ></text>
</g>
<g >
<title>ttwu_do_activate (31,259,811 samples, 0.05%)</title><rect x="44.2" y="1589" width="0.6" height="15.0" fill="rgb(232,202,13)" rx="2" ry="2" />
<text x="47.25" y="1599.5" ></text>
</g>
<g >
<title>v8::internal::Map::FindRootMap (116,379,302 samples, 0.17%)</title><rect x="48.5" y="1717" width="2.0" height="15.0" fill="rgb(214,93,20)" rx="2" ry="2" />
<text x="51.50" y="1727.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (25,875,044 samples, 0.04%)</title><rect x="792.5" y="1845" width="0.4" height="15.0" fill="rgb(252,170,25)" rx="2" ry="2" />
<text x="795.47" y="1855.5" ></text>
</g>
<g >
<title>v8::internal::compiler::GraphReducer::ReduceTop (136,394,792 samples, 0.20%)</title><rect x="161.3" y="1909" width="2.3" height="15.0" fill="rgb(241,113,44)" rx="2" ry="2" />
<text x="164.28" y="1919.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel.part.0 (62,992,899 samples, 0.09%)</title><rect x="266.8" y="1957" width="1.1" height="15.0" fill="rgb(247,95,33)" rx="2" ry="2" />
<text x="269.81" y="1967.5" ></text>
</g>
<g >
<title>native_write_msr (110,832,138 samples, 0.16%)</title><rect x="663.7" y="1877" width="1.8" height="15.0" fill="rgb(248,112,54)" rx="2" ry="2" />
<text x="666.66" y="1887.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (20,018,919 samples, 0.03%)</title><rect x="472.7" y="1957" width="0.3" height="15.0" fill="rgb(247,46,37)" rx="2" ry="2" />
<text x="475.71" y="1967.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (27,172,777 samples, 0.04%)</title><rect x="782.9" y="1845" width="0.5" height="15.0" fill="rgb(205,69,9)" rx="2" ry="2" />
<text x="785.89" y="1855.5" ></text>
</g>
<g >
<title>__x64_sys_futex (483,534,322 samples, 0.70%)</title><rect x="699.8" y="2005" width="8.2" height="15.0" fill="rgb(226,80,6)" rx="2" ry="2" />
<text x="702.78" y="2015.5" ></text>
</g>
<g >
<title>rd_kafka_consumer_poll (27,970,667 samples, 0.04%)</title><rect x="60.7" y="37" width="0.4" height="15.0" fill="rgb(213,196,2)" rx="2" ry="2" />
<text x="63.67" y="47.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (122,494,824 samples, 0.18%)</title><rect x="613.3" y="1829" width="2.1" height="15.0" fill="rgb(251,37,51)" rx="2" ry="2" />
<text x="616.34" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1525" width="13.1" height="15.0" fill="rgb(241,136,23)" rx="2" ry="2" />
<text x="60.02" y="1535.5" ></text>
</g>
<g >
<title>futex_wake (80,984,090 samples, 0.12%)</title><rect x="83.7" y="1973" width="1.4" height="15.0" fill="rgb(205,159,35)" rx="2" ry="2" />
<text x="86.73" y="1983.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (26,419,604 samples, 0.04%)</title><rect x="777.0" y="1941" width="0.5" height="15.0" fill="rgb(210,192,25)" rx="2" ry="2" />
<text x="780.03" y="1951.5" ></text>
</g>
<g >
<title>[libnode.so.64] (116,379,302 samples, 0.17%)</title><rect x="48.5" y="1733" width="2.0" height="15.0" fill="rgb(226,223,19)" rx="2" ry="2" />
<text x="51.50" y="1743.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (32,130,099 samples, 0.05%)</title><rect x="803.2" y="1797" width="0.5" height="15.0" fill="rgb(252,209,38)" rx="2" ry="2" />
<text x="806.17" y="1807.5" ></text>
</g>
<g >
<title>mem_cgroup_charge_skmem (58,487,805 samples, 0.08%)</title><rect x="228.5" y="1861" width="1.0" height="15.0" fill="rgb(252,18,49)" rx="2" ry="2" />
<text x="231.52" y="1871.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (26,113,955 samples, 0.04%)</title><rect x="66.9" y="117" width="0.5" height="15.0" fill="rgb(225,93,25)" rx="2" ry="2" />
<text x="69.91" y="127.5" ></text>
</g>
<g >
<title>inet_recvmsg (611,999,757 samples, 0.88%)</title><rect x="523.9" y="1925" width="10.4" height="15.0" fill="rgb(242,93,53)" rx="2" ry="2" />
<text x="526.86" y="1935.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (25,868,929 samples, 0.04%)</title><rect x="152.0" y="1797" width="0.4" height="15.0" fill="rgb(215,88,38)" rx="2" ry="2" />
<text x="155.00" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,707,968 samples, 0.04%)</title><rect x="379.2" y="1973" width="0.5" height="15.0" fill="rgb(252,82,38)" rx="2" ry="2" />
<text x="382.20" y="1983.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (26,246,579 samples, 0.04%)</title><rect x="1039.6" y="2021" width="0.5" height="15.0" fill="rgb(239,123,32)" rx="2" ry="2" />
<text x="1042.62" y="2031.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (25,875,044 samples, 0.04%)</title><rect x="792.5" y="1829" width="0.4" height="15.0" fill="rgb(249,82,19)" rx="2" ry="2" />
<text x="795.47" y="1839.5" ></text>
</g>
<g >
<title>finish_task_switch (163,826,897 samples, 0.24%)</title><rect x="790.1" y="1925" width="2.8" height="15.0" fill="rgb(224,111,35)" rx="2" ry="2" />
<text x="793.12" y="1935.5" ></text>
</g>
<g >
<title>try_to_wake_up (7,197,956 samples, 0.01%)</title><rect x="485.9" y="1781" width="0.1" height="15.0" fill="rgb(231,125,2)" rx="2" ry="2" />
<text x="488.88" y="1791.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (46,898,608 samples, 0.07%)</title><rect x="667.6" y="1861" width="0.8" height="15.0" fill="rgb(251,6,5)" rx="2" ry="2" />
<text x="670.62" y="1871.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (242,424,531 samples, 0.35%)</title><rect x="801.3" y="1893" width="4.1" height="15.0" fill="rgb(248,102,44)" rx="2" ry="2" />
<text x="804.33" y="1903.5" ></text>
</g>
<g >
<title>try_to_wake_up (23,771,023 samples, 0.03%)</title><rect x="500.8" y="1941" width="0.4" height="15.0" fill="rgb(229,183,28)" rx="2" ry="2" />
<text x="503.80" y="1951.5" ></text>
</g>
<g >
<title>__lll_lock_wait (70,474,363 samples, 0.10%)</title><rect x="81.7" y="2053" width="1.2" height="15.0" fill="rgb(251,92,26)" rx="2" ry="2" />
<text x="84.72" y="2063.5" ></text>
</g>
<g >
<title>switch_fpu_return (194,964,866 samples, 0.28%)</title><rect x="681.7" y="1989" width="3.3" height="15.0" fill="rgb(239,12,14)" rx="2" ry="2" />
<text x="684.68" y="1999.5" ></text>
</g>
<g >
<title>ctx_sched_in (550,297,329 samples, 0.79%)</title><rect x="120.6" y="1877" width="9.3" height="15.0" fill="rgb(221,129,10)" rx="2" ry="2" />
<text x="123.55" y="1887.5" ></text>
</g>
<g >
<title>pick_next_task_fair (168,738,261 samples, 0.24%)</title><rect x="130.4" y="1909" width="2.9" height="15.0" fill="rgb(236,118,18)" rx="2" ry="2" />
<text x="133.40" y="1919.5" ></text>
</g>
<g >
<title>__x64_sys_poll (3,436,170,446 samples, 4.95%)</title><rect x="253.0" y="2005" width="58.4" height="15.0" fill="rgb(251,191,48)" rx="2" ry="2" />
<text x="256.01" y="2015.5" >__x64_..</text>
</g>
<g >
<title>dequeue_task_fair (362,850,072 samples, 0.52%)</title><rect x="657.4" y="1925" width="6.1" height="15.0" fill="rgb(223,133,52)" rx="2" ry="2" />
<text x="660.38" y="1935.5" ></text>
</g>
<g >
<title>hrtimer_init_sleeper (120,572,444 samples, 0.17%)</title><rect x="652.7" y="1957" width="2.1" height="15.0" fill="rgb(247,93,24)" rx="2" ry="2" />
<text x="655.74" y="1967.5" ></text>
</g>
<g >
<title>ksys_read (611,999,757 samples, 0.88%)</title><rect x="523.9" y="1989" width="10.4" height="15.0" fill="rgb(231,142,9)" rx="2" ry="2" />
<text x="526.86" y="1999.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (76,513,865 samples, 0.11%)</title><rect x="493.9" y="1973" width="1.3" height="15.0" fill="rgb(205,211,9)" rx="2" ry="2" />
<text x="496.91" y="1983.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (108,836,204 samples, 0.16%)</title><rect x="701.7" y="1861" width="1.8" height="15.0" fill="rgb(207,60,37)" rx="2" ry="2" />
<text x="704.70" y="1871.5" ></text>
</g>
<g >
<title>update_blocked_averages (103,559,322 samples, 0.15%)</title><rect x="553.6" y="1893" width="1.8" height="15.0" fill="rgb(221,94,54)" rx="2" ry="2" />
<text x="556.64" y="1903.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (13,570,464 samples, 0.02%)</title><rect x="493.6" y="1909" width="0.3" height="15.0" fill="rgb(254,111,16)" rx="2" ry="2" />
<text x="496.62" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1045" width="13.1" height="15.0" fill="rgb(209,182,7)" rx="2" ry="2" />
<text x="60.02" y="1055.5" ></text>
</g>
<g >
<title>__clock_gettime (105,119,820 samples, 0.15%)</title><rect x="715.5" y="2037" width="1.8" height="15.0" fill="rgb(253,39,9)" rx="2" ry="2" />
<text x="718.54" y="2047.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (21,103,581 samples, 0.03%)</title><rect x="668.8" y="1877" width="0.4" height="15.0" fill="rgb(240,46,12)" rx="2" ry="2" />
<text x="671.83" y="1887.5" ></text>
</g>
<g >
<title>node::InternalMakeCallback (2,385,256,845 samples, 3.44%)</title><rect x="11.3" y="1941" width="40.6" height="15.0" fill="rgb(223,227,38)" rx="2" ry="2" />
<text x="14.34" y="1951.5" >nod..</text>
</g>
<g >
<title>try_to_wake_up (26,419,604 samples, 0.04%)</title><rect x="777.0" y="1925" width="0.5" height="15.0" fill="rgb(233,215,36)" rx="2" ry="2" />
<text x="780.03" y="1935.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (68,945,518 samples, 0.10%)</title><rect x="81.7" y="1957" width="1.2" height="15.0" fill="rgb(253,84,53)" rx="2" ry="2" />
<text x="84.72" y="1967.5" ></text>
</g>
<g >
<title>tcp_recvmsg (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1909" width="0.6" height="15.0" fill="rgb(232,128,8)" rx="2" ry="2" />
<text x="451.74" y="1919.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (16,369,376 samples, 0.02%)</title><rect x="668.9" y="1813" width="0.3" height="15.0" fill="rgb(240,226,25)" rx="2" ry="2" />
<text x="671.88" y="1823.5" ></text>
</g>
<g >
<title>timerqueue_add (125,600,974 samples, 0.18%)</title><rect x="264.7" y="1925" width="2.1" height="15.0" fill="rgb(253,90,22)" rx="2" ry="2" />
<text x="267.67" y="1935.5" ></text>
</g>
<g >
<title>sched_clock_cpu (1,098,350,162 samples, 1.58%)</title><rect x="93.0" y="1909" width="18.7" height="15.0" fill="rgb(217,99,3)" rx="2" ry="2" />
<text x="96.00" y="1919.5" ></text>
</g>
<g >
<title>finish_task_switch (22,361,747 samples, 0.03%)</title><rect x="69.2" y="101" width="0.4" height="15.0" fill="rgb(254,93,14)" rx="2" ry="2" />
<text x="72.22" y="111.5" ></text>
</g>
<g >
<title>__fget_light (339,109,124 samples, 0.49%)</title><rect x="256.4" y="1973" width="5.8" height="15.0" fill="rgb(226,115,14)" rx="2" ry="2" />
<text x="259.44" y="1983.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (31,720,680 samples, 0.05%)</title><rect x="796.1" y="2005" width="0.5" height="15.0" fill="rgb(211,206,40)" rx="2" ry="2" />
<text x="799.06" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="997" width="13.1" height="15.0" fill="rgb(208,47,33)" rx="2" ry="2" />
<text x="60.02" y="1007.5" ></text>
</g>
<g >
<title>sched_clock (60,995,836 samples, 0.09%)</title><rect x="305.9" y="1861" width="1.0" height="15.0" fill="rgb(252,73,32)" rx="2" ry="2" />
<text x="308.90" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1749" width="13.1" height="15.0" fill="rgb(231,165,19)" rx="2" ry="2" />
<text x="60.02" y="1759.5" ></text>
</g>
<g >
<title>update_blocked_averages (65,213,742 samples, 0.09%)</title><rect x="808.0" y="1829" width="1.1" height="15.0" fill="rgb(230,190,40)" rx="2" ry="2" />
<text x="811.02" y="1839.5" ></text>
</g>
<g >
<title>BIO_clear_flags (108,574,766 samples, 0.16%)</title><rect x="199.8" y="2021" width="1.9" height="15.0" fill="rgb(246,121,51)" rx="2" ry="2" />
<text x="202.82" y="2031.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (164,033,565 samples, 0.24%)</title><rect x="357.0" y="1861" width="2.8" height="15.0" fill="rgb(208,31,17)" rx="2" ry="2" />
<text x="360.00" y="1871.5" ></text>
</g>
<g >
<title>rd_kafka_broker_buf_enq0 (21,786,009 samples, 0.03%)</title><rect x="238.9" y="2037" width="0.4" height="15.0" fill="rgb(240,188,46)" rx="2" ry="2" />
<text x="241.93" y="2047.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (72,473,009 samples, 0.10%)</title><rect x="560.5" y="2005" width="1.2" height="15.0" fill="rgb(207,64,32)" rx="2" ry="2" />
<text x="563.49" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (436,220,660 samples, 0.63%)</title><rect x="71.0" y="2005" width="7.4" height="15.0" fill="rgb(245,126,4)" rx="2" ry="2" />
<text x="73.97" y="2015.5" ></text>
</g>
<g >
<title>[libuv.so.1.0.0] (39,017,225 samples, 0.06%)</title><rect x="61.1" y="69" width="0.7" height="15.0" fill="rgb(214,53,5)" rx="2" ry="2" />
<text x="64.14" y="79.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (8,737,208 samples, 0.01%)</title><rect x="701.8" y="1797" width="0.1" height="15.0" fill="rgb(245,158,7)" rx="2" ry="2" />
<text x="704.79" y="1807.5" ></text>
</g>
<g >
<title>ip6_xmit (44,444,988 samples, 0.06%)</title><rect x="227.8" y="1813" width="0.7" height="15.0" fill="rgb(238,46,9)" rx="2" ry="2" />
<text x="230.76" y="1823.5" ></text>
</g>
<g >
<title>nf_hook_slow (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1653" width="1.4" height="15.0" fill="rgb(232,88,42)" rx="2" ry="2" />
<text x="229.35" y="1663.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (21,103,581 samples, 0.03%)</title><rect x="668.8" y="1845" width="0.4" height="15.0" fill="rgb(253,156,5)" rx="2" ry="2" />
<text x="671.83" y="1855.5" ></text>
</g>
<g >
<title>__schedule (1,165,784,307 samples, 1.68%)</title><rect x="115.5" y="1925" width="19.8" height="15.0" fill="rgb(207,91,21)" rx="2" ry="2" />
<text x="118.49" y="1935.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (12,714,523 samples, 0.02%)</title><rect x="1167.7" y="1797" width="0.3" height="15.0" fill="rgb(209,10,31)" rx="2" ry="2" />
<text x="1170.75" y="1807.5" ></text>
</g>
<g >
<title>__virt_addr_valid (14,492,499 samples, 0.02%)</title><rect x="218.1" y="1829" width="0.3" height="15.0" fill="rgb(236,55,39)" rx="2" ry="2" />
<text x="221.14" y="1839.5" ></text>
</g>
<g >
<title>ip_list_rcv (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1733" width="0.2" height="15.0" fill="rgb(209,16,27)" rx="2" ry="2" />
<text x="553.58" y="1743.5" ></text>
</g>
<g >
<title>rd_kafka_transport_poll (26,442,484 samples, 0.04%)</title><rect x="522.7" y="2005" width="0.5" height="15.0" fill="rgb(225,30,50)" rx="2" ry="2" />
<text x="525.74" y="2015.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (117,472,972 samples, 0.17%)</title><rect x="796.6" y="2005" width="2.0" height="15.0" fill="rgb(209,216,48)" rx="2" ry="2" />
<text x="799.65" y="2015.5" ></text>
</g>
<g >
<title>__fget_files (98,304,277 samples, 0.14%)</title><rect x="985.3" y="1941" width="1.7" height="15.0" fill="rgb(212,196,10)" rx="2" ry="2" />
<text x="988.32" y="1951.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (31,259,811 samples, 0.05%)</title><rect x="44.2" y="1637" width="0.6" height="15.0" fill="rgb(211,224,2)" rx="2" ry="2" />
<text x="47.25" y="1647.5" ></text>
</g>
<g >
<title>tick_sched_handle (28,608,563 samples, 0.04%)</title><rect x="316.1" y="1941" width="0.5" height="15.0" fill="rgb(205,135,41)" rx="2" ry="2" />
<text x="319.13" y="1951.5" ></text>
</g>
<g >
<title>rd_kafka_cgrp_handle_Heartbeat (21,346,264 samples, 0.03%)</title><rect x="1177.0" y="2053" width="0.4" height="15.0" fill="rgb(234,87,19)" rx="2" ry="2" />
<text x="1180.02" y="2063.5" ></text>
</g>
<g >
<title>net_rx_action (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1765" width="1.2" height="15.0" fill="rgb(232,8,33)" rx="2" ry="2" />
<text x="721.38" y="1775.5" ></text>
</g>
<g >
<title>update_load_avg (23,718,371 samples, 0.03%)</title><rect x="707.6" y="1877" width="0.4" height="15.0" fill="rgb(246,84,29)" rx="2" ry="2" />
<text x="710.60" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (224,046,367 samples, 0.32%)</title><rect x="225.7" y="2005" width="3.8" height="15.0" fill="rgb(236,48,24)" rx="2" ry="2" />
<text x="228.70" y="2015.5" ></text>
</g>
<g >
<title>rb_next (139,965,229 samples, 0.20%)</title><rect x="1165.3" y="1845" width="2.4" height="15.0" fill="rgb(243,156,30)" rx="2" ry="2" />
<text x="1168.30" y="1855.5" ></text>
</g>
<g >
<title>mtx_unlock (50,324,932 samples, 0.07%)</title><rect x="92.1" y="2053" width="0.9" height="15.0" fill="rgb(210,49,42)" rx="2" ry="2" />
<text x="95.15" y="2063.5" ></text>
</g>
<g >
<title>__update_load_avg_se (24,607,576 samples, 0.04%)</title><rect x="989.8" y="1797" width="0.4" height="15.0" fill="rgb(214,132,27)" rx="2" ry="2" />
<text x="992.77" y="1807.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (676,280,340 samples, 0.97%)</title><rect x="799.5" y="1957" width="11.5" height="15.0" fill="rgb(210,79,31)" rx="2" ry="2" />
<text x="802.53" y="1967.5" ></text>
</g>
<g >
<title>do_sys_poll (967,804,975 samples, 1.39%)</title><rect x="741.2" y="1989" width="16.4" height="15.0" fill="rgb(233,148,36)" rx="2" ry="2" />
<text x="744.18" y="1999.5" ></text>
</g>
<g >
<title>[[vdso]] (54,507,245 samples, 0.08%)</title><rect x="716.0" y="2021" width="0.9" height="15.0" fill="rgb(213,19,22)" rx="2" ry="2" />
<text x="718.98" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1477" width="13.1" height="15.0" fill="rgb(209,136,42)" rx="2" ry="2" />
<text x="60.02" y="1487.5" ></text>
</g>
<g >
<title>try_to_wake_up (14,248,885 samples, 0.02%)</title><rect x="704.0" y="1781" width="0.3" height="15.0" fill="rgb(216,63,43)" rx="2" ry="2" />
<text x="707.04" y="1791.5" ></text>
</g>
<g >
<title>[libssl.so.1.1] (51,551,330 samples, 0.07%)</title><rect x="591.9" y="2037" width="0.8" height="15.0" fill="rgb(244,185,7)" rx="2" ry="2" />
<text x="594.86" y="2047.5" ></text>
</g>
<g >
<title>record_times (445,085,317 samples, 0.64%)</title><rect x="1045.8" y="1861" width="7.5" height="15.0" fill="rgb(228,140,44)" rx="2" ry="2" />
<text x="1048.77" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1253" width="13.1" height="15.0" fill="rgb(227,220,15)" rx="2" ry="2" />
<text x="60.02" y="1263.5" ></text>
</g>
<g >
<title>rd_kafka_transport_poll (55,917,502 samples, 0.08%)</title><rect x="245.8" y="2037" width="1.0" height="15.0" fill="rgb(229,217,24)" rx="2" ry="2" />
<text x="248.83" y="2047.5" ></text>
</g>
<g >
<title>newidle_balance (261,014,680 samples, 0.38%)</title><rect x="669.2" y="1909" width="4.4" height="15.0" fill="rgb(247,80,41)" rx="2" ry="2" />
<text x="672.18" y="1919.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (16,659,180 samples, 0.02%)</title><rect x="768.6" y="1845" width="0.3" height="15.0" fill="rgb(223,218,23)" rx="2" ry="2" />
<text x="771.58" y="1855.5" ></text>
</g>
<g >
<title>nf_conntrack_in (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1669" width="0.2" height="15.0" fill="rgb(209,92,7)" rx="2" ry="2" />
<text x="553.58" y="1679.5" ></text>
</g>
<g >
<title>Builtin:KeyedLoadIC (31,259,811 samples, 0.05%)</title><rect x="44.2" y="1717" width="0.6" height="15.0" fill="rgb(238,53,50)" rx="2" ry="2" />
<text x="47.25" y="1727.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (14,197,649 samples, 0.02%)</title><rect x="541.5" y="1861" width="0.3" height="15.0" fill="rgb(247,132,7)" rx="2" ry="2" />
<text x="544.53" y="1871.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,021,441,992 samples, 1.47%)</title><rect x="741.2" y="2037" width="17.3" height="15.0" fill="rgb(208,116,41)" rx="2" ry="2" />
<text x="744.18" y="2047.5" ></text>
</g>
<g >
<title>find_busiest_group (150,493,886 samples, 0.22%)</title><rect x="130.4" y="1861" width="2.6" height="15.0" fill="rgb(207,20,40)" rx="2" ry="2" />
<text x="133.40" y="1871.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (13,998,930 samples, 0.02%)</title><rect x="74.9" y="1781" width="0.2" height="15.0" fill="rgb(213,122,22)" rx="2" ry="2" />
<text x="77.85" y="1791.5" ></text>
</g>
<g >
<title>v8::internal::Logger::ApiObjectAccess (17,218,832 samples, 0.02%)</title><rect x="47.8" y="1685" width="0.3" height="15.0" fill="rgb(226,166,54)" rx="2" ry="2" />
<text x="50.84" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="949" width="13.1" height="15.0" fill="rgb(242,37,0)" rx="2" ry="2" />
<text x="60.02" y="959.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="613" width="13.1" height="15.0" fill="rgb(229,9,19)" rx="2" ry="2" />
<text x="60.02" y="623.5" ></text>
</g>
<g >
<title>__account_cfs_rq_runtime (24,750,996 samples, 0.04%)</title><rect x="657.9" y="1893" width="0.5" height="15.0" fill="rgb(218,206,5)" rx="2" ry="2" />
<text x="660.94" y="1903.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1749" width="1.4" height="15.0" fill="rgb(227,114,49)" rx="2" ry="2" />
<text x="229.35" y="1759.5" ></text>
</g>
<g >
<title>run_rebalance_domains (10,420,630 samples, 0.02%)</title><rect x="1168.0" y="1797" width="0.2" height="15.0" fill="rgb(251,132,15)" rx="2" ry="2" />
<text x="1170.99" y="1807.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (32,377,126 samples, 0.05%)</title><rect x="155.3" y="1845" width="0.5" height="15.0" fill="rgb(230,31,29)" rx="2" ry="2" />
<text x="158.27" y="1855.5" ></text>
</g>
<g >
<title>update_load_avg (99,414,318 samples, 0.14%)</title><rect x="328.4" y="1877" width="1.6" height="15.0" fill="rgb(210,209,31)" rx="2" ry="2" />
<text x="331.35" y="1887.5" ></text>
</g>
<g >
<title>InterpretedFunction: :1 (85,183,090 samples, 0.12%)</title><rect x="21.6" y="1509" width="1.5" height="15.0" fill="rgb(239,90,6)" rx="2" ry="2" />
<text x="24.62" y="1519.5" ></text>
</g>
<g >
<title>dequeue_entity (102,122,507 samples, 0.15%)</title><rect x="481.3" y="1893" width="1.7" height="15.0" fill="rgb(227,8,6)" rx="2" ry="2" />
<text x="484.31" y="1903.5" ></text>
</g>
<g >
<title>node::Environment::GetNow (322,548,771 samples, 0.46%)</title><rect x="169.4" y="1589" width="5.4" height="15.0" fill="rgb(209,199,31)" rx="2" ry="2" />
<text x="172.35" y="1599.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1733" width="1.2" height="15.0" fill="rgb(233,86,27)" rx="2" ry="2" />
<text x="721.38" y="1743.5" ></text>
</g>
<g >
<title>dequeue_task_fair (217,627,044 samples, 0.31%)</title><rect x="786.4" y="1925" width="3.7" height="15.0" fill="rgb(226,122,48)" rx="2" ry="2" />
<text x="789.43" y="1935.5" ></text>
</g>
<g >
<title>__bitmap_and (30,590,991 samples, 0.04%)</title><rect x="295.6" y="1877" width="0.6" height="15.0" fill="rgb(252,158,8)" rx="2" ry="2" />
<text x="298.65" y="1887.5" ></text>
</g>
<g >
<title>rd_kafka_broker_bufq_timeout_scan (51,320,636 samples, 0.07%)</title><rect x="495.7" y="2053" width="0.9" height="15.0" fill="rgb(253,10,28)" rx="2" ry="2" />
<text x="498.70" y="2063.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (50,886,326 samples, 0.07%)</title><rect x="768.9" y="1845" width="0.8" height="15.0" fill="rgb(251,194,30)" rx="2" ry="2" />
<text x="771.87" y="1855.5" ></text>
</g>
<g >
<title>rd_kafka_broker_bufq_timeout_scan (10,470,060 samples, 0.02%)</title><rect x="382.6" y="2053" width="0.1" height="15.0" fill="rgb(206,166,3)" rx="2" ry="2" />
<text x="385.55" y="2063.5" ></text>
</g>
<g >
<title>rpfilter_mt (32,442,632 samples, 0.05%)</title><rect x="217.6" y="1653" width="0.5" height="15.0" fill="rgb(230,164,54)" rx="2" ry="2" />
<text x="220.59" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (580,638,643 samples, 0.84%)</title><rect x="57.0" y="117" width="9.9" height="15.0" fill="rgb(253,108,35)" rx="2" ry="2" />
<text x="60.02" y="127.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1,575,352,526 samples, 2.27%)</title><rect x="652.3" y="1973" width="26.7" height="15.0" fill="rgb(235,49,29)" rx="2" ry="2" />
<text x="655.25" y="1983.5" >s..</text>
</g>
<g >
<title>finish_task_switch (960,261,776 samples, 1.38%)</title><rect x="279.0" y="1925" width="16.3" height="15.0" fill="rgb(248,105,54)" rx="2" ry="2" />
<text x="282.02" y="1935.5" ></text>
</g>
<g >
<title>ctx_sched_in (238,960,313 samples, 0.34%)</title><rect x="467.5" y="1893" width="4.1" height="15.0" fill="rgb(243,1,37)" rx="2" ry="2" />
<text x="470.51" y="1903.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1669" width="0.2" height="15.0" fill="rgb(242,27,4)" rx="2" ry="2" />
<text x="90.79" y="1679.5" ></text>
</g>
<g >
<title>rd_kafka_q_serve.localalias.11 (267,145,743 samples, 0.38%)</title><rect x="1086.2" y="2037" width="4.5" height="15.0" fill="rgb(232,34,41)" rx="2" ry="2" />
<text x="1089.15" y="2047.5" ></text>
</g>
<g >
<title>__update_load_avg_se (30,241,782 samples, 0.04%)</title><rect x="278.5" y="1877" width="0.5" height="15.0" fill="rgb(227,113,6)" rx="2" ry="2" />
<text x="281.51" y="1887.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1781" width="1.2" height="15.0" fill="rgb(230,212,28)" rx="2" ry="2" />
<text x="721.38" y="1791.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_serve (14,582,417 samples, 0.02%)</title><rect x="521.3" y="2005" width="0.2" height="15.0" fill="rgb(223,74,22)" rx="2" ry="2" />
<text x="524.26" y="2015.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (27,607,799 samples, 0.04%)</title><rect x="482.0" y="1861" width="0.5" height="15.0" fill="rgb(252,170,41)" rx="2" ry="2" />
<text x="485.01" y="1871.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1877" width="0.2" height="15.0" fill="rgb(227,15,46)" rx="2" ry="2" />
<text x="90.79" y="1887.5" ></text>
</g>
<g >
<title>dequeue_task_fair (113,782,662 samples, 0.16%)</title><rect x="1121.5" y="1909" width="1.9" height="15.0" fill="rgb(240,96,34)" rx="2" ry="2" />
<text x="1124.47" y="1919.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (15,776,520 samples, 0.02%)</title><rect x="753.4" y="1845" width="0.3" height="15.0" fill="rgb(239,135,21)" rx="2" ry="2" />
<text x="756.38" y="1855.5" ></text>
</g>
<g >
<title>schedule (793,754,406 samples, 1.14%)</title><rect x="542.2" y="1957" width="13.5" height="15.0" fill="rgb(229,38,34)" rx="2" ry="2" />
<text x="545.19" y="1967.5" ></text>
</g>
<g >
<title>__x64_sys_futex (50,865,780 samples, 0.07%)</title><rect x="69.2" y="197" width="0.9" height="15.0" fill="rgb(228,170,16)" rx="2" ry="2" />
<text x="72.22" y="207.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (26,897,661 samples, 0.04%)</title><rect x="536.3" y="2037" width="0.4" height="15.0" fill="rgb(240,37,27)" rx="2" ry="2" />
<text x="539.26" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (950,334,989 samples, 1.37%)</title><rect x="209.6" y="2021" width="16.1" height="15.0" fill="rgb(234,26,42)" rx="2" ry="2" />
<text x="212.55" y="2031.5" ></text>
</g>
<g >
<title>rb_insert_color (32,594,953 samples, 0.05%)</title><rect x="463.3" y="1909" width="0.5" height="15.0" fill="rgb(241,40,17)" rx="2" ry="2" />
<text x="466.29" y="1919.5" ></text>
</g>
<g >
<title>rd_kafka_cgrp_join_state_serve (557,382,467 samples, 0.80%)</title><rect x="1177.4" y="2053" width="9.5" height="15.0" fill="rgb(222,163,0)" rx="2" ry="2" />
<text x="1180.38" y="2063.5" ></text>
</g>
<g >
<title>[libssl.so.1.1] (182,228,857 samples, 0.26%)</title><rect x="196.7" y="2037" width="3.1" height="15.0" fill="rgb(248,170,25)" rx="2" ry="2" />
<text x="199.72" y="2047.5" ></text>
</g>
<g >
<title>try_to_wake_up (26,246,579 samples, 0.04%)</title><rect x="1039.6" y="1925" width="0.5" height="15.0" fill="rgb(254,1,1)" rx="2" ry="2" />
<text x="1042.62" y="1935.5" ></text>
</g>
<g >
<title>sk_stream_alloc_skb (58,487,805 samples, 0.08%)</title><rect x="228.5" y="1877" width="1.0" height="15.0" fill="rgb(239,160,36)" rx="2" ry="2" />
<text x="231.52" y="1887.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (11,969,527 samples, 0.02%)</title><rect x="749.9" y="1893" width="0.2" height="15.0" fill="rgb(250,9,28)" rx="2" ry="2" />
<text x="752.93" y="1903.5" ></text>
</g>
<g >
<title>__clock_gettime (142,697,022 samples, 0.21%)</title><rect x="816.7" y="1973" width="2.4" height="15.0" fill="rgb(246,109,36)" rx="2" ry="2" />
<text x="819.65" y="1983.5" ></text>
</g>
<g >
<title>timespec_get (23,771,023 samples, 0.03%)</title><rect x="500.8" y="2053" width="0.4" height="15.0" fill="rgb(225,30,6)" rx="2" ry="2" />
<text x="503.80" y="2063.5" ></text>
</g>
<g >
<title>[[vdso]] (683,173,663 samples, 0.98%)</title><rect x="870.1" y="2005" width="11.6" height="15.0" fill="rgb(240,16,36)" rx="2" ry="2" />
<text x="873.14" y="2015.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (45,488,897 samples, 0.07%)</title><rect x="571.3" y="1861" width="0.8" height="15.0" fill="rgb(217,28,5)" rx="2" ry="2" />
<text x="574.28" y="1871.5" ></text>
</g>
<g >
<title>tcp_sendmsg (185,711,277 samples, 0.27%)</title><rect x="226.4" y="1909" width="3.1" height="15.0" fill="rgb(218,79,26)" rx="2" ry="2" />
<text x="229.35" y="1919.5" ></text>
</g>
<g >
<title>available_idle_cpu (6,503,102 samples, 0.01%)</title><rect x="805.4" y="1749" width="0.2" height="15.0" fill="rgb(230,204,32)" rx="2" ry="2" />
<text x="808.45" y="1759.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (14,167,337 samples, 0.02%)</title><rect x="471.7" y="1861" width="0.3" height="15.0" fill="rgb(228,31,27)" rx="2" ry="2" />
<text x="474.71" y="1871.5" ></text>
</g>
<g >
<title>load_balance (855,981,303 samples, 1.23%)</title><rect x="357.0" y="1877" width="14.5" height="15.0" fill="rgb(221,156,41)" rx="2" ry="2" />
<text x="360.00" y="1887.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1797" width="4.6" height="15.0" fill="rgb(233,36,0)" rx="2" ry="2" />
<text x="600.13" y="1807.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (42,759,718 samples, 0.06%)</title><rect x="739.5" y="2053" width="0.7" height="15.0" fill="rgb(213,189,22)" rx="2" ry="2" />
<text x="742.46" y="2063.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_serve (12,527,033 samples, 0.02%)</title><rect x="774.5" y="1957" width="0.2" height="15.0" fill="rgb(251,91,49)" rx="2" ry="2" />
<text x="777.52" y="1967.5" ></text>
</g>
<g >
<title>ksys_read (853,341,926 samples, 1.23%)</title><rect x="209.6" y="1989" width="14.5" height="15.0" fill="rgb(231,158,54)" rx="2" ry="2" />
<text x="212.55" y="1999.5" ></text>
</g>
<g >
<title>newidle_balance (321,657,970 samples, 0.46%)</title><rect x="805.6" y="1893" width="5.4" height="15.0" fill="rgb(207,218,41)" rx="2" ry="2" />
<text x="808.56" y="1903.5" ></text>
</g>
<g >
<title>__tls_get_addr (14,567,813 samples, 0.02%)</title><rect x="798.9" y="2053" width="0.2" height="15.0" fill="rgb(250,159,0)" rx="2" ry="2" />
<text x="801.85" y="2063.5" ></text>
</g>
<g >
<title>update_rq_clock (12,628,824 samples, 0.02%)</title><rect x="492.8" y="1861" width="0.2" height="15.0" fill="rgb(209,125,23)" rx="2" ry="2" />
<text x="495.83" y="1871.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (24,450,704 samples, 0.04%)</title><rect x="646.1" y="2005" width="0.4" height="15.0" fill="rgb(219,215,18)" rx="2" ry="2" />
<text x="649.12" y="2015.5" ></text>
</g>
<g >
<title>rd_kafka_recv (14,410,685 samples, 0.02%)</title><rect x="455.8" y="2037" width="0.2" height="15.0" fill="rgb(253,32,12)" rx="2" ry="2" />
<text x="458.77" y="2047.5" ></text>
</g>
<g >
<title>do_softirq (198,096,218 samples, 0.29%)</title><rect x="218.9" y="1829" width="3.4" height="15.0" fill="rgb(212,171,0)" rx="2" ry="2" />
<text x="221.90" y="1839.5" ></text>
</g>
<g >
<title>__schedule (1,304,156,260 samples, 1.88%)</title><rect x="656.9" y="1941" width="22.1" height="15.0" fill="rgb(214,205,53)" rx="2" ry="2" />
<text x="659.86" y="1951.5" >_..</text>
</g>
<g >
<title>tcp_rbtree_insert (103,868,374 samples, 0.15%)</title><rect x="616.9" y="1829" width="1.8" height="15.0" fill="rgb(253,182,8)" rx="2" ry="2" />
<text x="619.91" y="1839.5" ></text>
</g>
<g >
<title>enqueue_entity (31,259,811 samples, 0.05%)</title><rect x="44.2" y="1557" width="0.6" height="15.0" fill="rgb(209,121,9)" rx="2" ry="2" />
<text x="47.25" y="1567.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (165,220,082 samples, 0.24%)</title><rect x="83.3" y="2037" width="2.8" height="15.0" fill="rgb(219,71,38)" rx="2" ry="2" />
<text x="86.33" y="2047.5" ></text>
</g>
<g >
<title>v8::internal::compiler::EarlyOptimizationPhase::Run (136,394,792 samples, 0.20%)</title><rect x="161.3" y="1941" width="2.3" height="15.0" fill="rgb(207,109,23)" rx="2" ry="2" />
<text x="164.28" y="1951.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (295,242,594 samples, 0.43%)</title><rect x="146.6" y="1877" width="5.1" height="15.0" fill="rgb(220,223,25)" rx="2" ry="2" />
<text x="149.63" y="1887.5" ></text>
</g>
<g >
<title>timerqueue_add (40,506,454 samples, 0.06%)</title><rect x="326.1" y="1909" width="0.7" height="15.0" fill="rgb(215,188,24)" rx="2" ry="2" />
<text x="329.14" y="1919.5" ></text>
</g>
<g >
<title>sock_read_iter (150,339,559 samples, 0.22%)</title><rect x="717.3" y="1941" width="2.6" height="15.0" fill="rgb(229,93,11)" rx="2" ry="2" />
<text x="720.33" y="1951.5" ></text>
</g>
<g >
<title>perf_event_sched_in (26,766,636 samples, 0.04%)</title><rect x="550.1" y="1893" width="0.5" height="15.0" fill="rgb(210,136,51)" rx="2" ry="2" />
<text x="553.12" y="1903.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (98,734,585 samples, 0.14%)</title><rect x="355.3" y="1845" width="1.7" height="15.0" fill="rgb(249,72,1)" rx="2" ry="2" />
<text x="358.32" y="1855.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (194,964,866 samples, 0.28%)</title><rect x="681.7" y="2005" width="3.3" height="15.0" fill="rgb(233,75,54)" rx="2" ry="2" />
<text x="684.68" y="2015.5" ></text>
</g>
<g >
<title>enqueue_entity (39,389,132 samples, 0.06%)</title><rect x="68.5" y="53" width="0.7" height="15.0" fill="rgb(239,176,4)" rx="2" ry="2" />
<text x="71.55" y="63.5" ></text>
</g>
<g >
<title>__secure_computing (27,984,281 samples, 0.04%)</title><rect x="559.6" y="1989" width="0.5" height="15.0" fill="rgb(217,178,29)" rx="2" ry="2" />
<text x="562.60" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (190,527,951 samples, 0.27%)</title><rect x="1171.2" y="2021" width="3.2" height="15.0" fill="rgb(219,195,46)" rx="2" ry="2" />
<text x="1174.19" y="2031.5" ></text>
</g>
<g >
<title>tcp_recvmsg (138,502,950 samples, 0.20%)</title><rect x="446.4" y="1909" width="2.3" height="15.0" fill="rgb(211,131,5)" rx="2" ry="2" />
<text x="449.39" y="1919.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (24,054,056 samples, 0.03%)</title><rect x="612.9" y="1989" width="0.4" height="15.0" fill="rgb(219,81,14)" rx="2" ry="2" />
<text x="615.91" y="1999.5" ></text>
</g>
<g >
<title>validate_xmit_xfrm (82,594,864 samples, 0.12%)</title><rect x="447.3" y="1813" width="1.4" height="15.0" fill="rgb(245,12,8)" rx="2" ry="2" />
<text x="450.34" y="1823.5" ></text>
</g>
<g >
<title>inet_recvmsg (132,435,897 samples, 0.19%)</title><rect x="717.3" y="1925" width="2.3" height="15.0" fill="rgb(235,8,26)" rx="2" ry="2" />
<text x="720.33" y="1935.5" ></text>
</g>
<g >
<title>sock_poll (60,878,833 samples, 0.09%)</title><rect x="795.0" y="1973" width="1.1" height="15.0" fill="rgb(236,1,21)" rx="2" ry="2" />
<text x="798.03" y="1983.5" ></text>
</g>
<g >
<title>ip_rcv_finish (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1717" width="0.6" height="15.0" fill="rgb(227,107,33)" rx="2" ry="2" />
<text x="451.74" y="1727.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (76,632,896 samples, 0.11%)</title><rect x="751.5" y="1861" width="1.3" height="15.0" fill="rgb(226,40,47)" rx="2" ry="2" />
<text x="754.50" y="1871.5" ></text>
</g>
<g >
<title>ksys_read (150,339,559 samples, 0.22%)</title><rect x="717.3" y="1989" width="2.6" height="15.0" fill="rgb(237,145,27)" rx="2" ry="2" />
<text x="720.33" y="1999.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (87,866,121 samples, 0.13%)</title><rect x="705.7" y="1813" width="1.5" height="15.0" fill="rgb(223,16,29)" rx="2" ry="2" />
<text x="708.67" y="1823.5" ></text>
</g>
<g >
<title>timerqueue_add (147,634,338 samples, 0.21%)</title><rect x="1118.5" y="1909" width="2.5" height="15.0" fill="rgb(206,202,1)" rx="2" ry="2" />
<text x="1121.48" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="357" width="13.1" height="15.0" fill="rgb(224,151,12)" rx="2" ry="2" />
<text x="60.02" y="367.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1877" width="9.9" height="15.0" fill="rgb(251,75,7)" rx="2" ry="2" />
<text x="526.86" y="1887.5" ></text>
</g>
<g >
<title>ctx_sched_in (24,088,202 samples, 0.03%)</title><rect x="792.0" y="1877" width="0.4" height="15.0" fill="rgb(252,6,51)" rx="2" ry="2" />
<text x="794.98" y="1887.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (139,598,549 samples, 0.20%)</title><rect x="483.4" y="1845" width="2.3" height="15.0" fill="rgb(252,144,4)" rx="2" ry="2" />
<text x="486.38" y="1855.5" ></text>
</g>
<g >
<title>rd_kafka_timers_next (796,793,901 samples, 1.15%)</title><rect x="854.5" y="1989" width="13.5" height="15.0" fill="rgb(234,47,14)" rx="2" ry="2" />
<text x="857.47" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="581" width="13.1" height="15.0" fill="rgb(236,150,30)" rx="2" ry="2" />
<text x="60.02" y="591.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (14,197,649 samples, 0.02%)</title><rect x="541.5" y="1941" width="0.3" height="15.0" fill="rgb(210,217,28)" rx="2" ry="2" />
<text x="544.53" y="1951.5" ></text>
</g>
<g >
<title>ktime_add_safe (21,461,685 samples, 0.03%)</title><rect x="770.5" y="1957" width="0.3" height="15.0" fill="rgb(237,15,13)" rx="2" ry="2" />
<text x="773.46" y="1967.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (390,130,551 samples, 0.56%)</title><rect x="383.5" y="2053" width="6.6" height="15.0" fill="rgb(209,95,9)" rx="2" ry="2" />
<text x="386.51" y="2063.5" ></text>
</g>
<g >
<title>event_sched_in (22,778,383 samples, 0.03%)</title><rect x="1145.0" y="1829" width="0.4" height="15.0" fill="rgb(212,84,24)" rx="2" ry="2" />
<text x="1148.02" y="1839.5" ></text>
</g>
<g >
<title>update_blocked_averages (119,104,464 samples, 0.17%)</title><rect x="669.6" y="1845" width="2.1" height="15.0" fill="rgb(253,85,28)" rx="2" ry="2" />
<text x="672.63" y="1855.5" ></text>
</g>
<g >
<title>__clock_gettime (31,269,200 samples, 0.05%)</title><rect x="738.4" y="2053" width="0.5" height="15.0" fill="rgb(222,194,10)" rx="2" ry="2" />
<text x="741.37" y="2063.5" ></text>
</g>
<g >
<title>record_times (60,995,836 samples, 0.09%)</title><rect x="305.9" y="1893" width="1.0" height="15.0" fill="rgb(210,29,24)" rx="2" ry="2" />
<text x="308.90" y="1903.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1,056,188,305 samples, 1.52%)</title><rect x="821.4" y="1973" width="18.0" height="15.0" fill="rgb(218,197,20)" rx="2" ry="2" />
<text x="824.44" y="1983.5" ></text>
</g>
<g >
<title>nf_conntrack_tcp_packet (28,788,323 samples, 0.04%)</title><rect x="221.0" y="1669" width="0.5" height="15.0" fill="rgb(211,29,45)" rx="2" ry="2" />
<text x="224.01" y="1679.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (54,022,194 samples, 0.08%)</title><rect x="376.6" y="1861" width="0.9" height="15.0" fill="rgb(207,210,36)" rx="2" ry="2" />
<text x="379.56" y="1871.5" ></text>
</g>
<g >
<title>find_busiest_group (254,271,785 samples, 0.37%)</title><rect x="296.2" y="1877" width="4.3" height="15.0" fill="rgb(240,177,31)" rx="2" ry="2" />
<text x="299.17" y="1887.5" ></text>
</g>
<g >
<title>__clock_gettime (39,786,194 samples, 0.06%)</title><rect x="535.5" y="2053" width="0.7" height="15.0" fill="rgb(211,215,30)" rx="2" ry="2" />
<text x="538.55" y="2063.5" ></text>
</g>
<g >
<title>try_to_wake_up (50,111,297 samples, 0.07%)</title><rect x="67.4" y="37" width="0.8" height="15.0" fill="rgb(233,137,25)" rx="2" ry="2" />
<text x="70.36" y="47.5" ></text>
</g>
<g >
<title>mtx_lock (18,085,488 samples, 0.03%)</title><rect x="320.0" y="2053" width="0.3" height="15.0" fill="rgb(240,148,48)" rx="2" ry="2" />
<text x="322.97" y="2063.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (18,877,380 samples, 0.03%)</title><rect x="550.8" y="1877" width="0.4" height="15.0" fill="rgb(227,153,31)" rx="2" ry="2" />
<text x="553.84" y="1887.5" ></text>
</g>
<g >
<title>__schedule (631,235,686 samples, 0.91%)</title><rect x="800.3" y="1925" width="10.7" height="15.0" fill="rgb(245,52,5)" rx="2" ry="2" />
<text x="803.30" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (968,281,355 samples, 1.39%)</title><rect x="596.9" y="2021" width="16.4" height="15.0" fill="rgb(216,157,49)" rx="2" ry="2" />
<text x="599.88" y="2031.5" ></text>
</g>
<g >
<title>node::Environment::CheckImmediate (7,439,778 samples, 0.01%)</title><rect x="66.8" y="37" width="0.1" height="15.0" fill="rgb(234,226,13)" rx="2" ry="2" />
<text x="69.76" y="47.5" ></text>
</g>
<g >
<title>update_blocked_averages (90,651,969 samples, 0.13%)</title><rect x="577.0" y="1829" width="1.5" height="15.0" fill="rgb(245,173,42)" rx="2" ry="2" />
<text x="579.95" y="1839.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (363,133,318 samples, 0.52%)</title><rect x="365.4" y="1797" width="6.1" height="15.0" fill="rgb(243,199,4)" rx="2" ry="2" />
<text x="368.38" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (678,467,449 samples, 0.98%)</title><rect x="57.0" y="213" width="11.5" height="15.0" fill="rgb(242,65,18)" rx="2" ry="2" />
<text x="60.02" y="223.5" ></text>
</g>
<g >
<title>ip6_xmit (87,733,563 samples, 0.13%)</title><rect x="615.4" y="1813" width="1.5" height="15.0" fill="rgb(244,4,15)" rx="2" ry="2" />
<text x="618.42" y="1823.5" ></text>
</g>
<g >
<title>rdk:broker1002 (4,813,880,535 samples, 6.93%)</title><rect x="501.2" y="2069" width="81.8" height="15.0" fill="rgb(223,215,39)" rx="2" ry="2" />
<text x="504.20" y="2079.5" >rdk:broke..</text>
</g>
<g >
<title>update_load_avg (13,998,930 samples, 0.02%)</title><rect x="74.9" y="1797" width="0.2" height="15.0" fill="rgb(221,100,10)" rx="2" ry="2" />
<text x="77.85" y="1807.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (27,002,010 samples, 0.04%)</title><rect x="129.9" y="1829" width="0.5" height="15.0" fill="rgb(219,109,41)" rx="2" ry="2" />
<text x="132.94" y="1839.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (870,922,119 samples, 1.25%)</title><rect x="280.1" y="1909" width="14.8" height="15.0" fill="rgb(234,220,31)" rx="2" ry="2" />
<text x="283.08" y="1919.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,362,191,693 samples, 1.96%)</title><rect x="112.6" y="2005" width="23.2" height="15.0" fill="rgb(233,16,38)" rx="2" ry="2" />
<text x="115.61" y="2015.5" >_..</text>
</g>
<g >
<title>__netif_receive_skb_one_core (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1733" width="9.9" height="15.0" fill="rgb(206,68,52)" rx="2" ry="2" />
<text x="526.86" y="1743.5" ></text>
</g>
<g >
<title>find_busiest_group (114,142,480 samples, 0.16%)</title><rect x="488.7" y="1861" width="1.9" height="15.0" fill="rgb(205,152,40)" rx="2" ry="2" />
<text x="491.68" y="1871.5" ></text>
</g>
<g >
<title>reweight_entity (20,156,974 samples, 0.03%)</title><rect x="658.4" y="1893" width="0.3" height="15.0" fill="rgb(212,96,42)" rx="2" ry="2" />
<text x="661.36" y="1903.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,420,630 samples, 0.02%)</title><rect x="1168.0" y="1813" width="0.2" height="15.0" fill="rgb(248,99,26)" rx="2" ry="2" />
<text x="1170.99" y="1823.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (35,291,079 samples, 0.05%)</title><rect x="757.9" y="2005" width="0.6" height="15.0" fill="rgb(208,34,26)" rx="2" ry="2" />
<text x="760.94" y="2015.5" ></text>
</g>
<g >
<title>do_futex (653,655,689 samples, 0.94%)</title><rect x="759.7" y="1989" width="11.1" height="15.0" fill="rgb(252,139,18)" rx="2" ry="2" />
<text x="762.72" y="1999.5" ></text>
</g>
<g >
<title>CRYPTO_gcm128_encrypt (124,488,784 samples, 0.18%)</title><rect x="392.0" y="2053" width="2.1" height="15.0" fill="rgb(252,185,46)" rx="2" ry="2" />
<text x="395.03" y="2063.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (188,878,159 samples, 0.27%)</title><rect x="1171.2" y="2005" width="3.2" height="15.0" fill="rgb(217,3,7)" rx="2" ry="2" />
<text x="1174.21" y="2015.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (6,503,102 samples, 0.01%)</title><rect x="805.4" y="1829" width="0.2" height="15.0" fill="rgb(250,3,16)" rx="2" ry="2" />
<text x="808.45" y="1839.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (63,956,501 samples, 0.09%)</title><rect x="135.9" y="1973" width="1.1" height="15.0" fill="rgb(216,65,11)" rx="2" ry="2" />
<text x="138.86" y="1983.5" ></text>
</g>
<g >
<title>psi_task_change (41,199,852 samples, 0.06%)</title><rect x="769.7" y="1909" width="0.7" height="15.0" fill="rgb(222,125,17)" rx="2" ry="2" />
<text x="772.73" y="1919.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (31,259,811 samples, 0.05%)</title><rect x="44.2" y="1701" width="0.6" height="15.0" fill="rgb(237,23,34)" rx="2" ry="2" />
<text x="47.25" y="1711.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1733" width="1.4" height="15.0" fill="rgb(218,146,4)" rx="2" ry="2" />
<text x="229.35" y="1743.5" ></text>
</g>
<g >
<title>irq_exit_rcu (22,024,604 samples, 0.03%)</title><rect x="155.8" y="1861" width="0.4" height="15.0" fill="rgb(225,219,42)" rx="2" ry="2" />
<text x="158.83" y="1871.5" ></text>
</g>
<g >
<title>dequeue_task_fair (46,300,284 samples, 0.07%)</title><rect x="800.5" y="1909" width="0.8" height="15.0" fill="rgb(227,189,53)" rx="2" ry="2" />
<text x="803.54" y="1919.5" ></text>
</g>
<g >
<title>__update_load_avg_se (14,648,439 samples, 0.02%)</title><rect x="801.1" y="1861" width="0.2" height="15.0" fill="rgb(228,212,41)" rx="2" ry="2" />
<text x="804.08" y="1871.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (8,650,013 samples, 0.01%)</title><rect x="485.9" y="1861" width="0.1" height="15.0" fill="rgb(209,99,29)" rx="2" ry="2" />
<text x="488.88" y="1871.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (26,246,579 samples, 0.04%)</title><rect x="1039.6" y="1941" width="0.5" height="15.0" fill="rgb(235,52,40)" rx="2" ry="2" />
<text x="1042.62" y="1951.5" ></text>
</g>
<g >
<title>pick_next_task_fair (67,371,472 samples, 0.10%)</title><rect x="81.7" y="1909" width="1.2" height="15.0" fill="rgb(254,106,19)" rx="2" ry="2" />
<text x="84.74" y="1919.5" ></text>
</g>
<g >
<title>__tls_get_addr (12,583,065 samples, 0.02%)</title><rect x="1040.1" y="2037" width="0.2" height="15.0" fill="rgb(229,91,54)" rx="2" ry="2" />
<text x="1043.07" y="2047.5" ></text>
</g>
<g >
<title>ip6_rcv_core (44,444,988 samples, 0.06%)</title><rect x="227.8" y="1637" width="0.7" height="15.0" fill="rgb(238,224,10)" rx="2" ry="2" />
<text x="230.76" y="1647.5" ></text>
</g>
<g >
<title>update_load_avg (14,648,439 samples, 0.02%)</title><rect x="801.1" y="1877" width="0.2" height="15.0" fill="rgb(222,148,18)" rx="2" ry="2" />
<text x="804.08" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (41,480,711 samples, 0.06%)</title><rect x="774.5" y="2005" width="0.7" height="15.0" fill="rgb(239,209,45)" rx="2" ry="2" />
<text x="777.52" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="453" width="13.1" height="15.0" fill="rgb(225,117,41)" rx="2" ry="2" />
<text x="60.02" y="463.5" ></text>
</g>
<g >
<title>hrtimer_active (7,275,543 samples, 0.01%)</title><rect x="652.6" y="1957" width="0.1" height="15.0" fill="rgb(234,37,29)" rx="2" ry="2" />
<text x="655.61" y="1967.5" ></text>
</g>
<g >
<title>pick_next_task_fair (110,831,610 samples, 0.16%)</title><rect x="156.2" y="1909" width="1.9" height="15.0" fill="rgb(211,83,25)" rx="2" ry="2" />
<text x="159.23" y="1919.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (117,511,339 samples, 0.17%)</title><rect x="576.5" y="1845" width="2.0" height="15.0" fill="rgb(212,17,0)" rx="2" ry="2" />
<text x="579.50" y="1855.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,498,616,586 samples, 5.04%)</title><rect x="253.0" y="2021" width="59.4" height="15.0" fill="rgb(220,163,35)" rx="2" ry="2" />
<text x="255.97" y="2031.5" >do_sys..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (23,771,023 samples, 0.03%)</title><rect x="500.8" y="2021" width="0.4" height="15.0" fill="rgb(235,86,41)" rx="2" ry="2" />
<text x="503.80" y="2031.5" ></text>
</g>
<g >
<title>do_epoll_wait (195,538,411 samples, 0.28%)</title><rect x="87.8" y="1989" width="3.3" height="15.0" fill="rgb(239,171,15)" rx="2" ry="2" />
<text x="90.79" y="1999.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (82,594,864 samples, 0.12%)</title><rect x="447.3" y="1845" width="1.4" height="15.0" fill="rgb(214,164,9)" rx="2" ry="2" />
<text x="450.34" y="1855.5" ></text>
</g>
<g >
<title>schedule (2,898,616,540 samples, 4.18%)</title><rect x="1121.0" y="1941" width="49.3" height="15.0" fill="rgb(230,165,7)" rx="2" ry="2" />
<text x="1123.99" y="1951.5" >sche..</text>
</g>
<g >
<title>schedule (499,464,829 samples, 0.72%)</title><rect x="748.1" y="1957" width="8.5" height="15.0" fill="rgb(224,115,54)" rx="2" ry="2" />
<text x="751.08" y="1967.5" ></text>
</g>
<g >
<title>ktime_get_coarse_real_ts64 (19,740,280 samples, 0.03%)</title><rect x="214.3" y="1877" width="0.4" height="15.0" fill="rgb(226,170,47)" rx="2" ry="2" />
<text x="217.34" y="1887.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (25,875,044 samples, 0.04%)</title><rect x="792.5" y="1861" width="0.4" height="15.0" fill="rgb(211,211,19)" rx="2" ry="2" />
<text x="795.47" y="1871.5" ></text>
</g>
<g >
<title>ip_finish_output2 (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1717" width="9.9" height="15.0" fill="rgb(205,2,35)" rx="2" ry="2" />
<text x="526.86" y="1727.5" ></text>
</g>
<g >
<title>[libnode.so.64] (471,602,466 samples, 0.68%)</title><rect x="166.8" y="1941" width="8.0" height="15.0" fill="rgb(209,23,18)" rx="2" ry="2" />
<text x="169.82" y="1951.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1813" width="0.6" height="15.0" fill="rgb(245,151,19)" rx="2" ry="2" />
<text x="451.74" y="1823.5" ></text>
</g>
<g >
<title>newidle_balance (50,886,326 samples, 0.07%)</title><rect x="768.9" y="1893" width="0.8" height="15.0" fill="rgb(249,212,23)" rx="2" ry="2" />
<text x="771.87" y="1903.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (50,865,780 samples, 0.07%)</title><rect x="69.2" y="229" width="0.9" height="15.0" fill="rgb(235,172,9)" rx="2" ry="2" />
<text x="72.22" y="239.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (26,944,498 samples, 0.04%)</title><rect x="284.4" y="1893" width="0.5" height="15.0" fill="rgb(228,162,11)" rx="2" ry="2" />
<text x="287.41" y="1903.5" ></text>
</g>
<g >
<title>check_preempt_curr (26,419,604 samples, 0.04%)</title><rect x="777.0" y="1893" width="0.5" height="15.0" fill="rgb(243,29,14)" rx="2" ry="2" />
<text x="780.03" y="1903.5" ></text>
</g>
<g >
<title>futex_wake (50,111,297 samples, 0.07%)</title><rect x="67.4" y="69" width="0.8" height="15.0" fill="rgb(246,86,49)" rx="2" ry="2" />
<text x="70.36" y="79.5" ></text>
</g>
<g >
<title>update_blocked_averages (10,420,630 samples, 0.02%)</title><rect x="1168.0" y="1781" width="0.2" height="15.0" fill="rgb(246,85,20)" rx="2" ry="2" />
<text x="1170.99" y="1791.5" ></text>
</g>
<g >
<title>__seccomp_filter (24,450,704 samples, 0.04%)</title><rect x="646.1" y="1989" width="0.4" height="15.0" fill="rgb(215,191,35)" rx="2" ry="2" />
<text x="649.12" y="1999.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,780,726 samples, 0.02%)</title><rect x="992.4" y="1957" width="0.2" height="15.0" fill="rgb(212,96,6)" rx="2" ry="2" />
<text x="995.38" y="1967.5" ></text>
</g>
<g >
<title>tcp_mstamp_refresh (63,049,883 samples, 0.09%)</title><rect x="610.1" y="1877" width="1.1" height="15.0" fill="rgb(209,6,10)" rx="2" ry="2" />
<text x="613.15" y="1887.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (20,123,019 samples, 0.03%)</title><rect x="295.0" y="1893" width="0.3" height="15.0" fill="rgb(226,168,17)" rx="2" ry="2" />
<text x="298.00" y="1903.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (441,631,362 samples, 0.64%)</title><rect x="167.3" y="1829" width="7.5" height="15.0" fill="rgb(250,154,36)" rx="2" ry="2" />
<text x="170.33" y="1839.5" ></text>
</g>
<g >
<title>__x64_sys_futex (869,128,056 samples, 1.25%)</title><rect x="479.1" y="2005" width="14.8" height="15.0" fill="rgb(241,75,29)" rx="2" ry="2" />
<text x="482.08" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (26,113,955 samples, 0.04%)</title><rect x="66.9" y="101" width="0.5" height="15.0" fill="rgb(246,20,24)" rx="2" ry="2" />
<text x="69.91" y="111.5" ></text>
</g>
<g >
<title>tcp_recvmsg (218,547,148 samples, 0.31%)</title><rect x="214.7" y="1909" width="3.7" height="15.0" fill="rgb(216,18,12)" rx="2" ry="2" />
<text x="217.67" y="1919.5" ></text>
</g>
<g >
<title>set_task_cpu (15,776,520 samples, 0.02%)</title><rect x="753.4" y="1781" width="0.3" height="15.0" fill="rgb(236,103,27)" rx="2" ry="2" />
<text x="756.38" y="1791.5" ></text>
</g>
<g >
<title>__libc_write (436,220,660 samples, 0.63%)</title><rect x="71.0" y="2037" width="7.4" height="15.0" fill="rgb(220,226,12)" rx="2" ry="2" />
<text x="73.97" y="2047.5" ></text>
</g>
<g >
<title>psi_task_change (21,572,919 samples, 0.03%)</title><rect x="158.1" y="1909" width="0.4" height="15.0" fill="rgb(219,71,46)" rx="2" ry="2" />
<text x="161.11" y="1919.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (14,248,885 samples, 0.02%)</title><rect x="704.0" y="1797" width="0.3" height="15.0" fill="rgb(214,212,49)" rx="2" ry="2" />
<text x="707.04" y="1807.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (11,735,897 samples, 0.02%)</title><rect x="1145.2" y="1797" width="0.2" height="15.0" fill="rgb(218,41,45)" rx="2" ry="2" />
<text x="1148.21" y="1807.5" ></text>
</g>
<g >
<title>ctx_sched_in (366,169,011 samples, 0.53%)</title><rect x="348.7" y="1877" width="6.2" height="15.0" fill="rgb(219,125,21)" rx="2" ry="2" />
<text x="351.68" y="1887.5" ></text>
</g>
<g >
<title>tg3_poll_msix (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1813" width="0.2" height="15.0" fill="rgb(210,29,35)" rx="2" ry="2" />
<text x="90.79" y="1823.5" ></text>
</g>
<g >
<title>do_softirq (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1813" width="4.6" height="15.0" fill="rgb(236,11,29)" rx="2" ry="2" />
<text x="600.13" y="1823.5" ></text>
</g>
<g >
<title>v8::internal::compiler::LoopFinder::BuildLoopTree (26,199,950 samples, 0.04%)</title><rect x="164.8" y="1941" width="0.4" height="15.0" fill="rgb(239,187,42)" rx="2" ry="2" />
<text x="167.77" y="1951.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (191,369,257 samples, 0.28%)</title><rect x="20.3" y="1637" width="3.2" height="15.0" fill="rgb(238,67,27)" rx="2" ry="2" />
<text x="23.29" y="1647.5" ></text>
</g>
<g >
<title>tcp_rcv_space_adjust (63,049,883 samples, 0.09%)</title><rect x="610.1" y="1893" width="1.1" height="15.0" fill="rgb(209,76,45)" rx="2" ry="2" />
<text x="613.15" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1221" width="13.1" height="15.0" fill="rgb(211,126,22)" rx="2" ry="2" />
<text x="60.02" y="1231.5" ></text>
</g>
<g >
<title>do_sys_poll (834,262,217 samples, 1.20%)</title><rect x="781.9" y="1989" width="14.2" height="15.0" fill="rgb(218,201,17)" rx="2" ry="2" />
<text x="784.88" y="1999.5" ></text>
</g>
<g >
<title>inet6_csk_xmit (44,444,988 samples, 0.06%)</title><rect x="227.8" y="1829" width="0.7" height="15.0" fill="rgb(231,203,50)" rx="2" ry="2" />
<text x="230.76" y="1839.5" ></text>
</g>
<g >
<title>sock_poll (206,864,059 samples, 0.30%)</title><rect x="307.4" y="1973" width="3.5" height="15.0" fill="rgb(216,194,54)" rx="2" ry="2" />
<text x="310.38" y="1983.5" ></text>
</g>
<g >
<title>psi_group_change (31,659,661 samples, 0.05%)</title><rect x="493.1" y="1893" width="0.5" height="15.0" fill="rgb(224,222,43)" rx="2" ry="2" />
<text x="496.08" y="1903.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (244,883,392 samples, 0.35%)</title><rect x="764.4" y="1893" width="4.2" height="15.0" fill="rgb(233,95,7)" rx="2" ry="2" />
<text x="767.42" y="1903.5" ></text>
</g>
<g >
<title>sock_sendmsg (185,711,277 samples, 0.27%)</title><rect x="226.4" y="1925" width="3.1" height="15.0" fill="rgb(216,184,15)" rx="2" ry="2" />
<text x="229.35" y="1935.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (14,248,885 samples, 0.02%)</title><rect x="704.0" y="1765" width="0.3" height="15.0" fill="rgb(228,114,54)" rx="2" ry="2" />
<text x="707.04" y="1775.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (37,797,925 samples, 0.05%)</title><rect x="122.9" y="1797" width="0.6" height="15.0" fill="rgb(251,66,21)" rx="2" ry="2" />
<text x="125.90" y="1807.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1845" width="0.2" height="15.0" fill="rgb(247,208,15)" rx="2" ry="2" />
<text x="90.79" y="1855.5" ></text>
</g>
<g >
<title>select_task_rq_fair (6,503,102 samples, 0.01%)</title><rect x="805.4" y="1765" width="0.2" height="15.0" fill="rgb(213,124,50)" rx="2" ry="2" />
<text x="808.45" y="1775.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (58,766,120 samples, 0.08%)</title><rect x="480.3" y="1925" width="1.0" height="15.0" fill="rgb(217,188,18)" rx="2" ry="2" />
<text x="483.31" y="1935.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (77,284,624 samples, 0.11%)</title><rect x="604.1" y="1845" width="1.3" height="15.0" fill="rgb(227,222,12)" rx="2" ry="2" />
<text x="607.12" y="1855.5" ></text>
</g>
<g >
<title>Builtin:ArgumentsAdaptorTrampoline (43,154,715 samples, 0.06%)</title><rect x="20.9" y="1493" width="0.7" height="15.0" fill="rgb(215,115,54)" rx="2" ry="2" />
<text x="23.89" y="1503.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (246,631,530 samples, 0.36%)</title><rect x="605.4" y="1813" width="4.2" height="15.0" fill="rgb(205,178,52)" rx="2" ry="2" />
<text x="608.43" y="1823.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (155,078,143 samples, 0.22%)</title><rect x="264.2" y="1957" width="2.6" height="15.0" fill="rgb(231,88,44)" rx="2" ry="2" />
<text x="267.17" y="1967.5" ></text>
</g>
<g >
<title>Builtin:JSEntryTrampoline (471,602,466 samples, 0.68%)</title><rect x="166.8" y="1893" width="8.0" height="15.0" fill="rgb(210,5,8)" rx="2" ry="2" />
<text x="169.82" y="1903.5" ></text>
</g>
<g >
<title>do_futex (839,292,990 samples, 1.21%)</title><rect x="566.4" y="1989" width="14.3" height="15.0" fill="rgb(209,60,35)" rx="2" ry="2" />
<text x="569.41" y="1999.5" ></text>
</g>
<g >
<title>tcp_recvmsg (293,857,869 samples, 0.42%)</title><rect x="597.1" y="1909" width="5.0" height="15.0" fill="rgb(250,195,48)" rx="2" ry="2" />
<text x="600.13" y="1919.5" ></text>
</g>
<g >
<title>perf_swevent_add (77,811,124 samples, 0.11%)</title><rect x="122.2" y="1813" width="1.3" height="15.0" fill="rgb(230,76,4)" rx="2" ry="2" />
<text x="125.22" y="1823.5" ></text>
</g>
<g >
<title>try_to_wake_up (14,770,942 samples, 0.02%)</title><rect x="668.9" y="1797" width="0.3" height="15.0" fill="rgb(220,168,10)" rx="2" ry="2" />
<text x="671.91" y="1807.5" ></text>
</g>
<g >
<title>check_preempt_curr (14,248,885 samples, 0.02%)</title><rect x="704.0" y="1749" width="0.3" height="15.0" fill="rgb(250,200,37)" rx="2" ry="2" />
<text x="707.04" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1397" width="13.1" height="15.0" fill="rgb(242,93,4)" rx="2" ry="2" />
<text x="60.02" y="1407.5" ></text>
</g>
<g >
<title>__account_cfs_rq_runtime (29,549,730 samples, 0.04%)</title><rect x="271.6" y="1893" width="0.5" height="15.0" fill="rgb(241,120,22)" rx="2" ry="2" />
<text x="274.58" y="1903.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (17,327,757 samples, 0.02%)</title><rect x="753.4" y="1909" width="0.3" height="15.0" fill="rgb(230,211,17)" rx="2" ry="2" />
<text x="756.36" y="1919.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (30,857,894 samples, 0.04%)</title><rect x="609.6" y="1845" width="0.5" height="15.0" fill="rgb(205,215,24)" rx="2" ry="2" />
<text x="612.63" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (284,573,856 samples, 0.41%)</title><rect x="61.9" y="53" width="4.9" height="15.0" fill="rgb(227,9,16)" rx="2" ry="2" />
<text x="64.92" y="63.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (26,550,919 samples, 0.04%)</title><rect x="542.6" y="1909" width="0.4" height="15.0" fill="rgb(250,19,6)" rx="2" ry="2" />
<text x="545.56" y="1919.5" ></text>
</g>
<g >
<title>__clock_gettime (106,290,920 samples, 0.15%)</title><rect x="775.2" y="2037" width="1.8" height="15.0" fill="rgb(206,185,27)" rx="2" ry="2" />
<text x="778.22" y="2047.5" ></text>
</g>
<g >
<title>fput_many (48,841,477 samples, 0.07%)</title><rect x="458.9" y="1973" width="0.8" height="15.0" fill="rgb(242,94,44)" rx="2" ry="2" />
<text x="461.92" y="1983.5" ></text>
</g>
<g >
<title>rb_erase (61,337,323 samples, 0.09%)</title><rect x="266.8" y="1909" width="1.1" height="15.0" fill="rgb(240,110,28)" rx="2" ry="2" />
<text x="269.81" y="1919.5" ></text>
</g>
<g >
<title>v8::internal::Factory::NewJSArray (510,649,185 samples, 0.74%)</title><rect x="175.1" y="1973" width="8.7" height="15.0" fill="rgb(251,38,46)" rx="2" ry="2" />
<text x="178.15" y="1983.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (8,650,013 samples, 0.01%)</title><rect x="485.9" y="1845" width="0.1" height="15.0" fill="rgb(236,179,47)" rx="2" ry="2" />
<text x="488.88" y="1855.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (322,548,771 samples, 0.46%)</title><rect x="169.4" y="1445" width="5.4" height="15.0" fill="rgb(217,35,13)" rx="2" ry="2" />
<text x="172.35" y="1455.5" ></text>
</g>
<g >
<title>ip_rcv (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1717" width="1.2" height="15.0" fill="rgb(220,206,7)" rx="2" ry="2" />
<text x="721.38" y="1727.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (56,731,836 samples, 0.08%)</title><rect x="750.5" y="1813" width="1.0" height="15.0" fill="rgb(235,93,27)" rx="2" ry="2" />
<text x="753.51" y="1823.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (1,549,003,407 samples, 2.23%)</title><rect x="17.9" y="1701" width="26.3" height="15.0" fill="rgb(240,73,21)" rx="2" ry="2" />
<text x="20.92" y="1711.5" >I..</text>
</g>
<g >
<title>futex_wait (837,757,326 samples, 1.21%)</title><rect x="566.4" y="1973" width="14.3" height="15.0" fill="rgb(225,31,39)" rx="2" ry="2" />
<text x="569.44" y="1983.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1893" width="1.2" height="15.0" fill="rgb(215,212,54)" rx="2" ry="2" />
<text x="721.38" y="1903.5" ></text>
</g>
<g >
<title>update_load_avg (24,607,576 samples, 0.04%)</title><rect x="989.8" y="1813" width="0.4" height="15.0" fill="rgb(207,56,44)" rx="2" ry="2" />
<text x="992.77" y="1823.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1845" width="0.2" height="15.0" fill="rgb(212,143,13)" rx="2" ry="2" />
<text x="553.58" y="1855.5" ></text>
</g>
<g >
<title>rb_insert_color (16,874,002 samples, 0.02%)</title><rect x="266.5" y="1909" width="0.3" height="15.0" fill="rgb(224,76,50)" rx="2" ry="2" />
<text x="269.52" y="1919.5" ></text>
</g>
<g >
<title>uv_timer_stop (13,174,036 samples, 0.02%)</title><rect x="56.8" y="1989" width="0.2" height="15.0" fill="rgb(211,35,32)" rx="2" ry="2" />
<text x="59.79" y="1999.5" ></text>
</g>
<g >
<title>newidle_balance (56,318,957 samples, 0.08%)</title><rect x="1168.2" y="1893" width="0.9" height="15.0" fill="rgb(248,61,11)" rx="2" ry="2" />
<text x="1171.16" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (41,480,711 samples, 0.06%)</title><rect x="774.5" y="1989" width="0.7" height="15.0" fill="rgb(212,195,36)" rx="2" ry="2" />
<text x="777.52" y="1999.5" ></text>
</g>
<g >
<title>rb_insert_color (61,764,774 samples, 0.09%)</title><rect x="747.0" y="1909" width="1.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="750.03" y="1919.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (5,937,899 samples, 0.01%)</title><rect x="802.9" y="1877" width="0.1" height="15.0" fill="rgb(245,49,17)" rx="2" ry="2" />
<text x="805.94" y="1887.5" ></text>
</g>
<g >
<title>new_sync_write (81,057,429 samples, 0.12%)</title><rect x="452.4" y="1957" width="1.4" height="15.0" fill="rgb(233,36,16)" rx="2" ry="2" />
<text x="455.40" y="1967.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (321,079,832 samples, 0.46%)</title><rect x="985.3" y="2021" width="5.5" height="15.0" fill="rgb(232,174,32)" rx="2" ry="2" />
<text x="988.32" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (70,181,889 samples, 0.10%)</title><rect x="135.8" y="2021" width="1.2" height="15.0" fill="rgb(249,164,27)" rx="2" ry="2" />
<text x="138.76" y="2031.5" ></text>
</g>
<g >
<title>pick_next_task_fair (87,404,619 samples, 0.13%)</title><rect x="753.7" y="1925" width="1.4" height="15.0" fill="rgb(232,205,7)" rx="2" ry="2" />
<text x="756.65" y="1935.5" ></text>
</g>
<g >
<title>select_estimate_accuracy (14,234,369 samples, 0.02%)</title><rect x="679.0" y="1973" width="0.3" height="15.0" fill="rgb(225,168,24)" rx="2" ry="2" />
<text x="682.03" y="1983.5" ></text>
</g>
<g >
<title>reweight_entity (110,819,025 samples, 0.16%)</title><rect x="272.1" y="1893" width="1.9" height="15.0" fill="rgb(237,186,7)" rx="2" ry="2" />
<text x="275.08" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (41,480,711 samples, 0.06%)</title><rect x="774.5" y="2037" width="0.7" height="15.0" fill="rgb(212,51,47)" rx="2" ry="2" />
<text x="777.52" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (717,856,581 samples, 1.03%)</title><rect x="57.0" y="229" width="12.2" height="15.0" fill="rgb(238,40,41)" rx="2" ry="2" />
<text x="60.02" y="239.5" ></text>
</g>
<g >
<title>do_softirq (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1829" width="9.9" height="15.0" fill="rgb(241,134,13)" rx="2" ry="2" />
<text x="526.86" y="1839.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,452,014,816 samples, 2.09%)</title><rect x="112.3" y="2037" width="24.7" height="15.0" fill="rgb(210,223,21)" rx="2" ry="2" />
<text x="115.27" y="2047.5" >e..</text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (43,154,715 samples, 0.06%)</title><rect x="20.9" y="1509" width="0.7" height="15.0" fill="rgb(239,24,41)" rx="2" ry="2" />
<text x="23.89" y="1519.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (695,356,567 samples, 1.00%)</title><rect x="759.6" y="2053" width="11.8" height="15.0" fill="rgb(248,129,51)" rx="2" ry="2" />
<text x="762.59" y="2063.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (19,826,033 samples, 0.03%)</title><rect x="544.5" y="1861" width="0.3" height="15.0" fill="rgb(254,11,46)" rx="2" ry="2" />
<text x="547.48" y="1871.5" ></text>
</g>
<g >
<title>[libc-2.28.so] (86,432,469 samples, 0.12%)</title><rect x="189.4" y="2053" width="1.5" height="15.0" fill="rgb(243,177,53)" rx="2" ry="2" />
<text x="192.41" y="2063.5" ></text>
</g>
<g >
<title>v8::HandleScope::Initialize@plt (43,158,622 samples, 0.06%)</title><rect x="187.9" y="2037" width="0.7" height="15.0" fill="rgb(224,61,11)" rx="2" ry="2" />
<text x="190.89" y="2047.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (1,481,793,922 samples, 2.13%)</title><rect x="330.0" y="1893" width="25.2" height="15.0" fill="rgb(224,49,9)" rx="2" ry="2" />
<text x="333.04" y="1903.5" >_..</text>
</g>
<g >
<title>hrtimer_start_range_ns (49,401,779 samples, 0.07%)</title><rect x="463.0" y="1957" width="0.8" height="15.0" fill="rgb(208,98,17)" rx="2" ry="2" />
<text x="466.01" y="1967.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (72,891,442 samples, 0.10%)</title><rect x="701.9" y="1845" width="1.3" height="15.0" fill="rgb(254,73,9)" rx="2" ry="2" />
<text x="704.94" y="1855.5" ></text>
</g>
<g >
<title>merge_sched_in (19,459,578 samples, 0.03%)</title><rect x="790.6" y="1861" width="0.4" height="15.0" fill="rgb(246,183,1)" rx="2" ry="2" />
<text x="793.63" y="1871.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (989,515,542 samples, 1.43%)</title><rect x="478.4" y="2037" width="16.8" height="15.0" fill="rgb(244,183,3)" rx="2" ry="2" />
<text x="481.39" y="2047.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1877" width="0.6" height="15.0" fill="rgb(246,140,52)" rx="2" ry="2" />
<text x="451.74" y="1887.5" ></text>
</g>
<g >
<title>schedule (1,304,156,260 samples, 1.88%)</title><rect x="656.9" y="1957" width="22.1" height="15.0" fill="rgb(254,68,25)" rx="2" ry="2" />
<text x="659.86" y="1967.5" >s..</text>
</g>
<g >
<title>apparmor_file_permission (39,979,681 samples, 0.06%)</title><rect x="77.7" y="1941" width="0.7" height="15.0" fill="rgb(214,170,5)" rx="2" ry="2" />
<text x="80.70" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1061" width="13.1" height="15.0" fill="rgb(251,149,9)" rx="2" ry="2" />
<text x="60.02" y="1071.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (30,857,894 samples, 0.04%)</title><rect x="609.6" y="1877" width="0.5" height="15.0" fill="rgb(223,89,4)" rx="2" ry="2" />
<text x="612.63" y="1887.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1717" width="0.2" height="15.0" fill="rgb(251,162,13)" rx="2" ry="2" />
<text x="553.58" y="1727.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (23,771,023 samples, 0.03%)</title><rect x="500.8" y="2005" width="0.4" height="15.0" fill="rgb(238,75,25)" rx="2" ry="2" />
<text x="503.80" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,286,510,745 samples, 1.85%)</title><rect x="137.1" y="2021" width="21.8" height="15.0" fill="rgb(239,92,13)" rx="2" ry="2" />
<text x="140.05" y="2031.5" >d..</text>
</g>
<g >
<title>_raw_spin_lock (17,190,181 samples, 0.02%)</title><rect x="786.1" y="1925" width="0.3" height="15.0" fill="rgb(233,113,37)" rx="2" ry="2" />
<text x="789.13" y="1935.5" ></text>
</g>
<g >
<title>update_load_avg (88,500,464 samples, 0.13%)</title><rect x="144.2" y="1877" width="1.5" height="15.0" fill="rgb(231,51,30)" rx="2" ry="2" />
<text x="147.15" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="341" width="13.1" height="15.0" fill="rgb(238,193,49)" rx="2" ry="2" />
<text x="60.02" y="351.5" ></text>
</g>
<g >
<title>rb_next (23,644,967 samples, 0.03%)</title><rect x="1043.0" y="1925" width="0.4" height="15.0" fill="rgb(225,32,48)" rx="2" ry="2" />
<text x="1046.03" y="1935.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (32,206,640 samples, 0.05%)</title><rect x="302.9" y="1861" width="0.6" height="15.0" fill="rgb(228,55,16)" rx="2" ry="2" />
<text x="305.95" y="1871.5" ></text>
</g>
<g >
<title>try_to_wake_up (61,730,172 samples, 0.09%)</title><rect x="355.4" y="1781" width="1.0" height="15.0" fill="rgb(225,187,15)" rx="2" ry="2" />
<text x="358.35" y="1791.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (1,777,885,656 samples, 2.56%)</title><rect x="17.9" y="1749" width="30.2" height="15.0" fill="rgb(237,123,19)" rx="2" ry="2" />
<text x="20.92" y="1759.5" >In..</text>
</g>
<g >
<title>__pthread_mutex_lock (32,826,857 samples, 0.05%)</title><rect x="474.7" y="2053" width="0.6" height="15.0" fill="rgb(225,91,1)" rx="2" ry="2" />
<text x="477.70" y="2063.5" ></text>
</g>
<g >
<title>psi_group_change (140,454,423 samples, 0.20%)</title><rect x="304.5" y="1909" width="2.4" height="15.0" fill="rgb(215,173,43)" rx="2" ry="2" />
<text x="307.55" y="1919.5" ></text>
</g>
<g >
<title>reweight_entity (14,706,930 samples, 0.02%)</title><rect x="481.3" y="1877" width="0.3" height="15.0" fill="rgb(211,0,28)" rx="2" ry="2" />
<text x="484.31" y="1887.5" ></text>
</g>
<g >
<title>__schedule (177,498,261 samples, 0.26%)</title><rect x="88.1" y="1941" width="3.0" height="15.0" fill="rgb(248,70,54)" rx="2" ry="2" />
<text x="91.09" y="1951.5" ></text>
</g>
<g >
<title>Builtin:ArgumentsAdaptorTrampoline (163,506,394 samples, 0.24%)</title><rect x="20.3" y="1573" width="2.8" height="15.0" fill="rgb(243,179,16)" rx="2" ry="2" />
<text x="23.29" y="1583.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (173,635,321 samples, 0.25%)</title><rect x="215.2" y="1845" width="2.9" height="15.0" fill="rgb(241,189,42)" rx="2" ry="2" />
<text x="218.19" y="1855.5" ></text>
</g>
<g >
<title>do_syscall_64 (50,111,297 samples, 0.07%)</title><rect x="67.4" y="117" width="0.8" height="15.0" fill="rgb(225,5,15)" rx="2" ry="2" />
<text x="70.36" y="127.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,286,510,745 samples, 1.85%)</title><rect x="137.1" y="2005" width="21.8" height="15.0" fill="rgb(234,51,34)" rx="2" ry="2" />
<text x="140.05" y="2015.5" >_..</text>
</g>
<g >
<title>update_load_avg (24,329,495 samples, 0.04%)</title><rect x="560.1" y="1813" width="0.4" height="15.0" fill="rgb(236,34,53)" rx="2" ry="2" />
<text x="563.08" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1541" width="13.1" height="15.0" fill="rgb(215,188,52)" rx="2" ry="2" />
<text x="60.02" y="1551.5" ></text>
</g>
<g >
<title>v8::internal::OptimizingCompileDispatcher::CompileNext (231,690,612 samples, 0.33%)</title><rect x="161.3" y="2005" width="3.9" height="15.0" fill="rgb(245,108,46)" rx="2" ry="2" />
<text x="164.28" y="2015.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (70,800,635 samples, 0.10%)</title><rect x="131.7" y="1797" width="1.3" height="15.0" fill="rgb(253,147,47)" rx="2" ry="2" />
<text x="134.75" y="1807.5" ></text>
</g>
<g >
<title>get_timespec64 (16,798,033 samples, 0.02%)</title><rect x="378.9" y="1989" width="0.3" height="15.0" fill="rgb(250,176,30)" rx="2" ry="2" />
<text x="381.92" y="1999.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (15,746,498 samples, 0.02%)</title><rect x="310.6" y="1925" width="0.2" height="15.0" fill="rgb(242,60,1)" rx="2" ry="2" />
<text x="313.57" y="1935.5" ></text>
</g>
<g >
<title>inet6_csk_xmit (87,733,563 samples, 0.13%)</title><rect x="615.4" y="1829" width="1.5" height="15.0" fill="rgb(232,181,24)" rx="2" ry="2" />
<text x="618.42" y="1839.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_serve (29,607,892 samples, 0.04%)</title><rect x="714.5" y="1973" width="0.5" height="15.0" fill="rgb(247,154,48)" rx="2" ry="2" />
<text x="717.54" y="1983.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (26,419,604 samples, 0.04%)</title><rect x="777.0" y="2005" width="0.5" height="15.0" fill="rgb(229,10,14)" rx="2" ry="2" />
<text x="780.03" y="2015.5" ></text>
</g>
<g >
<title>Builtin:ArgumentsAdaptorTrampoline (43,154,715 samples, 0.06%)</title><rect x="20.9" y="1461" width="0.7" height="15.0" fill="rgb(207,171,39)" rx="2" ry="2" />
<text x="23.89" y="1471.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (6,503,102 samples, 0.01%)</title><rect x="805.4" y="1813" width="0.2" height="15.0" fill="rgb(237,130,20)" rx="2" ry="2" />
<text x="808.45" y="1823.5" ></text>
</g>
<g >
<title>futex_wait (20,033,037 samples, 0.03%)</title><rect x="68.2" y="85" width="0.3" height="15.0" fill="rgb(247,72,35)" rx="2" ry="2" />
<text x="71.21" y="95.5" ></text>
</g>
<g >
<title>[libc-2.28.so] (28,735,506 samples, 0.04%)</title><rect x="584.9" y="2053" width="0.5" height="15.0" fill="rgb(242,6,47)" rx="2" ry="2" />
<text x="587.93" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (2,736,847,453 samples, 3.94%)</title><rect x="10.5" y="2021" width="46.5" height="15.0" fill="rgb(219,89,5)" rx="2" ry="2" />
<text x="13.50" y="2031.5" >[unk..</text>
</g>
<g >
<title>__fget_light (116,425,065 samples, 0.17%)</title><rect x="71.0" y="1957" width="1.9" height="15.0" fill="rgb(244,113,44)" rx="2" ry="2" />
<text x="73.97" y="1967.5" ></text>
</g>
<g >
<title>switch_fpu_return (79,643,258 samples, 0.11%)</title><rect x="493.9" y="1989" width="1.3" height="15.0" fill="rgb(228,64,47)" rx="2" ry="2" />
<text x="496.85" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="693" width="13.1" height="15.0" fill="rgb(223,67,8)" rx="2" ry="2" />
<text x="60.02" y="703.5" ></text>
</g>
<g >
<title>enqueue_entity (27,172,777 samples, 0.04%)</title><rect x="782.9" y="1781" width="0.5" height="15.0" fill="rgb(234,149,12)" rx="2" ry="2" />
<text x="785.89" y="1791.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (55,903,384 samples, 0.08%)</title><rect x="573.2" y="1845" width="0.9" height="15.0" fill="rgb(217,151,32)" rx="2" ry="2" />
<text x="576.19" y="1855.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (31,259,811 samples, 0.05%)</title><rect x="44.2" y="1685" width="0.6" height="15.0" fill="rgb(222,228,31)" rx="2" ry="2" />
<text x="47.25" y="1695.5" ></text>
</g>
<g >
<title>do_syscall_64 (611,999,757 samples, 0.88%)</title><rect x="523.9" y="2005" width="10.4" height="15.0" fill="rgb(242,89,43)" rx="2" ry="2" />
<text x="526.86" y="2015.5" ></text>
</g>
<g >
<title>__seccomp_filter (24,054,056 samples, 0.03%)</title><rect x="612.9" y="1973" width="0.4" height="15.0" fill="rgb(220,123,7)" rx="2" ry="2" />
<text x="615.91" y="1983.5" ></text>
</g>
<g >
<title>newidle_balance (195,027,146 samples, 0.28%)</title><rect x="704.3" y="1893" width="3.3" height="15.0" fill="rgb(238,17,39)" rx="2" ry="2" />
<text x="707.28" y="1903.5" ></text>
</g>
<g >
<title>do_syscall_64 (497,239,676 samples, 0.72%)</title><rect x="699.8" y="2021" width="8.4" height="15.0" fill="rgb(231,180,31)" rx="2" ry="2" />
<text x="702.78" y="2031.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (173,635,321 samples, 0.25%)</title><rect x="215.2" y="1781" width="2.9" height="15.0" fill="rgb(230,174,9)" rx="2" ry="2" />
<text x="218.19" y="1791.5" ></text>
</g>
<g >
<title>update_blocked_averages (10,158,377 samples, 0.01%)</title><rect x="295.2" y="1797" width="0.1" height="15.0" fill="rgb(239,202,36)" rx="2" ry="2" />
<text x="298.17" y="1807.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (204,753,217 samples, 0.29%)</title><rect x="765.1" y="1861" width="3.5" height="15.0" fill="rgb(238,173,4)" rx="2" ry="2" />
<text x="768.09" y="1871.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (26,833,145 samples, 0.04%)</title><rect x="463.9" y="1909" width="0.5" height="15.0" fill="rgb(252,96,37)" rx="2" ry="2" />
<text x="466.90" y="1919.5" ></text>
</g>
<g >
<title>new_sync_write (1,017,298,911 samples, 1.47%)</title><rect x="719.9" y="1957" width="17.3" height="15.0" fill="rgb(217,103,38)" rx="2" ry="2" />
<text x="722.89" y="1967.5" ></text>
</g>
<g >
<title>try_to_wake_up (31,039,577 samples, 0.04%)</title><rect x="595.5" y="1925" width="0.5" height="15.0" fill="rgb(237,13,7)" rx="2" ry="2" />
<text x="598.50" y="1935.5" ></text>
</g>
<g >
<title>native_write_msr (137,246,476 samples, 0.20%)</title><rect x="116.9" y="1861" width="2.4" height="15.0" fill="rgb(229,128,41)" rx="2" ry="2" />
<text x="119.92" y="1871.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (445,085,317 samples, 0.64%)</title><rect x="1045.8" y="2021" width="7.5" height="15.0" fill="rgb(246,157,7)" rx="2" ry="2" />
<text x="1048.77" y="2031.5" ></text>
</g>
<g >
<title>arch_perf_update_userpage (27,742,614 samples, 0.04%)</title><rect x="546.5" y="1797" width="0.4" height="15.0" fill="rgb(212,185,19)" rx="2" ry="2" />
<text x="549.47" y="1807.5" ></text>
</g>
<g >
<title>__schedule (500,822,171 samples, 0.72%)</title><rect x="463.9" y="1941" width="8.5" height="15.0" fill="rgb(244,170,26)" rx="2" ry="2" />
<text x="466.90" y="1951.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1797" width="0.6" height="15.0" fill="rgb(226,119,33)" rx="2" ry="2" />
<text x="451.74" y="1807.5" ></text>
</g>
<g >
<title>__sk_dst_check (30,161,439 samples, 0.04%)</title><rect x="218.4" y="1861" width="0.5" height="15.0" fill="rgb(219,148,23)" rx="2" ry="2" />
<text x="221.39" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="709" width="13.1" height="15.0" fill="rgb(252,67,39)" rx="2" ry="2" />
<text x="60.02" y="719.5" ></text>
</g>
<g >
<title>enqueue_task_fair (33,325,624 samples, 0.05%)</title><rect x="74.5" y="1829" width="0.6" height="15.0" fill="rgb(218,195,22)" rx="2" ry="2" />
<text x="77.53" y="1839.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (26,246,579 samples, 0.04%)</title><rect x="1039.6" y="1973" width="0.5" height="15.0" fill="rgb(241,127,33)" rx="2" ry="2" />
<text x="1042.62" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (225,559,124 samples, 0.32%)</title><rect x="519.4" y="2021" width="3.8" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="522.36" y="2031.5" ></text>
</g>
<g >
<title>load_balance (56,318,957 samples, 0.08%)</title><rect x="1168.2" y="1877" width="0.9" height="15.0" fill="rgb(228,92,5)" rx="2" ry="2" />
<text x="1171.16" y="1887.5" ></text>
</g>
<g >
<title>ctx_sched_in (204,753,217 samples, 0.29%)</title><rect x="765.1" y="1877" width="3.5" height="15.0" fill="rgb(243,113,25)" rx="2" ry="2" />
<text x="768.09" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1429" width="13.1" height="15.0" fill="rgb(238,212,48)" rx="2" ry="2" />
<text x="60.02" y="1439.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (173,635,321 samples, 0.25%)</title><rect x="215.2" y="1717" width="2.9" height="15.0" fill="rgb(221,23,24)" rx="2" ry="2" />
<text x="218.19" y="1727.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (28,883,136 samples, 0.04%)</title><rect x="533.8" y="1877" width="0.5" height="15.0" fill="rgb(229,173,29)" rx="2" ry="2" />
<text x="536.77" y="1887.5" ></text>
</g>
<g >
<title>sched_clock_cpu (17,200,505 samples, 0.02%)</title><rect x="674.4" y="1877" width="0.3" height="15.0" fill="rgb(213,227,14)" rx="2" ry="2" />
<text x="677.44" y="1887.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (25,364,731 samples, 0.04%)</title><rect x="129.9" y="1813" width="0.5" height="15.0" fill="rgb(234,216,10)" rx="2" ry="2" />
<text x="132.94" y="1823.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (21,101,427 samples, 0.03%)</title><rect x="471.6" y="1909" width="0.4" height="15.0" fill="rgb(214,137,17)" rx="2" ry="2" />
<text x="474.60" y="1919.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (23,771,023 samples, 0.03%)</title><rect x="500.8" y="2037" width="0.4" height="15.0" fill="rgb(250,168,4)" rx="2" ry="2" />
<text x="503.80" y="2047.5" ></text>
</g>
<g >
<title>sock_write_iter (81,057,429 samples, 0.12%)</title><rect x="452.4" y="1941" width="1.4" height="15.0" fill="rgb(213,63,9)" rx="2" ry="2" />
<text x="455.40" y="1951.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1797" width="9.9" height="15.0" fill="rgb(254,132,24)" rx="2" ry="2" />
<text x="526.86" y="1807.5" ></text>
</g>
<g >
<title>CRYPTO_gcm128_tag (29,995,721 samples, 0.04%)</title><rect x="193.9" y="2037" width="0.5" height="15.0" fill="rgb(226,78,29)" rx="2" ry="2" />
<text x="196.88" y="2047.5" ></text>
</g>
<g >
<title>hrtimer_init_sleeper (13,570,464 samples, 0.02%)</title><rect x="493.6" y="1957" width="0.3" height="15.0" fill="rgb(215,213,21)" rx="2" ry="2" />
<text x="496.62" y="1967.5" ></text>
</g>
<g >
<title>finish_task_switch (2,633,762,294 samples, 3.79%)</title><rect x="1123.4" y="1909" width="44.8" height="15.0" fill="rgb(223,27,10)" rx="2" ry="2" />
<text x="1126.40" y="1919.5" >fini..</text>
</g>
<g >
<title>dequeue_task_fair (491,457,727 samples, 0.71%)</title><rect x="270.7" y="1925" width="8.3" height="15.0" fill="rgb(227,68,4)" rx="2" ry="2" />
<text x="273.67" y="1935.5" ></text>
</g>
<g >
<title>copy_page_from_iter (14,947,458 samples, 0.02%)</title><rect x="990.5" y="1925" width="0.3" height="15.0" fill="rgb(250,131,16)" rx="2" ry="2" />
<text x="993.52" y="1935.5" ></text>
</g>
<g >
<title>event_sched_in (109,959,536 samples, 0.16%)</title><rect x="285.0" y="1845" width="1.9" height="15.0" fill="rgb(223,182,33)" rx="2" ry="2" />
<text x="288.02" y="1855.5" ></text>
</g>
<g >
<title>asm_common_interrupt (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1925" width="0.2" height="15.0" fill="rgb(231,36,34)" rx="2" ry="2" />
<text x="90.79" y="1935.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (31,039,577 samples, 0.04%)</title><rect x="595.5" y="1957" width="0.5" height="15.0" fill="rgb(228,7,17)" rx="2" ry="2" />
<text x="598.50" y="1967.5" ></text>
</g>
<g >
<title>ip_output (138,429,560 samples, 0.20%)</title><rect x="607.3" y="1717" width="2.3" height="15.0" fill="rgb(239,35,6)" rx="2" ry="2" />
<text x="610.27" y="1727.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (16,659,180 samples, 0.02%)</title><rect x="768.6" y="1861" width="0.3" height="15.0" fill="rgb(227,2,28)" rx="2" ry="2" />
<text x="771.58" y="1871.5" ></text>
</g>
<g >
<title>load_balance (270,247,939 samples, 0.39%)</title><rect x="486.0" y="1877" width="4.6" height="15.0" fill="rgb(216,208,1)" rx="2" ry="2" />
<text x="489.03" y="1887.5" ></text>
</g>
<g >
<title>__pthread_mutex_lock (250,328,866 samples, 0.36%)</title><rect x="1112.0" y="2053" width="4.3" height="15.0" fill="rgb(247,82,27)" rx="2" ry="2" />
<text x="1115.02" y="2063.5" ></text>
</g>
<g >
<title>update_load_avg (30,218,894 samples, 0.04%)</title><rect x="663.0" y="1893" width="0.5" height="15.0" fill="rgb(213,22,46)" rx="2" ry="2" />
<text x="666.03" y="1903.5" ></text>
</g>
<g >
<title>node::Environment::GetNow (134,102,386 samples, 0.19%)</title><rect x="51.9" y="1957" width="2.3" height="15.0" fill="rgb(253,84,44)" rx="2" ry="2" />
<text x="54.88" y="1967.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1765" width="4.6" height="15.0" fill="rgb(246,67,7)" rx="2" ry="2" />
<text x="600.13" y="1775.5" ></text>
</g>
<g >
<title>native_write_msr (1,254,857,008 samples, 1.81%)</title><rect x="1123.6" y="1861" width="21.3" height="15.0" fill="rgb(235,29,49)" rx="2" ry="2" />
<text x="1126.57" y="1871.5" >n..</text>
</g>
<g >
<title>rd_kafka_broker_serve (38,310,936 samples, 0.06%)</title><rect x="623.9" y="2037" width="0.6" height="15.0" fill="rgb(224,95,20)" rx="2" ry="2" />
<text x="626.87" y="2047.5" ></text>
</g>
<g >
<title>aa_label_sk_perm.part.0 (43,386,688 samples, 0.06%)</title><rect x="611.2" y="1877" width="0.8" height="15.0" fill="rgb(211,126,42)" rx="2" ry="2" />
<text x="614.22" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (683,737,629 samples, 0.98%)</title><rect x="759.7" y="2021" width="11.6" height="15.0" fill="rgb(249,222,4)" rx="2" ry="2" />
<text x="762.72" y="2031.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (14,309,417 samples, 0.02%)</title><rect x="313.4" y="1973" width="0.3" height="15.0" fill="rgb(239,77,4)" rx="2" ry="2" />
<text x="316.42" y="1983.5" ></text>
</g>
<g >
<title>__check_object_size (14,492,499 samples, 0.02%)</title><rect x="218.1" y="1845" width="0.3" height="15.0" fill="rgb(205,12,51)" rx="2" ry="2" />
<text x="221.14" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,778,233 samples, 0.02%)</title><rect x="646.5" y="2037" width="0.3" height="15.0" fill="rgb(244,210,19)" rx="2" ry="2" />
<text x="649.54" y="2047.5" ></text>
</g>
<g >
<title>rd_kafka_q_pop_serve.localalias.12 (32,635,003 samples, 0.05%)</title><rect x="582.5" y="2053" width="0.5" height="15.0" fill="rgb(212,50,42)" rx="2" ry="2" />
<text x="585.47" y="2063.5" ></text>
</g>
<g >
<title>pick_next_task_fair (50,886,326 samples, 0.07%)</title><rect x="768.9" y="1909" width="0.8" height="15.0" fill="rgb(231,2,54)" rx="2" ry="2" />
<text x="771.87" y="1919.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (14,248,885 samples, 0.02%)</title><rect x="704.0" y="1893" width="0.3" height="15.0" fill="rgb(224,217,36)" rx="2" ry="2" />
<text x="707.04" y="1903.5" ></text>
</g>
<g >
<title>perf_swevent_add (35,070,256 samples, 0.05%)</title><rect x="803.1" y="1813" width="0.6" height="15.0" fill="rgb(221,119,53)" rx="2" ry="2" />
<text x="806.12" y="1823.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (19,291,665 samples, 0.03%)</title><rect x="668.5" y="1861" width="0.3" height="15.0" fill="rgb(220,28,27)" rx="2" ry="2" />
<text x="671.47" y="1871.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (10,158,377 samples, 0.01%)</title><rect x="295.2" y="1781" width="0.1" height="15.0" fill="rgb(238,90,42)" rx="2" ry="2" />
<text x="298.17" y="1791.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (44,444,988 samples, 0.06%)</title><rect x="227.8" y="1781" width="0.7" height="15.0" fill="rgb(216,180,48)" rx="2" ry="2" />
<text x="230.76" y="1791.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (363,133,318 samples, 0.52%)</title><rect x="365.4" y="1813" width="6.1" height="15.0" fill="rgb(207,195,38)" rx="2" ry="2" />
<text x="368.38" y="1823.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (25,980,840 samples, 0.04%)</title><rect x="1167.7" y="1893" width="0.5" height="15.0" fill="rgb(218,198,36)" rx="2" ry="2" />
<text x="1170.72" y="1903.5" ></text>
</g>
<g >
<title>sock_poll (62,508,626 samples, 0.09%)</title><rect x="756.6" y="1973" width="1.0" height="15.0" fill="rgb(216,146,53)" rx="2" ry="2" />
<text x="759.56" y="1983.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (23,377,560 samples, 0.03%)</title><rect x="188.6" y="1957" width="0.4" height="15.0" fill="rgb(234,136,30)" rx="2" ry="2" />
<text x="191.63" y="1967.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (1,359,073,982 samples, 1.96%)</title><rect x="137.0" y="2053" width="23.1" height="15.0" fill="rgb(215,112,18)" rx="2" ry="2" />
<text x="139.98" y="2063.5" >p..</text>
</g>
<g >
<title>do_syscall_64 (150,339,559 samples, 0.22%)</title><rect x="717.3" y="2005" width="2.6" height="15.0" fill="rgb(250,133,22)" rx="2" ry="2" />
<text x="720.33" y="2015.5" ></text>
</g>
<g >
<title>[libnode.so.64] (197,622,438 samples, 0.28%)</title><rect x="44.8" y="1701" width="3.3" height="15.0" fill="rgb(218,75,46)" rx="2" ry="2" />
<text x="47.78" y="1711.5" ></text>
</g>
<g >
<title>pipe_poll (14,197,649 samples, 0.02%)</title><rect x="541.5" y="1973" width="0.3" height="15.0" fill="rgb(221,222,13)" rx="2" ry="2" />
<text x="544.53" y="1983.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (145,735,608 samples, 0.21%)</title><rect x="551.2" y="1813" width="2.4" height="15.0" fill="rgb(217,146,46)" rx="2" ry="2" />
<text x="554.16" y="1823.5" ></text>
</g>
<g >
<title>__clock_gettime (210,515,469 samples, 0.30%)</title><rect x="205.2" y="2037" width="3.5" height="15.0" fill="rgb(243,140,22)" rx="2" ry="2" />
<text x="208.17" y="2047.5" ></text>
</g>
<g >
<title>v8::internal::Execution::Call (2,243,083,247 samples, 3.23%)</title><rect x="13.8" y="1909" width="38.1" height="15.0" fill="rgb(234,187,53)" rx="2" ry="2" />
<text x="16.76" y="1919.5" >v8:..</text>
</g>
<g >
<title>__hrtimer_run_queues (24,329,495 samples, 0.04%)</title><rect x="560.1" y="1909" width="0.4" height="15.0" fill="rgb(247,192,32)" rx="2" ry="2" />
<text x="563.08" y="1919.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (44,444,988 samples, 0.06%)</title><rect x="227.8" y="1717" width="0.7" height="15.0" fill="rgb(243,127,28)" rx="2" ry="2" />
<text x="230.76" y="1727.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (24,329,495 samples, 0.04%)</title><rect x="560.1" y="1989" width="0.4" height="15.0" fill="rgb(243,156,35)" rx="2" ry="2" />
<text x="563.08" y="1999.5" ></text>
</g>
<g >
<title>LazyCompile:*insert timers.js:167 (322,548,771 samples, 0.46%)</title><rect x="169.4" y="1621" width="5.4" height="15.0" fill="rgb(243,98,40)" rx="2" ry="2" />
<text x="172.35" y="1631.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (81,057,429 samples, 0.12%)</title><rect x="452.4" y="2021" width="1.4" height="15.0" fill="rgb(221,96,50)" rx="2" ry="2" />
<text x="455.40" y="2031.5" ></text>
</g>
<g >
<title>update_curr (233,315,634 samples, 0.34%)</title><rect x="274.5" y="1893" width="4.0" height="15.0" fill="rgb(223,37,27)" rx="2" ry="2" />
<text x="277.54" y="1903.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irq (19,190,892 samples, 0.03%)</title><rect x="990.2" y="1925" width="0.3" height="15.0" fill="rgb(238,227,12)" rx="2" ry="2" />
<text x="993.19" y="1935.5" ></text>
</g>
<g >
<title>event_sched_in (35,070,256 samples, 0.05%)</title><rect x="803.1" y="1829" width="0.6" height="15.0" fill="rgb(252,50,37)" rx="2" ry="2" />
<text x="806.12" y="1839.5" ></text>
</g>
<g >
<title>psi_group_change (9,599,484 samples, 0.01%)</title><rect x="1167.8" y="1733" width="0.2" height="15.0" fill="rgb(226,76,27)" rx="2" ry="2" />
<text x="1170.80" y="1743.5" ></text>
</g>
<g >
<title>native_write_msr (17,457,691 samples, 0.03%)</title><rect x="550.8" y="1797" width="0.3" height="15.0" fill="rgb(240,78,13)" rx="2" ry="2" />
<text x="553.84" y="1807.5" ></text>
</g>
<g >
<title>__poll (2,262,879,478 samples, 3.26%)</title><rect x="646.5" y="2053" width="38.5" height="15.0" fill="rgb(243,118,19)" rx="2" ry="2" />
<text x="649.54" y="2063.5" >__p..</text>
</g>
<g >
<title>node::InternalMakeCallback (564,337,124 samples, 0.81%)</title><rect x="165.2" y="1989" width="9.6" height="15.0" fill="rgb(217,194,41)" rx="2" ry="2" />
<text x="168.24" y="1999.5" ></text>
</g>
<g >
<title>[[vdso]] (41,927,016 samples, 0.06%)</title><rect x="444.8" y="2021" width="0.7" height="15.0" fill="rgb(224,137,28)" rx="2" ry="2" />
<text x="447.75" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="549" width="13.1" height="15.0" fill="rgb(223,131,0)" rx="2" ry="2" />
<text x="60.02" y="559.5" ></text>
</g>
<g >
<title>vfs_read (928,916,887 samples, 1.34%)</title><rect x="597.1" y="1973" width="15.8" height="15.0" fill="rgb(249,211,24)" rx="2" ry="2" />
<text x="600.13" y="1983.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (305,837,572 samples, 0.44%)</title><rect x="663.6" y="1909" width="5.2" height="15.0" fill="rgb(228,108,50)" rx="2" ry="2" />
<text x="666.60" y="1919.5" ></text>
</g>
<g >
<title>find_busiest_group (117,511,339 samples, 0.17%)</title><rect x="576.5" y="1861" width="2.0" height="15.0" fill="rgb(221,21,3)" rx="2" ry="2" />
<text x="579.50" y="1871.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (13,873,522 samples, 0.02%)</title><rect x="595.3" y="2021" width="0.2" height="15.0" fill="rgb(244,206,36)" rx="2" ry="2" />
<text x="598.27" y="2031.5" ></text>
</g>
<g >
<title>nf_hook_slow (138,429,560 samples, 0.20%)</title><rect x="607.3" y="1701" width="2.3" height="15.0" fill="rgb(240,47,34)" rx="2" ry="2" />
<text x="610.27" y="1711.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (14,248,885 samples, 0.02%)</title><rect x="704.0" y="1829" width="0.3" height="15.0" fill="rgb(210,216,14)" rx="2" ry="2" />
<text x="707.04" y="1839.5" ></text>
</g>
<g >
<title>psi_group_change (21,572,919 samples, 0.03%)</title><rect x="158.1" y="1893" width="0.4" height="15.0" fill="rgb(246,8,6)" rx="2" ry="2" />
<text x="161.11" y="1903.5" ></text>
</g>
<g >
<title>_copy_from_user (18,994,582 samples, 0.03%)</title><rect x="541.2" y="1973" width="0.3" height="15.0" fill="rgb(249,194,33)" rx="2" ry="2" />
<text x="544.20" y="1983.5" ></text>
</g>
<g >
<title>read_tsc (20,018,919 samples, 0.03%)</title><rect x="472.7" y="1941" width="0.3" height="15.0" fill="rgb(205,106,20)" rx="2" ry="2" />
<text x="475.71" y="1951.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (322,548,771 samples, 0.46%)</title><rect x="169.4" y="1525" width="5.4" height="15.0" fill="rgb(207,103,50)" rx="2" ry="2" />
<text x="172.35" y="1535.5" ></text>
</g>
<g >
<title>try_to_wake_up (15,776,520 samples, 0.02%)</title><rect x="753.4" y="1797" width="0.3" height="15.0" fill="rgb(223,63,5)" rx="2" ry="2" />
<text x="756.38" y="1807.5" ></text>
</g>
<g >
<title>do_futex (50,865,780 samples, 0.07%)</title><rect x="69.2" y="181" width="0.9" height="15.0" fill="rgb(249,157,21)" rx="2" ry="2" />
<text x="72.22" y="191.5" ></text>
</g>
<g >
<title>ctx_sched_in (6,580,784 samples, 0.01%)</title><rect x="88.1" y="1893" width="0.1" height="15.0" fill="rgb(238,24,36)" rx="2" ry="2" />
<text x="91.12" y="1903.5" ></text>
</g>
<g >
<title>_raw_read_lock_irqsave (104,164,630 samples, 0.15%)</title><rect x="75.5" y="1909" width="1.8" height="15.0" fill="rgb(229,12,39)" rx="2" ry="2" />
<text x="78.50" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (678,467,449 samples, 0.98%)</title><rect x="57.0" y="181" width="11.5" height="15.0" fill="rgb(213,204,52)" rx="2" ry="2" />
<text x="60.02" y="191.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (28,089,708 samples, 0.04%)</title><rect x="623.4" y="2037" width="0.5" height="15.0" fill="rgb(247,4,46)" rx="2" ry="2" />
<text x="626.40" y="2047.5" ></text>
</g>
<g >
<title>hrtimer_active (6,342,373 samples, 0.01%)</title><rect x="541.8" y="1957" width="0.1" height="15.0" fill="rgb(218,20,26)" rx="2" ry="2" />
<text x="544.77" y="1967.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1861" width="0.2" height="15.0" fill="rgb(237,196,46)" rx="2" ry="2" />
<text x="553.58" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="533" width="13.1" height="15.0" fill="rgb(220,22,49)" rx="2" ry="2" />
<text x="60.02" y="543.5" ></text>
</g>
<g >
<title>timerqueue_add (120,955,502 samples, 0.17%)</title><rect x="113.4" y="1909" width="2.1" height="15.0" fill="rgb(232,104,10)" rx="2" ry="2" />
<text x="116.44" y="1919.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (25,888,604 samples, 0.04%)</title><rect x="783.4" y="1941" width="0.4" height="15.0" fill="rgb(230,88,13)" rx="2" ry="2" />
<text x="786.39" y="1951.5" ></text>
</g>
<g >
<title>ip_list_rcv (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1749" width="0.2" height="15.0" fill="rgb(230,144,22)" rx="2" ry="2" />
<text x="90.79" y="1759.5" ></text>
</g>
<g >
<title>schedule (502,379,873 samples, 0.72%)</title><rect x="463.9" y="1957" width="8.5" height="15.0" fill="rgb(241,98,43)" rx="2" ry="2" />
<text x="466.87" y="1967.5" ></text>
</g>
<g >
<title>process_backlog (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1733" width="4.6" height="15.0" fill="rgb(220,214,44)" rx="2" ry="2" />
<text x="600.13" y="1743.5" ></text>
</g>
<g >
<title>do_syscall_64 (78,759,062 samples, 0.11%)</title><rect x="991.3" y="2005" width="1.3" height="15.0" fill="rgb(244,11,4)" rx="2" ry="2" />
<text x="994.26" y="2015.5" ></text>
</g>
<g >
<title>__pthread_getspecific (18,608,818 samples, 0.03%)</title><rect x="453.8" y="2037" width="0.3" height="15.0" fill="rgb(222,143,0)" rx="2" ry="2" />
<text x="456.78" y="2047.5" ></text>
</g>
<g >
<title>v8::internal::Factory::InitializeJSObjectFromMap (485,424,776 samples, 0.70%)</title><rect x="175.6" y="1941" width="8.2" height="15.0" fill="rgb(245,168,25)" rx="2" ry="2" />
<text x="178.58" y="1951.5" ></text>
</g>
<g >
<title>Stub:JSEntryStub (2,243,083,247 samples, 3.23%)</title><rect x="13.8" y="1861" width="38.1" height="15.0" fill="rgb(213,36,47)" rx="2" ry="2" />
<text x="16.76" y="1871.5" >Stu..</text>
</g>
<g >
<title>__pthread_mutex_lock (169,537,103 samples, 0.24%)</title><rect x="561.7" y="2053" width="2.9" height="15.0" fill="rgb(233,121,13)" rx="2" ry="2" />
<text x="564.72" y="2063.5" ></text>
</g>
<g >
<title>rd_kafka_broker_bufq_timeout_scan (13,031,156 samples, 0.02%)</title><rect x="771.7" y="2053" width="0.3" height="15.0" fill="rgb(240,228,9)" rx="2" ry="2" />
<text x="774.75" y="2063.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (28,883,136 samples, 0.04%)</title><rect x="533.8" y="1893" width="0.5" height="15.0" fill="rgb(227,124,23)" rx="2" ry="2" />
<text x="536.77" y="1903.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (18,462,441 samples, 0.03%)</title><rect x="212.9" y="1909" width="0.3" height="15.0" fill="rgb(217,18,52)" rx="2" ry="2" />
<text x="215.89" y="1919.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (15,025,718 samples, 0.02%)</title><rect x="709.8" y="2053" width="0.3" height="15.0" fill="rgb(238,73,29)" rx="2" ry="2" />
<text x="712.80" y="2063.5" ></text>
</g>
<g >
<title>__fget_files (294,370,890 samples, 0.42%)</title><rect x="257.2" y="1957" width="5.0" height="15.0" fill="rgb(233,34,44)" rx="2" ry="2" />
<text x="260.20" y="1967.5" ></text>
</g>
<g >
<title>rd_kafka_transport_ssl_send (26,554,428 samples, 0.04%)</title><rect x="247.0" y="2037" width="0.5" height="15.0" fill="rgb(247,201,17)" rx="2" ry="2" />
<text x="250.01" y="2047.5" ></text>
</g>
<g >
<title>_copy_from_user (36,855,461 samples, 0.05%)</title><rect x="262.2" y="1973" width="0.6" height="15.0" fill="rgb(216,78,9)" rx="2" ry="2" />
<text x="265.21" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1173" width="13.1" height="15.0" fill="rgb(206,47,52)" rx="2" ry="2" />
<text x="60.02" y="1183.5" ></text>
</g>
<g >
<title>ksys_write (224,046,367 samples, 0.32%)</title><rect x="225.7" y="1989" width="3.8" height="15.0" fill="rgb(248,36,17)" rx="2" ry="2" />
<text x="228.70" y="1999.5" ></text>
</g>
<g >
<title>__x64_sys_futex (39,389,132 samples, 0.06%)</title><rect x="68.5" y="165" width="0.7" height="15.0" fill="rgb(250,217,37)" rx="2" ry="2" />
<text x="71.55" y="175.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="469" width="13.1" height="15.0" fill="rgb(215,201,27)" rx="2" ry="2" />
<text x="60.02" y="479.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (9,964,642 samples, 0.01%)</title><rect x="295.0" y="1861" width="0.2" height="15.0" fill="rgb(220,184,28)" rx="2" ry="2" />
<text x="298.00" y="1871.5" ></text>
</g>
<g >
<title>ip_forward (124,380,521 samples, 0.18%)</title><rect x="218.9" y="1717" width="2.1" height="15.0" fill="rgb(238,39,52)" rx="2" ry="2" />
<text x="221.90" y="1727.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_serve (75,831,134 samples, 0.11%)</title><rect x="592.7" y="1989" width="1.3" height="15.0" fill="rgb(241,54,25)" rx="2" ry="2" />
<text x="595.73" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (133,186,214 samples, 0.19%)</title><rect x="592.7" y="2005" width="2.3" height="15.0" fill="rgb(221,7,35)" rx="2" ry="2" />
<text x="595.73" y="2015.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_event (31,302,050 samples, 0.05%)</title><rect x="390.9" y="2053" width="0.6" height="15.0" fill="rgb(252,181,16)" rx="2" ry="2" />
<text x="393.93" y="2063.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (23,377,560 samples, 0.03%)</title><rect x="188.6" y="1973" width="0.4" height="15.0" fill="rgb(228,167,18)" rx="2" ry="2" />
<text x="191.63" y="1983.5" ></text>
</g>
<g >
<title>ERR_get_state (29,348,309 samples, 0.04%)</title><rect x="394.1" y="2053" width="0.5" height="15.0" fill="rgb(241,91,22)" rx="2" ry="2" />
<text x="397.14" y="2063.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (43,679,764 samples, 0.06%)</title><rect x="704.3" y="1845" width="0.7" height="15.0" fill="rgb(241,99,34)" rx="2" ry="2" />
<text x="707.28" y="1855.5" ></text>
</g>
<g >
<title>__check_heap_object (28,883,136 samples, 0.04%)</title><rect x="533.8" y="1829" width="0.5" height="15.0" fill="rgb(241,228,10)" rx="2" ry="2" />
<text x="536.77" y="1839.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (163,506,394 samples, 0.24%)</title><rect x="20.3" y="1557" width="2.8" height="15.0" fill="rgb(212,29,50)" rx="2" ry="2" />
<text x="23.29" y="1567.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (24,481,554 samples, 0.04%)</title><rect x="1170.8" y="1957" width="0.4" height="15.0" fill="rgb(238,11,29)" rx="2" ry="2" />
<text x="1173.77" y="1967.5" ></text>
</g>
<g >
<title>update_blocked_averages (25,604,457 samples, 0.04%)</title><rect x="707.2" y="1877" width="0.4" height="15.0" fill="rgb(221,49,14)" rx="2" ry="2" />
<text x="710.16" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1189" width="13.1" height="15.0" fill="rgb(224,69,46)" rx="2" ry="2" />
<text x="60.02" y="1199.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (659,057,899 samples, 0.95%)</title><rect x="783.8" y="1973" width="11.2" height="15.0" fill="rgb(208,102,33)" rx="2" ry="2" />
<text x="786.83" y="1983.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1781" width="0.6" height="15.0" fill="rgb(249,1,50)" rx="2" ry="2" />
<text x="451.74" y="1791.5" ></text>
</g>
<g >
<title>ep_send_events_proc (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1957" width="0.2" height="15.0" fill="rgb(214,123,10)" rx="2" ry="2" />
<text x="90.79" y="1967.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (27,002,010 samples, 0.04%)</title><rect x="129.9" y="1845" width="0.5" height="15.0" fill="rgb(233,81,36)" rx="2" ry="2" />
<text x="132.94" y="1855.5" ></text>
</g>
<g >
<title>InterpretedFunction:Producer.poll /srv/service/node_modules/node-rdkafka/lib/producer.js:168 (197,622,438 samples, 0.28%)</title><rect x="44.8" y="1733" width="3.3" height="15.0" fill="rgb(214,216,26)" rx="2" ry="2" />
<text x="47.78" y="1743.5" ></text>
</g>
<g >
<title>update_blocked_averages (145,735,608 samples, 0.21%)</title><rect x="551.2" y="1845" width="2.4" height="15.0" fill="rgb(231,136,30)" rx="2" ry="2" />
<text x="554.16" y="1855.5" ></text>
</g>
<g >
<title>tcp_poll (143,568,784 samples, 0.21%)</title><rect x="308.5" y="1957" width="2.4" height="15.0" fill="rgb(246,119,26)" rx="2" ry="2" />
<text x="311.45" y="1967.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (94,836,021 samples, 0.14%)</title><rect x="489.0" y="1845" width="1.6" height="15.0" fill="rgb(215,32,28)" rx="2" ry="2" />
<text x="492.01" y="1855.5" ></text>
</g>
<g >
<title>Stub:CallApiCallbackStub (43,154,715 samples, 0.06%)</title><rect x="20.9" y="1397" width="0.7" height="15.0" fill="rgb(253,31,9)" rx="2" ry="2" />
<text x="23.89" y="1407.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (24,329,495 samples, 0.04%)</title><rect x="560.1" y="1925" width="0.4" height="15.0" fill="rgb(205,95,31)" rx="2" ry="2" />
<text x="563.08" y="1935.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (314,096,761 samples, 0.45%)</title><rect x="613.3" y="1877" width="5.4" height="15.0" fill="rgb(222,70,41)" rx="2" ry="2" />
<text x="616.34" y="1887.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (26,419,604 samples, 0.04%)</title><rect x="777.0" y="1973" width="0.5" height="15.0" fill="rgb(212,152,4)" rx="2" ry="2" />
<text x="780.03" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (13,705,354 samples, 0.02%)</title><rect x="708.0" y="2005" width="0.2" height="15.0" fill="rgb(250,167,38)" rx="2" ry="2" />
<text x="711.00" y="2015.5" ></text>
</g>
<g >
<title>check_cfs_rq_runtime (41,826,099 samples, 0.06%)</title><rect x="134.6" y="1877" width="0.7" height="15.0" fill="rgb(248,186,38)" rx="2" ry="2" />
<text x="137.60" y="1887.5" ></text>
</g>
<g >
<title>[libuv.so.1.0.0] (88,694,132 samples, 0.13%)</title><rect x="61.9" y="37" width="1.5" height="15.0" fill="rgb(240,176,48)" rx="2" ry="2" />
<text x="64.92" y="47.5" ></text>
</g>
<g >
<title>__clock_gettime (766,333,771 samples, 1.10%)</title><rect x="855.0" y="1973" width="13.0" height="15.0" fill="rgb(250,27,53)" rx="2" ry="2" />
<text x="857.99" y="1983.5" ></text>
</g>
<g >
<title>irq_exit_rcu (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1893" width="0.2" height="15.0" fill="rgb(252,185,2)" rx="2" ry="2" />
<text x="90.79" y="1903.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (78,717,334 samples, 0.11%)</title><rect x="811.2" y="2053" width="1.4" height="15.0" fill="rgb(226,171,52)" rx="2" ry="2" />
<text x="814.23" y="2063.5" ></text>
</g>
<g >
<title>Builtin:ArgumentsAdaptorTrampoline (358,952,232 samples, 0.52%)</title><rect x="168.7" y="1717" width="6.1" height="15.0" fill="rgb(228,100,48)" rx="2" ry="2" />
<text x="171.73" y="1727.5" ></text>
</g>
<g >
<title>__clock_gettime (441,147,973 samples, 0.64%)</title><rect x="839.8" y="1957" width="7.5" height="15.0" fill="rgb(217,106,45)" rx="2" ry="2" />
<text x="842.85" y="1967.5" ></text>
</g>
<g >
<title>_raw_spin_lock (24,750,996 samples, 0.04%)</title><rect x="657.9" y="1877" width="0.5" height="15.0" fill="rgb(209,105,4)" rx="2" ry="2" />
<text x="660.94" y="1887.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (85,271,709 samples, 0.12%)</title><rect x="572.7" y="1861" width="1.5" height="15.0" fill="rgb(234,215,8)" rx="2" ry="2" />
<text x="575.74" y="1871.5" ></text>
</g>
<g >
<title>update_curr (61,714,175 samples, 0.09%)</title><rect x="569.9" y="1877" width="1.0" height="15.0" fill="rgb(238,117,24)" rx="2" ry="2" />
<text x="572.90" y="1887.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (60,328,271 samples, 0.09%)</title><rect x="311.4" y="2005" width="1.0" height="15.0" fill="rgb(227,151,32)" rx="2" ry="2" />
<text x="314.41" y="2015.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1,591,292,568 samples, 2.29%)</title><rect x="1013.0" y="2037" width="27.1" height="15.0" fill="rgb(227,7,14)" rx="2" ry="2" />
<text x="1016.02" y="2047.5" >_..</text>
</g>
<g >
<title>vfs_write (224,046,367 samples, 0.32%)</title><rect x="225.7" y="1973" width="3.8" height="15.0" fill="rgb(210,225,52)" rx="2" ry="2" />
<text x="228.70" y="1983.5" ></text>
</g>
<g >
<title>update_curr (20,813,532 samples, 0.03%)</title><rect x="749.0" y="1893" width="0.4" height="15.0" fill="rgb(228,162,42)" rx="2" ry="2" />
<text x="752.05" y="1903.5" ></text>
</g>
<g >
<title>update_cfs_rq_h_load (21,470,442 samples, 0.03%)</title><rect x="74.2" y="1829" width="0.3" height="15.0" fill="rgb(246,109,12)" rx="2" ry="2" />
<text x="77.16" y="1839.5" ></text>
</g>
<g >
<title>find_busiest_group (123,029,533 samples, 0.18%)</title><rect x="807.0" y="1861" width="2.1" height="15.0" fill="rgb(231,130,25)" rx="2" ry="2" />
<text x="810.04" y="1871.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (44,444,988 samples, 0.06%)</title><rect x="227.8" y="1749" width="0.7" height="15.0" fill="rgb(227,139,37)" rx="2" ry="2" />
<text x="230.76" y="1759.5" ></text>
</g>
<g >
<title>update_rq_clock (25,589,750 samples, 0.04%)</title><rect x="378.4" y="1909" width="0.4" height="15.0" fill="rgb(247,146,8)" rx="2" ry="2" />
<text x="381.37" y="1919.5" ></text>
</g>
<g >
<title>__wake_up_common (104,683,936 samples, 0.15%)</title><rect x="988.4" y="1909" width="1.8" height="15.0" fill="rgb(225,160,33)" rx="2" ry="2" />
<text x="991.41" y="1919.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (10,158,377 samples, 0.01%)</title><rect x="295.2" y="1861" width="0.1" height="15.0" fill="rgb(245,100,31)" rx="2" ry="2" />
<text x="298.17" y="1871.5" ></text>
</g>
<g >
<title>perf_swevent_add (81,481,282 samples, 0.12%)</title><rect x="285.5" y="1829" width="1.4" height="15.0" fill="rgb(251,168,45)" rx="2" ry="2" />
<text x="288.51" y="1839.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (246,631,530 samples, 0.36%)</title><rect x="605.4" y="1797" width="4.2" height="15.0" fill="rgb(244,207,15)" rx="2" ry="2" />
<text x="608.43" y="1807.5" ></text>
</g>
<g >
<title>ctx_sched_in (186,412,077 samples, 0.27%)</title><rect x="750.1" y="1893" width="3.2" height="15.0" fill="rgb(231,48,32)" rx="2" ry="2" />
<text x="753.13" y="1903.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (14,167,337 samples, 0.02%)</title><rect x="471.7" y="1845" width="0.3" height="15.0" fill="rgb(224,107,4)" rx="2" ry="2" />
<text x="474.71" y="1855.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (39,446,289 samples, 0.06%)</title><rect x="544.8" y="1877" width="0.7" height="15.0" fill="rgb(224,176,30)" rx="2" ry="2" />
<text x="547.81" y="1887.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (104,683,936 samples, 0.15%)</title><rect x="988.4" y="1925" width="1.8" height="15.0" fill="rgb(225,121,25)" rx="2" ry="2" />
<text x="991.41" y="1935.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (766,818,213 samples, 1.10%)</title><rect x="116.9" y="1893" width="13.0" height="15.0" fill="rgb(215,11,14)" rx="2" ry="2" />
<text x="119.87" y="1903.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1877" width="1.2" height="15.0" fill="rgb(228,205,30)" rx="2" ry="2" />
<text x="721.38" y="1887.5" ></text>
</g>
<g >
<title>finish_task_switch (248,927,633 samples, 0.36%)</title><rect x="801.3" y="1909" width="4.3" height="15.0" fill="rgb(229,109,27)" rx="2" ry="2" />
<text x="804.33" y="1919.5" ></text>
</g>
<g >
<title>__schedule (706,321,785 samples, 1.02%)</title><rect x="568.7" y="1925" width="12.0" height="15.0" fill="rgb(234,197,17)" rx="2" ry="2" />
<text x="571.67" y="1935.5" ></text>
</g>
<g >
<title>do_softirq (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1829" width="1.2" height="15.0" fill="rgb(235,140,30)" rx="2" ry="2" />
<text x="721.38" y="1839.5" ></text>
</g>
<g >
<title>dequeue_entity (191,210,005 samples, 0.28%)</title><rect x="786.9" y="1909" width="3.2" height="15.0" fill="rgb(242,88,13)" rx="2" ry="2" />
<text x="789.87" y="1919.5" ></text>
</g>
<g >
<title>do_syscall_64 (50,865,780 samples, 0.07%)</title><rect x="69.2" y="213" width="0.9" height="15.0" fill="rgb(224,115,30)" rx="2" ry="2" />
<text x="72.22" y="223.5" ></text>
</g>
<g >
<title>do_softirq (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1781" width="1.4" height="15.0" fill="rgb(213,41,41)" rx="2" ry="2" />
<text x="229.35" y="1791.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (228,257,657 samples, 0.33%)</title><rect x="218.4" y="1893" width="3.9" height="15.0" fill="rgb(223,63,19)" rx="2" ry="2" />
<text x="221.39" y="1903.5" ></text>
</g>
<g >
<title>v8::internal::HandleScope::Extend (134,102,386 samples, 0.19%)</title><rect x="51.9" y="1941" width="2.3" height="15.0" fill="rgb(226,215,53)" rx="2" ry="2" />
<text x="54.88" y="1951.5" ></text>
</g>
<g >
<title>timerqueue_add (163,420,265 samples, 0.24%)</title><rect x="745.3" y="1925" width="2.8" height="15.0" fill="rgb(230,146,29)" rx="2" ry="2" />
<text x="748.30" y="1935.5" ></text>
</g>
<g >
<title>new_sync_read (172,880,670 samples, 0.25%)</title><rect x="446.4" y="1957" width="2.9" height="15.0" fill="rgb(243,176,4)" rx="2" ry="2" />
<text x="449.39" y="1967.5" ></text>
</g>
<g >
<title>perf_swevent_add (44,308,598 samples, 0.06%)</title><rect x="546.2" y="1829" width="0.8" height="15.0" fill="rgb(230,133,40)" rx="2" ry="2" />
<text x="549.21" y="1839.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (1,054,300,797 samples, 1.52%)</title><rect x="330.8" y="1877" width="17.9" height="15.0" fill="rgb(223,64,11)" rx="2" ry="2" />
<text x="333.76" y="1887.5" ></text>
</g>
<g >
<title>sock_poll (37,872,605 samples, 0.05%)</title><rect x="473.0" y="1973" width="0.7" height="15.0" fill="rgb(216,221,3)" rx="2" ry="2" />
<text x="476.05" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1013" width="13.1" height="15.0" fill="rgb(240,228,42)" rx="2" ry="2" />
<text x="60.02" y="1023.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (27,172,777 samples, 0.04%)</title><rect x="782.9" y="1893" width="0.5" height="15.0" fill="rgb(225,209,18)" rx="2" ry="2" />
<text x="785.89" y="1903.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8,650,013 samples, 0.01%)</title><rect x="485.9" y="1877" width="0.1" height="15.0" fill="rgb(226,108,38)" rx="2" ry="2" />
<text x="488.88" y="1887.5" ></text>
</g>
<g >
<title>merge_sched_in (29,862,952 samples, 0.04%)</title><rect x="1144.9" y="1845" width="0.5" height="15.0" fill="rgb(228,49,33)" rx="2" ry="2" />
<text x="1147.90" y="1855.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (445,085,317 samples, 0.64%)</title><rect x="1045.8" y="1973" width="7.5" height="15.0" fill="rgb(230,106,25)" rx="2" ry="2" />
<text x="1048.77" y="1983.5" ></text>
</g>
<g >
<title>__poll (1,078,306,078 samples, 1.55%)</title><rect x="740.2" y="2053" width="18.3" height="15.0" fill="rgb(247,108,37)" rx="2" ry="2" />
<text x="743.21" y="2063.5" ></text>
</g>
<g >
<title>rd_kafka_send (120,644,886 samples, 0.17%)</title><rect x="710.1" y="2053" width="2.0" height="15.0" fill="rgb(208,119,34)" rx="2" ry="2" />
<text x="713.05" y="2063.5" ></text>
</g>
<g >
<title>psi_task_change (167,574,726 samples, 0.24%)</title><rect x="88.3" y="1925" width="2.8" height="15.0" fill="rgb(220,105,0)" rx="2" ry="2" />
<text x="91.26" y="1935.5" ></text>
</g>
<g >
<title>ksys_write (321,079,832 samples, 0.46%)</title><rect x="985.3" y="1989" width="5.5" height="15.0" fill="rgb(230,189,14)" rx="2" ry="2" />
<text x="988.32" y="1999.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (6,503,102 samples, 0.01%)</title><rect x="805.4" y="1893" width="0.2" height="15.0" fill="rgb(224,20,18)" rx="2" ry="2" />
<text x="808.45" y="1903.5" ></text>
</g>
<g >
<title>inet6_csk_xmit (138,502,950 samples, 0.20%)</title><rect x="446.4" y="1877" width="2.3" height="15.0" fill="rgb(234,209,48)" rx="2" ry="2" />
<text x="449.39" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1509" width="13.1" height="15.0" fill="rgb(253,69,16)" rx="2" ry="2" />
<text x="60.02" y="1519.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.1] (36,628,256 samples, 0.05%)</title><rect x="190.9" y="2053" width="0.6" height="15.0" fill="rgb(213,174,52)" rx="2" ry="2" />
<text x="193.87" y="2063.5" ></text>
</g>
<g >
<title>enqueue_task_fair (14,770,942 samples, 0.02%)</title><rect x="668.9" y="1765" width="0.3" height="15.0" fill="rgb(231,82,23)" rx="2" ry="2" />
<text x="671.91" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (678,467,449 samples, 0.98%)</title><rect x="57.0" y="197" width="11.5" height="15.0" fill="rgb(240,177,52)" rx="2" ry="2" />
<text x="60.02" y="207.5" ></text>
</g>
<g >
<title>v8::internal::Factory::NewJSArray (529,110,872 samples, 0.76%)</title><rect x="174.8" y="1989" width="9.0" height="15.0" fill="rgb(247,43,53)" rx="2" ry="2" />
<text x="177.84" y="1999.5" ></text>
</g>
<g >
<title>enqueue_entity (13,998,930 samples, 0.02%)</title><rect x="74.9" y="1813" width="0.2" height="15.0" fill="rgb(239,33,17)" rx="2" ry="2" />
<text x="77.85" y="1823.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (65,921,032 samples, 0.09%)</title><rect x="680.6" y="2005" width="1.1" height="15.0" fill="rgb(215,214,29)" rx="2" ry="2" />
<text x="683.56" y="2015.5" ></text>
</g>
<g >
<title>InterpretedFunction:exports.active timers.js:151 (358,952,232 samples, 0.52%)</title><rect x="168.7" y="1653" width="6.1" height="15.0" fill="rgb(227,221,19)" rx="2" ry="2" />
<text x="171.73" y="1663.5" ></text>
</g>
<g >
<title>rd_kafka_timers_next (441,147,973 samples, 0.64%)</title><rect x="839.8" y="1973" width="7.5" height="15.0" fill="rgb(230,46,53)" rx="2" ry="2" />
<text x="842.85" y="1983.5" ></text>
</g>
<g >
<title>inet6_csk_xmit (204,054,649 samples, 0.29%)</title><rect x="214.7" y="1877" width="3.4" height="15.0" fill="rgb(231,65,36)" rx="2" ry="2" />
<text x="217.67" y="1887.5" ></text>
</g>
<g >
<title>ctx_sched_in (79,356,455 samples, 0.11%)</title><rect x="790.6" y="1893" width="1.4" height="15.0" fill="rgb(253,194,0)" rx="2" ry="2" />
<text x="793.63" y="1903.5" ></text>
</g>
<g >
<title>psi_group_change (45,573,455 samples, 0.07%)</title><rect x="674.0" y="1909" width="0.7" height="15.0" fill="rgb(241,214,26)" rx="2" ry="2" />
<text x="676.95" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1029" width="13.1" height="15.0" fill="rgb(229,2,54)" rx="2" ry="2" />
<text x="60.02" y="1039.5" ></text>
</g>
<g >
<title>__fget_files (69,567,016 samples, 0.10%)</title><rect x="71.8" y="1941" width="1.1" height="15.0" fill="rgb(252,217,21)" rx="2" ry="2" />
<text x="74.76" y="1951.5" ></text>
</g>
<g >
<title>native_sched_clock (60,995,836 samples, 0.09%)</title><rect x="305.9" y="1845" width="1.0" height="15.0" fill="rgb(242,222,42)" rx="2" ry="2" />
<text x="308.90" y="1855.5" ></text>
</g>
<g >
<title>rb_insert_color (24,319,148 samples, 0.04%)</title><rect x="1120.6" y="1893" width="0.4" height="15.0" fill="rgb(232,210,45)" rx="2" ry="2" />
<text x="1123.58" y="1903.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1685" width="1.4" height="15.0" fill="rgb(221,150,51)" rx="2" ry="2" />
<text x="229.35" y="1695.5" ></text>
</g>
<g >
<title>vfs_write (314,096,761 samples, 0.45%)</title><rect x="613.3" y="1973" width="5.4" height="15.0" fill="rgb(224,179,37)" rx="2" ry="2" />
<text x="616.34" y="1983.5" ></text>
</g>
<g >
<title>InterpretedFunction:setTimeout timers.js:388 (358,952,232 samples, 0.52%)</title><rect x="168.7" y="1669" width="6.1" height="15.0" fill="rgb(239,129,25)" rx="2" ry="2" />
<text x="171.73" y="1679.5" ></text>
</g>
<g >
<title>do_futex (3,266,090,578 samples, 4.70%)</title><rect x="323.4" y="1989" width="55.5" height="15.0" fill="rgb(210,22,20)" rx="2" ry="2" />
<text x="326.41" y="1999.5" >do_fu..</text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1493" width="13.1" height="15.0" fill="rgb(240,70,32)" rx="2" ry="2" />
<text x="60.02" y="1503.5" ></text>
</g>
<g >
<title>ip_finish_output2 (323,916,154 samples, 0.47%)</title><rect x="604.1" y="1861" width="5.5" height="15.0" fill="rgb(238,47,19)" rx="2" ry="2" />
<text x="607.12" y="1871.5" ></text>
</g>
<g >
<title>event_sched_in (83,538,988 samples, 0.12%)</title><rect x="349.6" y="1829" width="1.4" height="15.0" fill="rgb(249,206,14)" rx="2" ry="2" />
<text x="352.61" y="1839.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (22,953,924 samples, 0.03%)</title><rect x="295.0" y="1909" width="0.3" height="15.0" fill="rgb(245,130,36)" rx="2" ry="2" />
<text x="297.95" y="1919.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (35,912,804 samples, 0.05%)</title><rect x="760.8" y="1893" width="0.6" height="15.0" fill="rgb(210,95,42)" rx="2" ry="2" />
<text x="763.77" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (582,209,160 samples, 0.84%)</title><rect x="57.0" y="133" width="9.9" height="15.0" fill="rgb(226,226,32)" rx="2" ry="2" />
<text x="60.02" y="143.5" ></text>
</g>
<g >
<title>schedule (68,945,518 samples, 0.10%)</title><rect x="81.7" y="1941" width="1.2" height="15.0" fill="rgb(230,45,21)" rx="2" ry="2" />
<text x="84.72" y="1951.5" ></text>
</g>
<g >
<title>inet6_csk_route_socket (30,419,328 samples, 0.04%)</title><rect x="214.7" y="1861" width="0.5" height="15.0" fill="rgb(233,96,4)" rx="2" ry="2" />
<text x="217.67" y="1871.5" ></text>
</g>
<g >
<title>generic_exec_single (28,608,563 samples, 0.04%)</title><rect x="316.1" y="1893" width="0.5" height="15.0" fill="rgb(242,26,14)" rx="2" ry="2" />
<text x="319.13" y="1903.5" ></text>
</g>
<g >
<title>try_to_wake_up (23,811,254 samples, 0.03%)</title><rect x="130.0" y="1781" width="0.4" height="15.0" fill="rgb(239,122,21)" rx="2" ry="2" />
<text x="132.96" y="1791.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (26,038,975 samples, 0.04%)</title><rect x="356.4" y="1685" width="0.4" height="15.0" fill="rgb(223,151,34)" rx="2" ry="2" />
<text x="359.40" y="1695.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (117,472,972 samples, 0.17%)</title><rect x="796.6" y="2021" width="2.0" height="15.0" fill="rgb(248,42,21)" rx="2" ry="2" />
<text x="799.65" y="2031.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (14,197,649 samples, 0.02%)</title><rect x="541.5" y="1957" width="0.3" height="15.0" fill="rgb(236,60,0)" rx="2" ry="2" />
<text x="544.53" y="1967.5" ></text>
</g>
<g >
<title>__bitmap_and (25,084,336 samples, 0.04%)</title><rect x="805.6" y="1861" width="0.4" height="15.0" fill="rgb(239,148,39)" rx="2" ry="2" />
<text x="808.56" y="1871.5" ></text>
</g>
<g >
<title>rb_next (9,409,589 samples, 0.01%)</title><rect x="294.7" y="1861" width="0.1" height="15.0" fill="rgb(223,187,25)" rx="2" ry="2" />
<text x="297.68" y="1871.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1893" width="4.6" height="15.0" fill="rgb(216,82,20)" rx="2" ry="2" />
<text x="600.13" y="1903.5" ></text>
</g>
<g >
<title>update_curr (73,363,278 samples, 0.11%)</title><rect x="1122.2" y="1877" width="1.2" height="15.0" fill="rgb(229,135,9)" rx="2" ry="2" />
<text x="1125.15" y="1887.5" ></text>
</g>
<g >
<title>update_process_times (26,038,975 samples, 0.04%)</title><rect x="356.4" y="1765" width="0.4" height="15.0" fill="rgb(250,147,43)" rx="2" ry="2" />
<text x="359.40" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,570,691 samples, 0.05%)</title><rect x="311.9" y="1973" width="0.5" height="15.0" fill="rgb(207,79,21)" rx="2" ry="2" />
<text x="314.90" y="1983.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (10,420,630 samples, 0.02%)</title><rect x="1168.0" y="1845" width="0.2" height="15.0" fill="rgb(211,130,1)" rx="2" ry="2" />
<text x="1170.99" y="1855.5" ></text>
</g>
<g >
<title>ip6t_do_table (173,635,321 samples, 0.25%)</title><rect x="215.2" y="1669" width="2.9" height="15.0" fill="rgb(252,102,50)" rx="2" ry="2" />
<text x="218.19" y="1679.5" ></text>
</g>
<g >
<title>__fget_light (122,610,468 samples, 0.18%)</title><rect x="539.1" y="1973" width="2.1" height="15.0" fill="rgb(213,107,38)" rx="2" ry="2" />
<text x="542.12" y="1983.5" ></text>
</g>
<g >
<title>sock_sendmsg (81,057,429 samples, 0.12%)</title><rect x="452.4" y="1925" width="1.4" height="15.0" fill="rgb(238,188,51)" rx="2" ry="2" />
<text x="455.40" y="1935.5" ></text>
</g>
<g >
<title>_raw_spin_lock (14,906,653 samples, 0.02%)</title><rect x="464.7" y="1893" width="0.2" height="15.0" fill="rgb(208,215,34)" rx="2" ry="2" />
<text x="467.68" y="1903.5" ></text>
</g>
<g >
<title>process_backlog (246,631,530 samples, 0.36%)</title><rect x="605.4" y="1749" width="4.2" height="15.0" fill="rgb(214,8,30)" rx="2" ry="2" />
<text x="608.43" y="1759.5" ></text>
</g>
<g >
<title>put_prev_entity (41,826,099 samples, 0.06%)</title><rect x="134.6" y="1893" width="0.7" height="15.0" fill="rgb(242,16,14)" rx="2" ry="2" />
<text x="137.60" y="1903.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (46,921,596 samples, 0.07%)</title><rect x="489.8" y="1813" width="0.8" height="15.0" fill="rgb(227,224,14)" rx="2" ry="2" />
<text x="492.82" y="1823.5" ></text>
</g>
<g >
<title>clockevents_program_event (17,457,691 samples, 0.03%)</title><rect x="550.8" y="1829" width="0.3" height="15.0" fill="rgb(238,209,48)" rx="2" ry="2" />
<text x="553.84" y="1839.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (127,566,918 samples, 0.18%)</title><rect x="450.2" y="2021" width="2.2" height="15.0" fill="rgb(245,149,2)" rx="2" ry="2" />
<text x="453.23" y="2031.5" ></text>
</g>
<g >
<title>__seccomp_filter (143,123,557 samples, 0.21%)</title><rect x="618.7" y="1973" width="2.4" height="15.0" fill="rgb(222,6,12)" rx="2" ry="2" />
<text x="621.68" y="1983.5" ></text>
</g>
<g >
<title>veth_xmit (77,284,624 samples, 0.11%)</title><rect x="604.1" y="1813" width="1.3" height="15.0" fill="rgb(233,92,20)" rx="2" ry="2" />
<text x="607.12" y="1823.5" ></text>
</g>
<g >
<title>rd_kafka_q_serve.localalias.11 (150,944,198 samples, 0.22%)</title><rect x="1187.2" y="2053" width="2.5" height="15.0" fill="rgb(225,209,1)" rx="2" ry="2" />
<text x="1190.15" y="2063.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (120,955,502 samples, 0.17%)</title><rect x="113.4" y="1925" width="2.1" height="15.0" fill="rgb(207,210,39)" rx="2" ry="2" />
<text x="116.44" y="1935.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (34,655,336 samples, 0.05%)</title><rect x="992.0" y="1989" width="0.6" height="15.0" fill="rgb(212,135,5)" rx="2" ry="2" />
<text x="995.01" y="1999.5" ></text>
</g>
<g >
<title>pick_next_task_fair (218,745,517 samples, 0.32%)</title><rect x="704.3" y="1909" width="3.7" height="15.0" fill="rgb(214,73,40)" rx="2" ry="2" />
<text x="707.28" y="1919.5" ></text>
</g>
<g >
<title>rb_next (29,399,045 samples, 0.04%)</title><rect x="752.8" y="1861" width="0.5" height="15.0" fill="rgb(243,79,35)" rx="2" ry="2" />
<text x="755.80" y="1871.5" ></text>
</g>
<g >
<title>inet6_csk_xmit (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1877" width="4.6" height="15.0" fill="rgb(253,167,10)" rx="2" ry="2" />
<text x="600.13" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="373" width="13.1" height="15.0" fill="rgb(225,218,14)" rx="2" ry="2" />
<text x="60.02" y="383.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="261" width="13.1" height="15.0" fill="rgb(214,124,50)" rx="2" ry="2" />
<text x="60.02" y="271.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (9,964,642 samples, 0.01%)</title><rect x="295.0" y="1877" width="0.2" height="15.0" fill="rgb(238,56,52)" rx="2" ry="2" />
<text x="298.00" y="1887.5" ></text>
</g>
<g >
<title>__pthread_mutex_cond_lock (28,738,221 samples, 0.04%)</title><rect x="758.6" y="2053" width="0.5" height="15.0" fill="rgb(252,148,37)" rx="2" ry="2" />
<text x="761.56" y="2063.5" ></text>
</g>
<g >
<title>v8::Function::Call (2,385,256,845 samples, 3.44%)</title><rect x="11.3" y="1925" width="40.6" height="15.0" fill="rgb(225,77,49)" rx="2" ry="2" />
<text x="14.34" y="1935.5" >v8:..</text>
</g>
<g >
<title>hrtimer_interrupt (23,377,560 samples, 0.03%)</title><rect x="188.6" y="1989" width="0.4" height="15.0" fill="rgb(223,48,9)" rx="2" ry="2" />
<text x="191.63" y="1999.5" ></text>
</g>
<g >
<title>futex_wake (44,103,726 samples, 0.06%)</title><rect x="991.3" y="1957" width="0.7" height="15.0" fill="rgb(215,26,6)" rx="2" ry="2" />
<text x="994.26" y="1967.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (445,085,317 samples, 0.64%)</title><rect x="1045.8" y="1957" width="7.5" height="15.0" fill="rgb(222,127,6)" rx="2" ry="2" />
<text x="1048.77" y="1967.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,650,013 samples, 0.01%)</title><rect x="485.9" y="1893" width="0.1" height="15.0" fill="rgb(209,156,2)" rx="2" ry="2" />
<text x="488.88" y="1903.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (708,622,028 samples, 1.02%)</title><rect x="799.1" y="2053" width="12.0" height="15.0" fill="rgb(221,218,29)" rx="2" ry="2" />
<text x="802.10" y="2063.5" ></text>
</g>
<g >
<title>futex_wake (1,098,350,162 samples, 1.58%)</title><rect x="93.0" y="1973" width="18.7" height="15.0" fill="rgb(253,220,34)" rx="2" ry="2" />
<text x="96.00" y="1983.5" ></text>
</g>
<g >
<title>__x64_sys_futex (3,124,637,135 samples, 4.50%)</title><rect x="1118.1" y="2005" width="53.1" height="15.0" fill="rgb(213,54,53)" rx="2" ry="2" />
<text x="1121.08" y="2015.5" >__x64..</text>
</g>
<g >
<title>update_load_avg (30,118,740 samples, 0.04%)</title><rect x="377.5" y="1861" width="0.5" height="15.0" fill="rgb(229,181,49)" rx="2" ry="2" />
<text x="380.47" y="1871.5" ></text>
</g>
<g >
<title>dequeue_entity (46,525,151 samples, 0.07%)</title><rect x="749.0" y="1909" width="0.8" height="15.0" fill="rgb(208,133,1)" rx="2" ry="2" />
<text x="752.05" y="1919.5" ></text>
</g>
<g >
<title>do_syscall_64 (457,220,318 samples, 0.66%)</title><rect x="613.3" y="2005" width="7.8" height="15.0" fill="rgb(210,202,19)" rx="2" ry="2" />
<text x="616.34" y="2015.5" ></text>
</g>
<g >
<title>pick_next_task_fair (56,318,957 samples, 0.08%)</title><rect x="1168.2" y="1909" width="0.9" height="15.0" fill="rgb(209,183,11)" rx="2" ry="2" />
<text x="1171.16" y="1919.5" ></text>
</g>
<g >
<title>irq_exit_rcu (14,167,337 samples, 0.02%)</title><rect x="471.7" y="1877" width="0.3" height="15.0" fill="rgb(238,141,51)" rx="2" ry="2" />
<text x="474.71" y="1887.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (21,821,640 samples, 0.03%)</title><rect x="355.4" y="1749" width="0.3" height="15.0" fill="rgb(245,35,46)" rx="2" ry="2" />
<text x="358.35" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (17,472,205,816 samples, 25.17%)</title><rect x="814.2" y="2053" width="297.0" height="15.0" fill="rgb(248,74,42)" rx="2" ry="2" />
<text x="817.24" y="2063.5" >[unknown]</text>
</g>
<g >
<title>__pollwait (31,366,497 samples, 0.05%)</title><rect x="473.2" y="1941" width="0.5" height="15.0" fill="rgb(229,115,51)" rx="2" ry="2" />
<text x="476.16" y="1951.5" ></text>
</g>
<g >
<title>finish_task_switch (264,513,887 samples, 0.38%)</title><rect x="764.4" y="1909" width="4.5" height="15.0" fill="rgb(250,31,6)" rx="2" ry="2" />
<text x="767.37" y="1919.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (6,580,784 samples, 0.01%)</title><rect x="88.1" y="1877" width="0.1" height="15.0" fill="rgb(231,88,19)" rx="2" ry="2" />
<text x="91.12" y="1887.5" ></text>
</g>
<g >
<title>do_sys_poll (1,038,449,559 samples, 1.50%)</title><rect x="456.0" y="1989" width="17.7" height="15.0" fill="rgb(219,61,54)" rx="2" ry="2" />
<text x="459.04" y="1999.5" ></text>
</g>
<g >
<title>tcp_poll (31,366,497 samples, 0.05%)</title><rect x="473.2" y="1957" width="0.5" height="15.0" fill="rgb(241,180,38)" rx="2" ry="2" />
<text x="476.16" y="1967.5" ></text>
</g>
<g >
<title>__libc_write (1,017,393,010 samples, 1.47%)</title><rect x="719.9" y="2037" width="17.3" height="15.0" fill="rgb(234,36,28)" rx="2" ry="2" />
<text x="722.89" y="2047.5" ></text>
</g>
<g >
<title>select_estimate_accuracy (26,137,738 samples, 0.04%)</title><rect x="306.9" y="1973" width="0.5" height="15.0" fill="rgb(223,214,13)" rx="2" ry="2" />
<text x="309.93" y="1983.5" ></text>
</g>
<g >
<title>load_balance (210,274,659 samples, 0.30%)</title><rect x="805.6" y="1877" width="3.5" height="15.0" fill="rgb(220,152,51)" rx="2" ry="2" />
<text x="808.56" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1301" width="13.1" height="15.0" fill="rgb(231,222,54)" rx="2" ry="2" />
<text x="60.02" y="1311.5" ></text>
</g>
<g >
<title>__x64_sys_futex (20,033,037 samples, 0.03%)</title><rect x="68.2" y="117" width="0.3" height="15.0" fill="rgb(224,150,17)" rx="2" ry="2" />
<text x="71.21" y="127.5" ></text>
</g>
<g >
<title>sock_poll (203,823,941 samples, 0.29%)</title><rect x="555.7" y="1973" width="3.4" height="15.0" fill="rgb(213,30,10)" rx="2" ry="2" />
<text x="558.69" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (3,128,665,675 samples, 4.51%)</title><rect x="816.7" y="2005" width="53.1" height="15.0" fill="rgb(241,148,51)" rx="2" ry="2" />
<text x="819.65" y="2015.5" >[unkn..</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (18,877,380 samples, 0.03%)</title><rect x="550.8" y="1861" width="0.4" height="15.0" fill="rgb(248,29,29)" rx="2" ry="2" />
<text x="553.84" y="1871.5" ></text>
</g>
<g >
<title>dequeue_entity (146,130,339 samples, 0.21%)</title><rect x="464.4" y="1909" width="2.4" height="15.0" fill="rgb(239,134,20)" rx="2" ry="2" />
<text x="467.36" y="1919.5" ></text>
</g>
<g >
<title>update_curr (26,038,975 samples, 0.04%)</title><rect x="356.4" y="1717" width="0.4" height="15.0" fill="rgb(219,195,49)" rx="2" ry="2" />
<text x="359.40" y="1727.5" ></text>
</g>
<g >
<title>vfs_write (1,017,298,911 samples, 1.47%)</title><rect x="719.9" y="1973" width="17.3" height="15.0" fill="rgb(212,39,51)" rx="2" ry="2" />
<text x="722.89" y="1983.5" ></text>
</g>
<g >
<title>malloc (30,752,582 samples, 0.04%)</title><rect x="1116.3" y="2053" width="0.5" height="15.0" fill="rgb(208,113,9)" rx="2" ry="2" />
<text x="1119.27" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (30,081,940 samples, 0.04%)</title><rect x="770.8" y="2005" width="0.5" height="15.0" fill="rgb(246,29,1)" rx="2" ry="2" />
<text x="773.83" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,450,237,358 samples, 2.09%)</title><rect x="537.1" y="2037" width="24.6" height="15.0" fill="rgb(241,63,38)" rx="2" ry="2" />
<text x="540.07" y="2047.5" >e..</text>
</g>
<g >
<title>__perf_event_task_sched_in (278,674,147 samples, 0.40%)</title><rect x="545.8" y="1909" width="4.8" height="15.0" fill="rgb(246,55,3)" rx="2" ry="2" />
<text x="548.84" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="741" width="13.1" height="15.0" fill="rgb(247,85,22)" rx="2" ry="2" />
<text x="60.02" y="751.5" ></text>
</g>
<g >
<title>ERR_clear_error (28,700,560 samples, 0.04%)</title><rect x="194.4" y="2037" width="0.5" height="15.0" fill="rgb(233,138,54)" rx="2" ry="2" />
<text x="197.39" y="2047.5" ></text>
</g>
<g >
<title>[[vdso]] (535,111,539 samples, 0.77%)</title><rect x="855.0" y="1957" width="9.1" height="15.0" fill="rgb(214,90,30)" rx="2" ry="2" />
<text x="857.99" y="1967.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (23,377,560 samples, 0.03%)</title><rect x="188.6" y="2005" width="0.4" height="15.0" fill="rgb(229,214,20)" rx="2" ry="2" />
<text x="191.63" y="2015.5" ></text>
</g>
<g >
<title>vfs_write (319,795,595 samples, 0.46%)</title><rect x="72.9" y="1973" width="5.5" height="15.0" fill="rgb(249,33,7)" rx="2" ry="2" />
<text x="75.94" y="1983.5" ></text>
</g>
<g >
<title>nf_hook_slow (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1685" width="0.2" height="15.0" fill="rgb(227,54,44)" rx="2" ry="2" />
<text x="553.58" y="1695.5" ></text>
</g>
<g >
<title>ttwu_do_activate (445,085,317 samples, 0.64%)</title><rect x="1045.8" y="1909" width="7.5" height="15.0" fill="rgb(252,4,26)" rx="2" ry="2" />
<text x="1048.77" y="1919.5" ></text>
</g>
<g >
<title>[libuv.so.1.0.0] (242,840,778 samples, 0.35%)</title><rect x="57.0" y="85" width="4.1" height="15.0" fill="rgb(238,8,6)" rx="2" ry="2" />
<text x="60.02" y="95.5" ></text>
</g>
<g >
<title>update_min_vruntime (52,909,603 samples, 0.08%)</title><rect x="789.1" y="1877" width="0.9" height="15.0" fill="rgb(226,148,42)" rx="2" ry="2" />
<text x="792.09" y="1887.5" ></text>
</g>
<g >
<title>schedule (1,053,766,107 samples, 1.52%)</title><rect x="141.0" y="1941" width="17.9" height="15.0" fill="rgb(249,100,11)" rx="2" ry="2" />
<text x="144.01" y="1951.5" ></text>
</g>
<g >
<title>sock_read_iter (446,804,805 samples, 0.64%)</title><rect x="214.7" y="1941" width="7.6" height="15.0" fill="rgb(208,49,28)" rx="2" ry="2" />
<text x="217.67" y="1951.5" ></text>
</g>
<g >
<title>futex_wait (3,098,587,968 samples, 4.46%)</title><rect x="1118.1" y="1973" width="52.7" height="15.0" fill="rgb(218,0,28)" rx="2" ry="2" />
<text x="1121.11" y="1983.5" >futex..</text>
</g>
<g >
<title>__cgroup_account_cputime (24,431,336 samples, 0.04%)</title><rect x="661.9" y="1877" width="0.4" height="15.0" fill="rgb(224,6,42)" rx="2" ry="2" />
<text x="664.85" y="1887.5" ></text>
</g>
<g >
<title>schedule (543,858,555 samples, 0.78%)</title><rect x="785.8" y="1957" width="9.2" height="15.0" fill="rgb(207,59,30)" rx="2" ry="2" />
<text x="788.79" y="1967.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (82,679,130 samples, 0.12%)</title><rect x="167.3" y="1733" width="1.4" height="15.0" fill="rgb(249,71,36)" rx="2" ry="2" />
<text x="170.33" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (1,805,922,217 samples, 2.60%)</title><rect x="816.7" y="1989" width="30.6" height="15.0" fill="rgb(246,71,17)" rx="2" ry="2" />
<text x="819.65" y="1999.5" >[u..</text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (8,287,311 samples, 0.01%)</title><rect x="764.9" y="1877" width="0.2" height="15.0" fill="rgb(205,29,14)" rx="2" ry="2" />
<text x="767.94" y="1887.5" ></text>
</g>
<g >
<title>tcp_write_xmit (127,223,472 samples, 0.18%)</title><rect x="226.4" y="1861" width="2.1" height="15.0" fill="rgb(210,88,4)" rx="2" ry="2" />
<text x="229.35" y="1871.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (120,955,502 samples, 0.17%)</title><rect x="113.4" y="1941" width="2.1" height="15.0" fill="rgb(247,162,43)" rx="2" ry="2" />
<text x="116.44" y="1951.5" ></text>
</g>
<g >
<title>try_charge (58,487,805 samples, 0.08%)</title><rect x="228.5" y="1845" width="1.0" height="15.0" fill="rgb(226,120,4)" rx="2" ry="2" />
<text x="231.52" y="1855.5" ></text>
</g>
<g >
<title>sock_read_iter (611,999,757 samples, 0.88%)</title><rect x="523.9" y="1941" width="10.4" height="15.0" fill="rgb(232,97,19)" rx="2" ry="2" />
<text x="526.86" y="1951.5" ></text>
</g>
<g >
<title>rd_kafka_broker_consumer_serve (20,587,726 samples, 0.03%)</title><rect x="581.3" y="2053" width="0.4" height="15.0" fill="rgb(242,64,18)" rx="2" ry="2" />
<text x="584.33" y="2063.5" ></text>
</g>
<g >
<title>update_load_avg (98,261,695 samples, 0.14%)</title><rect x="570.9" y="1877" width="1.7" height="15.0" fill="rgb(210,159,46)" rx="2" ry="2" />
<text x="573.95" y="1887.5" ></text>
</g>
<g >
<title>EVP_MD_CTX_md (70,120,163 samples, 0.10%)</title><rect x="517.1" y="2037" width="1.2" height="15.0" fill="rgb(219,155,20)" rx="2" ry="2" />
<text x="520.15" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (23,377,560 samples, 0.03%)</title><rect x="188.6" y="2037" width="0.4" height="15.0" fill="rgb(214,205,50)" rx="2" ry="2" />
<text x="191.63" y="2047.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (31,039,577 samples, 0.04%)</title><rect x="595.5" y="1973" width="0.5" height="15.0" fill="rgb(224,161,35)" rx="2" ry="2" />
<text x="598.50" y="1983.5" ></text>
</g>
<g >
<title>event_sched_in (11,542,168 samples, 0.02%)</title><rect x="701.7" y="1829" width="0.2" height="15.0" fill="rgb(219,152,43)" rx="2" ry="2" />
<text x="704.74" y="1839.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (14,492,499 samples, 0.02%)</title><rect x="218.1" y="1861" width="0.3" height="15.0" fill="rgb(244,224,39)" rx="2" ry="2" />
<text x="221.14" y="1871.5" ></text>
</g>
<g >
<title>dequeue_task_fair (181,738,824 samples, 0.26%)</title><rect x="569.5" y="1909" width="3.1" height="15.0" fill="rgb(233,219,15)" rx="2" ry="2" />
<text x="572.53" y="1919.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (26,113,955 samples, 0.04%)</title><rect x="66.9" y="133" width="0.5" height="15.0" fill="rgb(214,106,47)" rx="2" ry="2" />
<text x="69.91" y="143.5" ></text>
</g>
<g >
<title>task_tick_fair (26,038,975 samples, 0.04%)</title><rect x="356.4" y="1733" width="0.4" height="15.0" fill="rgb(206,177,1)" rx="2" ry="2" />
<text x="359.40" y="1743.5" ></text>
</g>
<g >
<title>rd_buf_get_writable0.isra.2 (27,863,666 samples, 0.04%)</title><rect x="495.2" y="2053" width="0.5" height="15.0" fill="rgb(227,32,53)" rx="2" ry="2" />
<text x="498.23" y="2063.5" ></text>
</g>
<g >
<title>ksys_read (943,172,329 samples, 1.36%)</title><rect x="596.9" y="1989" width="16.0" height="15.0" fill="rgb(221,196,18)" rx="2" ry="2" />
<text x="599.88" y="1999.5" ></text>
</g>
<g >
<title>update_curr (230,855,932 samples, 0.33%)</title><rect x="659.1" y="1893" width="3.9" height="15.0" fill="rgb(249,131,41)" rx="2" ry="2" />
<text x="662.11" y="1903.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (26,419,604 samples, 0.04%)</title><rect x="777.0" y="2021" width="0.5" height="15.0" fill="rgb(214,44,54)" rx="2" ry="2" />
<text x="780.03" y="2031.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (818,820,201 samples, 1.18%)</title><rect x="541.8" y="1973" width="13.9" height="15.0" fill="rgb(205,63,35)" rx="2" ry="2" />
<text x="544.77" y="1983.5" ></text>
</g>
<g >
<title>v8::internal::OptimizingCompileDispatcher::CompileTask::RunInternal (231,690,612 samples, 0.33%)</title><rect x="161.3" y="2021" width="3.9" height="15.0" fill="rgb(213,74,15)" rx="2" ry="2" />
<text x="164.28" y="2031.5" ></text>
</g>
<g >
<title>dequeue_task_fair (175,789,211 samples, 0.25%)</title><rect x="761.4" y="1909" width="3.0" height="15.0" fill="rgb(208,138,32)" rx="2" ry="2" />
<text x="764.38" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="2037" width="13.1" height="15.0" fill="rgb(243,101,13)" rx="2" ry="2" />
<text x="60.02" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (18,877,380 samples, 0.03%)</title><rect x="550.8" y="1909" width="0.4" height="15.0" fill="rgb(223,45,35)" rx="2" ry="2" />
<text x="553.84" y="1919.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (185,711,277 samples, 0.27%)</title><rect x="226.4" y="1893" width="3.1" height="15.0" fill="rgb(231,97,35)" rx="2" ry="2" />
<text x="229.35" y="1903.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (198,096,218 samples, 0.29%)</title><rect x="218.9" y="1733" width="3.4" height="15.0" fill="rgb(251,209,25)" rx="2" ry="2" />
<text x="221.90" y="1743.5" ></text>
</g>
<g >
<title>Nan::AsyncExecuteComplete (1,198,342,383 samples, 1.73%)</title><rect x="165.2" y="2037" width="20.4" height="15.0" fill="rgb(207,77,54)" rx="2" ry="2" />
<text x="168.24" y="2047.5" ></text>
</g>
<g >
<title>enqueue_task_fair (39,389,132 samples, 0.06%)</title><rect x="68.5" y="69" width="0.7" height="15.0" fill="rgb(245,211,42)" rx="2" ry="2" />
<text x="71.55" y="79.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.1] (39,618,439 samples, 0.06%)</title><rect x="591.2" y="2037" width="0.7" height="15.0" fill="rgb(250,176,26)" rx="2" ry="2" />
<text x="594.18" y="2047.5" ></text>
</g>
<g >
<title>tcp_poll (52,990,993 samples, 0.08%)</title><rect x="795.2" y="1957" width="0.9" height="15.0" fill="rgb(207,151,49)" rx="2" ry="2" />
<text x="798.16" y="1967.5" ></text>
</g>
<g >
<title>_copy_from_user (16,798,033 samples, 0.02%)</title><rect x="378.9" y="1973" width="0.3" height="15.0" fill="rgb(222,207,20)" rx="2" ry="2" />
<text x="381.92" y="1983.5" ></text>
</g>
<g >
<title>Builtin:ArgumentsAdaptorTrampoline (358,952,232 samples, 0.52%)</title><rect x="168.7" y="1637" width="6.1" height="15.0" fill="rgb(239,26,38)" rx="2" ry="2" />
<text x="171.73" y="1647.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1989" width="13.1" height="15.0" fill="rgb(217,184,4)" rx="2" ry="2" />
<text x="60.02" y="1999.5" ></text>
</g>
<g >
<title>__fget_light (98,304,277 samples, 0.14%)</title><rect x="985.3" y="1957" width="1.7" height="15.0" fill="rgb(242,124,5)" rx="2" ry="2" />
<text x="988.32" y="1967.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (691,947,738 samples, 1.00%)</title><rect x="359.8" y="1845" width="11.7" height="15.0" fill="rgb(227,200,5)" rx="2" ry="2" />
<text x="362.79" y="1855.5" ></text>
</g>
<g >
<title>perf_swevent_add (69,257,043 samples, 0.10%)</title><rect x="750.3" y="1829" width="1.2" height="15.0" fill="rgb(211,111,18)" rx="2" ry="2" />
<text x="753.29" y="1839.5" ></text>
</g>
<g >
<title>__x64_sys_futex (3,282,888,611 samples, 4.73%)</title><rect x="323.4" y="2005" width="55.8" height="15.0" fill="rgb(248,70,7)" rx="2" ry="2" />
<text x="326.41" y="2015.5" >__x64..</text>
</g>
<g >
<title>[libnode.so.64] (136,394,792 samples, 0.20%)</title><rect x="161.3" y="1877" width="2.3" height="15.0" fill="rgb(222,107,51)" rx="2" ry="2" />
<text x="164.28" y="1887.5" ></text>
</g>
<g >
<title>aa_sk_perm (43,386,688 samples, 0.06%)</title><rect x="611.2" y="1893" width="0.8" height="15.0" fill="rgb(220,144,11)" rx="2" ry="2" />
<text x="614.22" y="1903.5" ></text>
</g>
<g >
<title>timerqueue_add (58,766,120 samples, 0.08%)</title><rect x="480.3" y="1909" width="1.0" height="15.0" fill="rgb(225,101,34)" rx="2" ry="2" />
<text x="483.31" y="1919.5" ></text>
</g>
<g >
<title>sched_clock (17,200,505 samples, 0.02%)</title><rect x="674.4" y="1861" width="0.3" height="15.0" fill="rgb(220,229,13)" rx="2" ry="2" />
<text x="677.44" y="1871.5" ></text>
</g>
<g >
<title>update_blocked_averages (87,404,619 samples, 0.13%)</title><rect x="753.7" y="1893" width="1.4" height="15.0" fill="rgb(228,34,43)" rx="2" ry="2" />
<text x="756.65" y="1903.5" ></text>
</g>
<g >
<title>reweight_entity (16,707,837 samples, 0.02%)</title><rect x="1121.5" y="1877" width="0.2" height="15.0" fill="rgb(237,186,13)" rx="2" ry="2" />
<text x="1124.47" y="1887.5" ></text>
</g>
<g >
<title>ip_finish_output2 (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1813" width="1.4" height="15.0" fill="rgb(213,160,26)" rx="2" ry="2" />
<text x="229.35" y="1823.5" ></text>
</g>
<g >
<title>schedule (50,865,780 samples, 0.07%)</title><rect x="69.2" y="133" width="0.9" height="15.0" fill="rgb(213,174,3)" rx="2" ry="2" />
<text x="72.22" y="143.5" ></text>
</g>
<g >
<title>apparmor_file_permission (61,642,174 samples, 0.09%)</title><rect x="222.7" y="1941" width="1.1" height="15.0" fill="rgb(229,47,32)" rx="2" ry="2" />
<text x="225.73" y="1951.5" ></text>
</g>
<g >
<title>__clock_gettime (44,913,099 samples, 0.06%)</title><rect x="595.3" y="2037" width="0.7" height="15.0" fill="rgb(220,184,47)" rx="2" ry="2" />
<text x="598.27" y="2047.5" ></text>
</g>
<g >
<title>psi_task_change (445,085,317 samples, 0.64%)</title><rect x="1045.8" y="1893" width="7.5" height="15.0" fill="rgb(220,95,46)" rx="2" ry="2" />
<text x="1048.77" y="1903.5" ></text>
</g>
<g >
<title>do_syscall_64 (895,430,757 samples, 1.29%)</title><rect x="781.4" y="2021" width="15.2" height="15.0" fill="rgb(251,19,35)" rx="2" ry="2" />
<text x="784.43" y="2031.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (14,197,649 samples, 0.02%)</title><rect x="541.5" y="1909" width="0.3" height="15.0" fill="rgb(239,61,35)" rx="2" ry="2" />
<text x="544.53" y="1919.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (24,632,310 samples, 0.04%)</title><rect x="1167.7" y="1877" width="0.5" height="15.0" fill="rgb(224,179,54)" rx="2" ry="2" />
<text x="1170.75" y="1887.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (26,137,738 samples, 0.04%)</title><rect x="306.9" y="1957" width="0.5" height="15.0" fill="rgb(211,175,13)" rx="2" ry="2" />
<text x="309.93" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="437" width="13.1" height="15.0" fill="rgb(216,116,45)" rx="2" ry="2" />
<text x="60.02" y="447.5" ></text>
</g>
<g >
<title>sched_clock (24,088,202 samples, 0.03%)</title><rect x="792.0" y="1845" width="0.4" height="15.0" fill="rgb(215,175,26)" rx="2" ry="2" />
<text x="794.98" y="1855.5" ></text>
</g>
<g >
<title>merge_sched_in (122,580,381 samples, 0.18%)</title><rect x="665.5" y="1861" width="2.1" height="15.0" fill="rgb(232,185,28)" rx="2" ry="2" />
<text x="668.54" y="1871.5" ></text>
</g>
<g >
<title>_raw_spin_lock (25,565,231 samples, 0.04%)</title><rect x="77.3" y="1781" width="0.4" height="15.0" fill="rgb(229,31,3)" rx="2" ry="2" />
<text x="80.27" y="1791.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1797" width="1.4" height="15.0" fill="rgb(233,122,19)" rx="2" ry="2" />
<text x="229.35" y="1807.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (28,883,136 samples, 0.04%)</title><rect x="533.8" y="1861" width="0.5" height="15.0" fill="rgb(234,60,29)" rx="2" ry="2" />
<text x="536.77" y="1871.5" ></text>
</g>
<g >
<title>net_rx_action (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1829" width="0.2" height="15.0" fill="rgb(223,46,12)" rx="2" ry="2" />
<text x="90.79" y="1839.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (14,211,680 samples, 0.02%)</title><rect x="1167.7" y="1861" width="0.3" height="15.0" fill="rgb(237,40,10)" rx="2" ry="2" />
<text x="1170.75" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1909" width="13.1" height="15.0" fill="rgb(218,30,7)" rx="2" ry="2" />
<text x="60.02" y="1919.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,012,903,729 samples, 1.46%)</title><rect x="781.4" y="2037" width="17.2" height="15.0" fill="rgb(230,71,5)" rx="2" ry="2" />
<text x="784.43" y="2047.5" ></text>
</g>
<g >
<title>__pthread_mutex_lock (30,215,986 samples, 0.04%)</title><rect x="759.1" y="2053" width="0.5" height="15.0" fill="rgb(225,62,5)" rx="2" ry="2" />
<text x="762.05" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (58,807,886 samples, 0.08%)</title><rect x="714.5" y="2005" width="1.0" height="15.0" fill="rgb(247,146,31)" rx="2" ry="2" />
<text x="717.54" y="2015.5" ></text>
</g>
<g >
<title>sock_read_iter (872,698,681 samples, 1.26%)</title><rect x="597.1" y="1941" width="14.9" height="15.0" fill="rgb(224,46,3)" rx="2" ry="2" />
<text x="600.13" y="1951.5" ></text>
</g>
<g >
<title>copy_page_to_iter (66,629,179 samples, 0.10%)</title><rect x="213.2" y="1925" width="1.1" height="15.0" fill="rgb(205,13,39)" rx="2" ry="2" />
<text x="216.20" y="1935.5" ></text>
</g>
<g >
<title>update_cfs_group (28,666,107 samples, 0.04%)</title><rect x="464.9" y="1893" width="0.5" height="15.0" fill="rgb(221,127,16)" rx="2" ry="2" />
<text x="467.93" y="1903.5" ></text>
</g>
<g >
<title>rd_kafka_send (1,220,160,881 samples, 1.76%)</title><rect x="625.3" y="2037" width="20.8" height="15.0" fill="rgb(211,209,5)" rx="2" ry="2" />
<text x="628.33" y="2047.5" ></text>
</g>
<g >
<title>vfs_write (81,057,429 samples, 0.12%)</title><rect x="452.4" y="1973" width="1.4" height="15.0" fill="rgb(219,63,33)" rx="2" ry="2" />
<text x="455.40" y="1983.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1861" width="0.2" height="15.0" fill="rgb(212,11,52)" rx="2" ry="2" />
<text x="90.79" y="1871.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (25,565,231 samples, 0.04%)</title><rect x="77.3" y="1861" width="0.4" height="15.0" fill="rgb(208,207,48)" rx="2" ry="2" />
<text x="80.27" y="1871.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (28,240,383 samples, 0.04%)</title><rect x="569.1" y="1909" width="0.4" height="15.0" fill="rgb(254,98,8)" rx="2" ry="2" />
<text x="572.05" y="1919.5" ></text>
</g>
<g >
<title>native_write_msr (7,472,675 samples, 0.01%)</title><rect x="790.5" y="1877" width="0.1" height="15.0" fill="rgb(229,222,32)" rx="2" ry="2" />
<text x="793.50" y="1887.5" ></text>
</g>
<g >
<title>ip6_xmit (173,635,321 samples, 0.25%)</title><rect x="215.2" y="1861" width="2.9" height="15.0" fill="rgb(239,25,53)" rx="2" ry="2" />
<text x="218.19" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="773" width="13.1" height="15.0" fill="rgb(223,103,37)" rx="2" ry="2" />
<text x="60.02" y="783.5" ></text>
</g>
<g >
<title>futex_wait (50,865,780 samples, 0.07%)</title><rect x="69.2" y="165" width="0.9" height="15.0" fill="rgb(207,0,45)" rx="2" ry="2" />
<text x="72.22" y="175.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (884,401,866 samples, 1.27%)</title><rect x="565.7" y="2053" width="15.1" height="15.0" fill="rgb(240,70,32)" rx="2" ry="2" />
<text x="568.73" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (16,659,180 samples, 0.02%)</title><rect x="768.6" y="1829" width="0.3" height="15.0" fill="rgb(241,15,21)" rx="2" ry="2" />
<text x="771.58" y="1839.5" ></text>
</g>
<g >
<title>do_futex (20,033,037 samples, 0.03%)</title><rect x="68.2" y="101" width="0.3" height="15.0" fill="rgb(253,0,31)" rx="2" ry="2" />
<text x="71.21" y="111.5" ></text>
</g>
<g >
<title>dequeue_entity (187,739,167 samples, 0.27%)</title><rect x="326.9" y="1893" width="3.1" height="15.0" fill="rgb(230,209,35)" rx="2" ry="2" />
<text x="329.85" y="1903.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (191,369,257 samples, 0.28%)</title><rect x="20.3" y="1589" width="3.2" height="15.0" fill="rgb(249,202,51)" rx="2" ry="2" />
<text x="23.29" y="1599.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (67,099,610 samples, 0.10%)</title><rect x="158.9" y="2005" width="1.2" height="15.0" fill="rgb(234,166,48)" rx="2" ry="2" />
<text x="161.94" y="2015.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (28,608,563 samples, 0.04%)</title><rect x="316.1" y="2005" width="0.5" height="15.0" fill="rgb(252,48,35)" rx="2" ry="2" />
<text x="319.13" y="2015.5" ></text>
</g>
<g >
<title>do_sys_poll (1,271,648,997 samples, 1.83%)</title><rect x="537.5" y="1989" width="21.6" height="15.0" fill="rgb(220,153,9)" rx="2" ry="2" />
<text x="540.54" y="1999.5" >d..</text>
</g>
<g >
<title>__x64_sys_futex (80,984,090 samples, 0.12%)</title><rect x="83.7" y="2005" width="1.4" height="15.0" fill="rgb(246,202,8)" rx="2" ry="2" />
<text x="86.73" y="2015.5" ></text>
</g>
<g >
<title>select_estimate_accuracy (37,350,909 samples, 0.05%)</title><rect x="472.4" y="1973" width="0.6" height="15.0" fill="rgb(206,200,27)" rx="2" ry="2" />
<text x="475.41" y="1983.5" ></text>
</g>
<g >
<title>perf_swevent_add (33,252,130 samples, 0.05%)</title><rect x="151.9" y="1813" width="0.5" height="15.0" fill="rgb(211,4,16)" rx="2" ry="2" />
<text x="154.87" y="1823.5" ></text>
</g>
<g >
<title>_copy_from_user (24,481,554 samples, 0.04%)</title><rect x="1170.8" y="1973" width="0.4" height="15.0" fill="rgb(247,212,16)" rx="2" ry="2" />
<text x="1173.77" y="1983.5" ></text>
</g>
<g >
<title>aa_profile_af_perm (15,783,741 samples, 0.02%)</title><rect x="611.7" y="1861" width="0.3" height="15.0" fill="rgb(247,108,5)" rx="2" ry="2" />
<text x="614.69" y="1871.5" ></text>
</g>
<g >
<title>rb_next (31,743,795 samples, 0.05%)</title><rect x="804.9" y="1845" width="0.5" height="15.0" fill="rgb(240,120,48)" rx="2" ry="2" />
<text x="807.91" y="1855.5" ></text>
</g>
<g >
<title>sock_recvmsg (17,903,662 samples, 0.03%)</title><rect x="719.6" y="1925" width="0.3" height="15.0" fill="rgb(208,208,32)" rx="2" ry="2" />
<text x="722.58" y="1935.5" ></text>
</g>
<g >
<title>__libc_read (995,090,790 samples, 1.43%)</title><rect x="596.4" y="2037" width="16.9" height="15.0" fill="rgb(253,127,53)" rx="2" ry="2" />
<text x="599.43" y="2047.5" ></text>
</g>
<g >
<title>ip6_xmit (138,502,950 samples, 0.20%)</title><rect x="446.4" y="1861" width="2.3" height="15.0" fill="rgb(251,203,25)" rx="2" ry="2" />
<text x="449.39" y="1871.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (276,757,943 samples, 0.40%)</title><rect x="466.9" y="1909" width="4.7" height="15.0" fill="rgb(224,38,0)" rx="2" ry="2" />
<text x="469.87" y="1919.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (80,040,699 samples, 0.12%)</title><rect x="380.2" y="2005" width="1.3" height="15.0" fill="rgb(245,160,33)" rx="2" ry="2" />
<text x="383.16" y="2015.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (45,044,654 samples, 0.06%)</title><rect x="799.5" y="1941" width="0.8" height="15.0" fill="rgb(247,190,43)" rx="2" ry="2" />
<text x="802.53" y="1951.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1765" width="0.2" height="15.0" fill="rgb(244,180,7)" rx="2" ry="2" />
<text x="553.58" y="1775.5" ></text>
</g>
<g >
<title>rd_slice_read (106,873,070 samples, 0.15%)</title><rect x="868.0" y="1989" width="1.8" height="15.0" fill="rgb(218,124,42)" rx="2" ry="2" />
<text x="871.01" y="1999.5" ></text>
</g>
<g >
<title>rb_next (82,512,398 samples, 0.12%)</title><rect x="767.2" y="1845" width="1.4" height="15.0" fill="rgb(221,79,6)" rx="2" ry="2" />
<text x="770.17" y="1855.5" ></text>
</g>
<g >
<title>update_curr (19,826,033 samples, 0.03%)</title><rect x="544.5" y="1893" width="0.3" height="15.0" fill="rgb(219,78,28)" rx="2" ry="2" />
<text x="547.48" y="1903.5" ></text>
</g>
<g >
<title>__schedule (68,945,518 samples, 0.10%)</title><rect x="81.7" y="1925" width="1.2" height="15.0" fill="rgb(237,210,48)" rx="2" ry="2" />
<text x="84.72" y="1935.5" ></text>
</g>
<g >
<title>futex_wait (855,075,321 samples, 1.23%)</title><rect x="479.3" y="1973" width="14.6" height="15.0" fill="rgb(253,200,48)" rx="2" ry="2" />
<text x="482.32" y="1983.5" ></text>
</g>
<g >
<title>ttwu_do_activate (14,197,649 samples, 0.02%)</title><rect x="541.5" y="1829" width="0.3" height="15.0" fill="rgb(235,146,53)" rx="2" ry="2" />
<text x="544.53" y="1839.5" ></text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromise /srv/service/node_modules/bluebird/js/release/promise.js:577 (1,409,512,557 samples, 2.03%)</title><rect x="20.3" y="1669" width="23.9" height="15.0" fill="rgb(239,19,26)" rx="2" ry="2" />
<text x="23.29" y="1679.5" >L..</text>
</g>
<g >
<title>ip_rcv_finish (44,927,374 samples, 0.06%)</title><rect x="221.5" y="1717" width="0.8" height="15.0" fill="rgb(235,150,6)" rx="2" ry="2" />
<text x="224.50" y="1727.5" ></text>
</g>
<g >
<title>ctx_sched_in (155,193,645 samples, 0.22%)</title><rect x="483.2" y="1877" width="2.7" height="15.0" fill="rgb(207,197,21)" rx="2" ry="2" />
<text x="486.24" y="1887.5" ></text>
</g>
<g >
<title>CRYPTO_THREAD_get_local@plt (106,416,811 samples, 0.15%)</title><rect x="436.5" y="2037" width="1.8" height="15.0" fill="rgb(241,117,38)" rx="2" ry="2" />
<text x="439.53" y="2047.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock (282,023,938 samples, 0.41%)</title><rect x="1008.2" y="2037" width="4.8" height="15.0" fill="rgb(244,189,37)" rx="2" ry="2" />
<text x="1011.23" y="2047.5" ></text>
</g>
<g >
<title>security_file_permission (30,657,493 samples, 0.04%)</title><rect x="612.4" y="1957" width="0.5" height="15.0" fill="rgb(236,3,24)" rx="2" ry="2" />
<text x="615.39" y="1967.5" ></text>
</g>
<g >
<title>_raw_spin_lock (21,821,640 samples, 0.03%)</title><rect x="355.4" y="1765" width="0.3" height="15.0" fill="rgb(240,90,28)" rx="2" ry="2" />
<text x="358.35" y="1775.5" ></text>
</g>
<g >
<title>run_rebalance_domains (322,548,771 samples, 0.46%)</title><rect x="169.4" y="1477" width="5.4" height="15.0" fill="rgb(211,10,45)" rx="2" ry="2" />
<text x="172.35" y="1487.5" ></text>
</g>
<g >
<title>nf_conntrack_in (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1685" width="0.2" height="15.0" fill="rgb(217,133,29)" rx="2" ry="2" />
<text x="90.79" y="1695.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (90,651,969 samples, 0.13%)</title><rect x="577.0" y="1813" width="1.5" height="15.0" fill="rgb(251,219,38)" rx="2" ry="2" />
<text x="579.95" y="1823.5" ></text>
</g>
<g >
<title>scheduler_tick (26,038,975 samples, 0.04%)</title><rect x="356.4" y="1749" width="0.4" height="15.0" fill="rgb(238,103,38)" rx="2" ry="2" />
<text x="359.40" y="1759.5" ></text>
</g>
<g >
<title>__schedule (50,865,780 samples, 0.07%)</title><rect x="69.2" y="117" width="0.9" height="15.0" fill="rgb(205,44,36)" rx="2" ry="2" />
<text x="72.22" y="127.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1605" width="13.1" height="15.0" fill="rgb(249,145,7)" rx="2" ry="2" />
<text x="60.02" y="1615.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (26,504,054 samples, 0.04%)</title><rect x="559.1" y="2005" width="0.5" height="15.0" fill="rgb(236,80,51)" rx="2" ry="2" />
<text x="562.15" y="2015.5" ></text>
</g>
<g >
<title>__errno_location@plt (30,054,417 samples, 0.04%)</title><rect x="70.5" y="2037" width="0.5" height="15.0" fill="rgb(221,129,13)" rx="2" ry="2" />
<text x="73.46" y="2047.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (22,024,604 samples, 0.03%)</title><rect x="155.8" y="1829" width="0.4" height="15.0" fill="rgb(230,37,13)" rx="2" ry="2" />
<text x="158.83" y="1839.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (31,039,577 samples, 0.04%)</title><rect x="595.5" y="1989" width="0.5" height="15.0" fill="rgb(224,24,4)" rx="2" ry="2" />
<text x="598.50" y="1999.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (2,182,774,155 samples, 3.14%)</title><rect x="14.8" y="1829" width="37.1" height="15.0" fill="rgb(251,154,22)" rx="2" ry="2" />
<text x="17.79" y="1839.5" >Int..</text>
</g>
<g >
<title>__pthread_mutex_lock (117,509,603 samples, 0.17%)</title><rect x="314.6" y="2053" width="2.0" height="15.0" fill="rgb(233,68,16)" rx="2" ry="2" />
<text x="317.62" y="2063.5" ></text>
</g>
<g >
<title>__x64_sys_futex (677,771,413 samples, 0.98%)</title><rect x="799.5" y="2005" width="11.6" height="15.0" fill="rgb(246,36,42)" rx="2" ry="2" />
<text x="802.53" y="2015.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_pwait (195,538,411 samples, 0.28%)</title><rect x="87.8" y="2005" width="3.3" height="15.0" fill="rgb(215,24,19)" rx="2" ry="2" />
<text x="90.79" y="2015.5" ></text>
</g>
<g >
<title>native_write_msr (1,054,300,797 samples, 1.52%)</title><rect x="330.8" y="1861" width="17.9" height="15.0" fill="rgb(244,29,38)" rx="2" ry="2" />
<text x="333.76" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1125" width="13.1" height="15.0" fill="rgb(211,107,32)" rx="2" ry="2" />
<text x="60.02" y="1135.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (6,503,102 samples, 0.01%)</title><rect x="805.4" y="1845" width="0.2" height="15.0" fill="rgb(243,165,54)" rx="2" ry="2" />
<text x="808.45" y="1855.5" ></text>
</g>
<g >
<title>psi_task_change (9,599,484 samples, 0.01%)</title><rect x="1167.8" y="1749" width="0.2" height="15.0" fill="rgb(225,35,47)" rx="2" ry="2" />
<text x="1170.80" y="1759.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,070,792,026 samples, 1.54%)</title><rect x="456.0" y="2021" width="18.2" height="15.0" fill="rgb(218,210,41)" rx="2" ry="2" />
<text x="459.04" y="2031.5" ></text>
</g>
<g >
<title>update_blocked_averages (128,478,067 samples, 0.19%)</title><rect x="578.5" y="1877" width="2.2" height="15.0" fill="rgb(219,76,41)" rx="2" ry="2" />
<text x="581.49" y="1887.5" ></text>
</g>
<g >
<title>futex_wake (26,113,955 samples, 0.04%)</title><rect x="66.9" y="53" width="0.5" height="15.0" fill="rgb(252,57,46)" rx="2" ry="2" />
<text x="69.91" y="63.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (480,674,899 samples, 0.69%)</title><rect x="699.8" y="1957" width="8.2" height="15.0" fill="rgb(209,60,53)" rx="2" ry="2" />
<text x="702.83" y="1967.5" ></text>
</g>
<g >
<title>[libssl.so.1.1] (28,316,394 samples, 0.04%)</title><rect x="518.9" y="2037" width="0.5" height="15.0" fill="rgb(224,66,15)" rx="2" ry="2" />
<text x="521.87" y="2047.5" ></text>
</g>
<g >
<title>dequeue_task_fair (187,739,167 samples, 0.27%)</title><rect x="326.9" y="1909" width="3.1" height="15.0" fill="rgb(208,207,37)" rx="2" ry="2" />
<text x="329.85" y="1919.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (129,382,678 samples, 0.19%)</title><rect x="574.3" y="1845" width="2.2" height="15.0" fill="rgb(222,34,54)" rx="2" ry="2" />
<text x="577.30" y="1855.5" ></text>
</g>
<g >
<title>__poll (1,471,426,251 samples, 2.12%)</title><rect x="536.7" y="2053" width="25.0" height="15.0" fill="rgb(217,146,11)" rx="2" ry="2" />
<text x="539.71" y="2063.5" >_..</text>
</g>
<g >
<title>tcp_recvmsg (132,435,897 samples, 0.19%)</title><rect x="717.3" y="1909" width="2.3" height="15.0" fill="rgb(207,107,11)" rx="2" ry="2" />
<text x="720.33" y="1919.5" ></text>
</g>
<g >
<title>native_write_msr (8,625,437 samples, 0.01%)</title><rect x="467.4" y="1877" width="0.1" height="15.0" fill="rgb(210,80,25)" rx="2" ry="2" />
<text x="470.36" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (211,552,704 samples, 0.30%)</title><rect x="440.7" y="2037" width="3.6" height="15.0" fill="rgb(225,11,25)" rx="2" ry="2" />
<text x="443.70" y="2047.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (120,734,843 samples, 0.17%)</title><rect x="475.3" y="2053" width="2.0" height="15.0" fill="rgb(215,164,34)" rx="2" ry="2" />
<text x="478.26" y="2063.5" ></text>
</g>
<g >
<title>cfree (45,033,912 samples, 0.06%)</title><rect x="58.2" y="37" width="0.8" height="15.0" fill="rgb(229,67,45)" rx="2" ry="2" />
<text x="61.24" y="47.5" ></text>
</g>
<g >
<title>dequeue_entity (87,943,360 samples, 0.13%)</title><rect x="762.9" y="1893" width="1.5" height="15.0" fill="rgb(233,198,3)" rx="2" ry="2" />
<text x="765.88" y="1903.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (24,329,495 samples, 0.04%)</title><rect x="560.1" y="1957" width="0.4" height="15.0" fill="rgb(228,157,9)" rx="2" ry="2" />
<text x="563.08" y="1967.5" ></text>
</g>
<g >
<title>do_futex (39,389,132 samples, 0.06%)</title><rect x="68.5" y="149" width="0.7" height="15.0" fill="rgb(242,116,23)" rx="2" ry="2" />
<text x="71.55" y="159.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (124,178,928 samples, 0.18%)</title><rect x="73.4" y="1909" width="2.1" height="15.0" fill="rgb(220,194,19)" rx="2" ry="2" />
<text x="76.39" y="1919.5" ></text>
</g>
<g >
<title>nf_hook_slow (173,635,321 samples, 0.25%)</title><rect x="215.2" y="1685" width="2.9" height="15.0" fill="rgb(235,76,28)" rx="2" ry="2" />
<text x="218.19" y="1695.5" ></text>
</g>
<g >
<title>v8::HandleScope::CreateHandle (142,173,598 samples, 0.20%)</title><rect x="11.3" y="1909" width="2.5" height="15.0" fill="rgb(220,91,18)" rx="2" ry="2" />
<text x="14.34" y="1919.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (132,870,452 samples, 0.19%)</title><rect x="845.1" y="1941" width="2.2" height="15.0" fill="rgb(246,30,3)" rx="2" ry="2" />
<text x="848.09" y="1951.5" ></text>
</g>
<g >
<title>rd_kafka_q_pop_serve.localalias.12 (70,508,849 samples, 0.10%)</title><rect x="160.1" y="2053" width="1.2" height="15.0" fill="rgb(223,176,34)" rx="2" ry="2" />
<text x="163.08" y="2063.5" ></text>
</g>
<g >
<title>EVP_MD_CTX_md (22,407,098 samples, 0.03%)</title><rect x="189.0" y="2053" width="0.4" height="15.0" fill="rgb(211,200,7)" rx="2" ry="2" />
<text x="192.02" y="2063.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (14,947,458 samples, 0.02%)</title><rect x="990.5" y="1909" width="0.3" height="15.0" fill="rgb(221,157,17)" rx="2" ry="2" />
<text x="993.52" y="1919.5" ></text>
</g>
<g >
<title>__fget_files (113,015,912 samples, 0.16%)</title><rect x="539.3" y="1957" width="1.9" height="15.0" fill="rgb(206,227,20)" rx="2" ry="2" />
<text x="542.28" y="1967.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (224,046,367 samples, 0.32%)</title><rect x="225.7" y="2021" width="3.8" height="15.0" fill="rgb(206,111,33)" rx="2" ry="2" />
<text x="228.70" y="2031.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (810,402,359 samples, 1.17%)</title><rect x="479.8" y="1957" width="13.8" height="15.0" fill="rgb(250,24,45)" rx="2" ry="2" />
<text x="482.85" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (148,982,659 samples, 0.21%)</title><rect x="592.7" y="2037" width="2.6" height="15.0" fill="rgb(233,33,45)" rx="2" ry="2" />
<text x="595.73" y="2047.5" ></text>
</g>
<g >
<title>sched_clock_cpu (24,088,202 samples, 0.03%)</title><rect x="792.0" y="1861" width="0.4" height="15.0" fill="rgb(230,38,9)" rx="2" ry="2" />
<text x="794.98" y="1871.5" ></text>
</g>
<g >
<title>try_to_wake_up (6,503,102 samples, 0.01%)</title><rect x="805.4" y="1781" width="0.2" height="15.0" fill="rgb(223,150,41)" rx="2" ry="2" />
<text x="808.45" y="1791.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (38,312,876 samples, 0.06%)</title><rect x="808.5" y="1797" width="0.6" height="15.0" fill="rgb(213,147,40)" rx="2" ry="2" />
<text x="811.48" y="1807.5" ></text>
</g>
<g >
<title>ttwu_do_activate (24,329,495 samples, 0.04%)</title><rect x="560.1" y="1861" width="0.4" height="15.0" fill="rgb(207,132,43)" rx="2" ry="2" />
<text x="563.08" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,011,780 samples, 0.04%)</title><rect x="740.7" y="2037" width="0.5" height="15.0" fill="rgb(214,3,54)" rx="2" ry="2" />
<text x="743.65" y="2047.5" ></text>
</g>
<g >
<title>native_write_msr (8,988,698 samples, 0.01%)</title><rect x="483.1" y="1861" width="0.1" height="15.0" fill="rgb(236,64,18)" rx="2" ry="2" />
<text x="486.09" y="1871.5" ></text>
</g>
<g >
<title>ctx_sched_in (141,410,319 samples, 0.20%)</title><rect x="803.0" y="1877" width="2.4" height="15.0" fill="rgb(212,134,22)" rx="2" ry="2" />
<text x="806.05" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (1,146,270,485 samples, 1.65%)</title><rect x="436.5" y="2053" width="19.5" height="15.0" fill="rgb(208,168,51)" rx="2" ry="2" />
<text x="439.53" y="2063.5" ></text>
</g>
<g >
<title>node::MakeCallback (564,337,124 samples, 0.81%)</title><rect x="165.2" y="2005" width="9.6" height="15.0" fill="rgb(215,36,50)" rx="2" ry="2" />
<text x="168.24" y="2015.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (79,643,258 samples, 0.11%)</title><rect x="493.9" y="2005" width="1.3" height="15.0" fill="rgb(220,61,6)" rx="2" ry="2" />
<text x="496.85" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1621" width="13.1" height="15.0" fill="rgb(241,192,25)" rx="2" ry="2" />
<text x="60.02" y="1631.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (441,546,347 samples, 0.64%)</title><rect x="602.1" y="1893" width="7.5" height="15.0" fill="rgb(206,156,22)" rx="2" ry="2" />
<text x="605.12" y="1903.5" ></text>
</g>
<g >
<title>run_rebalance_domains (22,024,604 samples, 0.03%)</title><rect x="155.8" y="1797" width="0.4" height="15.0" fill="rgb(250,154,22)" rx="2" ry="2" />
<text x="158.83" y="1807.5" ></text>
</g>
<g >
<title>native_sched_clock (17,200,505 samples, 0.02%)</title><rect x="674.4" y="1845" width="0.3" height="15.0" fill="rgb(240,126,9)" rx="2" ry="2" />
<text x="677.44" y="1855.5" ></text>
</g>
<g >
<title>do_syscall_64 (677,771,413 samples, 0.98%)</title><rect x="799.5" y="2021" width="11.6" height="15.0" fill="rgb(240,58,44)" rx="2" ry="2" />
<text x="802.53" y="2031.5" ></text>
</g>
<g >
<title>security_file_permission (22,670,270 samples, 0.03%)</title><rect x="449.3" y="1957" width="0.4" height="15.0" fill="rgb(244,229,0)" rx="2" ry="2" />
<text x="452.33" y="1967.5" ></text>
</g>
<g >
<title>enqueue_entity (24,329,495 samples, 0.04%)</title><rect x="560.1" y="1829" width="0.4" height="15.0" fill="rgb(232,103,19)" rx="2" ry="2" />
<text x="563.08" y="1839.5" ></text>
</g>
<g >
<title>Builtin:CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (197,622,438 samples, 0.28%)</title><rect x="44.8" y="1717" width="3.3" height="15.0" fill="rgb(252,154,35)" rx="2" ry="2" />
<text x="47.78" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1941" width="13.1" height="15.0" fill="rgb(248,105,50)" rx="2" ry="2" />
<text x="60.02" y="1951.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (7,197,956 samples, 0.01%)</title><rect x="485.9" y="1749" width="0.1" height="15.0" fill="rgb(232,214,17)" rx="2" ry="2" />
<text x="488.88" y="1759.5" ></text>
</g>
<g >
<title>__pthread_mutex_lock (919,835,923 samples, 1.32%)</title><rect x="992.6" y="2037" width="15.6" height="15.0" fill="rgb(246,148,7)" rx="2" ry="2" />
<text x="995.60" y="2047.5" ></text>
</g>
<g >
<title>update_min_vruntime (130,035,548 samples, 0.19%)</title><rect x="276.3" y="1877" width="2.2" height="15.0" fill="rgb(217,41,46)" rx="2" ry="2" />
<text x="279.30" y="1887.5" ></text>
</g>
<g >
<title>__check_object_size (28,883,136 samples, 0.04%)</title><rect x="533.8" y="1845" width="0.5" height="15.0" fill="rgb(221,177,19)" rx="2" ry="2" />
<text x="536.77" y="1855.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (11,979,223 samples, 0.02%)</title><rect x="474.2" y="2005" width="0.2" height="15.0" fill="rgb(220,128,50)" rx="2" ry="2" />
<text x="477.24" y="2015.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1765" width="1.4" height="15.0" fill="rgb(207,8,54)" rx="2" ry="2" />
<text x="229.35" y="1775.5" ></text>
</g>
<g >
<title>Builtin:ArgumentsAdaptorTrampoline (358,952,232 samples, 0.52%)</title><rect x="168.7" y="1685" width="6.1" height="15.0" fill="rgb(235,161,10)" rx="2" ry="2" />
<text x="171.73" y="1695.5" ></text>
</g>
<g >
<title>psi_task_change (83,988,436 samples, 0.12%)</title><rect x="755.1" y="1925" width="1.5" height="15.0" fill="rgb(205,82,47)" rx="2" ry="2" />
<text x="758.14" y="1935.5" ></text>
</g>
<g >
<title>rd_buf_get_writable0.isra.2 (17,493,426 samples, 0.03%)</title><rect x="771.4" y="2053" width="0.3" height="15.0" fill="rgb(210,22,6)" rx="2" ry="2" />
<text x="774.45" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1877" width="13.1" height="15.0" fill="rgb(236,97,52)" rx="2" ry="2" />
<text x="60.02" y="1887.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,503,102 samples, 0.01%)</title><rect x="805.4" y="1877" width="0.2" height="15.0" fill="rgb(243,204,32)" rx="2" ry="2" />
<text x="808.45" y="1887.5" ></text>
</g>
<g >
<title>aa_file_perm (61,642,174 samples, 0.09%)</title><rect x="222.7" y="1925" width="1.1" height="15.0" fill="rgb(223,214,19)" rx="2" ry="2" />
<text x="225.73" y="1935.5" ></text>
</g>
<g >
<title>update_cfs_group (33,678,463 samples, 0.05%)</title><rect x="274.0" y="1893" width="0.5" height="15.0" fill="rgb(244,129,25)" rx="2" ry="2" />
<text x="276.97" y="1903.5" ></text>
</g>
<g >
<title>inet6_recvmsg (293,857,869 samples, 0.42%)</title><rect x="597.1" y="1925" width="5.0" height="15.0" fill="rgb(254,93,17)" rx="2" ry="2" />
<text x="600.13" y="1935.5" ></text>
</g>
<g >
<title>eventfd_write (279,815,914 samples, 0.40%)</title><rect x="72.9" y="1957" width="4.8" height="15.0" fill="rgb(212,43,13)" rx="2" ry="2" />
<text x="75.94" y="1967.5" ></text>
</g>
<g >
<title>rdk:main (22,108,260,197 samples, 31.84%)</title><rect x="814.2" y="2069" width="375.8" height="15.0" fill="rgb(242,60,39)" rx="2" ry="2" />
<text x="817.24" y="2079.5" >rdk:main</text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1285" width="13.1" height="15.0" fill="rgb(243,109,14)" rx="2" ry="2" />
<text x="60.02" y="1295.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (58,766,120 samples, 0.08%)</title><rect x="480.3" y="1941" width="1.0" height="15.0" fill="rgb(223,147,39)" rx="2" ry="2" />
<text x="483.31" y="1951.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (123,029,533 samples, 0.18%)</title><rect x="807.0" y="1845" width="2.1" height="15.0" fill="rgb(214,87,46)" rx="2" ry="2" />
<text x="810.04" y="1855.5" ></text>
</g>
<g >
<title>event_sched_in (14,969,665 samples, 0.02%)</title><rect x="790.7" y="1845" width="0.3" height="15.0" fill="rgb(214,88,19)" rx="2" ry="2" />
<text x="793.71" y="1855.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (6,503,102 samples, 0.01%)</title><rect x="805.4" y="1861" width="0.2" height="15.0" fill="rgb(253,55,8)" rx="2" ry="2" />
<text x="808.45" y="1871.5" ></text>
</g>
<g >
<title>dequeue_task_fair (102,122,507 samples, 0.15%)</title><rect x="481.3" y="1909" width="1.7" height="15.0" fill="rgb(243,112,3)" rx="2" ry="2" />
<text x="484.31" y="1919.5" ></text>
</g>
<g >
<title>__schedule (479,118,313 samples, 0.69%)</title><rect x="699.9" y="1925" width="8.1" height="15.0" fill="rgb(253,19,53)" rx="2" ry="2" />
<text x="702.86" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,033,037 samples, 0.03%)</title><rect x="68.2" y="149" width="0.3" height="15.0" fill="rgb(212,146,24)" rx="2" ry="2" />
<text x="71.21" y="159.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (118,073,139 samples, 0.17%)</title><rect x="248.0" y="2037" width="2.0" height="15.0" fill="rgb(219,89,25)" rx="2" ry="2" />
<text x="251.02" y="2047.5" ></text>
</g>
<g >
<title>process_backlog (173,635,321 samples, 0.25%)</title><rect x="215.2" y="1733" width="2.9" height="15.0" fill="rgb(225,9,38)" rx="2" ry="2" />
<text x="218.19" y="1743.5" ></text>
</g>
<g >
<title>sched_clock (1,098,350,162 samples, 1.58%)</title><rect x="93.0" y="1893" width="18.7" height="15.0" fill="rgb(213,84,3)" rx="2" ry="2" />
<text x="96.00" y="1903.5" ></text>
</g>
<g >
<title>timerqueue_del (30,325,063 samples, 0.04%)</title><rect x="1170.3" y="1909" width="0.5" height="15.0" fill="rgb(239,196,47)" rx="2" ry="2" />
<text x="1173.25" y="1919.5" ></text>
</g>
<g >
<title>record_times (16,002,376 samples, 0.02%)</title><rect x="1170.0" y="1877" width="0.3" height="15.0" fill="rgb(246,192,36)" rx="2" ry="2" />
<text x="1172.98" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="645" width="13.1" height="15.0" fill="rgb(250,80,23)" rx="2" ry="2" />
<text x="60.02" y="655.5" ></text>
</g>
<g >
<title>update_curr (12,444,241 samples, 0.02%)</title><rect x="116.6" y="1877" width="0.2" height="15.0" fill="rgb(249,118,13)" rx="2" ry="2" />
<text x="119.61" y="1887.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (24,958,067 samples, 0.04%)</title><rect x="776.6" y="2021" width="0.4" height="15.0" fill="rgb(213,72,27)" rx="2" ry="2" />
<text x="779.61" y="2031.5" ></text>
</g>
<g >
<title>mtx_unlock (22,373,865 samples, 0.03%)</title><rect x="320.3" y="2053" width="0.4" height="15.0" fill="rgb(242,190,39)" rx="2" ry="2" />
<text x="323.28" y="2063.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (18,877,380 samples, 0.03%)</title><rect x="550.8" y="1893" width="0.4" height="15.0" fill="rgb(218,160,32)" rx="2" ry="2" />
<text x="553.84" y="1903.5" ></text>
</g>
<g >
<title>tick_sched_timer (28,608,563 samples, 0.04%)</title><rect x="316.1" y="1957" width="0.5" height="15.0" fill="rgb(249,172,5)" rx="2" ry="2" />
<text x="319.13" y="1967.5" ></text>
</g>
<g >
<title>InterpretedFunction:Promise._dereferenceTrace /srv/service/node_modules/bluebird/js/release/debuggability.js:396 (1,218,143,300 samples, 1.75%)</title><rect x="23.5" y="1637" width="20.7" height="15.0" fill="rgb(217,145,5)" rx="2" ry="2" />
<text x="26.54" y="1647.5" ></text>
</g>
<g >
<title>refill_stock (58,487,805 samples, 0.08%)</title><rect x="228.5" y="1829" width="1.0" height="15.0" fill="rgb(224,196,11)" rx="2" ry="2" />
<text x="231.52" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="725" width="13.1" height="15.0" fill="rgb(224,192,36)" rx="2" ry="2" />
<text x="60.02" y="735.5" ></text>
</g>
<g >
<title>perf_swevent_add (11,542,168 samples, 0.02%)</title><rect x="701.7" y="1813" width="0.2" height="15.0" fill="rgb(213,38,53)" rx="2" ry="2" />
<text x="704.74" y="1823.5" ></text>
</g>
<g >
<title>__condvar_cancel_waiting (27,246,490 samples, 0.04%)</title><rect x="80.8" y="2053" width="0.5" height="15.0" fill="rgb(243,214,14)" rx="2" ry="2" />
<text x="83.81" y="2063.5" ></text>
</g>
<g >
<title>EVP_CIPHER_CTX_ctrl (27,480,068 samples, 0.04%)</title><rect x="201.7" y="2021" width="0.4" height="15.0" fill="rgb(230,141,7)" rx="2" ry="2" />
<text x="204.66" y="2031.5" ></text>
</g>
<g >
<title>rdk:broker1004 (3,672,262,598 samples, 5.29%)</title><rect x="712.1" y="2069" width="62.4" height="15.0" fill="rgb(251,159,26)" rx="2" ry="2" />
<text x="715.10" y="2079.5" >rdk:br..</text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1,489,173,246 samples, 2.14%)</title><rect x="111.7" y="2053" width="25.3" height="15.0" fill="rgb(214,92,31)" rx="2" ry="2" />
<text x="114.67" y="2063.5" >p..</text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (2,552,638,440 samples, 3.68%)</title><rect x="263.5" y="1973" width="43.4" height="15.0" fill="rgb(219,85,30)" rx="2" ry="2" />
<text x="266.55" y="1983.5" >sche..</text>
</g>
<g >
<title>newidle_balance (110,831,610 samples, 0.16%)</title><rect x="156.2" y="1893" width="1.9" height="15.0" fill="rgb(216,72,23)" rx="2" ry="2" />
<text x="159.23" y="1903.5" ></text>
</g>
<g >
<title>enqueue_task_fair (31,259,811 samples, 0.05%)</title><rect x="44.2" y="1573" width="0.6" height="15.0" fill="rgb(219,78,24)" rx="2" ry="2" />
<text x="47.25" y="1583.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1781" width="9.9" height="15.0" fill="rgb(236,0,35)" rx="2" ry="2" />
<text x="526.86" y="1791.5" ></text>
</g>
<g >
<title>do_syscall_64 (195,538,411 samples, 0.28%)</title><rect x="87.8" y="2021" width="3.3" height="15.0" fill="rgb(205,142,22)" rx="2" ry="2" />
<text x="90.79" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="2005" width="13.1" height="15.0" fill="rgb(252,53,51)" rx="2" ry="2" />
<text x="60.02" y="2015.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (25,565,231 samples, 0.04%)</title><rect x="77.3" y="1877" width="0.4" height="15.0" fill="rgb(222,200,15)" rx="2" ry="2" />
<text x="80.27" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (58,807,886 samples, 0.08%)</title><rect x="714.5" y="2037" width="1.0" height="15.0" fill="rgb(240,129,4)" rx="2" ry="2" />
<text x="717.54" y="2047.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,098,350,162 samples, 1.58%)</title><rect x="93.0" y="2005" width="18.7" height="15.0" fill="rgb(232,81,28)" rx="2" ry="2" />
<text x="96.00" y="2015.5" ></text>
</g>
<g >
<title>ipv4_dst_check (30,161,439 samples, 0.04%)</title><rect x="218.4" y="1845" width="0.5" height="15.0" fill="rgb(250,191,21)" rx="2" ry="2" />
<text x="221.39" y="1855.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (31,259,811 samples, 0.05%)</title><rect x="44.2" y="1653" width="0.6" height="15.0" fill="rgb(240,222,52)" rx="2" ry="2" />
<text x="47.25" y="1663.5" ></text>
</g>
<g >
<title>find_busiest_group (691,947,738 samples, 1.00%)</title><rect x="359.8" y="1861" width="11.7" height="15.0" fill="rgb(220,151,9)" rx="2" ry="2" />
<text x="362.79" y="1871.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (61,730,172 samples, 0.09%)</title><rect x="355.4" y="1797" width="1.0" height="15.0" fill="rgb(235,114,40)" rx="2" ry="2" />
<text x="358.35" y="1807.5" ></text>
</g>
<g >
<title>ip_finish_output2 (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1861" width="9.9" height="15.0" fill="rgb(207,12,42)" rx="2" ry="2" />
<text x="526.86" y="1871.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (23,771,023 samples, 0.03%)</title><rect x="500.8" y="1957" width="0.4" height="15.0" fill="rgb(206,127,37)" rx="2" ry="2" />
<text x="503.80" y="1967.5" ></text>
</g>
<g >
<title>call_timer_fn (25,565,231 samples, 0.04%)</title><rect x="77.3" y="1813" width="0.4" height="15.0" fill="rgb(245,63,9)" rx="2" ry="2" />
<text x="80.27" y="1823.5" ></text>
</g>
<g >
<title>_copy_to_iter (30,857,894 samples, 0.04%)</title><rect x="609.6" y="1861" width="0.5" height="15.0" fill="rgb(252,79,25)" rx="2" ry="2" />
<text x="612.63" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="677" width="13.1" height="15.0" fill="rgb(249,161,7)" rx="2" ry="2" />
<text x="60.02" y="687.5" ></text>
</g>
<g >
<title>inet_recvmsg (535,454,124 samples, 0.77%)</title><rect x="602.1" y="1925" width="9.1" height="15.0" fill="rgb(238,201,2)" rx="2" ry="2" />
<text x="605.12" y="1935.5" ></text>
</g>
<g >
<title>plist_del (29,094,152 samples, 0.04%)</title><rect x="567.2" y="1941" width="0.5" height="15.0" fill="rgb(252,207,2)" rx="2" ry="2" />
<text x="570.23" y="1951.5" ></text>
</g>
<g >
<title>schedule (706,321,785 samples, 1.02%)</title><rect x="568.7" y="1941" width="12.0" height="15.0" fill="rgb(230,197,29)" rx="2" ry="2" />
<text x="571.67" y="1951.5" ></text>
</g>
<g >
<title>common_interrupt (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1893" width="0.2" height="15.0" fill="rgb(231,68,28)" rx="2" ry="2" />
<text x="553.58" y="1903.5" ></text>
</g>
<g >
<title>newidle_balance (1,234,691,860 samples, 1.78%)</title><rect x="357.0" y="1893" width="21.0" height="15.0" fill="rgb(246,162,49)" rx="2" ry="2" />
<text x="360.00" y="1903.5" ></text>
</g>
<g >
<title>fsnotify (30,657,493 samples, 0.04%)</title><rect x="612.4" y="1941" width="0.5" height="15.0" fill="rgb(234,210,3)" rx="2" ry="2" />
<text x="615.39" y="1951.5" ></text>
</g>
<g >
<title>update_load_avg (46,286,925 samples, 0.07%)</title><rect x="763.6" y="1877" width="0.8" height="15.0" fill="rgb(252,94,15)" rx="2" ry="2" />
<text x="766.59" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,017,393,010 samples, 1.47%)</title><rect x="719.9" y="2021" width="17.3" height="15.0" fill="rgb(220,18,32)" rx="2" ry="2" />
<text x="722.89" y="2031.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (66,629,179 samples, 0.10%)</title><rect x="213.2" y="1909" width="1.1" height="15.0" fill="rgb(221,213,33)" rx="2" ry="2" />
<text x="216.20" y="1919.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (31,259,811 samples, 0.05%)</title><rect x="44.2" y="1669" width="0.6" height="15.0" fill="rgb(219,210,33)" rx="2" ry="2" />
<text x="47.25" y="1679.5" ></text>
</g>
<g >
<title>ip_finish_output2 (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1861" width="1.2" height="15.0" fill="rgb(237,209,23)" rx="2" ry="2" />
<text x="721.38" y="1871.5" ></text>
</g>
<g >
<title>newidle_balance (67,371,472 samples, 0.10%)</title><rect x="81.7" y="1893" width="1.2" height="15.0" fill="rgb(213,63,28)" rx="2" ry="2" />
<text x="84.74" y="1903.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (44,927,374 samples, 0.06%)</title><rect x="221.5" y="1669" width="0.8" height="15.0" fill="rgb(230,205,35)" rx="2" ry="2" />
<text x="224.50" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (58,807,886 samples, 0.08%)</title><rect x="714.5" y="1989" width="1.0" height="15.0" fill="rgb(220,146,6)" rx="2" ry="2" />
<text x="717.54" y="1999.5" ></text>
</g>
<g >
<title>perf_event_sched_in (18,830,967 samples, 0.03%)</title><rect x="354.9" y="1877" width="0.3" height="15.0" fill="rgb(250,223,29)" rx="2" ry="2" />
<text x="357.91" y="1887.5" ></text>
</g>
<g >
<title>futex_wait (1,281,913,892 samples, 1.85%)</title><rect x="137.1" y="1973" width="21.8" height="15.0" fill="rgb(226,80,20)" rx="2" ry="2" />
<text x="140.13" y="1983.5" >f..</text>
</g>
<g >
<title>__local_bh_enable_ip (198,096,218 samples, 0.29%)</title><rect x="218.9" y="1845" width="3.4" height="15.0" fill="rgb(243,191,8)" rx="2" ry="2" />
<text x="221.90" y="1855.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (198,096,218 samples, 0.29%)</title><rect x="218.9" y="1781" width="3.4" height="15.0" fill="rgb(247,92,24)" rx="2" ry="2" />
<text x="221.90" y="1791.5" ></text>
</g>
<g >
<title>Nan::AsyncExecute (6,767,006 samples, 0.01%)</title><rect x="61.8" y="37" width="0.1" height="15.0" fill="rgb(240,82,11)" rx="2" ry="2" />
<text x="64.81" y="47.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="821" width="13.1" height="15.0" fill="rgb(243,167,8)" rx="2" ry="2" />
<text x="60.02" y="831.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (22,361,747 samples, 0.03%)</title><rect x="69.2" y="85" width="0.4" height="15.0" fill="rgb(216,87,27)" rx="2" ry="2" />
<text x="72.22" y="95.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (1,340,026,599 samples, 1.93%)</title><rect x="1144.9" y="1861" width="22.8" height="15.0" fill="rgb(225,39,15)" rx="2" ry="2" />
<text x="1147.90" y="1871.5" >v..</text>
</g>
<g >
<title>update_blocked_averages (115,894,292 samples, 0.17%)</title><rect x="671.7" y="1893" width="1.9" height="15.0" fill="rgb(245,74,25)" rx="2" ry="2" />
<text x="674.65" y="1903.5" ></text>
</g>
<g >
<title>ktime_get (63,049,883 samples, 0.09%)</title><rect x="610.1" y="1861" width="1.1" height="15.0" fill="rgb(249,58,53)" rx="2" ry="2" />
<text x="613.15" y="1871.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1845" width="9.9" height="15.0" fill="rgb(246,179,42)" rx="2" ry="2" />
<text x="526.86" y="1855.5" ></text>
</g>
<g >
<title>irq_exit_rcu (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1877" width="0.2" height="15.0" fill="rgb(247,38,2)" rx="2" ry="2" />
<text x="553.58" y="1887.5" ></text>
</g>
<g >
<title>node (10,509,789,726 samples, 15.14%)</title><rect x="10.0" y="2069" width="178.6" height="15.0" fill="rgb(250,197,24)" rx="2" ry="2" />
<text x="13.00" y="2079.5" >node</text>
</g>
<g >
<title>__update_load_avg_cfs_rq (18,244,375 samples, 0.03%)</title><rect x="133.0" y="1861" width="0.3" height="15.0" fill="rgb(218,224,11)" rx="2" ry="2" />
<text x="135.95" y="1871.5" ></text>
</g>
<g >
<title>timerqueue_add (98,596,589 samples, 0.14%)</title><rect x="784.1" y="1925" width="1.7" height="15.0" fill="rgb(222,224,6)" rx="2" ry="2" />
<text x="787.11" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,098,350,162 samples, 1.58%)</title><rect x="93.0" y="2037" width="18.7" height="15.0" fill="rgb(213,117,23)" rx="2" ry="2" />
<text x="96.00" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1733" width="13.1" height="15.0" fill="rgb(233,7,54)" rx="2" ry="2" />
<text x="60.02" y="1743.5" ></text>
</g>
<g >
<title>do_syscall_64 (26,897,661 samples, 0.04%)</title><rect x="536.3" y="2021" width="0.4" height="15.0" fill="rgb(217,76,52)" rx="2" ry="2" />
<text x="539.26" y="2031.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (18,723,422 samples, 0.03%)</title><rect x="541.9" y="1957" width="0.3" height="15.0" fill="rgb(233,214,21)" rx="2" ry="2" />
<text x="544.88" y="1967.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (18,723,422 samples, 0.03%)</title><rect x="541.9" y="1941" width="0.3" height="15.0" fill="rgb(216,30,50)" rx="2" ry="2" />
<text x="544.88" y="1951.5" ></text>
</g>
<g >
<title>sock_sendmsg (314,096,761 samples, 0.45%)</title><rect x="613.3" y="1925" width="5.4" height="15.0" fill="rgb(215,187,35)" rx="2" ry="2" />
<text x="616.34" y="1935.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (246,631,530 samples, 0.36%)</title><rect x="605.4" y="1781" width="4.2" height="15.0" fill="rgb(224,141,49)" rx="2" ry="2" />
<text x="608.43" y="1791.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (137,246,476 samples, 0.20%)</title><rect x="116.9" y="1877" width="2.4" height="15.0" fill="rgb(248,178,23)" rx="2" ry="2" />
<text x="119.92" y="1887.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (445,085,317 samples, 0.64%)</title><rect x="1045.8" y="1941" width="7.5" height="15.0" fill="rgb(252,188,40)" rx="2" ry="2" />
<text x="1048.77" y="1951.5" ></text>
</g>
<g >
<title>new_sync_read (616,431,007 samples, 0.89%)</title><rect x="211.8" y="1957" width="10.5" height="15.0" fill="rgb(231,56,33)" rx="2" ry="2" />
<text x="214.79" y="1967.5" ></text>
</g>
<g >
<title>Stub:CallApiCallbackStub (116,379,302 samples, 0.17%)</title><rect x="48.5" y="1749" width="2.0" height="15.0" fill="rgb(236,22,17)" rx="2" ry="2" />
<text x="51.50" y="1759.5" ></text>
</g>
<g >
<title>merge_sched_in (26,488,638 samples, 0.04%)</title><rect x="572.7" y="1845" width="0.5" height="15.0" fill="rgb(216,121,53)" rx="2" ry="2" />
<text x="575.74" y="1855.5" ></text>
</g>
<g >
<title>ctx_sched_in (1,340,026,599 samples, 1.93%)</title><rect x="1144.9" y="1877" width="22.8" height="15.0" fill="rgb(215,154,24)" rx="2" ry="2" />
<text x="1147.90" y="1887.5" >c..</text>
</g>
<g >
<title>update_blocked_averages (322,548,771 samples, 0.46%)</title><rect x="169.4" y="1461" width="5.4" height="15.0" fill="rgb(252,173,5)" rx="2" ry="2" />
<text x="172.35" y="1471.5" ></text>
</g>
<g >
<title>_raw_spin_lock (15,048,155 samples, 0.02%)</title><rect x="1118.2" y="1957" width="0.2" height="15.0" fill="rgb(246,9,0)" rx="2" ry="2" />
<text x="1121.16" y="1967.5" ></text>
</g>
<g >
<title>_find_next_bit.constprop.0 (19,507,521 samples, 0.03%)</title><rect x="807.7" y="1813" width="0.3" height="15.0" fill="rgb(213,96,41)" rx="2" ry="2" />
<text x="810.69" y="1823.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (35,291,079 samples, 0.05%)</title><rect x="757.9" y="2021" width="0.6" height="15.0" fill="rgb(244,21,1)" rx="2" ry="2" />
<text x="760.94" y="2031.5" ></text>
</g>
<g >
<title>psi_group_change (66,675,121 samples, 0.10%)</title><rect x="1169.1" y="1893" width="1.2" height="15.0" fill="rgb(213,33,39)" rx="2" ry="2" />
<text x="1172.12" y="1903.5" ></text>
</g>
<g >
<title>sched_clock_cpu (25,826,918 samples, 0.04%)</title><rect x="158.5" y="1893" width="0.4" height="15.0" fill="rgb(229,36,25)" rx="2" ry="2" />
<text x="161.48" y="1903.5" ></text>
</g>
<g >
<title>timerqueue_add (16,826,647 samples, 0.02%)</title><rect x="760.3" y="1909" width="0.2" height="15.0" fill="rgb(214,22,39)" rx="2" ry="2" />
<text x="763.25" y="1919.5" ></text>
</g>
<g >
<title>touch_atime (19,740,280 samples, 0.03%)</title><rect x="214.3" y="1925" width="0.4" height="15.0" fill="rgb(234,140,25)" rx="2" ry="2" />
<text x="217.34" y="1935.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (87,733,563 samples, 0.13%)</title><rect x="615.4" y="1781" width="1.5" height="15.0" fill="rgb(205,158,30)" rx="2" ry="2" />
<text x="618.42" y="1791.5" ></text>
</g>
<g >
<title>dequeue_task_fair (206,714,399 samples, 0.30%)</title><rect x="142.5" y="1909" width="3.5" height="15.0" fill="rgb(237,171,43)" rx="2" ry="2" />
<text x="145.51" y="1919.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (56,318,957 samples, 0.08%)</title><rect x="1168.2" y="1845" width="0.9" height="15.0" fill="rgb(226,187,31)" rx="2" ry="2" />
<text x="1171.16" y="1855.5" ></text>
</g>
<g >
<title>psi_group_change (41,199,852 samples, 0.06%)</title><rect x="769.7" y="1893" width="0.7" height="15.0" fill="rgb(219,43,21)" rx="2" ry="2" />
<text x="772.73" y="1903.5" ></text>
</g>
<g >
<title>__x64_sys_poll (1,038,449,559 samples, 1.50%)</title><rect x="456.0" y="2005" width="17.7" height="15.0" fill="rgb(212,109,29)" rx="2" ry="2" />
<text x="459.04" y="2015.5" ></text>
</g>
<g >
<title>rdk:broker-1 (11,933,985,438 samples, 17.19%)</title><rect x="188.6" y="2069" width="202.9" height="15.0" fill="rgb(219,30,30)" rx="2" ry="2" />
<text x="191.63" y="2079.5" >rdk:broker-1</text>
</g>
<g >
<title>update_rq_clock (127,830,850 samples, 0.18%)</title><rect x="676.9" y="1925" width="2.1" height="15.0" fill="rgb(250,20,36)" rx="2" ry="2" />
<text x="679.86" y="1935.5" ></text>
</g>
<g >
<title>ip_finish_output2 (198,096,218 samples, 0.29%)</title><rect x="218.9" y="1861" width="3.4" height="15.0" fill="rgb(208,85,14)" rx="2" ry="2" />
<text x="221.90" y="1871.5" ></text>
</g>
<g >
<title>inet_recvmsg (228,257,657 samples, 0.33%)</title><rect x="218.4" y="1925" width="3.9" height="15.0" fill="rgb(245,174,33)" rx="2" ry="2" />
<text x="221.39" y="1935.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (25,565,231 samples, 0.04%)</title><rect x="77.3" y="1925" width="0.4" height="15.0" fill="rgb(237,147,33)" rx="2" ry="2" />
<text x="80.27" y="1935.5" ></text>
</g>
<g >
<title>psi_task_change (65,174,423 samples, 0.09%)</title><rect x="673.6" y="1925" width="1.1" height="15.0" fill="rgb(251,194,21)" rx="2" ry="2" />
<text x="676.62" y="1935.5" ></text>
</g>
<g >
<title>InterpretedFunction:e.exports /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (1,549,003,407 samples, 2.23%)</title><rect x="17.9" y="1717" width="26.3" height="15.0" fill="rgb(220,27,40)" rx="2" ry="2" />
<text x="20.92" y="1727.5" >I..</text>
</g>
<g >
<title>_raw_spin_lock (12,399,738 samples, 0.02%)</title><rect x="113.2" y="1957" width="0.2" height="15.0" fill="rgb(209,214,21)" rx="2" ry="2" />
<text x="116.23" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1269" width="13.1" height="15.0" fill="rgb(239,116,21)" rx="2" ry="2" />
<text x="60.02" y="1279.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (119,104,464 samples, 0.17%)</title><rect x="669.6" y="1861" width="2.1" height="15.0" fill="rgb(234,97,46)" rx="2" ry="2" />
<text x="672.63" y="1871.5" ></text>
</g>
<g >
<title>__fget_light (81,829,081 samples, 0.12%)</title><rect x="782.0" y="1973" width="1.4" height="15.0" fill="rgb(224,77,26)" rx="2" ry="2" />
<text x="784.96" y="1983.5" ></text>
</g>
<g >
<title>__seccomp_filter (32,932,139 samples, 0.05%)</title><rect x="992.0" y="1973" width="0.6" height="15.0" fill="rgb(229,121,2)" rx="2" ry="2" />
<text x="995.01" y="1983.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (51,063,394 samples, 0.07%)</title><rect x="207.9" y="2021" width="0.8" height="15.0" fill="rgb(213,221,49)" rx="2" ry="2" />
<text x="210.88" y="2031.5" ></text>
</g>
<g >
<title>switch_fpu_return (43,634,759 samples, 0.06%)</title><rect x="312.9" y="1989" width="0.8" height="15.0" fill="rgb(206,114,31)" rx="2" ry="2" />
<text x="315.92" y="1999.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (246,631,530 samples, 0.36%)</title><rect x="605.4" y="1845" width="4.2" height="15.0" fill="rgb(205,206,30)" rx="2" ry="2" />
<text x="608.43" y="1855.5" ></text>
</g>
<g >
<title>__seccomp_filter (13,705,354 samples, 0.02%)</title><rect x="708.0" y="1989" width="0.2" height="15.0" fill="rgb(230,24,53)" rx="2" ry="2" />
<text x="711.00" y="1999.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (14,248,885 samples, 0.02%)</title><rect x="704.0" y="1813" width="0.3" height="15.0" fill="rgb(244,15,12)" rx="2" ry="2" />
<text x="707.04" y="1823.5" ></text>
</g>
<g >
<title>finish_task_switch (215,644,392 samples, 0.31%)</title><rect x="700.6" y="1909" width="3.7" height="15.0" fill="rgb(216,168,42)" rx="2" ry="2" />
<text x="703.62" y="1919.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (32,342,467 samples, 0.05%)</title><rect x="473.7" y="2005" width="0.5" height="15.0" fill="rgb(244,211,40)" rx="2" ry="2" />
<text x="476.69" y="2015.5" ></text>
</g>
<g >
<title>rd_kafka_transport_poll (28,953,678 samples, 0.04%)</title><rect x="774.7" y="1957" width="0.5" height="15.0" fill="rgb(222,3,33)" rx="2" ry="2" />
<text x="777.73" y="1967.5" ></text>
</g>
<g >
<title>update_blocked_averages (32,064,458 samples, 0.05%)</title><rect x="769.2" y="1829" width="0.5" height="15.0" fill="rgb(253,80,8)" rx="2" ry="2" />
<text x="772.19" y="1839.5" ></text>
</g>
<g >
<title>__seccomp_filter (60,328,271 samples, 0.09%)</title><rect x="311.4" y="1989" width="1.0" height="15.0" fill="rgb(250,223,24)" rx="2" ry="2" />
<text x="314.41" y="1999.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (173,635,321 samples, 0.25%)</title><rect x="215.2" y="1797" width="2.9" height="15.0" fill="rgb(212,143,39)" rx="2" ry="2" />
<text x="218.19" y="1807.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_event (31,012,647 samples, 0.04%)</title><rect x="244.2" y="2037" width="0.6" height="15.0" fill="rgb(238,72,29)" rx="2" ry="2" />
<text x="247.24" y="2047.5" ></text>
</g>
<g >
<title>pipe_write (160,876,865 samples, 0.23%)</title><rect x="988.0" y="1941" width="2.8" height="15.0" fill="rgb(241,111,41)" rx="2" ry="2" />
<text x="991.04" y="1951.5" ></text>
</g>
<g >
<title>tick_sched_timer (26,038,975 samples, 0.04%)</title><rect x="356.4" y="1797" width="0.4" height="15.0" fill="rgb(249,155,14)" rx="2" ry="2" />
<text x="359.40" y="1807.5" ></text>
</g>
<g >
<title>node::InternalCallbackScope::InternalCallbackScope (92,734,658 samples, 0.13%)</title><rect x="165.2" y="1973" width="1.6" height="15.0" fill="rgb(247,120,3)" rx="2" ry="2" />
<text x="168.24" y="1983.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (194,964,866 samples, 0.28%)</title><rect x="681.7" y="1973" width="3.3" height="15.0" fill="rgb(245,158,14)" rx="2" ry="2" />
<text x="684.68" y="1983.5" ></text>
</g>
<g >
<title>v8::internal::Logger::ApiEntryCall (104,894,387 samples, 0.15%)</title><rect x="183.8" y="1989" width="1.8" height="15.0" fill="rgb(210,143,15)" rx="2" ry="2" />
<text x="186.83" y="1999.5" ></text>
</g>
<g >
<title>v8::internal::Factory::NewJSObjectFromMap (485,424,776 samples, 0.70%)</title><rect x="175.6" y="1957" width="8.2" height="15.0" fill="rgb(206,89,11)" rx="2" ry="2" />
<text x="178.58" y="1967.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1845" width="0.6" height="15.0" fill="rgb(236,3,36)" rx="2" ry="2" />
<text x="451.74" y="1855.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (30,345,889 samples, 0.04%)</title><rect x="112.7" y="1925" width="0.5" height="15.0" fill="rgb(228,121,7)" rx="2" ry="2" />
<text x="115.71" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (2,736,847,453 samples, 3.94%)</title><rect x="10.5" y="2005" width="46.5" height="15.0" fill="rgb(223,152,34)" rx="2" ry="2" />
<text x="13.50" y="2015.5" >[unk..</text>
</g>
<g >
<title>switch_fpu_return (76,979,349 samples, 0.11%)</title><rect x="380.2" y="1989" width="1.3" height="15.0" fill="rgb(235,103,15)" rx="2" ry="2" />
<text x="383.21" y="1999.5" ></text>
</g>
<g >
<title>perf_event_sched_in (29,184,893 samples, 0.04%)</title><rect x="703.5" y="1877" width="0.5" height="15.0" fill="rgb(232,45,45)" rx="2" ry="2" />
<text x="706.55" y="1887.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (17,604,891 samples, 0.03%)</title><rect x="276.0" y="1877" width="0.3" height="15.0" fill="rgb(209,57,23)" rx="2" ry="2" />
<text x="279.00" y="1887.5" ></text>
</g>
<g >
<title>newidle_balance (28,504,033 samples, 0.04%)</title><rect x="69.6" y="85" width="0.5" height="15.0" fill="rgb(239,129,30)" rx="2" ry="2" />
<text x="72.60" y="95.5" ></text>
</g>
<g >
<title>newidle_balance (461,743,796 samples, 0.67%)</title><rect x="295.6" y="1909" width="7.9" height="15.0" fill="rgb(236,124,44)" rx="2" ry="2" />
<text x="298.65" y="1919.5" ></text>
</g>
<g >
<title>__seccomp_filter (50,301,146 samples, 0.07%)</title><rect x="224.3" y="1973" width="0.8" height="15.0" fill="rgb(221,77,7)" rx="2" ry="2" />
<text x="227.26" y="1983.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (12,005,111 samples, 0.02%)</title><rect x="534.3" y="2037" width="0.2" height="15.0" fill="rgb(209,55,46)" rx="2" ry="2" />
<text x="537.27" y="2047.5" ></text>
</g>
<g >
<title>__ip6_finish_output.part.0 (55,908,086 samples, 0.08%)</title><rect x="446.4" y="1845" width="0.9" height="15.0" fill="rgb(228,78,46)" rx="2" ry="2" />
<text x="449.39" y="1855.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (14,211,680 samples, 0.02%)</title><rect x="1167.7" y="1845" width="0.3" height="15.0" fill="rgb(234,122,36)" rx="2" ry="2" />
<text x="1170.75" y="1855.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (6,503,102 samples, 0.01%)</title><rect x="805.4" y="1797" width="0.2" height="15.0" fill="rgb(250,168,50)" rx="2" ry="2" />
<text x="808.45" y="1807.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (109,750,852 samples, 0.16%)</title><rect x="379.7" y="2021" width="1.8" height="15.0" fill="rgb(228,25,0)" rx="2" ry="2" />
<text x="382.66" y="2031.5" ></text>
</g>
<g >
<title>__schedule (3,057,957,077 samples, 4.40%)</title><rect x="326.8" y="1925" width="52.0" height="15.0" fill="rgb(254,133,27)" rx="2" ry="2" />
<text x="329.83" y="1935.5" >__sch..</text>
</g>
<g >
<title>rd_avl_find_node (18,115,091 samples, 0.03%)</title><rect x="869.8" y="2005" width="0.3" height="15.0" fill="rgb(209,131,38)" rx="2" ry="2" />
<text x="872.83" y="2015.5" ></text>
</g>
<g >
<title>tcp_event_new_data_sent (103,868,374 samples, 0.15%)</title><rect x="616.9" y="1845" width="1.8" height="15.0" fill="rgb(213,58,54)" rx="2" ry="2" />
<text x="619.91" y="1855.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (33,033,377 samples, 0.05%)</title><rect x="561.2" y="1973" width="0.5" height="15.0" fill="rgb(212,192,10)" rx="2" ry="2" />
<text x="564.16" y="1983.5" ></text>
</g>
<g >
<title>v8::internal::compiler::GraphReducer::ReduceTop (69,095,870 samples, 0.10%)</title><rect x="163.6" y="1909" width="1.2" height="15.0" fill="rgb(243,228,31)" rx="2" ry="2" />
<text x="166.60" y="1919.5" ></text>
</g>
<g >
<title>__fget_light (123,737,324 samples, 0.18%)</title><rect x="741.7" y="1973" width="2.1" height="15.0" fill="rgb(249,30,53)" rx="2" ry="2" />
<text x="744.73" y="1983.5" ></text>
</g>
<g >
<title>update_load_avg (61,512,150 samples, 0.09%)</title><rect x="465.8" y="1893" width="1.0" height="15.0" fill="rgb(225,151,19)" rx="2" ry="2" />
<text x="468.79" y="1903.5" ></text>
</g>
<g >
<title>sock_write_iter (1,017,298,911 samples, 1.47%)</title><rect x="719.9" y="1941" width="17.3" height="15.0" fill="rgb(223,2,40)" rx="2" ry="2" />
<text x="722.89" y="1951.5" ></text>
</g>
<g >
<title>sched_clock_cpu (60,995,836 samples, 0.09%)</title><rect x="305.9" y="1877" width="1.0" height="15.0" fill="rgb(235,156,41)" rx="2" ry="2" />
<text x="308.90" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (226,133,352 samples, 0.33%)</title><rect x="446.4" y="2005" width="3.8" height="15.0" fill="rgb(224,140,50)" rx="2" ry="2" />
<text x="449.39" y="2015.5" ></text>
</g>
<g >
<title>common_interrupt (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1909" width="0.2" height="15.0" fill="rgb(214,19,12)" rx="2" ry="2" />
<text x="90.79" y="1919.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (2,599,063,930 samples, 3.74%)</title><rect x="1123.5" y="1893" width="44.2" height="15.0" fill="rgb(224,142,19)" rx="2" ry="2" />
<text x="1126.55" y="1903.5" >__pe..</text>
</g>
<g >
<title>asm_call_sysvec_on_stack (32,377,126 samples, 0.05%)</title><rect x="155.3" y="1861" width="0.5" height="15.0" fill="rgb(238,138,15)" rx="2" ry="2" />
<text x="158.27" y="1871.5" ></text>
</g>
<g >
<title>mtx_lock (27,175,746 samples, 0.04%)</title><rect x="839.4" y="1973" width="0.4" height="15.0" fill="rgb(230,212,18)" rx="2" ry="2" />
<text x="842.39" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1077" width="13.1" height="15.0" fill="rgb(211,190,29)" rx="2" ry="2" />
<text x="60.02" y="1087.5" ></text>
</g>
<g >
<title>BIO_clear_flags (80,940,342 samples, 0.12%)</title><rect x="440.7" y="2021" width="1.4" height="15.0" fill="rgb(223,45,19)" rx="2" ry="2" />
<text x="443.70" y="2031.5" ></text>
</g>
<g >
<title>new_sync_write (199,831,544 samples, 0.29%)</title><rect x="987.4" y="1957" width="3.4" height="15.0" fill="rgb(216,68,27)" rx="2" ry="2" />
<text x="990.38" y="1967.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (47,249,383 samples, 0.07%)</title><rect x="624.5" y="2037" width="0.8" height="15.0" fill="rgb(225,79,37)" rx="2" ry="2" />
<text x="627.53" y="2047.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (26,138,861 samples, 0.04%)</title><rect x="1174.4" y="2037" width="0.5" height="15.0" fill="rgb(242,176,49)" rx="2" ry="2" />
<text x="1177.42" y="2047.5" ></text>
</g>
<g >
<title>pipe_read (136,234,180 samples, 0.20%)</title><rect x="212.4" y="1941" width="2.3" height="15.0" fill="rgb(214,102,24)" rx="2" ry="2" />
<text x="215.36" y="1951.5" ></text>
</g>
<g >
<title>net_rx_action (173,635,321 samples, 0.25%)</title><rect x="215.2" y="1749" width="2.9" height="15.0" fill="rgb(248,74,39)" rx="2" ry="2" />
<text x="218.19" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1557" width="13.1" height="15.0" fill="rgb(221,131,38)" rx="2" ry="2" />
<text x="60.02" y="1567.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (30,311,733 samples, 0.04%)</title><rect x="310.9" y="1973" width="0.5" height="15.0" fill="rgb(208,20,21)" rx="2" ry="2" />
<text x="313.89" y="1983.5" ></text>
</g>
<g >
<title>net_rx_action (198,096,218 samples, 0.29%)</title><rect x="218.9" y="1765" width="3.4" height="15.0" fill="rgb(229,45,19)" rx="2" ry="2" />
<text x="221.90" y="1775.5" ></text>
</g>
<g >
<title>sock_read_iter (172,880,670 samples, 0.25%)</title><rect x="446.4" y="1941" width="2.9" height="15.0" fill="rgb(233,206,11)" rx="2" ry="2" />
<text x="449.39" y="1951.5" ></text>
</g>
<g >
<title>find_busiest_group (125,742,925 samples, 0.18%)</title><rect x="705.0" y="1861" width="2.2" height="15.0" fill="rgb(210,48,6)" rx="2" ry="2" />
<text x="708.03" y="1871.5" ></text>
</g>
<g >
<title>sched_clock_cpu (135,819,443 samples, 0.20%)</title><rect x="88.8" y="1877" width="2.3" height="15.0" fill="rgb(250,205,40)" rx="2" ry="2" />
<text x="91.80" y="1887.5" ></text>
</g>
<g >
<title>fsnotify (22,670,270 samples, 0.03%)</title><rect x="449.3" y="1941" width="0.4" height="15.0" fill="rgb(247,52,19)" rx="2" ry="2" />
<text x="452.33" y="1951.5" ></text>
</g>
<g >
<title>Stub:CallApiCallbackStub (322,548,771 samples, 0.46%)</title><rect x="169.4" y="1605" width="5.4" height="15.0" fill="rgb(238,4,39)" rx="2" ry="2" />
<text x="172.35" y="1615.5" ></text>
</g>
<g >
<title>timerqueue_del (9,346,743 samples, 0.01%)</title><rect x="356.8" y="1797" width="0.2" height="15.0" fill="rgb(244,61,39)" rx="2" ry="2" />
<text x="359.84" y="1807.5" ></text>
</g>
<g >
<title>__fget_light (114,667,388 samples, 0.17%)</title><rect x="649.7" y="1973" width="1.9" height="15.0" fill="rgb(246,5,0)" rx="2" ry="2" />
<text x="652.67" y="1983.5" ></text>
</g>
<g >
<title>Builtin:CallFunction_ReceiverIsAny (60,309,092 samples, 0.09%)</title><rect x="13.8" y="1845" width="1.0" height="15.0" fill="rgb(212,216,27)" rx="2" ry="2" />
<text x="16.76" y="1855.5" ></text>
</g>
<g >
<title>perf_swevent_add (13,494,601 samples, 0.02%)</title><rect x="790.7" y="1829" width="0.3" height="15.0" fill="rgb(231,6,13)" rx="2" ry="2" />
<text x="793.73" y="1839.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (27,002,010 samples, 0.04%)</title><rect x="129.9" y="1893" width="0.5" height="15.0" fill="rgb(210,11,43)" rx="2" ry="2" />
<text x="132.94" y="1903.5" ></text>
</g>
<g >
<title>ipt_do_table (138,429,560 samples, 0.20%)</title><rect x="607.3" y="1685" width="2.3" height="15.0" fill="rgb(226,64,24)" rx="2" ry="2" />
<text x="610.27" y="1695.5" ></text>
</g>
<g >
<title>ctx_sched_in (26,766,636 samples, 0.04%)</title><rect x="550.1" y="1877" width="0.5" height="15.0" fill="rgb(228,92,18)" rx="2" ry="2" />
<text x="553.12" y="1887.5" ></text>
</g>
<g >
<title>ip_rcv (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1669" width="1.4" height="15.0" fill="rgb(231,1,29)" rx="2" ry="2" />
<text x="229.35" y="1679.5" ></text>
</g>
<g >
<title>InterpretedFunction:setTimeout timers.js:388 (82,679,130 samples, 0.12%)</title><rect x="167.3" y="1685" width="1.4" height="15.0" fill="rgb(223,139,46)" rx="2" ry="2" />
<text x="170.33" y="1695.5" ></text>
</g>
<g >
<title>remove_wait_queue (111,402,622 samples, 0.16%)</title><rect x="461.1" y="1957" width="1.9" height="15.0" fill="rgb(248,160,19)" rx="2" ry="2" />
<text x="464.09" y="1967.5" ></text>
</g>
<g >
<title>timerqueue_add (109,870,050 samples, 0.16%)</title><rect x="654.8" y="1925" width="1.9" height="15.0" fill="rgb(238,155,17)" rx="2" ry="2" />
<text x="657.79" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="629" width="13.1" height="15.0" fill="rgb(242,124,39)" rx="2" ry="2" />
<text x="60.02" y="639.5" ></text>
</g>
<g >
<title>tcp_poll (36,722,081 samples, 0.05%)</title><rect x="558.5" y="1957" width="0.6" height="15.0" fill="rgb(217,85,9)" rx="2" ry="2" />
<text x="561.53" y="1967.5" ></text>
</g>
<g >
<title>schedule (582,023,160 samples, 0.84%)</title><rect x="760.5" y="1941" width="9.9" height="15.0" fill="rgb(250,159,45)" rx="2" ry="2" />
<text x="763.54" y="1951.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (145,735,608 samples, 0.21%)</title><rect x="551.2" y="1861" width="2.4" height="15.0" fill="rgb(223,193,7)" rx="2" ry="2" />
<text x="554.16" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="933" width="13.1" height="15.0" fill="rgb(241,196,38)" rx="2" ry="2" />
<text x="60.02" y="943.5" ></text>
</g>
<g >
<title>__wake_up_common (254,250,683 samples, 0.37%)</title><rect x="72.9" y="1941" width="4.4" height="15.0" fill="rgb(222,102,7)" rx="2" ry="2" />
<text x="75.94" y="1951.5" ></text>
</g>
<g >
<title>ctx_sched_in (172,620,676 samples, 0.25%)</title><rect x="665.5" y="1893" width="3.0" height="15.0" fill="rgb(205,4,27)" rx="2" ry="2" />
<text x="668.54" y="1903.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (79,356,455 samples, 0.11%)</title><rect x="790.6" y="1877" width="1.4" height="15.0" fill="rgb(222,180,51)" rx="2" ry="2" />
<text x="793.63" y="1887.5" ></text>
</g>
<g >
<title>rb_insert_color (25,946,288 samples, 0.04%)</title><rect x="115.1" y="1893" width="0.4" height="15.0" fill="rgb(211,33,4)" rx="2" ry="2" />
<text x="118.05" y="1903.5" ></text>
</g>
<g >
<title>InterpretedFunction:KafkaConsumer.consume /srv/service/node_modules/node-rdkafka/lib/kafka-consumer.js:371 (43,154,715 samples, 0.06%)</title><rect x="20.9" y="1429" width="0.7" height="15.0" fill="rgb(224,211,24)" rx="2" ry="2" />
<text x="23.89" y="1439.5" ></text>
</g>
<g >
<title>update_cfs_group (21,434,320 samples, 0.03%)</title><rect x="763.2" y="1877" width="0.4" height="15.0" fill="rgb(252,153,51)" rx="2" ry="2" />
<text x="766.22" y="1887.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (23,771,023 samples, 0.03%)</title><rect x="500.8" y="1989" width="0.4" height="15.0" fill="rgb(206,39,23)" rx="2" ry="2" />
<text x="503.80" y="1999.5" ></text>
</g>
<g >
<title>rd_kafka_recv (55,290,879 samples, 0.08%)</title><rect x="594.0" y="1989" width="1.0" height="15.0" fill="rgb(226,34,47)" rx="2" ry="2" />
<text x="597.02" y="1999.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (43,386,688 samples, 0.06%)</title><rect x="611.2" y="1909" width="0.8" height="15.0" fill="rgb(251,221,38)" rx="2" ry="2" />
<text x="614.22" y="1919.5" ></text>
</g>
<g >
<title>do_syscall_64 (118,073,139 samples, 0.17%)</title><rect x="248.0" y="2021" width="2.0" height="15.0" fill="rgb(233,130,0)" rx="2" ry="2" />
<text x="251.02" y="2031.5" ></text>
</g>
<g >
<title>do_futex (44,103,726 samples, 0.06%)</title><rect x="991.3" y="1973" width="0.7" height="15.0" fill="rgb(214,17,21)" rx="2" ry="2" />
<text x="994.26" y="1983.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (46,980,550 samples, 0.07%)</title><rect x="492.0" y="1861" width="0.8" height="15.0" fill="rgb(230,55,9)" rx="2" ry="2" />
<text x="495.03" y="1871.5" ></text>
</g>
<g >
<title>enqueue_entity (77,304,666 samples, 0.11%)</title><rect x="988.9" y="1829" width="1.3" height="15.0" fill="rgb(238,221,45)" rx="2" ry="2" />
<text x="991.88" y="1839.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (26,419,604 samples, 0.04%)</title><rect x="777.0" y="1957" width="0.5" height="15.0" fill="rgb(210,182,38)" rx="2" ry="2" />
<text x="780.03" y="1967.5" ></text>
</g>
<g >
<title>LazyCompile:*ret :4 (43,154,715 samples, 0.06%)</title><rect x="20.9" y="1477" width="0.7" height="15.0" fill="rgb(213,228,45)" rx="2" ry="2" />
<text x="23.89" y="1487.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (322,548,771 samples, 0.46%)</title><rect x="169.4" y="1557" width="5.4" height="15.0" fill="rgb(244,93,34)" rx="2" ry="2" />
<text x="172.35" y="1567.5" ></text>
</g>
<g >
<title>newidle_balance (249,294,930 samples, 0.36%)</title><rect x="551.2" y="1909" width="4.2" height="15.0" fill="rgb(246,165,33)" rx="2" ry="2" />
<text x="554.16" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (658,434,412 samples, 0.95%)</title><rect x="57.0" y="165" width="11.2" height="15.0" fill="rgb(229,90,28)" rx="2" ry="2" />
<text x="60.02" y="175.5" ></text>
</g>
<g >
<title>__fget_light (32,193,024 samples, 0.05%)</title><rect x="458.4" y="1973" width="0.5" height="15.0" fill="rgb(234,222,23)" rx="2" ry="2" />
<text x="461.37" y="1983.5" ></text>
</g>
<g >
<title>BIO_clear_flags (111,929,648 samples, 0.16%)</title><rect x="583.0" y="2053" width="1.9" height="15.0" fill="rgb(207,8,5)" rx="2" ry="2" />
<text x="586.02" y="2063.5" ></text>
</g>
<g >
<title>fib6_rule_lookup (32,442,632 samples, 0.05%)</title><rect x="217.6" y="1637" width="0.5" height="15.0" fill="rgb(239,184,9)" rx="2" ry="2" />
<text x="220.59" y="1647.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="277" width="13.1" height="15.0" fill="rgb(211,41,11)" rx="2" ry="2" />
<text x="60.02" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,111,673 samples, 0.07%)</title><rect x="249.2" y="1973" width="0.8" height="15.0" fill="rgb(243,220,42)" rx="2" ry="2" />
<text x="252.24" y="1983.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (8,381,924 samples, 0.01%)</title><rect x="295.0" y="1813" width="0.1" height="15.0" fill="rgb(214,223,38)" rx="2" ry="2" />
<text x="298.00" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1237" width="13.1" height="15.0" fill="rgb(218,151,15)" rx="2" ry="2" />
<text x="60.02" y="1247.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (22,563,658 samples, 0.03%)</title><rect x="668.8" y="1909" width="0.4" height="15.0" fill="rgb(235,208,8)" rx="2" ry="2" />
<text x="671.80" y="1919.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (36,403,461 samples, 0.05%)</title><rect x="168.7" y="1621" width="0.7" height="15.0" fill="rgb(237,34,42)" rx="2" ry="2" />
<text x="171.73" y="1631.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (82,870,174 samples, 0.12%)</title><rect x="50.5" y="1797" width="1.4" height="15.0" fill="rgb(247,107,54)" rx="2" ry="2" />
<text x="53.48" y="1807.5" ></text>
</g>
<g >
<title>native_write_msr (294,486,282 samples, 0.42%)</title><rect x="146.6" y="1861" width="5.1" height="15.0" fill="rgb(236,216,41)" rx="2" ry="2" />
<text x="149.65" y="1871.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (34,476,670 samples, 0.05%)</title><rect x="225.1" y="2005" width="0.6" height="15.0" fill="rgb(231,129,22)" rx="2" ry="2" />
<text x="228.12" y="2015.5" ></text>
</g>
<g >
<title>InterpretedFunction:e.exports /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (1,409,512,557 samples, 2.03%)</title><rect x="20.3" y="1653" width="23.9" height="15.0" fill="rgb(226,209,16)" rx="2" ry="2" />
<text x="23.29" y="1663.5" >I..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (78,759,062 samples, 0.11%)</title><rect x="991.3" y="2021" width="1.3" height="15.0" fill="rgb(223,174,48)" rx="2" ry="2" />
<text x="994.26" y="2031.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (82,594,864 samples, 0.12%)</title><rect x="447.3" y="1829" width="1.4" height="15.0" fill="rgb(247,15,53)" rx="2" ry="2" />
<text x="450.34" y="1839.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (55,145,334 samples, 0.08%)</title><rect x="791.0" y="1861" width="0.9" height="15.0" fill="rgb(231,183,16)" rx="2" ry="2" />
<text x="793.96" y="1871.5" ></text>
</g>
<g >
<title>do_futex (1,098,350,162 samples, 1.58%)</title><rect x="93.0" y="1989" width="18.7" height="15.0" fill="rgb(209,62,16)" rx="2" ry="2" />
<text x="96.00" y="1999.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1781" width="0.2" height="15.0" fill="rgb(245,47,34)" rx="2" ry="2" />
<text x="90.79" y="1791.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (238,960,313 samples, 0.34%)</title><rect x="467.5" y="1877" width="4.1" height="15.0" fill="rgb(248,35,22)" rx="2" ry="2" />
<text x="470.51" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1925" width="13.1" height="15.0" fill="rgb(240,228,1)" rx="2" ry="2" />
<text x="60.02" y="1935.5" ></text>
</g>
<g >
<title>rd_kafka_transport_poll.part.6 (13,568,040 samples, 0.02%)</title><rect x="246.8" y="2037" width="0.2" height="15.0" fill="rgb(223,192,28)" rx="2" ry="2" />
<text x="249.78" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="885" width="13.1" height="15.0" fill="rgb(253,9,0)" rx="2" ry="2" />
<text x="60.02" y="895.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (441,631,362 samples, 0.64%)</title><rect x="167.3" y="1749" width="7.5" height="15.0" fill="rgb(223,207,24)" rx="2" ry="2" />
<text x="170.33" y="1759.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,098,350,162 samples, 1.58%)</title><rect x="93.0" y="2021" width="18.7" height="15.0" fill="rgb(212,137,17)" rx="2" ry="2" />
<text x="96.00" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (457,220,318 samples, 0.66%)</title><rect x="613.3" y="2021" width="7.8" height="15.0" fill="rgb(212,48,19)" rx="2" ry="2" />
<text x="616.34" y="2031.5" ></text>
</g>
<g >
<title>net_rx_action (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1749" width="4.6" height="15.0" fill="rgb(249,37,14)" rx="2" ry="2" />
<text x="600.13" y="1759.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (109,870,050 samples, 0.16%)</title><rect x="654.8" y="1941" width="1.9" height="15.0" fill="rgb(229,201,49)" rx="2" ry="2" />
<text x="657.79" y="1951.5" ></text>
</g>
<g >
<title>do_syscall_64 (39,389,132 samples, 0.06%)</title><rect x="68.5" y="181" width="0.7" height="15.0" fill="rgb(253,227,49)" rx="2" ry="2" />
<text x="71.55" y="191.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (24,329,495 samples, 0.04%)</title><rect x="560.1" y="1973" width="0.4" height="15.0" fill="rgb(229,152,13)" rx="2" ry="2" />
<text x="563.08" y="1983.5" ></text>
</g>
<g >
<title>tcp_stream_memory_free (33,232,563 samples, 0.05%)</title><rect x="558.6" y="1941" width="0.5" height="15.0" fill="rgb(235,27,16)" rx="2" ry="2" />
<text x="561.58" y="1951.5" ></text>
</g>
<g >
<title>do_futex (50,111,297 samples, 0.07%)</title><rect x="67.4" y="85" width="0.8" height="15.0" fill="rgb(249,129,47)" rx="2" ry="2" />
<text x="70.36" y="95.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1381" width="13.1" height="15.0" fill="rgb(247,149,45)" rx="2" ry="2" />
<text x="60.02" y="1391.5" ></text>
</g>
<g >
<title>Nan::AsyncExecute (242,840,778 samples, 0.35%)</title><rect x="57.0" y="69" width="4.1" height="15.0" fill="rgb(206,88,10)" rx="2" ry="2" />
<text x="60.02" y="79.5" ></text>
</g>
<g >
<title>v8::HandleScope::Initialize (92,734,658 samples, 0.13%)</title><rect x="165.2" y="1957" width="1.6" height="15.0" fill="rgb(238,102,49)" rx="2" ry="2" />
<text x="168.24" y="1967.5" ></text>
</g>
<g >
<title>cfree (58,255,787 samples, 0.08%)</title><rect x="237.9" y="2037" width="1.0" height="15.0" fill="rgb(232,145,49)" rx="2" ry="2" />
<text x="240.94" y="2047.5" ></text>
</g>
<g >
<title>dequeue_entity (29,824,086 samples, 0.04%)</title><rect x="800.8" y="1893" width="0.5" height="15.0" fill="rgb(215,167,50)" rx="2" ry="2" />
<text x="803.82" y="1903.5" ></text>
</g>
<g >
<title>enqueue_entity (11,598,261 samples, 0.02%)</title><rect x="356.2" y="1733" width="0.2" height="15.0" fill="rgb(235,34,35)" rx="2" ry="2" />
<text x="359.20" y="1743.5" ></text>
</g>
<g >
<title>schedule (2,297,688,507 samples, 3.31%)</title><rect x="267.9" y="1957" width="39.0" height="15.0" fill="rgb(239,200,9)" rx="2" ry="2" />
<text x="270.88" y="1967.5" >sch..</text>
</g>
<g >
<title>aa_file_perm (39,979,681 samples, 0.06%)</title><rect x="77.7" y="1925" width="0.7" height="15.0" fill="rgb(217,216,23)" rx="2" ry="2" />
<text x="80.70" y="1935.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (198,096,218 samples, 0.29%)</title><rect x="218.9" y="1797" width="3.4" height="15.0" fill="rgb(250,6,17)" rx="2" ry="2" />
<text x="221.90" y="1807.5" ></text>
</g>
<g >
<title>finish_task_switch (98,758,983 samples, 0.14%)</title><rect x="572.6" y="1909" width="1.7" height="15.0" fill="rgb(232,128,17)" rx="2" ry="2" />
<text x="575.62" y="1919.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (125,742,925 samples, 0.18%)</title><rect x="705.0" y="1845" width="2.2" height="15.0" fill="rgb(212,111,51)" rx="2" ry="2" />
<text x="708.03" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (339,448,417 samples, 0.49%)</title><rect x="774.5" y="2053" width="5.8" height="15.0" fill="rgb(239,200,36)" rx="2" ry="2" />
<text x="777.52" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (163,420,265 samples, 0.24%)</title><rect x="745.3" y="1957" width="2.8" height="15.0" fill="rgb(216,218,5)" rx="2" ry="2" />
<text x="748.30" y="1967.5" ></text>
</g>
<g >
<title>llist_add_batch (28,608,563 samples, 0.04%)</title><rect x="316.1" y="1877" width="0.5" height="15.0" fill="rgb(238,135,29)" rx="2" ry="2" />
<text x="319.13" y="1887.5" ></text>
</g>
<g >
<title>ttwu_do_activate (9,599,484 samples, 0.01%)</title><rect x="1167.8" y="1765" width="0.2" height="15.0" fill="rgb(252,81,51)" rx="2" ry="2" />
<text x="1170.80" y="1775.5" ></text>
</g>
<g >
<title>ipv6_rcv (44,444,988 samples, 0.06%)</title><rect x="227.8" y="1653" width="0.7" height="15.0" fill="rgb(216,175,22)" rx="2" ry="2" />
<text x="230.76" y="1663.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,419,347,431 samples, 4.93%)</title><rect x="323.4" y="2037" width="58.1" height="15.0" fill="rgb(244,73,31)" rx="2" ry="2" />
<text x="326.41" y="2047.5" >entry_..</text>
</g>
<g >
<title>load_balance (246,894,017 samples, 0.36%)</title><rect x="574.3" y="1877" width="4.2" height="15.0" fill="rgb(230,91,7)" rx="2" ry="2" />
<text x="577.30" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="661" width="13.1" height="15.0" fill="rgb(214,55,17)" rx="2" ry="2" />
<text x="60.02" y="671.5" ></text>
</g>
<g >
<title>ip_route_input_slow (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1669" width="0.6" height="15.0" fill="rgb(248,45,45)" rx="2" ry="2" />
<text x="451.74" y="1679.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (27,002,010 samples, 0.04%)</title><rect x="129.9" y="1877" width="0.5" height="15.0" fill="rgb(208,21,11)" rx="2" ry="2" />
<text x="132.94" y="1887.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (8,650,013 samples, 0.01%)</title><rect x="485.9" y="1813" width="0.1" height="15.0" fill="rgb(239,14,11)" rx="2" ry="2" />
<text x="488.88" y="1823.5" ></text>
</g>
<g >
<title>do_sys_poll (1,903,648,626 samples, 2.74%)</title><rect x="648.2" y="1989" width="32.3" height="15.0" fill="rgb(208,131,42)" rx="2" ry="2" />
<text x="651.16" y="1999.5" >do..</text>
</g>
<g >
<title>vfs_read (150,339,559 samples, 0.22%)</title><rect x="717.3" y="1973" width="2.6" height="15.0" fill="rgb(212,70,18)" rx="2" ry="2" />
<text x="720.33" y="1983.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (20,033,037 samples, 0.03%)</title><rect x="68.2" y="69" width="0.3" height="15.0" fill="rgb(243,40,14)" rx="2" ry="2" />
<text x="71.21" y="79.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (70,800,635 samples, 0.10%)</title><rect x="131.7" y="1813" width="1.3" height="15.0" fill="rgb(216,221,19)" rx="2" ry="2" />
<text x="134.75" y="1823.5" ></text>
</g>
<g >
<title>timerqueue_add (54,538,751 samples, 0.08%)</title><rect x="567.7" y="1909" width="1.0" height="15.0" fill="rgb(246,221,24)" rx="2" ry="2" />
<text x="570.75" y="1919.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (54,401,730 samples, 0.08%)</title><rect x="155.3" y="1877" width="0.9" height="15.0" fill="rgb(213,65,1)" rx="2" ry="2" />
<text x="158.27" y="1887.5" ></text>
</g>
<g >
<title>__fdget_pos (98,304,277 samples, 0.14%)</title><rect x="985.3" y="1973" width="1.7" height="15.0" fill="rgb(237,124,30)" rx="2" ry="2" />
<text x="988.32" y="1983.5" ></text>
</g>
<g >
<title>update_process_times (28,608,563 samples, 0.04%)</title><rect x="316.1" y="1925" width="0.5" height="15.0" fill="rgb(252,98,11)" rx="2" ry="2" />
<text x="319.13" y="1935.5" ></text>
</g>
<g >
<title>set_task_cpu (7,197,956 samples, 0.01%)</title><rect x="485.9" y="1765" width="0.1" height="15.0" fill="rgb(233,104,31)" rx="2" ry="2" />
<text x="488.88" y="1775.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (50,111,297 samples, 0.07%)</title><rect x="67.4" y="149" width="0.8" height="15.0" fill="rgb(215,69,25)" rx="2" ry="2" />
<text x="70.36" y="159.5" ></text>
</g>
<g >
<title>ip6_pol_route_lookup (32,442,632 samples, 0.05%)</title><rect x="217.6" y="1621" width="0.5" height="15.0" fill="rgb(249,1,49)" rx="2" ry="2" />
<text x="220.59" y="1631.5" ></text>
</g>
<g >
<title>__pthread_getspecific (92,734,658 samples, 0.13%)</title><rect x="165.2" y="1941" width="1.6" height="15.0" fill="rgb(224,20,45)" rx="2" ry="2" />
<text x="168.24" y="1951.5" ></text>
</g>
<g >
<title>__seccomp_filter (26,707,968 samples, 0.04%)</title><rect x="379.2" y="1989" width="0.5" height="15.0" fill="rgb(218,176,52)" rx="2" ry="2" />
<text x="382.20" y="1999.5" ></text>
</g>
<g >
<title>try_to_wake_up (13,570,464 samples, 0.02%)</title><rect x="493.6" y="1829" width="0.3" height="15.0" fill="rgb(217,134,25)" rx="2" ry="2" />
<text x="496.62" y="1839.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (120,306,611 samples, 0.17%)</title><rect x="248.0" y="2053" width="2.0" height="15.0" fill="rgb(253,205,54)" rx="2" ry="2" />
<text x="250.98" y="2063.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (9,973,790 samples, 0.01%)</title><rect x="474.3" y="1973" width="0.1" height="15.0" fill="rgb(233,46,13)" rx="2" ry="2" />
<text x="477.27" y="1983.5" ></text>
</g>
<g >
<title>rd_kafka_cgrp_serve (1,480,394,763 samples, 2.13%)</title><rect x="1060.4" y="2037" width="25.2" height="15.0" fill="rgb(228,106,40)" rx="2" ry="2" />
<text x="1063.45" y="2047.5" >r..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (50,111,297 samples, 0.07%)</title><rect x="67.4" y="133" width="0.8" height="15.0" fill="rgb(206,74,2)" rx="2" ry="2" />
<text x="70.36" y="143.5" ></text>
</g>
<g >
<title>finish_task_switch (175,243,575 samples, 0.25%)</title><rect x="483.0" y="1909" width="3.0" height="15.0" fill="rgb(229,101,4)" rx="2" ry="2" />
<text x="486.05" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="837" width="13.1" height="15.0" fill="rgb(210,113,10)" rx="2" ry="2" />
<text x="60.02" y="847.5" ></text>
</g>
<g >
<title>nf_hook_slow_list (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1717" width="0.2" height="15.0" fill="rgb(248,119,42)" rx="2" ry="2" />
<text x="90.79" y="1727.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (441,631,362 samples, 0.64%)</title><rect x="167.3" y="1861" width="7.5" height="15.0" fill="rgb(217,189,34)" rx="2" ry="2" />
<text x="170.33" y="1871.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (198,096,218 samples, 0.29%)</title><rect x="218.9" y="1813" width="3.4" height="15.0" fill="rgb(243,150,53)" rx="2" ry="2" />
<text x="221.90" y="1823.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (57,736,066 samples, 0.08%)</title><rect x="542.6" y="1925" width="0.9" height="15.0" fill="rgb(251,186,33)" rx="2" ry="2" />
<text x="545.56" y="1935.5" ></text>
</g>
<g >
<title>InterpretedFunction:tryCatch /srv/service/node_modules/bluebird/js/release/util.js:22 (27,862,863 samples, 0.04%)</title><rect x="23.1" y="1573" width="0.4" height="15.0" fill="rgb(253,32,16)" rx="2" ry="2" />
<text x="26.07" y="1583.5" ></text>
</g>
<g >
<title>ksys_write (1,017,298,911 samples, 1.47%)</title><rect x="719.9" y="1989" width="17.3" height="15.0" fill="rgb(253,17,41)" rx="2" ry="2" />
<text x="722.89" y="1999.5" ></text>
</g>
<g >
<title>v8::Function::Call (471,602,466 samples, 0.68%)</title><rect x="166.8" y="1973" width="8.0" height="15.0" fill="rgb(225,197,38)" rx="2" ry="2" />
<text x="169.82" y="1983.5" ></text>
</g>
<g >
<title>ctx_sched_in (18,043,429 samples, 0.03%)</title><rect x="354.9" y="1861" width="0.3" height="15.0" fill="rgb(205,2,8)" rx="2" ry="2" />
<text x="357.92" y="1871.5" ></text>
</g>
<g >
<title>ctx_sched_in (19,291,665 samples, 0.03%)</title><rect x="668.5" y="1877" width="0.3" height="15.0" fill="rgb(235,32,19)" rx="2" ry="2" />
<text x="671.47" y="1887.5" ></text>
</g>
<g >
<title>__schedule (2,263,902,813 samples, 3.26%)</title><rect x="268.5" y="1941" width="38.4" height="15.0" fill="rgb(254,114,0)" rx="2" ry="2" />
<text x="271.45" y="1951.5" >__s..</text>
</g>
<g >
<title>__qdisc_run (148,659,567 samples, 0.21%)</title><rect x="597.1" y="1669" width="2.6" height="15.0" fill="rgb(220,220,31)" rx="2" ry="2" />
<text x="600.13" y="1679.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (173,635,321 samples, 0.25%)</title><rect x="215.2" y="1765" width="2.9" height="15.0" fill="rgb(223,164,29)" rx="2" ry="2" />
<text x="218.19" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (41,480,711 samples, 0.06%)</title><rect x="774.5" y="2021" width="0.7" height="15.0" fill="rgb(213,205,49)" rx="2" ry="2" />
<text x="777.52" y="2031.5" ></text>
</g>
<g >
<title>rdk:broker1003 (7,594,633,267 samples, 10.94%)</title><rect x="583.0" y="2069" width="129.1" height="15.0" fill="rgb(249,216,27)" rx="2" ry="2" />
<text x="586.02" y="2079.5" >rdk:broker1003</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (23,644,967 samples, 0.03%)</title><rect x="1043.0" y="1989" width="0.4" height="15.0" fill="rgb(211,157,52)" rx="2" ry="2" />
<text x="1046.03" y="1999.5" ></text>
</g>
<g >
<title>update_min_vruntime (21,893,891 samples, 0.03%)</title><rect x="465.4" y="1877" width="0.4" height="15.0" fill="rgb(249,90,4)" rx="2" ry="2" />
<text x="468.42" y="1887.5" ></text>
</g>
<g >
<title>sched_clock (127,830,850 samples, 0.18%)</title><rect x="676.9" y="1893" width="2.1" height="15.0" fill="rgb(239,36,36)" rx="2" ry="2" />
<text x="679.86" y="1903.5" ></text>
</g>
<g >
<title>wake_up_q (39,389,132 samples, 0.06%)</title><rect x="68.5" y="117" width="0.7" height="15.0" fill="rgb(231,208,24)" rx="2" ry="2" />
<text x="71.55" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,450,704 samples, 0.04%)</title><rect x="646.1" y="1973" width="0.4" height="15.0" fill="rgb(212,158,38)" rx="2" ry="2" />
<text x="649.12" y="1983.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (322,548,771 samples, 0.46%)</title><rect x="169.4" y="1493" width="5.4" height="15.0" fill="rgb(252,3,35)" rx="2" ry="2" />
<text x="172.35" y="1503.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (13,570,464 samples, 0.02%)</title><rect x="493.6" y="1877" width="0.3" height="15.0" fill="rgb(211,175,18)" rx="2" ry="2" />
<text x="496.62" y="1887.5" ></text>
</g>
<g >
<title>native_write_msr (8,796,244 samples, 0.01%)</title><rect x="545.9" y="1877" width="0.2" height="15.0" fill="rgb(248,174,27)" rx="2" ry="2" />
<text x="548.93" y="1887.5" ></text>
</g>
<g >
<title>update_load_avg (30,241,782 samples, 0.04%)</title><rect x="278.5" y="1893" width="0.5" height="15.0" fill="rgb(224,223,28)" rx="2" ry="2" />
<text x="281.51" y="1903.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (15,776,520 samples, 0.02%)</title><rect x="753.4" y="1893" width="0.3" height="15.0" fill="rgb(235,120,27)" rx="2" ry="2" />
<text x="756.38" y="1903.5" ></text>
</g>
<g >
<title>Builtin:ArgumentsAdaptorTrampoline (1,549,003,407 samples, 2.23%)</title><rect x="17.9" y="1733" width="26.3" height="15.0" fill="rgb(251,186,19)" rx="2" ry="2" />
<text x="20.92" y="1743.5" >B..</text>
</g>
<g >
<title>__update_load_avg_se (18,249,592 samples, 0.03%)</title><rect x="764.1" y="1861" width="0.3" height="15.0" fill="rgb(254,212,48)" rx="2" ry="2" />
<text x="767.06" y="1871.5" ></text>
</g>
<g >
<title>[[vdso]] (25,233,473 samples, 0.04%)</title><rect x="523.2" y="2021" width="0.4" height="15.0" fill="rgb(210,176,26)" rx="2" ry="2" />
<text x="526.19" y="2031.5" ></text>
</g>
<g >
<title>[libnode.so.64] (231,690,612 samples, 0.33%)</title><rect x="161.3" y="2037" width="3.9" height="15.0" fill="rgb(214,60,38)" rx="2" ry="2" />
<text x="164.28" y="2047.5" ></text>
</g>
<g >
<title>__x64_sys_futex (68,945,518 samples, 0.10%)</title><rect x="81.7" y="2005" width="1.2" height="15.0" fill="rgb(228,166,37)" rx="2" ry="2" />
<text x="84.72" y="2015.5" ></text>
</g>
<g >
<title>send_call_function_single_ipi (23,789,036 samples, 0.03%)</title><rect x="75.1" y="1829" width="0.4" height="15.0" fill="rgb(218,29,23)" rx="2" ry="2" />
<text x="78.09" y="1839.5" ></text>
</g>
<g >
<title>net_rx_action (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1765" width="9.9" height="15.0" fill="rgb(205,107,34)" rx="2" ry="2" />
<text x="526.86" y="1775.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (46,921,596 samples, 0.07%)</title><rect x="489.8" y="1797" width="0.8" height="15.0" fill="rgb(234,164,21)" rx="2" ry="2" />
<text x="492.82" y="1807.5" ></text>
</g>
<g >
<title>aa_sk_perm (17,903,662 samples, 0.03%)</title><rect x="719.6" y="1893" width="0.3" height="15.0" fill="rgb(213,74,32)" rx="2" ry="2" />
<text x="722.58" y="1903.5" ></text>
</g>
<g >
<title>ctx_sched_in (213,248,897 samples, 0.31%)</title><rect x="151.7" y="1877" width="3.6" height="15.0" fill="rgb(230,95,31)" rx="2" ry="2" />
<text x="154.65" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1589" width="13.1" height="15.0" fill="rgb(251,34,53)" rx="2" ry="2" />
<text x="60.02" y="1599.5" ></text>
</g>
<g >
<title>native_sched_clock (127,830,850 samples, 0.18%)</title><rect x="676.9" y="1877" width="2.1" height="15.0" fill="rgb(218,30,7)" rx="2" ry="2" />
<text x="679.86" y="1887.5" ></text>
</g>
<g >
<title>finish_task_switch (312,745,026 samples, 0.45%)</title><rect x="545.8" y="1925" width="5.4" height="15.0" fill="rgb(209,54,2)" rx="2" ry="2" />
<text x="548.84" y="1935.5" ></text>
</g>
<g >
<title>do_syscall_64 (321,079,832 samples, 0.46%)</title><rect x="985.3" y="2005" width="5.5" height="15.0" fill="rgb(222,123,6)" rx="2" ry="2" />
<text x="988.32" y="2015.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (44,444,988 samples, 0.06%)</title><rect x="227.8" y="1733" width="0.7" height="15.0" fill="rgb(215,76,27)" rx="2" ry="2" />
<text x="230.76" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1637" width="13.1" height="15.0" fill="rgb(210,83,31)" rx="2" ry="2" />
<text x="60.02" y="1647.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (194,964,866 samples, 0.28%)</title><rect x="681.7" y="2021" width="3.3" height="15.0" fill="rgb(210,42,51)" rx="2" ry="2" />
<text x="684.68" y="2031.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (75,706,638 samples, 0.11%)</title><rect x="380.2" y="1973" width="1.3" height="15.0" fill="rgb(230,96,24)" rx="2" ry="2" />
<text x="383.23" y="1983.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.1] (1,315,708,283 samples, 1.90%)</title><rect x="398.3" y="2053" width="22.4" height="15.0" fill="rgb(242,200,44)" rx="2" ry="2" />
<text x="401.29" y="2063.5" >[..</text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1109" width="13.1" height="15.0" fill="rgb(250,162,23)" rx="2" ry="2" />
<text x="60.02" y="1119.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (54,401,730 samples, 0.08%)</title><rect x="155.3" y="1893" width="0.9" height="15.0" fill="rgb(250,25,12)" rx="2" ry="2" />
<text x="158.27" y="1903.5" ></text>
</g>
<g >
<title>read_tsc (26,137,738 samples, 0.04%)</title><rect x="306.9" y="1941" width="0.5" height="15.0" fill="rgb(225,117,13)" rx="2" ry="2" />
<text x="309.93" y="1951.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (28,608,563 samples, 0.04%)</title><rect x="316.1" y="2021" width="0.5" height="15.0" fill="rgb(213,113,17)" rx="2" ry="2" />
<text x="319.13" y="2031.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (340,250,589 samples, 0.49%)</title><rect x="881.7" y="2005" width="5.8" height="15.0" fill="rgb(245,203,27)" rx="2" ry="2" />
<text x="884.75" y="2015.5" ></text>
</g>
<g >
<title>__pthread_mutex_cond_lock (27,260,151 samples, 0.04%)</title><rect x="314.2" y="2053" width="0.4" height="15.0" fill="rgb(244,41,45)" rx="2" ry="2" />
<text x="317.15" y="2063.5" ></text>
</g>
<g >
<title>ip_finish_output2 (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1861" width="0.6" height="15.0" fill="rgb(250,52,17)" rx="2" ry="2" />
<text x="451.74" y="1871.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (2,054,730,734 samples, 2.96%)</title><rect x="15.6" y="1765" width="34.9" height="15.0" fill="rgb(234,89,28)" rx="2" ry="2" />
<text x="18.55" y="1775.5" >In..</text>
</g>
<g >
<title>__clock_gettime (1,023,424,252 samples, 1.47%)</title><rect x="870.1" y="2021" width="17.4" height="15.0" fill="rgb(233,8,47)" rx="2" ry="2" />
<text x="873.14" y="2031.5" ></text>
</g>
<g >
<title>try_to_wake_up (6,825,507 samples, 0.01%)</title><rect x="295.0" y="1797" width="0.1" height="15.0" fill="rgb(251,164,21)" rx="2" ry="2" />
<text x="298.00" y="1807.5" ></text>
</g>
<g >
<title>dequeue_task_fair (44,728,404 samples, 0.06%)</title><rect x="699.9" y="1909" width="0.7" height="15.0" fill="rgb(240,65,9)" rx="2" ry="2" />
<text x="702.86" y="1919.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (10,420,630 samples, 0.02%)</title><rect x="1168.0" y="1829" width="0.2" height="15.0" fill="rgb(251,202,50)" rx="2" ry="2" />
<text x="1170.99" y="1839.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (25,157,081 samples, 0.04%)</title><rect x="78.4" y="2037" width="0.5" height="15.0" fill="rgb(220,68,24)" rx="2" ry="2" />
<text x="81.43" y="2047.5" ></text>
</g>
<g >
<title>rd_kafka_broker_bufq_timeout_scan (33,716,116 samples, 0.05%)</title><rect x="580.8" y="2053" width="0.5" height="15.0" fill="rgb(246,217,12)" rx="2" ry="2" />
<text x="583.76" y="2063.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (236,904,210 samples, 0.34%)</title><rect x="546.1" y="1877" width="4.0" height="15.0" fill="rgb(205,62,11)" rx="2" ry="2" />
<text x="549.10" y="1887.5" ></text>
</g>
<g >
<title>process_backlog (44,444,988 samples, 0.06%)</title><rect x="227.8" y="1685" width="0.7" height="15.0" fill="rgb(231,70,3)" rx="2" ry="2" />
<text x="230.76" y="1695.5" ></text>
</g>
<g >
<title>update_blocked_averages (26,541,607 samples, 0.04%)</title><rect x="157.7" y="1877" width="0.4" height="15.0" fill="rgb(253,124,35)" rx="2" ry="2" />
<text x="160.66" y="1887.5" ></text>
</g>
<g >
<title>update_blocked_averages (26,885,788 samples, 0.04%)</title><rect x="472.0" y="1893" width="0.4" height="15.0" fill="rgb(216,138,30)" rx="2" ry="2" />
<text x="474.95" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1685" width="13.1" height="15.0" fill="rgb(207,215,0)" rx="2" ry="2" />
<text x="60.02" y="1695.5" ></text>
</g>
<g >
<title>tcp_recvmsg (535,454,124 samples, 0.77%)</title><rect x="602.1" y="1909" width="9.1" height="15.0" fill="rgb(252,152,44)" rx="2" ry="2" />
<text x="605.12" y="1919.5" ></text>
</g>
<g >
<title>rd_kafka_transport_poll (42,295,855 samples, 0.06%)</title><rect x="443.6" y="2021" width="0.7" height="15.0" fill="rgb(228,125,32)" rx="2" ry="2" />
<text x="446.58" y="2031.5" ></text>
</g>
<g >
<title>[libc-2.28.so] (141,899,689 samples, 0.20%)</title><rect x="814.2" y="2037" width="2.5" height="15.0" fill="rgb(218,78,17)" rx="2" ry="2" />
<text x="817.24" y="2047.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (28,608,563 samples, 0.04%)</title><rect x="316.1" y="1909" width="0.5" height="15.0" fill="rgb(249,17,26)" rx="2" ry="2" />
<text x="319.13" y="1919.5" ></text>
</g>
<g >
<title>CRYPTO_gcm128_encrypt_ctr32 (796,518,718 samples, 1.15%)</title><rect x="503.6" y="2053" width="13.5" height="15.0" fill="rgb(250,204,39)" rx="2" ry="2" />
<text x="506.61" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (1,401,895,730 samples, 2.02%)</title><rect x="714.5" y="2053" width="23.9" height="15.0" fill="rgb(217,194,25)" rx="2" ry="2" />
<text x="717.54" y="2063.5" >[..</text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (186,412,077 samples, 0.27%)</title><rect x="750.1" y="1877" width="3.2" height="15.0" fill="rgb(231,34,26)" rx="2" ry="2" />
<text x="753.13" y="1887.5" ></text>
</g>
<g >
<title>v8::internal::compiler::LoadEliminationPhase::Run (69,095,870 samples, 0.10%)</title><rect x="163.6" y="1941" width="1.2" height="15.0" fill="rgb(210,131,41)" rx="2" ry="2" />
<text x="166.60" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (225,559,124 samples, 0.32%)</title><rect x="519.4" y="2037" width="3.8" height="15.0" fill="rgb(241,44,45)" rx="2" ry="2" />
<text x="522.36" y="2047.5" ></text>
</g>
<g >
<title>native_write_msr (10,649,016 samples, 0.02%)</title><rect x="750.0" y="1877" width="0.1" height="15.0" fill="rgb(207,229,8)" rx="2" ry="2" />
<text x="752.95" y="1887.5" ></text>
</g>
<g >
<title>__pthread_mutex_lock (145,666,329 samples, 0.21%)</title><rect x="685.0" y="2053" width="2.5" height="15.0" fill="rgb(235,146,51)" rx="2" ry="2" />
<text x="688.00" y="2063.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (51,656,789 samples, 0.07%)</title><rect x="468.2" y="1813" width="0.9" height="15.0" fill="rgb(238,187,47)" rx="2" ry="2" />
<text x="471.23" y="1823.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1893" width="0.6" height="15.0" fill="rgb(248,147,18)" rx="2" ry="2" />
<text x="451.74" y="1903.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (8,796,244 samples, 0.01%)</title><rect x="545.9" y="1893" width="0.2" height="15.0" fill="rgb(219,76,53)" rx="2" ry="2" />
<text x="548.93" y="1903.5" ></text>
</g>
<g >
<title>[libnode.so.64] (471,602,466 samples, 0.68%)</title><rect x="166.8" y="1925" width="8.0" height="15.0" fill="rgb(213,167,14)" rx="2" ry="2" />
<text x="169.82" y="1935.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,158,377 samples, 0.01%)</title><rect x="295.2" y="1829" width="0.1" height="15.0" fill="rgb(213,24,16)" rx="2" ry="2" />
<text x="298.17" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="597" width="13.1" height="15.0" fill="rgb(242,74,46)" rx="2" ry="2" />
<text x="60.02" y="607.5" ></text>
</g>
<g >
<title>__pthread_once (700,941,266 samples, 1.01%)</title><rect x="687.5" y="2053" width="11.9" height="15.0" fill="rgb(210,43,13)" rx="2" ry="2" />
<text x="690.47" y="2063.5" ></text>
</g>
<g >
<title>nf_hook_slow_list (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1701" width="0.2" height="15.0" fill="rgb(213,182,35)" rx="2" ry="2" />
<text x="553.58" y="1711.5" ></text>
</g>
<g >
<title>__libc_write (321,079,832 samples, 0.46%)</title><rect x="985.3" y="2037" width="5.5" height="15.0" fill="rgb(234,166,30)" rx="2" ry="2" />
<text x="988.32" y="2047.5" ></text>
</g>
<g >
<title>update_rq_clock (1,098,350,162 samples, 1.58%)</title><rect x="93.0" y="1925" width="18.7" height="15.0" fill="rgb(217,173,27)" rx="2" ry="2" />
<text x="96.00" y="1935.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1781" width="4.6" height="15.0" fill="rgb(225,168,39)" rx="2" ry="2" />
<text x="600.13" y="1791.5" ></text>
</g>
<g >
<title>__schedule (2,870,539,034 samples, 4.13%)</title><rect x="1121.5" y="1925" width="48.8" height="15.0" fill="rgb(238,229,13)" rx="2" ry="2" />
<text x="1124.47" y="1935.5" >__sc..</text>
</g>
<g >
<title>find_busiest_group (55,732,731 samples, 0.08%)</title><rect x="156.7" y="1861" width="1.0" height="15.0" fill="rgb(241,52,45)" rx="2" ry="2" />
<text x="159.71" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (3,146,780,766 samples, 4.53%)</title><rect x="816.7" y="2021" width="53.4" height="15.0" fill="rgb(220,124,27)" rx="2" ry="2" />
<text x="819.65" y="2031.5" >[unkn..</text>
</g>
<g >
<title>do_softirq_own_stack (22,024,604 samples, 0.03%)</title><rect x="155.8" y="1845" width="0.4" height="15.0" fill="rgb(225,43,16)" rx="2" ry="2" />
<text x="158.83" y="1855.5" ></text>
</g>
<g >
<title>irq_exit_rcu (25,565,231 samples, 0.04%)</title><rect x="77.3" y="1909" width="0.4" height="15.0" fill="rgb(232,97,53)" rx="2" ry="2" />
<text x="80.27" y="1919.5" ></text>
</g>
<g >
<title>ctx_sched_in (22,361,747 samples, 0.03%)</title><rect x="69.2" y="69" width="0.4" height="15.0" fill="rgb(237,102,31)" rx="2" ry="2" />
<text x="72.22" y="79.5" ></text>
</g>
<g >
<title>psi_task_change (202,345,757 samples, 0.29%)</title><rect x="303.5" y="1925" width="3.4" height="15.0" fill="rgb(223,89,23)" rx="2" ry="2" />
<text x="306.49" y="1935.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (32,099,060 samples, 0.05%)</title><rect x="159.5" y="1973" width="0.6" height="15.0" fill="rgb(222,160,7)" rx="2" ry="2" />
<text x="162.53" y="1983.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (14,197,649 samples, 0.02%)</title><rect x="541.5" y="1925" width="0.3" height="15.0" fill="rgb(214,118,40)" rx="2" ry="2" />
<text x="544.53" y="1935.5" ></text>
</g>
<g >
<title>update_min_vruntime (21,498,004 samples, 0.03%)</title><rect x="145.7" y="1893" width="0.3" height="15.0" fill="rgb(248,126,16)" rx="2" ry="2" />
<text x="148.66" y="1903.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (49,401,779 samples, 0.07%)</title><rect x="463.0" y="1941" width="0.8" height="15.0" fill="rgb(227,138,47)" rx="2" ry="2" />
<text x="466.01" y="1951.5" ></text>
</g>
<g >
<title>_raw_spin_lock (26,113,955 samples, 0.04%)</title><rect x="66.9" y="37" width="0.5" height="15.0" fill="rgb(228,115,29)" rx="2" ry="2" />
<text x="69.91" y="47.5" ></text>
</g>
<g >
<title>BIO_clear_flags (23,377,560 samples, 0.03%)</title><rect x="188.6" y="2053" width="0.4" height="15.0" fill="rgb(210,11,8)" rx="2" ry="2" />
<text x="191.63" y="2063.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_serve (57,829,781 samples, 0.08%)</title><rect x="442.1" y="2021" width="1.0" height="15.0" fill="rgb(246,105,21)" rx="2" ry="2" />
<text x="445.11" y="2031.5" ></text>
</g>
<g >
<title>ctx_sched_in (108,836,204 samples, 0.16%)</title><rect x="701.7" y="1877" width="1.8" height="15.0" fill="rgb(225,69,39)" rx="2" ry="2" />
<text x="704.70" y="1887.5" ></text>
</g>
<g >
<title>epoll_pwait (206,974,236 samples, 0.30%)</title><rect x="87.6" y="2053" width="3.5" height="15.0" fill="rgb(217,57,22)" rx="2" ry="2" />
<text x="90.62" y="2063.5" ></text>
</g>
<g >
<title>futex_wake (39,389,132 samples, 0.06%)</title><rect x="68.5" y="133" width="0.7" height="15.0" fill="rgb(210,168,47)" rx="2" ry="2" />
<text x="71.55" y="143.5" ></text>
</g>
<g >
<title>net_rx_action (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1765" width="0.6" height="15.0" fill="rgb(206,87,11)" rx="2" ry="2" />
<text x="451.74" y="1775.5" ></text>
</g>
<g >
<title>InterpretedFunction:Producer.poll /srv/service/node_modules/node-rdkafka/lib/producer.js:168 (21,281,369 samples, 0.03%)</title><rect x="48.1" y="1749" width="0.4" height="15.0" fill="rgb(206,52,13)" rx="2" ry="2" />
<text x="51.14" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (608,323,115 samples, 0.88%)</title><rect x="57.0" y="149" width="10.4" height="15.0" fill="rgb(219,159,5)" rx="2" ry="2" />
<text x="60.02" y="159.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (15,776,520 samples, 0.02%)</title><rect x="753.4" y="1765" width="0.3" height="15.0" fill="rgb(240,45,10)" rx="2" ry="2" />
<text x="756.38" y="1775.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (1,098,350,162 samples, 1.58%)</title><rect x="93.0" y="2053" width="18.7" height="15.0" fill="rgb(239,226,36)" rx="2" ry="2" />
<text x="96.00" y="2063.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (44,444,988 samples, 0.06%)</title><rect x="227.8" y="1797" width="0.7" height="15.0" fill="rgb(231,195,41)" rx="2" ry="2" />
<text x="230.76" y="1807.5" ></text>
</g>
<g >
<title>__clock_gettime (5,153,183,877 samples, 7.42%)</title><rect x="897.7" y="2037" width="87.6" height="15.0" fill="rgb(237,137,30)" rx="2" ry="2" />
<text x="900.73" y="2047.5" >__clock_ge..</text>
</g>
<g >
<title>pick_next_task_fair (479,656,421 samples, 0.69%)</title><rect x="295.3" y="1925" width="8.2" height="15.0" fill="rgb(219,146,18)" rx="2" ry="2" />
<text x="298.34" y="1935.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (38,312,876 samples, 0.06%)</title><rect x="808.5" y="1813" width="0.6" height="15.0" fill="rgb(213,115,0)" rx="2" ry="2" />
<text x="811.48" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="421" width="13.1" height="15.0" fill="rgb(252,197,0)" rx="2" ry="2" />
<text x="60.02" y="431.5" ></text>
</g>
<g >
<title>fib_validate_source (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1653" width="0.6" height="15.0" fill="rgb(223,107,25)" rx="2" ry="2" />
<text x="451.74" y="1663.5" ></text>
</g>
<g >
<title>InterpretedFunction:e.exports /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (441,631,362 samples, 0.64%)</title><rect x="167.3" y="1845" width="7.5" height="15.0" fill="rgb(239,172,38)" rx="2" ry="2" />
<text x="170.33" y="1855.5" ></text>
</g>
<g >
<title>try_to_wake_up (104,683,936 samples, 0.15%)</title><rect x="988.4" y="1877" width="1.8" height="15.0" fill="rgb(242,82,17)" rx="2" ry="2" />
<text x="991.41" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (226,145,493 samples, 0.33%)</title><rect x="446.4" y="2021" width="3.8" height="15.0" fill="rgb(252,226,31)" rx="2" ry="2" />
<text x="449.39" y="2031.5" ></text>
</g>
<g >
<title>event_sched_in (70,763,963 samples, 0.10%)</title><rect x="750.3" y="1845" width="1.2" height="15.0" fill="rgb(224,142,13)" rx="2" ry="2" />
<text x="753.27" y="1855.5" ></text>
</g>
<g >
<title>remove_wait_queue (25,888,604 samples, 0.04%)</title><rect x="783.4" y="1957" width="0.4" height="15.0" fill="rgb(249,204,51)" rx="2" ry="2" />
<text x="786.39" y="1967.5" ></text>
</g>
<g >
<title>merge_sched_in (44,711,363 samples, 0.06%)</title><rect x="151.7" y="1845" width="0.7" height="15.0" fill="rgb(232,28,24)" rx="2" ry="2" />
<text x="154.68" y="1855.5" ></text>
</g>
<g >
<title>event_sched_in (167,083,035 samples, 0.24%)</title><rect x="120.7" y="1829" width="2.8" height="15.0" fill="rgb(208,124,10)" rx="2" ry="2" />
<text x="123.70" y="1839.5" ></text>
</g>
<g >
<title>__schedule (1,053,766,107 samples, 1.52%)</title><rect x="141.0" y="1925" width="17.9" height="15.0" fill="rgb(206,217,5)" rx="2" ry="2" />
<text x="144.01" y="1935.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (540,428,084 samples, 0.78%)</title><rect x="146.1" y="1893" width="9.2" height="15.0" fill="rgb(211,76,16)" rx="2" ry="2" />
<text x="149.09" y="1903.5" ></text>
</g>
<g >
<title>reweight_entity (39,389,132 samples, 0.06%)</title><rect x="68.5" y="37" width="0.7" height="15.0" fill="rgb(212,108,20)" rx="2" ry="2" />
<text x="71.55" y="47.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="389" width="13.1" height="15.0" fill="rgb(235,158,31)" rx="2" ry="2" />
<text x="60.02" y="399.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (32,064,458 samples, 0.05%)</title><rect x="769.2" y="1797" width="0.5" height="15.0" fill="rgb(242,227,35)" rx="2" ry="2" />
<text x="772.19" y="1807.5" ></text>
</g>
<g >
<title>event_sched_in (66,451,152 samples, 0.10%)</title><rect x="666.5" y="1845" width="1.1" height="15.0" fill="rgb(214,39,42)" rx="2" ry="2" />
<text x="669.49" y="1855.5" ></text>
</g>
<g >
<title>update_blocked_averages (14,167,337 samples, 0.02%)</title><rect x="471.7" y="1797" width="0.3" height="15.0" fill="rgb(227,120,48)" rx="2" ry="2" />
<text x="474.71" y="1807.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,082,771,249 samples, 1.56%)</title><rect x="456.0" y="2037" width="18.4" height="15.0" fill="rgb(232,161,25)" rx="2" ry="2" />
<text x="459.04" y="2047.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (27,172,777 samples, 0.04%)</title><rect x="782.9" y="1861" width="0.5" height="15.0" fill="rgb(209,134,30)" rx="2" ry="2" />
<text x="785.89" y="1871.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (109,870,050 samples, 0.16%)</title><rect x="654.8" y="1957" width="1.9" height="15.0" fill="rgb(214,66,8)" rx="2" ry="2" />
<text x="657.79" y="1967.5" ></text>
</g>
<g >
<title>[[vdso]] (308,277,521 samples, 0.44%)</title><rect x="839.8" y="1941" width="5.3" height="15.0" fill="rgb(246,210,48)" rx="2" ry="2" />
<text x="842.85" y="1951.5" ></text>
</g>
<g >
<title>ip_route_input_noref (44,927,374 samples, 0.06%)</title><rect x="221.5" y="1685" width="0.8" height="15.0" fill="rgb(238,226,23)" rx="2" ry="2" />
<text x="224.50" y="1695.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (185,133,744 samples, 0.27%)</title><rect x="1040.3" y="2037" width="3.1" height="15.0" fill="rgb(230,123,10)" rx="2" ry="2" />
<text x="1043.28" y="2047.5" ></text>
</g>
<g >
<title>net_rx_action (44,444,988 samples, 0.06%)</title><rect x="227.8" y="1701" width="0.7" height="15.0" fill="rgb(249,183,15)" rx="2" ry="2" />
<text x="230.76" y="1711.5" ></text>
</g>
<g >
<title>try_to_wake_up (39,389,132 samples, 0.06%)</title><rect x="68.5" y="101" width="0.7" height="15.0" fill="rgb(230,72,29)" rx="2" ry="2" />
<text x="71.55" y="111.5" ></text>
</g>
<g >
<title>update_load_avg (32,206,640 samples, 0.05%)</title><rect x="302.9" y="1877" width="0.6" height="15.0" fill="rgb(214,163,46)" rx="2" ry="2" />
<text x="305.95" y="1887.5" ></text>
</g>
<g >
<title>dequeue_task_fair (46,525,151 samples, 0.07%)</title><rect x="749.0" y="1925" width="0.8" height="15.0" fill="rgb(240,5,24)" rx="2" ry="2" />
<text x="752.05" y="1935.5" ></text>
</g>
<g >
<title>pick_next_task_idle (21,577,301 samples, 0.03%)</title><rect x="133.3" y="1909" width="0.3" height="15.0" fill="rgb(215,188,25)" rx="2" ry="2" />
<text x="136.26" y="1919.5" ></text>
</g>
<g >
<title>load_balance (28,504,033 samples, 0.04%)</title><rect x="69.6" y="69" width="0.5" height="15.0" fill="rgb(254,135,19)" rx="2" ry="2" />
<text x="72.60" y="79.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (7,197,956 samples, 0.01%)</title><rect x="485.9" y="1797" width="0.1" height="15.0" fill="rgb(237,167,5)" rx="2" ry="2" />
<text x="488.88" y="1807.5" ></text>
</g>
<g >
<title>update_blocked_averages (111,383,311 samples, 0.16%)</title><rect x="809.1" y="1877" width="1.9" height="15.0" fill="rgb(230,17,39)" rx="2" ry="2" />
<text x="812.13" y="1887.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (26,246,579 samples, 0.04%)</title><rect x="1039.6" y="1957" width="0.5" height="15.0" fill="rgb(254,27,22)" rx="2" ry="2" />
<text x="1042.62" y="1967.5" ></text>
</g>
<g >
<title>merge_sched_in (174,433,076 samples, 0.25%)</title><rect x="120.6" y="1845" width="3.0" height="15.0" fill="rgb(208,193,7)" rx="2" ry="2" />
<text x="123.60" y="1855.5" ></text>
</g>
<g >
<title>do_futex (3,098,587,968 samples, 4.46%)</title><rect x="1118.1" y="1989" width="52.7" height="15.0" fill="rgb(236,24,53)" rx="2" ry="2" />
<text x="1121.11" y="1999.5" >do_fu..</text>
</g>
<g >
<title>futex_wait (652,231,999 samples, 0.94%)</title><rect x="759.7" y="1973" width="11.1" height="15.0" fill="rgb(227,176,18)" rx="2" ry="2" />
<text x="762.74" y="1983.5" ></text>
</g>
<g >
<title>dequeue_task_fair (146,130,339 samples, 0.21%)</title><rect x="464.4" y="1925" width="2.4" height="15.0" fill="rgb(249,36,12)" rx="2" ry="2" />
<text x="467.36" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (436,220,660 samples, 0.63%)</title><rect x="71.0" y="2021" width="7.4" height="15.0" fill="rgb(232,205,46)" rx="2" ry="2" />
<text x="73.97" y="2031.5" ></text>
</g>
<g >
<title>wake_up_q (1,098,350,162 samples, 1.58%)</title><rect x="93.0" y="1957" width="18.7" height="15.0" fill="rgb(222,48,51)" rx="2" ry="2" />
<text x="96.00" y="1967.5" ></text>
</g>
<g >
<title>Builtin:CallFunctionForwardVarargs (24,247,168 samples, 0.03%)</title><rect x="15.1" y="1781" width="0.5" height="15.0" fill="rgb(253,120,15)" rx="2" ry="2" />
<text x="18.14" y="1791.5" ></text>
</g>
<g >
<title>sched_clock_cpu (127,830,850 samples, 0.18%)</title><rect x="676.9" y="1909" width="2.1" height="15.0" fill="rgb(235,64,44)" rx="2" ry="2" />
<text x="679.86" y="1919.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (155,078,143 samples, 0.22%)</title><rect x="264.2" y="1941" width="2.6" height="15.0" fill="rgb(217,27,10)" rx="2" ry="2" />
<text x="267.17" y="1951.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (43,679,764 samples, 0.06%)</title><rect x="704.3" y="1861" width="0.7" height="15.0" fill="rgb(226,149,38)" rx="2" ry="2" />
<text x="707.28" y="1871.5" ></text>
</g>
<g >
<title>schedule (20,033,037 samples, 0.03%)</title><rect x="68.2" y="53" width="0.3" height="15.0" fill="rgb(219,97,19)" rx="2" ry="2" />
<text x="71.21" y="63.5" ></text>
</g>
<g >
<title>sched_clock_cpu (21,508,679 samples, 0.03%)</title><rect x="130.0" y="1749" width="0.4" height="15.0" fill="rgb(223,140,5)" rx="2" ry="2" />
<text x="133.00" y="1759.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (31,259,811 samples, 0.05%)</title><rect x="44.2" y="1733" width="0.6" height="15.0" fill="rgb(213,55,11)" rx="2" ry="2" />
<text x="47.25" y="1743.5" ></text>
</g>
<g >
<title>__pthread_enable_asynccancel (25,586,040 samples, 0.04%)</title><rect x="313.7" y="2053" width="0.5" height="15.0" fill="rgb(213,201,41)" rx="2" ry="2" />
<text x="316.72" y="2063.5" ></text>
</g>
<g >
<title>dequeue_entity (29,173,616 samples, 0.04%)</title><rect x="700.1" y="1893" width="0.5" height="15.0" fill="rgb(241,166,8)" rx="2" ry="2" />
<text x="703.12" y="1903.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1845" width="4.6" height="15.0" fill="rgb(218,37,34)" rx="2" ry="2" />
<text x="600.13" y="1855.5" ></text>
</g>
<g >
<title>pick_next_task_idle (26,876,056 samples, 0.04%)</title><rect x="794.1" y="1925" width="0.5" height="15.0" fill="rgb(207,194,25)" rx="2" ry="2" />
<text x="797.14" y="1935.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (27,172,777 samples, 0.04%)</title><rect x="782.9" y="1909" width="0.5" height="15.0" fill="rgb(221,118,43)" rx="2" ry="2" />
<text x="785.89" y="1919.5" ></text>
</g>
<g >
<title>rd_kafka_broker_consumer_serve (45,709,842 samples, 0.07%)</title><rect x="382.7" y="2053" width="0.8" height="15.0" fill="rgb(241,187,32)" rx="2" ry="2" />
<text x="385.73" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (31,259,811 samples, 0.05%)</title><rect x="44.2" y="1621" width="0.6" height="15.0" fill="rgb(206,15,14)" rx="2" ry="2" />
<text x="47.25" y="1631.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1413" width="13.1" height="15.0" fill="rgb(227,120,35)" rx="2" ry="2" />
<text x="60.02" y="1423.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (43,154,715 samples, 0.06%)</title><rect x="20.9" y="1445" width="0.7" height="15.0" fill="rgb(221,132,34)" rx="2" ry="2" />
<text x="23.89" y="1455.5" ></text>
</g>
<g >
<title>update_blocked_averages (378,710,557 samples, 0.55%)</title><rect x="371.5" y="1877" width="6.5" height="15.0" fill="rgb(230,194,4)" rx="2" ry="2" />
<text x="374.55" y="1887.5" ></text>
</g>
<g >
<title>psi_group_change (445,085,317 samples, 0.64%)</title><rect x="1045.8" y="1877" width="7.5" height="15.0" fill="rgb(222,204,1)" rx="2" ry="2" />
<text x="1048.77" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (611,999,757 samples, 0.88%)</title><rect x="523.9" y="2021" width="10.4" height="15.0" fill="rgb(219,59,20)" rx="2" ry="2" />
<text x="526.86" y="2031.5" ></text>
</g>
<g >
<title>tcp_rcv_space_adjust (24,566,947 samples, 0.04%)</title><rect x="601.7" y="1893" width="0.4" height="15.0" fill="rgb(215,103,53)" rx="2" ry="2" />
<text x="604.70" y="1903.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (2,054,730,734 samples, 2.96%)</title><rect x="15.6" y="1781" width="34.9" height="15.0" fill="rgb(245,220,17)" rx="2" ry="2" />
<text x="18.55" y="1791.5" >In..</text>
</g>
<g >
<title>newidle_balance (46,952,830 samples, 0.07%)</title><rect x="793.3" y="1909" width="0.8" height="15.0" fill="rgb(238,75,53)" rx="2" ry="2" />
<text x="796.34" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (337,797,865 samples, 0.49%)</title><rect x="61.1" y="85" width="5.8" height="15.0" fill="rgb(212,226,11)" rx="2" ry="2" />
<text x="64.14" y="95.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (18,462,441 samples, 0.03%)</title><rect x="212.9" y="1925" width="0.3" height="15.0" fill="rgb(242,12,11)" rx="2" ry="2" />
<text x="215.89" y="1935.5" ></text>
</g>
<g >
<title>dequeue_task_fair (35,205,997 samples, 0.05%)</title><rect x="116.2" y="1909" width="0.6" height="15.0" fill="rgb(245,182,14)" rx="2" ry="2" />
<text x="119.22" y="1919.5" ></text>
</g>
<g >
<title>futex_wait (3,188,546,718 samples, 4.59%)</title><rect x="324.7" y="1973" width="54.2" height="15.0" fill="rgb(228,86,15)" rx="2" ry="2" />
<text x="327.72" y="1983.5" >futex..</text>
</g>
<g >
<title>do_softirq (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1829" width="0.6" height="15.0" fill="rgb(253,36,47)" rx="2" ry="2" />
<text x="451.74" y="1839.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (26,419,604 samples, 0.04%)</title><rect x="777.0" y="1909" width="0.5" height="15.0" fill="rgb(233,6,41)" rx="2" ry="2" />
<text x="780.03" y="1919.5" ></text>
</g>
<g >
<title>aa_label_next_confined (27,602,947 samples, 0.04%)</title><rect x="611.2" y="1861" width="0.5" height="15.0" fill="rgb(245,107,0)" rx="2" ry="2" />
<text x="614.22" y="1871.5" ></text>
</g>
<g >
<title>record_times (17,200,505 samples, 0.02%)</title><rect x="674.4" y="1893" width="0.3" height="15.0" fill="rgb(226,18,17)" rx="2" ry="2" />
<text x="677.44" y="1903.5" ></text>
</g>
<g >
<title>[[vdso]] (3,709,395,431 samples, 5.34%)</title><rect x="904.9" y="2021" width="63.1" height="15.0" fill="rgb(244,111,5)" rx="2" ry="2" />
<text x="907.93" y="2031.5" >[[vdso]]</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (16,659,180 samples, 0.02%)</title><rect x="768.6" y="1893" width="0.3" height="15.0" fill="rgb(228,175,51)" rx="2" ry="2" />
<text x="771.58" y="1903.5" ></text>
</g>
<g >
<title>poll_freewait (25,888,604 samples, 0.04%)</title><rect x="783.4" y="1973" width="0.4" height="15.0" fill="rgb(219,117,36)" rx="2" ry="2" />
<text x="786.39" y="1983.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (55,732,731 samples, 0.08%)</title><rect x="156.7" y="1845" width="1.0" height="15.0" fill="rgb(234,130,8)" rx="2" ry="2" />
<text x="159.71" y="1855.5" ></text>
</g>
<g >
<title>update_cfs_group (26,187,713 samples, 0.04%)</title><rect x="481.6" y="1877" width="0.4" height="15.0" fill="rgb(233,38,9)" rx="2" ry="2" />
<text x="484.56" y="1887.5" ></text>
</g>
<g >
<title>poll_freewait (113,374,462 samples, 0.16%)</title><rect x="461.1" y="1973" width="1.9" height="15.0" fill="rgb(227,196,25)" rx="2" ry="2" />
<text x="464.05" y="1983.5" ></text>
</g>
<g >
<title>__libc_write (208,624,347 samples, 0.30%)</title><rect x="450.2" y="2037" width="3.6" height="15.0" fill="rgb(227,134,52)" rx="2" ry="2" />
<text x="453.23" y="2047.5" ></text>
</g>
<g >
<title>do_futex (869,128,056 samples, 1.25%)</title><rect x="479.1" y="1989" width="14.8" height="15.0" fill="rgb(243,161,25)" rx="2" ry="2" />
<text x="482.08" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,381,832,927 samples, 1.99%)</title><rect x="112.3" y="2021" width="23.5" height="15.0" fill="rgb(205,88,47)" rx="2" ry="2" />
<text x="115.27" y="2031.5" >d..</text>
</g>
<g >
<title>select_task_rq_fair (27,379,270 samples, 0.04%)</title><rect x="988.4" y="1861" width="0.5" height="15.0" fill="rgb(227,142,17)" rx="2" ry="2" />
<text x="991.41" y="1871.5" ></text>
</g>
<g >
<title>__sk_dst_check (30,419,328 samples, 0.04%)</title><rect x="214.7" y="1845" width="0.5" height="15.0" fill="rgb(212,102,21)" rx="2" ry="2" />
<text x="217.67" y="1855.5" ></text>
</g>
<g >
<title>switch_fpu_return (117,472,972 samples, 0.17%)</title><rect x="796.6" y="1989" width="2.0" height="15.0" fill="rgb(227,186,44)" rx="2" ry="2" />
<text x="799.65" y="1999.5" ></text>
</g>
<g >
<title>Nan::AsyncExecute (39,017,225 samples, 0.06%)</title><rect x="61.1" y="53" width="0.7" height="15.0" fill="rgb(232,48,1)" rx="2" ry="2" />
<text x="64.14" y="63.5" ></text>
</g>
<g >
<title>update_blocked_averages (87,866,121 samples, 0.13%)</title><rect x="705.7" y="1829" width="1.5" height="15.0" fill="rgb(226,8,49)" rx="2" ry="2" />
<text x="708.67" y="1839.5" ></text>
</g>
<g >
<title>v8::Array::New (634,005,259 samples, 0.91%)</title><rect x="174.8" y="2005" width="10.8" height="15.0" fill="rgb(213,108,19)" rx="2" ry="2" />
<text x="177.84" y="2015.5" ></text>
</g>
<g >
<title>[libc-2.28.so] (138,890,556 samples, 0.20%)</title><rect x="438.3" y="2037" width="2.4" height="15.0" fill="rgb(242,68,19)" rx="2" ry="2" />
<text x="441.34" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1829" width="13.1" height="15.0" fill="rgb(230,34,27)" rx="2" ry="2" />
<text x="60.02" y="1839.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (441,631,362 samples, 0.64%)</title><rect x="167.3" y="1781" width="7.5" height="15.0" fill="rgb(215,192,38)" rx="2" ry="2" />
<text x="170.33" y="1791.5" ></text>
</g>
<g >
<title>find_busiest_group (145,735,608 samples, 0.21%)</title><rect x="551.2" y="1877" width="2.4" height="15.0" fill="rgb(239,216,26)" rx="2" ry="2" />
<text x="554.16" y="1887.5" ></text>
</g>
<g >
<title>update_load_avg (27,172,777 samples, 0.04%)</title><rect x="782.9" y="1765" width="0.5" height="15.0" fill="rgb(207,162,37)" rx="2" ry="2" />
<text x="785.89" y="1775.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (147,634,338 samples, 0.21%)</title><rect x="1118.5" y="1941" width="2.5" height="15.0" fill="rgb(209,106,6)" rx="2" ry="2" />
<text x="1121.48" y="1951.5" ></text>
</g>
<g >
<title>rcu_read_unlock_strict (15,175,647 samples, 0.02%)</title><rect x="800.8" y="1861" width="0.3" height="15.0" fill="rgb(239,45,6)" rx="2" ry="2" />
<text x="803.82" y="1871.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (31,330,401 samples, 0.05%)</title><rect x="534.5" y="2037" width="0.5" height="15.0" fill="rgb(245,18,41)" rx="2" ry="2" />
<text x="537.47" y="2047.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (445,085,317 samples, 0.64%)</title><rect x="1045.8" y="1989" width="7.5" height="15.0" fill="rgb(215,98,40)" rx="2" ry="2" />
<text x="1048.77" y="1999.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (323,916,154 samples, 0.47%)</title><rect x="604.1" y="1877" width="5.5" height="15.0" fill="rgb(254,107,4)" rx="2" ry="2" />
<text x="607.12" y="1887.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (77,284,624 samples, 0.11%)</title><rect x="604.1" y="1829" width="1.3" height="15.0" fill="rgb(207,146,50)" rx="2" ry="2" />
<text x="607.12" y="1839.5" ></text>
</g>
<g >
<title>NodeKafka::Workers::KafkaConsumerConsumeNum::HandleOKCallback (1,198,342,383 samples, 1.73%)</title><rect x="165.2" y="2021" width="20.4" height="15.0" fill="rgb(246,145,43)" rx="2" ry="2" />
<text x="168.24" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (26,047,745 samples, 0.04%)</title><rect x="646.1" y="2037" width="0.4" height="15.0" fill="rgb(217,33,35)" rx="2" ry="2" />
<text x="649.09" y="2047.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (172,620,676 samples, 0.25%)</title><rect x="665.5" y="1877" width="3.0" height="15.0" fill="rgb(223,66,15)" rx="2" ry="2" />
<text x="668.54" y="1887.5" ></text>
</g>
<g >
<title>psi_group_change (25,465,425 samples, 0.04%)</title><rect x="794.6" y="1909" width="0.4" height="15.0" fill="rgb(242,207,46)" rx="2" ry="2" />
<text x="797.60" y="1919.5" ></text>
</g>
<g >
<title>__fget_files (84,471,818 samples, 0.12%)</title><rect x="650.2" y="1957" width="1.4" height="15.0" fill="rgb(251,39,17)" rx="2" ry="2" />
<text x="653.18" y="1967.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (138,502,950 samples, 0.20%)</title><rect x="446.4" y="1893" width="2.3" height="15.0" fill="rgb(216,190,39)" rx="2" ry="2" />
<text x="449.39" y="1903.5" ></text>
</g>
<g >
<title>[libssl.so.1.1] (139,949,026 samples, 0.20%)</title><rect x="191.5" y="2053" width="2.4" height="15.0" fill="rgb(236,26,35)" rx="2" ry="2" />
<text x="194.50" y="2063.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (14,248,885 samples, 0.02%)</title><rect x="704.0" y="1861" width="0.3" height="15.0" fill="rgb(214,99,30)" rx="2" ry="2" />
<text x="707.04" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1813" width="13.1" height="15.0" fill="rgb(239,49,14)" rx="2" ry="2" />
<text x="60.02" y="1823.5" ></text>
</g>
<g >
<title>ip_rcv (28,788,323 samples, 0.04%)</title><rect x="221.0" y="1717" width="0.5" height="15.0" fill="rgb(241,0,49)" rx="2" ry="2" />
<text x="224.01" y="1727.5" ></text>
</g>
<g >
<title>select_task_rq_fair (26,246,579 samples, 0.04%)</title><rect x="1039.6" y="1909" width="0.5" height="15.0" fill="rgb(208,98,32)" rx="2" ry="2" />
<text x="1042.62" y="1919.5" ></text>
</g>
<g >
<title>tcp_poll (32,280,251 samples, 0.05%)</title><rect x="680.0" y="1957" width="0.5" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="682.97" y="1967.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1,052,833,448 samples, 1.52%)</title><rect x="477.3" y="2053" width="17.9" height="15.0" fill="rgb(254,179,7)" rx="2" ry="2" />
<text x="480.34" y="2063.5" ></text>
</g>
<g >
<title>current_time (19,740,280 samples, 0.03%)</title><rect x="214.3" y="1893" width="0.4" height="15.0" fill="rgb(252,60,12)" rx="2" ry="2" />
<text x="217.34" y="1903.5" ></text>
</g>
<g >
<title>process_backlog (198,096,218 samples, 0.29%)</title><rect x="218.9" y="1749" width="3.4" height="15.0" fill="rgb(233,183,4)" rx="2" ry="2" />
<text x="221.90" y="1759.5" ></text>
</g>
<g >
<title>ttwu_do_activate (27,172,777 samples, 0.04%)</title><rect x="782.9" y="1813" width="0.5" height="15.0" fill="rgb(218,212,4)" rx="2" ry="2" />
<text x="785.89" y="1823.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (104,428,136 samples, 0.15%)</title><rect x="355.2" y="1893" width="1.8" height="15.0" fill="rgb(225,94,18)" rx="2" ry="2" />
<text x="358.23" y="1903.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (1,186,296,659 samples, 1.71%)</title><rect x="138.8" y="1957" width="20.1" height="15.0" fill="rgb(250,201,2)" rx="2" ry="2" />
<text x="141.75" y="1967.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (18,345,938 samples, 0.03%)</title><rect x="757.6" y="2005" width="0.3" height="15.0" fill="rgb(208,96,7)" rx="2" ry="2" />
<text x="760.63" y="2015.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (141,460,721 samples, 0.20%)</title><rect x="469.1" y="1861" width="2.4" height="15.0" fill="rgb(231,122,9)" rx="2" ry="2" />
<text x="472.11" y="1871.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (127,223,472 samples, 0.18%)</title><rect x="226.4" y="1877" width="2.1" height="15.0" fill="rgb(239,119,51)" rx="2" ry="2" />
<text x="229.35" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (24,564,347 samples, 0.04%)</title><rect x="323.0" y="2037" width="0.4" height="15.0" fill="rgb(219,15,46)" rx="2" ry="2" />
<text x="325.99" y="2047.5" ></text>
</g>
<g >
<title>schedule (479,118,313 samples, 0.69%)</title><rect x="699.9" y="1941" width="8.1" height="15.0" fill="rgb(212,14,27)" rx="2" ry="2" />
<text x="702.86" y="1951.5" ></text>
</g>
<g >
<title>merge_sched_in (93,427,317 samples, 0.13%)</title><rect x="467.5" y="1861" width="1.6" height="15.0" fill="rgb(237,94,19)" rx="2" ry="2" />
<text x="470.52" y="1871.5" ></text>
</g>
<g >
<title>ttwu_do_activate (28,676,483 samples, 0.04%)</title><rect x="355.9" y="1765" width="0.5" height="15.0" fill="rgb(240,16,29)" rx="2" ry="2" />
<text x="358.91" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,081,940 samples, 0.04%)</title><rect x="770.8" y="1973" width="0.5" height="15.0" fill="rgb(207,159,52)" rx="2" ry="2" />
<text x="773.83" y="1983.5" ></text>
</g>
<g >
<title>rb_next (76,122,036 samples, 0.11%)</title><rect x="128.6" y="1845" width="1.3" height="15.0" fill="rgb(217,95,54)" rx="2" ry="2" />
<text x="131.61" y="1855.5" ></text>
</g>
<g >
<title>timespec_get (8,039,307 samples, 0.01%)</title><rect x="774.4" y="2053" width="0.1" height="15.0" fill="rgb(237,223,44)" rx="2" ry="2" />
<text x="777.38" y="2063.5" ></text>
</g>
<g >
<title>new_sync_read (611,999,757 samples, 0.88%)</title><rect x="523.9" y="1957" width="10.4" height="15.0" fill="rgb(224,199,18)" rx="2" ry="2" />
<text x="526.86" y="1967.5" ></text>
</g>
<g >
<title>ep_autoremove_wake_function (124,178,928 samples, 0.18%)</title><rect x="73.4" y="1877" width="2.1" height="15.0" fill="rgb(240,126,19)" rx="2" ry="2" />
<text x="76.39" y="1887.5" ></text>
</g>
<g >
<title>__clock_gettime (39,657,941 samples, 0.06%)</title><rect x="523.2" y="2037" width="0.7" height="15.0" fill="rgb(226,220,21)" rx="2" ry="2" />
<text x="526.19" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1317" width="13.1" height="15.0" fill="rgb(236,196,25)" rx="2" ry="2" />
<text x="60.02" y="1327.5" ></text>
</g>
<g >
<title>rd_kafka_consume0 (115,025,374 samples, 0.17%)</title><rect x="78.9" y="2037" width="1.9" height="15.0" fill="rgb(250,168,26)" rx="2" ry="2" />
<text x="81.86" y="2047.5" ></text>
</g>
<g >
<title>record_times (135,819,443 samples, 0.20%)</title><rect x="88.8" y="1893" width="2.3" height="15.0" fill="rgb(210,177,20)" rx="2" ry="2" />
<text x="91.80" y="1903.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (87,866,121 samples, 0.13%)</title><rect x="705.7" y="1797" width="1.5" height="15.0" fill="rgb(233,144,53)" rx="2" ry="2" />
<text x="708.67" y="1807.5" ></text>
</g>
<g >
<title>vfs_read (195,550,940 samples, 0.28%)</title><rect x="446.4" y="1973" width="3.3" height="15.0" fill="rgb(224,223,12)" rx="2" ry="2" />
<text x="449.39" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (41,480,711 samples, 0.06%)</title><rect x="774.5" y="1973" width="0.7" height="15.0" fill="rgb(211,129,44)" rx="2" ry="2" />
<text x="777.52" y="1983.5" ></text>
</g>
<g >
<title>InterpretedFunction:a /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (358,952,232 samples, 0.52%)</title><rect x="168.7" y="1701" width="6.1" height="15.0" fill="rgb(211,123,3)" rx="2" ry="2" />
<text x="171.73" y="1711.5" ></text>
</g>
<g >
<title>v8::internal::compiler::PipelineCompilationJob::ExecuteJobImpl (231,690,612 samples, 0.33%)</title><rect x="161.3" y="1973" width="3.9" height="15.0" fill="rgb(250,67,17)" rx="2" ry="2" />
<text x="164.28" y="1983.5" ></text>
</g>
<g >
<title>enqueue_task_fair (77,304,666 samples, 0.11%)</title><rect x="988.9" y="1845" width="1.3" height="15.0" fill="rgb(207,28,8)" rx="2" ry="2" />
<text x="991.88" y="1855.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (8,625,437 samples, 0.01%)</title><rect x="467.4" y="1893" width="0.1" height="15.0" fill="rgb(219,11,41)" rx="2" ry="2" />
<text x="470.36" y="1903.5" ></text>
</g>
<g >
<title>native_sched_clock (1,098,350,162 samples, 1.58%)</title><rect x="93.0" y="1877" width="18.7" height="15.0" fill="rgb(247,207,14)" rx="2" ry="2" />
<text x="96.00" y="1887.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (28,608,563 samples, 0.04%)</title><rect x="316.1" y="1973" width="0.5" height="15.0" fill="rgb(205,94,50)" rx="2" ry="2" />
<text x="319.13" y="1983.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (18,877,380 samples, 0.03%)</title><rect x="550.8" y="1845" width="0.4" height="15.0" fill="rgb(212,71,9)" rx="2" ry="2" />
<text x="553.84" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (718,041,914 samples, 1.03%)</title><rect x="57.0" y="245" width="12.2" height="15.0" fill="rgb(251,207,15)" rx="2" ry="2" />
<text x="60.02" y="255.5" ></text>
</g>
<g >
<title>__tls_get_addr (56,617,424 samples, 0.08%)</title><rect x="319.0" y="2053" width="0.9" height="15.0" fill="rgb(235,118,45)" rx="2" ry="2" />
<text x="321.98" y="2063.5" ></text>
</g>
<g >
<title>update_load_avg (26,885,788 samples, 0.04%)</title><rect x="472.0" y="1877" width="0.4" height="15.0" fill="rgb(248,79,20)" rx="2" ry="2" />
<text x="474.95" y="1887.5" ></text>
</g>
<g >
<title>__pthread_disable_asynccancel (36,586,386 samples, 0.05%)</title><rect x="86.1" y="2053" width="0.7" height="15.0" fill="rgb(231,55,33)" rx="2" ry="2" />
<text x="89.14" y="2063.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1893" width="9.9" height="15.0" fill="rgb(235,190,28)" rx="2" ry="2" />
<text x="526.86" y="1903.5" ></text>
</g>
<g >
<title>fsnotify (118,358,053 samples, 0.17%)</title><rect x="209.8" y="1957" width="2.0" height="15.0" fill="rgb(211,104,15)" rx="2" ry="2" />
<text x="212.78" y="1967.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (74,990,503 samples, 0.11%)</title><rect x="248.8" y="2005" width="1.2" height="15.0" fill="rgb(218,86,13)" rx="2" ry="2" />
<text x="251.75" y="2015.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (9,964,642 samples, 0.01%)</title><rect x="295.0" y="1845" width="0.2" height="15.0" fill="rgb(216,79,5)" rx="2" ry="2" />
<text x="298.00" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1365" width="13.1" height="15.0" fill="rgb(228,173,40)" rx="2" ry="2" />
<text x="60.02" y="1375.5" ></text>
</g>
<g >
<title>atime_needs_update (19,740,280 samples, 0.03%)</title><rect x="214.3" y="1909" width="0.4" height="15.0" fill="rgb(240,190,10)" rx="2" ry="2" />
<text x="217.34" y="1919.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (112,078,690 samples, 0.16%)</title><rect x="778.4" y="2037" width="1.9" height="15.0" fill="rgb(220,145,34)" rx="2" ry="2" />
<text x="781.38" y="2047.5" ></text>
</g>
<g >
<title>tcp_recvmsg (228,257,657 samples, 0.33%)</title><rect x="218.4" y="1909" width="3.9" height="15.0" fill="rgb(215,177,1)" rx="2" ry="2" />
<text x="221.39" y="1919.5" ></text>
</g>
<g >
<title>rd_kafka_op_handle (16,500,598 samples, 0.02%)</title><rect x="390.1" y="2053" width="0.3" height="15.0" fill="rgb(209,97,5)" rx="2" ry="2" />
<text x="393.14" y="2063.5" ></text>
</g>
<g >
<title>event_sched_in (6,422,430 samples, 0.01%)</title><rect x="483.3" y="1829" width="0.1" height="15.0" fill="rgb(238,69,16)" rx="2" ry="2" />
<text x="486.27" y="1839.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (2,182,774,155 samples, 3.14%)</title><rect x="14.8" y="1813" width="37.1" height="15.0" fill="rgb(231,31,6)" rx="2" ry="2" />
<text x="17.79" y="1823.5" >Int..</text>
</g>
<g >
<title>reweight_entity (29,173,616 samples, 0.04%)</title><rect x="700.1" y="1877" width="0.5" height="15.0" fill="rgb(219,163,33)" rx="2" ry="2" />
<text x="703.12" y="1887.5" ></text>
</g>
<g >
<title>rd_kafka_recv (105,310,052 samples, 0.15%)</title><rect x="242.5" y="2037" width="1.7" height="15.0" fill="rgb(233,130,19)" rx="2" ry="2" />
<text x="245.45" y="2047.5" ></text>
</g>
<g >
<title>pick_next_task_fair (26,885,788 samples, 0.04%)</title><rect x="472.0" y="1925" width="0.4" height="15.0" fill="rgb(208,7,33)" rx="2" ry="2" />
<text x="474.95" y="1935.5" ></text>
</g>
<g >
<title>net_rx_action (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1813" width="0.2" height="15.0" fill="rgb(232,142,12)" rx="2" ry="2" />
<text x="553.58" y="1823.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (39,389,132 samples, 0.06%)</title><rect x="68.5" y="213" width="0.7" height="15.0" fill="rgb(246,180,30)" rx="2" ry="2" />
<text x="71.55" y="223.5" ></text>
</g>
<g >
<title>__lll_lock_wait (50,865,780 samples, 0.07%)</title><rect x="69.2" y="245" width="0.9" height="15.0" fill="rgb(245,101,26)" rx="2" ry="2" />
<text x="72.22" y="255.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (98,734,585 samples, 0.14%)</title><rect x="355.3" y="1829" width="1.7" height="15.0" fill="rgb(248,91,44)" rx="2" ry="2" />
<text x="358.32" y="1839.5" ></text>
</g>
<g >
<title>update_load_avg (25,711,619 samples, 0.04%)</title><rect x="749.4" y="1893" width="0.4" height="15.0" fill="rgb(229,57,21)" rx="2" ry="2" />
<text x="752.40" y="1903.5" ></text>
</g>
<g >
<title>rd_kafka_1s_tmr_cb (69,295,210 samples, 0.10%)</title><rect x="1059.3" y="2037" width="1.1" height="15.0" fill="rgb(254,183,44)" rx="2" ry="2" />
<text x="1062.27" y="2047.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (26,246,579 samples, 0.04%)</title><rect x="1039.6" y="1989" width="0.5" height="15.0" fill="rgb(223,162,33)" rx="2" ry="2" />
<text x="1042.62" y="1999.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (61,512,150 samples, 0.09%)</title><rect x="465.8" y="1877" width="1.0" height="15.0" fill="rgb(217,87,38)" rx="2" ry="2" />
<text x="468.79" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="901" width="13.1" height="15.0" fill="rgb(231,124,13)" rx="2" ry="2" />
<text x="60.02" y="911.5" ></text>
</g>
<g >
<title>Nan::imp::FunctionCallbackWrapper (26,203,498 samples, 0.04%)</title><rect x="44.8" y="1669" width="0.4" height="15.0" fill="rgb(245,106,35)" rx="2" ry="2" />
<text x="47.78" y="1679.5" ></text>
</g>
<g >
<title>rd_kafka_timers_run (1,206,848,707 samples, 1.74%)</title><rect x="1090.7" y="2037" width="20.5" height="15.0" fill="rgb(246,190,10)" rx="2" ry="2" />
<text x="1093.69" y="2047.5" ></text>
</g>
<g >
<title>__clock_gettime (123,047,505 samples, 0.18%)</title><rect x="444.3" y="2037" width="2.1" height="15.0" fill="rgb(244,68,13)" rx="2" ry="2" />
<text x="447.30" y="2047.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (53,178,492 samples, 0.08%)</title><rect x="777.5" y="2037" width="0.9" height="15.0" fill="rgb(254,86,21)" rx="2" ry="2" />
<text x="780.48" y="2047.5" ></text>
</g>
<g >
<title>put_prev_task_fair (74,594,338 samples, 0.11%)</title><rect x="134.0" y="1909" width="1.3" height="15.0" fill="rgb(247,200,11)" rx="2" ry="2" />
<text x="137.04" y="1919.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (662,885,094 samples, 0.95%)</title><rect x="745.3" y="1973" width="11.3" height="15.0" fill="rgb(208,197,42)" rx="2" ry="2" />
<text x="748.30" y="1983.5" ></text>
</g>
<g >
<title>ipt_do_table (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1685" width="1.2" height="15.0" fill="rgb(248,150,33)" rx="2" ry="2" />
<text x="721.38" y="1695.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (63,693,392 samples, 0.09%)</title><rect x="564.6" y="2053" width="1.1" height="15.0" fill="rgb(233,55,31)" rx="2" ry="2" />
<text x="567.60" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (14,211,680 samples, 0.02%)</title><rect x="1167.7" y="1829" width="0.3" height="15.0" fill="rgb(250,222,2)" rx="2" ry="2" />
<text x="1170.75" y="1839.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (60,900,576 samples, 0.09%)</title><rect x="666.6" y="1813" width="1.0" height="15.0" fill="rgb(205,86,48)" rx="2" ry="2" />
<text x="669.59" y="1823.5" ></text>
</g>
<g >
<title>__list_add_valid (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1941" width="0.2" height="15.0" fill="rgb(232,169,52)" rx="2" ry="2" />
<text x="90.79" y="1951.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (183,578,026 samples, 0.26%)</title><rect x="850.3" y="1989" width="3.1" height="15.0" fill="rgb(224,46,14)" rx="2" ry="2" />
<text x="853.27" y="1999.5" ></text>
</g>
<g >
<title>__pthread_once (50,326,861 samples, 0.07%)</title><rect x="318.1" y="2053" width="0.9" height="15.0" fill="rgb(246,50,52)" rx="2" ry="2" />
<text x="321.13" y="2063.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (54,209,259 samples, 0.08%)</title><rect x="445.5" y="2021" width="0.9" height="15.0" fill="rgb(241,37,31)" rx="2" ry="2" />
<text x="448.47" y="2031.5" ></text>
</g>
<g >
<title>security_file_permission (105,180,465 samples, 0.15%)</title><rect x="222.3" y="1957" width="1.8" height="15.0" fill="rgb(219,21,8)" rx="2" ry="2" />
<text x="225.27" y="1967.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (9,964,642 samples, 0.01%)</title><rect x="295.0" y="1829" width="0.2" height="15.0" fill="rgb(251,120,23)" rx="2" ry="2" />
<text x="298.00" y="1839.5" ></text>
</g>
<g >
<title>__poll (3,744,056,188 samples, 5.39%)</title><rect x="250.0" y="2053" width="63.7" height="15.0" fill="rgb(237,205,42)" rx="2" ry="2" />
<text x="253.03" y="2063.5" >__poll</text>
</g>
<g >
<title>asm_call_sysvec_on_stack (10,158,377 samples, 0.01%)</title><rect x="295.2" y="1845" width="0.1" height="15.0" fill="rgb(217,174,28)" rx="2" ry="2" />
<text x="298.17" y="1855.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (23,644,967 samples, 0.03%)</title><rect x="1043.0" y="1957" width="0.4" height="15.0" fill="rgb(206,91,54)" rx="2" ry="2" />
<text x="1046.03" y="1967.5" ></text>
</g>
<g >
<title>switch_fpu_return (185,792,236 samples, 0.27%)</title><rect x="1171.3" y="1989" width="3.1" height="15.0" fill="rgb(239,121,27)" rx="2" ry="2" />
<text x="1174.27" y="1999.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (23,644,967 samples, 0.03%)</title><rect x="1043.0" y="2021" width="0.4" height="15.0" fill="rgb(206,193,53)" rx="2" ry="2" />
<text x="1046.03" y="2031.5" ></text>
</g>
<g >
<title>v8::internal::compiler::GraphReducer::ReduceNode (69,095,870 samples, 0.10%)</title><rect x="163.6" y="1925" width="1.2" height="15.0" fill="rgb(217,33,47)" rx="2" ry="2" />
<text x="166.60" y="1935.5" ></text>
</g>
<g >
<title>ksys_write (436,220,660 samples, 0.63%)</title><rect x="71.0" y="1989" width="7.4" height="15.0" fill="rgb(250,36,29)" rx="2" ry="2" />
<text x="73.97" y="1999.5" ></text>
</g>
<g >
<title>__unqueue_futex (29,094,152 samples, 0.04%)</title><rect x="567.2" y="1957" width="0.5" height="15.0" fill="rgb(221,200,39)" rx="2" ry="2" />
<text x="570.23" y="1967.5" ></text>
</g>
<g >
<title>ksys_write (81,057,429 samples, 0.12%)</title><rect x="452.4" y="1989" width="1.4" height="15.0" fill="rgb(248,84,50)" rx="2" ry="2" />
<text x="455.40" y="1999.5" ></text>
</g>
<g >
<title>[libc-2.28.so] (143,582,279 samples, 0.21%)</title><rect x="712.1" y="2053" width="2.4" height="15.0" fill="rgb(210,62,24)" rx="2" ry="2" />
<text x="715.10" y="2063.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (27,930,652 samples, 0.04%)</title><rect x="155.3" y="1813" width="0.5" height="15.0" fill="rgb(210,142,14)" rx="2" ry="2" />
<text x="158.30" y="1823.5" ></text>
</g>
<g >
<title>__tls_get_addr (15,796,445 samples, 0.02%)</title><rect x="595.0" y="2021" width="0.3" height="15.0" fill="rgb(206,207,53)" rx="2" ry="2" />
<text x="598.00" y="2031.5" ></text>
</g>
<g >
<title>__pthread_mutex_lock (172,220,435 samples, 0.25%)</title><rect x="847.3" y="1989" width="3.0" height="15.0" fill="rgb(218,213,17)" rx="2" ry="2" />
<text x="850.35" y="1999.5" ></text>
</g>
<g >
<title>rd_kafka_thread_main (324,994,042 samples, 0.47%)</title><rect x="888.0" y="2021" width="5.5" height="15.0" fill="rgb(235,79,31)" rx="2" ry="2" />
<text x="891.02" y="2031.5" ></text>
</g>
<g >
<title>[[vdso]] (31,754,811 samples, 0.05%)</title><rect x="776.1" y="2021" width="0.5" height="15.0" fill="rgb(205,20,53)" rx="2" ry="2" />
<text x="779.07" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1701" width="13.1" height="15.0" fill="rgb(228,57,30)" rx="2" ry="2" />
<text x="60.02" y="1711.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (175,322,453 samples, 0.25%)</title><rect x="297.5" y="1829" width="3.0" height="15.0" fill="rgb(230,200,45)" rx="2" ry="2" />
<text x="300.51" y="1839.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1,234,691,860 samples, 1.78%)</title><rect x="357.0" y="1909" width="21.0" height="15.0" fill="rgb(229,64,12)" rx="2" ry="2" />
<text x="360.00" y="1919.5" ></text>
</g>
<g >
<title>update_cfs_group (54,837,551 samples, 0.08%)</title><rect x="543.5" y="1893" width="1.0" height="15.0" fill="rgb(250,116,14)" rx="2" ry="2" />
<text x="546.55" y="1903.5" ></text>
</g>
<g >
<title>ksys_write (314,096,761 samples, 0.45%)</title><rect x="613.3" y="1989" width="5.4" height="15.0" fill="rgb(224,104,43)" rx="2" ry="2" />
<text x="616.34" y="1999.5" ></text>
</g>
<g >
<title>__x64_sys_poll (859,703,145 samples, 1.24%)</title><rect x="781.5" y="2005" width="14.6" height="15.0" fill="rgb(236,147,16)" rx="2" ry="2" />
<text x="784.45" y="2015.5" ></text>
</g>
<g >
<title>psi_task_change (17,054,907 samples, 0.02%)</title><rect x="555.4" y="1925" width="0.3" height="15.0" fill="rgb(237,200,34)" rx="2" ry="2" />
<text x="558.40" y="1935.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (117,238,490 samples, 0.17%)</title><rect x="765.2" y="1845" width="2.0" height="15.0" fill="rgb(219,201,26)" rx="2" ry="2" />
<text x="768.18" y="1855.5" ></text>
</g>
<g >
<title>[libuv.so.1.0.0] (6,767,006 samples, 0.01%)</title><rect x="61.8" y="53" width="0.1" height="15.0" fill="rgb(243,141,27)" rx="2" ry="2" />
<text x="64.81" y="63.5" ></text>
</g>
<g >
<title>__cxxabiv1::__vmi_class_type_info::__do_dyncast (21,810,118 samples, 0.03%)</title><rect x="70.1" y="2037" width="0.4" height="15.0" fill="rgb(234,159,54)" rx="2" ry="2" />
<text x="73.08" y="2047.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (32,377,126 samples, 0.05%)</title><rect x="155.3" y="1829" width="0.5" height="15.0" fill="rgb(221,107,20)" rx="2" ry="2" />
<text x="158.27" y="1839.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (39,389,132 samples, 0.06%)</title><rect x="68.5" y="197" width="0.7" height="15.0" fill="rgb(208,5,33)" rx="2" ry="2" />
<text x="71.55" y="207.5" ></text>
</g>
<g >
<title>psi_task_change (66,675,121 samples, 0.10%)</title><rect x="1169.1" y="1909" width="1.2" height="15.0" fill="rgb(240,229,54)" rx="2" ry="2" />
<text x="1172.12" y="1919.5" ></text>
</g>
<g >
<title>dequeue_entity (135,170,301 samples, 0.19%)</title><rect x="543.5" y="1909" width="2.3" height="15.0" fill="rgb(227,145,0)" rx="2" ry="2" />
<text x="546.55" y="1919.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (110,832,138 samples, 0.16%)</title><rect x="663.7" y="1893" width="1.8" height="15.0" fill="rgb(210,223,12)" rx="2" ry="2" />
<text x="666.66" y="1903.5" ></text>
</g>
<g >
<title>ctx_sched_in (29,184,893 samples, 0.04%)</title><rect x="703.5" y="1861" width="0.5" height="15.0" fill="rgb(228,20,45)" rx="2" ry="2" />
<text x="706.55" y="1871.5" ></text>
</g>
<g >
<title>[libssl.so.1.1] (142,562,954 samples, 0.21%)</title><rect x="202.1" y="2021" width="2.5" height="15.0" fill="rgb(235,228,10)" rx="2" ry="2" />
<text x="205.13" y="2031.5" ></text>
</g>
<g >
<title>rb_next (7,939,469 samples, 0.01%)</title><rect x="550.0" y="1861" width="0.1" height="15.0" fill="rgb(216,12,3)" rx="2" ry="2" />
<text x="552.99" y="1871.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (13,570,464 samples, 0.02%)</title><rect x="493.6" y="1861" width="0.3" height="15.0" fill="rgb(206,158,29)" rx="2" ry="2" />
<text x="496.62" y="1871.5" ></text>
</g>
<g >
<title>pipe_poll (31,780,755 samples, 0.05%)</title><rect x="743.8" y="1973" width="0.6" height="15.0" fill="rgb(254,74,12)" rx="2" ry="2" />
<text x="746.83" y="1983.5" ></text>
</g>
<g >
<title>ttwu_do_activate (33,325,624 samples, 0.05%)</title><rect x="74.5" y="1845" width="0.6" height="15.0" fill="rgb(226,40,7)" rx="2" ry="2" />
<text x="77.53" y="1855.5" ></text>
</g>
<g >
<title>inet_twsk_kill (25,565,231 samples, 0.04%)</title><rect x="77.3" y="1797" width="0.4" height="15.0" fill="rgb(214,50,27)" rx="2" ry="2" />
<text x="80.27" y="1807.5" ></text>
</g>
<g >
<title>malloc (43,154,715 samples, 0.06%)</title><rect x="20.9" y="1365" width="0.7" height="15.0" fill="rgb(243,186,12)" rx="2" ry="2" />
<text x="23.89" y="1375.5" ></text>
</g>
<g >
<title>idle_cpu (28,583,701 samples, 0.04%)</title><rect x="1168.6" y="1829" width="0.5" height="15.0" fill="rgb(224,125,20)" rx="2" ry="2" />
<text x="1171.64" y="1839.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (7,776,946 samples, 0.01%)</title><rect x="790.8" y="1813" width="0.2" height="15.0" fill="rgb(235,84,17)" rx="2" ry="2" />
<text x="793.83" y="1823.5" ></text>
</g>
<g >
<title>__x64_sys_poll (1,271,648,997 samples, 1.83%)</title><rect x="537.5" y="2005" width="21.6" height="15.0" fill="rgb(242,34,11)" rx="2" ry="2" />
<text x="540.54" y="2015.5" >_..</text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (177,927,978 samples, 0.26%)</title><rect x="547.0" y="1861" width="3.0" height="15.0" fill="rgb(217,85,36)" rx="2" ry="2" />
<text x="549.97" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="309" width="13.1" height="15.0" fill="rgb(250,54,17)" rx="2" ry="2" />
<text x="60.02" y="319.5" ></text>
</g>
<g >
<title>update_load_avg (8,028,550 samples, 0.01%)</title><rect x="790.0" y="1893" width="0.1" height="15.0" fill="rgb(225,83,14)" rx="2" ry="2" />
<text x="792.99" y="1903.5" ></text>
</g>
<g >
<title>poll_freewait (36,781,187 samples, 0.05%)</title><rect x="262.9" y="1973" width="0.6" height="15.0" fill="rgb(254,60,30)" rx="2" ry="2" />
<text x="265.92" y="1983.5" ></text>
</g>
<g >
<title>__pthread_mutex_lock (16,850,499 samples, 0.02%)</title><rect x="86.8" y="2053" width="0.3" height="15.0" fill="rgb(207,133,16)" rx="2" ry="2" />
<text x="89.79" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (31,039,577 samples, 0.04%)</title><rect x="595.5" y="1941" width="0.5" height="15.0" fill="rgb(238,35,5)" rx="2" ry="2" />
<text x="598.50" y="1951.5" ></text>
</g>
<g >
<title>v8::internal::compiler::GraphReducer::Reduce (136,394,792 samples, 0.20%)</title><rect x="161.3" y="1893" width="2.3" height="15.0" fill="rgb(245,59,20)" rx="2" ry="2" />
<text x="164.28" y="1903.5" ></text>
</g>
<g >
<title>merge_sched_in (115,551,277 samples, 0.17%)</title><rect x="284.9" y="1861" width="2.0" height="15.0" fill="rgb(221,127,23)" rx="2" ry="2" />
<text x="287.93" y="1871.5" ></text>
</g>
<g >
<title>do_futex (43,082,636 samples, 0.06%)</title><rect x="248.0" y="1989" width="0.8" height="15.0" fill="rgb(218,216,9)" rx="2" ry="2" />
<text x="251.02" y="1999.5" ></text>
</g>
<g >
<title>Nan::imp::FunctionCallbackWrapper (43,154,715 samples, 0.06%)</title><rect x="20.9" y="1381" width="0.7" height="15.0" fill="rgb(233,15,29)" rx="2" ry="2" />
<text x="23.89" y="1391.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (28,608,563 samples, 0.04%)</title><rect x="316.1" y="2037" width="0.5" height="15.0" fill="rgb(232,2,13)" rx="2" ry="2" />
<text x="319.13" y="2047.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (62,160,790 samples, 0.09%)</title><rect x="806.0" y="1845" width="1.0" height="15.0" fill="rgb(232,92,54)" rx="2" ry="2" />
<text x="808.99" y="1855.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (21,081,219 samples, 0.03%)</title><rect x="708.3" y="2005" width="0.3" height="15.0" fill="rgb(244,27,17)" rx="2" ry="2" />
<text x="711.27" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (24,450,704 samples, 0.04%)</title><rect x="646.1" y="2021" width="0.4" height="15.0" fill="rgb(216,114,1)" rx="2" ry="2" />
<text x="649.12" y="2031.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (40,506,454 samples, 0.06%)</title><rect x="326.1" y="1925" width="0.7" height="15.0" fill="rgb(206,170,19)" rx="2" ry="2" />
<text x="329.14" y="1935.5" ></text>
</g>
<g >
<title>enqueue_task_fair (14,197,649 samples, 0.02%)</title><rect x="541.5" y="1813" width="0.3" height="15.0" fill="rgb(250,184,39)" rx="2" ry="2" />
<text x="544.53" y="1823.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (1,286,739,809 samples, 1.85%)</title><rect x="113.4" y="1957" width="21.9" height="15.0" fill="rgb(213,183,51)" rx="2" ry="2" />
<text x="116.44" y="1967.5" >f..</text>
</g>
<g >
<title>__pthread_mutex_lock (9,864,772 samples, 0.01%)</title><rect x="798.6" y="2053" width="0.2" height="15.0" fill="rgb(254,117,51)" rx="2" ry="2" />
<text x="801.64" y="2063.5" ></text>
</g>
<g >
<title>fib6_select_path (32,442,632 samples, 0.05%)</title><rect x="217.6" y="1605" width="0.5" height="15.0" fill="rgb(252,148,46)" rx="2" ry="2" />
<text x="220.59" y="1615.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (8,650,013 samples, 0.01%)</title><rect x="485.9" y="1829" width="0.1" height="15.0" fill="rgb(220,139,31)" rx="2" ry="2" />
<text x="488.88" y="1839.5" ></text>
</g>
<g >
<title>dequeue_entity (35,205,997 samples, 0.05%)</title><rect x="116.2" y="1893" width="0.6" height="15.0" fill="rgb(242,212,19)" rx="2" ry="2" />
<text x="119.22" y="1903.5" ></text>
</g>
<g >
<title>process_backlog (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1749" width="9.9" height="15.0" fill="rgb(240,203,17)" rx="2" ry="2" />
<text x="526.86" y="1759.5" ></text>
</g>
<g >
<title>ip6_dst_check (30,419,328 samples, 0.04%)</title><rect x="214.7" y="1829" width="0.5" height="15.0" fill="rgb(248,161,14)" rx="2" ry="2" />
<text x="217.67" y="1839.5" ></text>
</g>
<g >
<title>node::AsyncWrap::MakeCallback (2,385,256,845 samples, 3.44%)</title><rect x="11.3" y="1957" width="40.6" height="15.0" fill="rgb(229,91,43)" rx="2" ry="2" />
<text x="14.34" y="1967.5" >nod..</text>
</g>
<g >
<title>_pthread_cleanup_push (25,355,449 samples, 0.04%)</title><rect x="87.1" y="2053" width="0.4" height="15.0" fill="rgb(233,15,3)" rx="2" ry="2" />
<text x="90.10" y="2063.5" ></text>
</g>
<g >
<title>__schedule (582,023,160 samples, 0.84%)</title><rect x="760.5" y="1925" width="9.9" height="15.0" fill="rgb(241,35,38)" rx="2" ry="2" />
<text x="763.54" y="1935.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (68,449,804 samples, 0.10%)</title><rect x="236.8" y="2037" width="1.1" height="15.0" fill="rgb(253,30,45)" rx="2" ry="2" />
<text x="239.78" y="2047.5" ></text>
</g>
<g >
<title>rb_insert_color (27,976,438 samples, 0.04%)</title><rect x="480.8" y="1893" width="0.5" height="15.0" fill="rgb(211,212,49)" rx="2" ry="2" />
<text x="483.84" y="1903.5" ></text>
</g>
<g >
<title>update_blocked_averages (558,476,361 samples, 0.80%)</title><rect x="362.1" y="1829" width="9.4" height="15.0" fill="rgb(212,147,29)" rx="2" ry="2" />
<text x="365.06" y="1839.5" ></text>
</g>
<g >
<title>[libnode.so.64] (2,567,439,022 samples, 3.70%)</title><rect x="10.5" y="1973" width="43.7" height="15.0" fill="rgb(221,85,46)" rx="2" ry="2" />
<text x="13.53" y="1983.5" >[lib..</text>
</g>
<g >
<title>__update_idle_core (21,577,301 samples, 0.03%)</title><rect x="133.3" y="1893" width="0.3" height="15.0" fill="rgb(244,82,34)" rx="2" ry="2" />
<text x="136.26" y="1903.5" ></text>
</g>
<g >
<title>__wake_up_common (124,178,928 samples, 0.18%)</title><rect x="73.4" y="1893" width="2.1" height="15.0" fill="rgb(219,25,28)" rx="2" ry="2" />
<text x="76.39" y="1903.5" ></text>
</g>
<g >
<title>run_rebalance_domains (14,167,337 samples, 0.02%)</title><rect x="471.7" y="1813" width="0.3" height="15.0" fill="rgb(225,6,17)" rx="2" ry="2" />
<text x="474.71" y="1823.5" ></text>
</g>
<g >
<title>__schedule (724,149,717 samples, 1.04%)</title><rect x="481.3" y="1925" width="12.3" height="15.0" fill="rgb(229,109,32)" rx="2" ry="2" />
<text x="484.31" y="1935.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (54,538,751 samples, 0.08%)</title><rect x="567.7" y="1941" width="1.0" height="15.0" fill="rgb(227,146,43)" rx="2" ry="2" />
<text x="570.75" y="1951.5" ></text>
</g>
<g >
<title>put_prev_task_fair (125,246,075 samples, 0.18%)</title><rect x="674.7" y="1925" width="2.2" height="15.0" fill="rgb(238,163,12)" rx="2" ry="2" />
<text x="677.73" y="1935.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,098,350,162 samples, 1.58%)</title><rect x="93.0" y="1941" width="18.7" height="15.0" fill="rgb(206,138,21)" rx="2" ry="2" />
<text x="96.00" y="1951.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (28,504,033 samples, 0.04%)</title><rect x="69.6" y="37" width="0.5" height="15.0" fill="rgb(233,52,25)" rx="2" ry="2" />
<text x="72.60" y="47.5" ></text>
</g>
<g >
<title>merge_sched_in (49,677,321 samples, 0.07%)</title><rect x="546.1" y="1861" width="0.9" height="15.0" fill="rgb(223,176,42)" rx="2" ry="2" />
<text x="549.12" y="1871.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (23,771,023 samples, 0.03%)</title><rect x="500.8" y="1925" width="0.4" height="15.0" fill="rgb(236,213,8)" rx="2" ry="2" />
<text x="503.80" y="1935.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (7,472,675 samples, 0.01%)</title><rect x="790.5" y="1893" width="0.1" height="15.0" fill="rgb(208,218,43)" rx="2" ry="2" />
<text x="793.50" y="1903.5" ></text>
</g>
<g >
<title>rd_kafka_broker_consumer_serve (37,863,340 samples, 0.05%)</title><rect x="496.6" y="2053" width="0.6" height="15.0" fill="rgb(230,148,33)" rx="2" ry="2" />
<text x="499.58" y="2063.5" ></text>
</g>
<g >
<title>vfs_read (611,999,757 samples, 0.88%)</title><rect x="523.9" y="1973" width="10.4" height="15.0" fill="rgb(239,169,31)" rx="2" ry="2" />
<text x="526.86" y="1983.5" ></text>
</g>
<g >
<title>__libc_write (457,220,318 samples, 0.66%)</title><rect x="613.3" y="2037" width="7.8" height="15.0" fill="rgb(234,146,23)" rx="2" ry="2" />
<text x="616.34" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (4,139,332,540 samples, 5.96%)</title><rect x="10.5" y="2053" width="70.3" height="15.0" fill="rgb(223,44,12)" rx="2" ry="2" />
<text x="13.46" y="2063.5" >[unknown]</text>
</g>
<g >
<title>futex_wait_queue_me (760,860,536 samples, 1.10%)</title><rect x="567.7" y="1957" width="13.0" height="15.0" fill="rgb(247,157,49)" rx="2" ry="2" />
<text x="570.75" y="1967.5" ></text>
</g>
<g >
<title>sock_write_iter (314,096,761 samples, 0.45%)</title><rect x="613.3" y="1941" width="5.4" height="15.0" fill="rgb(236,103,6)" rx="2" ry="2" />
<text x="616.34" y="1951.5" ></text>
</g>
<g >
<title>napi_complete_done (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1781" width="0.2" height="15.0" fill="rgb(252,199,29)" rx="2" ry="2" />
<text x="553.58" y="1791.5" ></text>
</g>
<g >
<title>[libnode.so.64] (2,736,847,453 samples, 3.94%)</title><rect x="10.5" y="2037" width="46.5" height="15.0" fill="rgb(227,158,28)" rx="2" ry="2" />
<text x="13.50" y="2047.5" >[lib..</text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (163,506,394 samples, 0.24%)</title><rect x="20.3" y="1525" width="2.8" height="15.0" fill="rgb(254,90,49)" rx="2" ry="2" />
<text x="23.29" y="1535.5" ></text>
</g>
<g >
<title>find_busiest_group (119,104,464 samples, 0.17%)</title><rect x="669.6" y="1877" width="2.1" height="15.0" fill="rgb(205,70,34)" rx="2" ry="2" />
<text x="672.63" y="1887.5" ></text>
</g>
<g >
<title>__libc_write (224,046,367 samples, 0.32%)</title><rect x="225.7" y="2037" width="3.8" height="15.0" fill="rgb(254,131,27)" rx="2" ry="2" />
<text x="228.70" y="2047.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (314,096,761 samples, 0.45%)</title><rect x="613.3" y="1893" width="5.4" height="15.0" fill="rgb(238,55,26)" rx="2" ry="2" />
<text x="616.34" y="1903.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,309,596,579 samples, 4.77%)</title><rect x="323.4" y="2021" width="56.3" height="15.0" fill="rgb(217,114,25)" rx="2" ry="2" />
<text x="326.41" y="2031.5" >do_sy..</text>
</g>
<g >
<title>load_balance (150,493,886 samples, 0.22%)</title><rect x="130.4" y="1877" width="2.6" height="15.0" fill="rgb(209,135,42)" rx="2" ry="2" />
<text x="133.40" y="1887.5" ></text>
</g>
<g >
<title>ctx_sched_in (586,251,928 samples, 0.84%)</title><rect x="284.9" y="1893" width="9.9" height="15.0" fill="rgb(214,145,15)" rx="2" ry="2" />
<text x="287.87" y="1903.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (81,057,429 samples, 0.12%)</title><rect x="452.4" y="1909" width="1.4" height="15.0" fill="rgb(240,16,7)" rx="2" ry="2" />
<text x="455.40" y="1919.5" ></text>
</g>
<g >
<title>v8::internal::Execution::Call (471,602,466 samples, 0.68%)</title><rect x="166.8" y="1957" width="8.0" height="15.0" fill="rgb(250,126,54)" rx="2" ry="2" />
<text x="169.82" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="2021" width="13.1" height="15.0" fill="rgb(251,49,21)" rx="2" ry="2" />
<text x="60.02" y="2031.5" ></text>
</g>
<g >
<title>NodeKafka::KafkaConsumer::Consume (25,209,037 samples, 0.04%)</title><rect x="61.1" y="37" width="0.5" height="15.0" fill="rgb(207,112,9)" rx="2" ry="2" />
<text x="64.14" y="47.5" ></text>
</g>
<g >
<title>_raw_spin_lock (76,243,332 samples, 0.11%)</title><rect x="119.3" y="1877" width="1.3" height="15.0" fill="rgb(223,176,29)" rx="2" ry="2" />
<text x="122.26" y="1887.5" ></text>
</g>
<g >
<title>__update_load_avg_se (23,718,371 samples, 0.03%)</title><rect x="707.6" y="1861" width="0.4" height="15.0" fill="rgb(236,221,24)" rx="2" ry="2" />
<text x="710.60" y="1871.5" ></text>
</g>
<g >
<title>pick_next_task_idle (19,926,758 samples, 0.03%)</title><rect x="378.0" y="1909" width="0.3" height="15.0" fill="rgb(237,7,54)" rx="2" ry="2" />
<text x="380.99" y="1919.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (1,255,616,216 samples, 1.81%)</title><rect x="1123.6" y="1877" width="21.3" height="15.0" fill="rgb(227,7,24)" rx="2" ry="2" />
<text x="1126.56" y="1887.5" >_..</text>
</g>
<g >
<title>rd_kafka_cgrp_serve (28,967,567 samples, 0.04%)</title><rect x="887.5" y="2021" width="0.5" height="15.0" fill="rgb(212,154,21)" rx="2" ry="2" />
<text x="890.53" y="2031.5" ></text>
</g>
<g >
<title>rd_kafka_cgrp_try_terminate (29,606,078 samples, 0.04%)</title><rect x="1085.6" y="2037" width="0.5" height="15.0" fill="rgb(241,71,13)" rx="2" ry="2" />
<text x="1088.61" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,598,532,089 samples, 5.18%)</title><rect x="252.5" y="2037" width="61.2" height="15.0" fill="rgb(241,128,40)" rx="2" ry="2" />
<text x="255.50" y="2047.5" >entry_..</text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (22,361,747 samples, 0.03%)</title><rect x="69.2" y="37" width="0.4" height="15.0" fill="rgb(218,133,52)" rx="2" ry="2" />
<text x="72.22" y="47.5" ></text>
</g>
<g >
<title>finish_task_switch (300,972,899 samples, 0.43%)</title><rect x="466.8" y="1925" width="5.2" height="15.0" fill="rgb(237,181,34)" rx="2" ry="2" />
<text x="469.84" y="1935.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (21,103,581 samples, 0.03%)</title><rect x="668.8" y="1861" width="0.4" height="15.0" fill="rgb(209,70,31)" rx="2" ry="2" />
<text x="671.83" y="1871.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (43,634,759 samples, 0.06%)</title><rect x="312.9" y="2005" width="0.8" height="15.0" fill="rgb(228,17,43)" rx="2" ry="2" />
<text x="315.92" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (520,290,137 samples, 0.75%)</title><rect x="699.8" y="2037" width="8.8" height="15.0" fill="rgb(212,3,23)" rx="2" ry="2" />
<text x="702.78" y="2047.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1829" width="1.4" height="15.0" fill="rgb(222,58,47)" rx="2" ry="2" />
<text x="229.35" y="1839.5" ></text>
</g>
<g >
<title>inet6_recvmsg (138,502,950 samples, 0.20%)</title><rect x="446.4" y="1925" width="2.3" height="15.0" fill="rgb(248,65,37)" rx="2" ry="2" />
<text x="449.39" y="1935.5" ></text>
</g>
<g >
<title>dequeue_entity (142,075,370 samples, 0.20%)</title><rect x="143.2" y="1893" width="2.5" height="15.0" fill="rgb(243,6,21)" rx="2" ry="2" />
<text x="146.24" y="1903.5" ></text>
</g>
<g >
<title>__unqueue_futex (28,446,507 samples, 0.04%)</title><rect x="324.7" y="1957" width="0.5" height="15.0" fill="rgb(246,222,4)" rx="2" ry="2" />
<text x="327.72" y="1967.5" ></text>
</g>
<g >
<title>v8::HandleScope::CreateHandle (154,200,108 samples, 0.22%)</title><rect x="45.2" y="1669" width="2.6" height="15.0" fill="rgb(236,209,18)" rx="2" ry="2" />
<text x="48.22" y="1679.5" ></text>
</g>
<g >
<title>psi_task_change (24,167,966 samples, 0.03%)</title><rect x="133.6" y="1909" width="0.4" height="15.0" fill="rgb(229,58,44)" rx="2" ry="2" />
<text x="136.63" y="1919.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (30,560,503 samples, 0.04%)</title><rect x="792.4" y="1909" width="0.5" height="15.0" fill="rgb(245,48,47)" rx="2" ry="2" />
<text x="795.39" y="1919.5" ></text>
</g>
<g >
<title>pfifo_fast_enqueue (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1685" width="9.9" height="15.0" fill="rgb(214,90,28)" rx="2" ry="2" />
<text x="526.86" y="1695.5" ></text>
</g>
<g >
<title>run_rebalance_domains (10,158,377 samples, 0.01%)</title><rect x="295.2" y="1813" width="0.1" height="15.0" fill="rgb(208,148,12)" rx="2" ry="2" />
<text x="298.17" y="1823.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (70,474,363 samples, 0.10%)</title><rect x="81.7" y="2037" width="1.2" height="15.0" fill="rgb(228,166,32)" rx="2" ry="2" />
<text x="84.72" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (62,160,790 samples, 0.09%)</title><rect x="806.0" y="1861" width="1.0" height="15.0" fill="rgb(235,225,18)" rx="2" ry="2" />
<text x="808.99" y="1871.5" ></text>
</g>
<g >
<title>try_to_wake_up (14,197,649 samples, 0.02%)</title><rect x="541.5" y="1845" width="0.3" height="15.0" fill="rgb(209,155,34)" rx="2" ry="2" />
<text x="544.53" y="1855.5" ></text>
</g>
<g >
<title>update_blocked_averages (46,952,830 samples, 0.07%)</title><rect x="793.3" y="1893" width="0.8" height="15.0" fill="rgb(247,186,33)" rx="2" ry="2" />
<text x="796.34" y="1903.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (25,565,231 samples, 0.04%)</title><rect x="77.3" y="1893" width="0.4" height="15.0" fill="rgb(240,108,53)" rx="2" ry="2" />
<text x="80.27" y="1903.5" ></text>
</g>
<g >
<title>__fib_validate_source (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1637" width="0.6" height="15.0" fill="rgb(251,70,26)" rx="2" ry="2" />
<text x="451.74" y="1647.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (129,382,678 samples, 0.19%)</title><rect x="574.3" y="1861" width="2.2" height="15.0" fill="rgb(245,104,31)" rx="2" ry="2" />
<text x="577.30" y="1871.5" ></text>
</g>
<g >
<title>update_curr (53,574,906 samples, 0.08%)</title><rect x="143.2" y="1877" width="1.0" height="15.0" fill="rgb(240,88,36)" rx="2" ry="2" />
<text x="146.24" y="1887.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (15,776,520 samples, 0.02%)</title><rect x="753.4" y="1829" width="0.3" height="15.0" fill="rgb(222,196,33)" rx="2" ry="2" />
<text x="756.38" y="1839.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1829" width="4.6" height="15.0" fill="rgb(209,61,13)" rx="2" ry="2" />
<text x="600.13" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1445" width="13.1" height="15.0" fill="rgb(214,216,47)" rx="2" ry="2" />
<text x="60.02" y="1455.5" ></text>
</g>
<g >
<title>rd_kafka_cgrp_serve (17,575,961 samples, 0.03%)</title><rect x="1186.9" y="2053" width="0.3" height="15.0" fill="rgb(223,154,25)" rx="2" ry="2" />
<text x="1189.85" y="2063.5" ></text>
</g>
<g >
<title>__calc_delta (15,222,117 samples, 0.02%)</title><rect x="1122.2" y="1861" width="0.2" height="15.0" fill="rgb(247,49,4)" rx="2" ry="2" />
<text x="1125.15" y="1871.5" ></text>
</g>
<g >
<title>pipe_poll (76,731,477 samples, 0.11%)</title><rect x="459.7" y="1973" width="1.4" height="15.0" fill="rgb(252,51,31)" rx="2" ry="2" />
<text x="462.75" y="1983.5" ></text>
</g>
<g >
<title>Builtin:ArgumentsAdaptorTrampoline (2,078,977,902 samples, 2.99%)</title><rect x="15.1" y="1797" width="35.4" height="15.0" fill="rgb(246,215,19)" rx="2" ry="2" />
<text x="18.14" y="1807.5" >Bu..</text>
</g>
<g >
<title>SSL_in_init (49,886,278 samples, 0.07%)</title><rect x="195.4" y="2037" width="0.8" height="15.0" fill="rgb(205,212,40)" rx="2" ry="2" />
<text x="198.39" y="2047.5" ></text>
</g>
<g >
<title>__dynamic_cast (55,949,092 samples, 0.08%)</title><rect x="57.0" y="37" width="1.0" height="15.0" fill="rgb(242,62,42)" rx="2" ry="2" />
<text x="60.02" y="47.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (43,154,715 samples, 0.06%)</title><rect x="20.9" y="1413" width="0.7" height="15.0" fill="rgb(235,49,37)" rx="2" ry="2" />
<text x="23.89" y="1423.5" ></text>
</g>
<g >
<title>do_syscall_64 (68,945,518 samples, 0.10%)</title><rect x="81.7" y="2021" width="1.2" height="15.0" fill="rgb(242,54,0)" rx="2" ry="2" />
<text x="84.72" y="2031.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1701" width="9.9" height="15.0" fill="rgb(215,190,18)" rx="2" ry="2" />
<text x="526.86" y="1711.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (322,548,771 samples, 0.46%)</title><rect x="169.4" y="1509" width="5.4" height="15.0" fill="rgb(253,21,17)" rx="2" ry="2" />
<text x="172.35" y="1519.5" ></text>
</g>
<g >
<title>update_curr (15,175,647 samples, 0.02%)</title><rect x="800.8" y="1877" width="0.3" height="15.0" fill="rgb(213,130,17)" rx="2" ry="2" />
<text x="803.82" y="1887.5" ></text>
</g>
<g >
<title>InterpretedFunction: :1 (163,506,394 samples, 0.24%)</title><rect x="20.3" y="1541" width="2.8" height="15.0" fill="rgb(218,56,6)" rx="2" ry="2" />
<text x="23.29" y="1551.5" ></text>
</g>
<g >
<title>sock_poll (73,384,966 samples, 0.11%)</title><rect x="679.3" y="1973" width="1.2" height="15.0" fill="rgb(241,158,25)" rx="2" ry="2" />
<text x="682.27" y="1983.5" ></text>
</g>
<g >
<title>lapic_next_deadline (17,457,691 samples, 0.03%)</title><rect x="550.8" y="1813" width="0.3" height="15.0" fill="rgb(213,145,4)" rx="2" ry="2" />
<text x="553.84" y="1823.5" ></text>
</g>
<g >
<title>timerqueue_del (61,337,323 samples, 0.09%)</title><rect x="266.8" y="1925" width="1.1" height="15.0" fill="rgb(245,2,0)" rx="2" ry="2" />
<text x="269.81" y="1935.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (87,538,669 samples, 0.13%)</title><rect x="316.6" y="2053" width="1.5" height="15.0" fill="rgb(250,51,5)" rx="2" ry="2" />
<text x="319.64" y="2063.5" ></text>
</g>
<g >
<title>native_write_msr (8,287,311 samples, 0.01%)</title><rect x="764.9" y="1861" width="0.2" height="15.0" fill="rgb(222,216,31)" rx="2" ry="2" />
<text x="767.94" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1861" width="13.1" height="15.0" fill="rgb(238,22,32)" rx="2" ry="2" />
<text x="60.02" y="1871.5" ></text>
</g>
<g >
<title>rd_kafka_transport_poll (29,199,994 samples, 0.04%)</title><rect x="715.0" y="1973" width="0.5" height="15.0" fill="rgb(238,90,51)" rx="2" ry="2" />
<text x="718.05" y="1983.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (13,570,464 samples, 0.02%)</title><rect x="493.6" y="1941" width="0.3" height="15.0" fill="rgb(253,79,13)" rx="2" ry="2" />
<text x="496.62" y="1951.5" ></text>
</g>
<g >
<title>cpumask_next_and (19,507,521 samples, 0.03%)</title><rect x="807.7" y="1829" width="0.3" height="15.0" fill="rgb(217,168,31)" rx="2" ry="2" />
<text x="810.69" y="1839.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (27,172,777 samples, 0.04%)</title><rect x="782.9" y="1925" width="0.5" height="15.0" fill="rgb(245,132,52)" rx="2" ry="2" />
<text x="785.89" y="1935.5" ></text>
</g>
<g >
<title>load_balance (145,735,608 samples, 0.21%)</title><rect x="551.2" y="1893" width="2.4" height="15.0" fill="rgb(224,155,7)" rx="2" ry="2" />
<text x="554.16" y="1903.5" ></text>
</g>
<g >
<title>try_to_wake_up (124,178,928 samples, 0.18%)</title><rect x="73.4" y="1861" width="2.1" height="15.0" fill="rgb(250,32,32)" rx="2" ry="2" />
<text x="76.39" y="1871.5" ></text>
</g>
<g >
<title>do_softirq (173,635,321 samples, 0.25%)</title><rect x="215.2" y="1813" width="2.9" height="15.0" fill="rgb(232,18,50)" rx="2" ry="2" />
<text x="218.19" y="1823.5" ></text>
</g>
<g >
<title>[libc-2.28.so] (31,630,283 samples, 0.05%)</title><rect x="518.3" y="2037" width="0.6" height="15.0" fill="rgb(234,93,36)" rx="2" ry="2" />
<text x="521.34" y="2047.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (131,623,782 samples, 0.19%)</title><rect x="790.2" y="1909" width="2.2" height="15.0" fill="rgb(220,159,5)" rx="2" ry="2" />
<text x="793.15" y="1919.5" ></text>
</g>
<g >
<title>run_timer_softirq (25,565,231 samples, 0.04%)</title><rect x="77.3" y="1845" width="0.4" height="15.0" fill="rgb(215,34,37)" rx="2" ry="2" />
<text x="80.27" y="1855.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1701" width="4.6" height="15.0" fill="rgb(229,13,20)" rx="2" ry="2" />
<text x="600.13" y="1711.5" ></text>
</g>
<g >
<title>fsnotify (16,002,710 samples, 0.02%)</title><rect x="223.8" y="1941" width="0.3" height="15.0" fill="rgb(221,175,45)" rx="2" ry="2" />
<text x="226.78" y="1951.5" ></text>
</g>
<g >
<title>rb_insert_color (26,968,949 samples, 0.04%)</title><rect x="326.4" y="1893" width="0.4" height="15.0" fill="rgb(219,215,36)" rx="2" ry="2" />
<text x="329.37" y="1903.5" ></text>
</g>
<g >
<title>__lll_lock_wait (20,033,037 samples, 0.03%)</title><rect x="68.2" y="165" width="0.3" height="15.0" fill="rgb(236,58,15)" rx="2" ry="2" />
<text x="71.21" y="175.5" ></text>
</g>
<g >
<title>rb_next (7,706,199 samples, 0.01%)</title><rect x="485.7" y="1845" width="0.2" height="15.0" fill="rgb(210,6,16)" rx="2" ry="2" />
<text x="488.75" y="1855.5" ></text>
</g>
<g >
<title>timerqueue_add (18,723,422 samples, 0.03%)</title><rect x="541.9" y="1925" width="0.3" height="15.0" fill="rgb(212,83,26)" rx="2" ry="2" />
<text x="544.88" y="1935.5" ></text>
</g>
<g >
<title>__list_add_valid (22,352,327 samples, 0.03%)</title><rect x="140.6" y="1925" width="0.4" height="15.0" fill="rgb(220,18,17)" rx="2" ry="2" />
<text x="143.63" y="1935.5" ></text>
</g>
<g >
<title>merge_sched_in (88,181,384 samples, 0.13%)</title><rect x="349.5" y="1845" width="1.5" height="15.0" fill="rgb(228,23,28)" rx="2" ry="2" />
<text x="352.53" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (3,229,138,823 samples, 4.65%)</title><rect x="591.2" y="2053" width="54.9" height="15.0" fill="rgb(240,32,38)" rx="2" ry="2" />
<text x="594.18" y="2063.5" >[unkn..</text>
</g>
<g >
<title>tcp_sendmsg (314,096,761 samples, 0.45%)</title><rect x="613.3" y="1909" width="5.4" height="15.0" fill="rgb(221,71,43)" rx="2" ry="2" />
<text x="616.34" y="1919.5" ></text>
</g>
<g >
<title>merge_sched_in (78,650,825 samples, 0.11%)</title><rect x="750.2" y="1861" width="1.3" height="15.0" fill="rgb(214,173,47)" rx="2" ry="2" />
<text x="753.16" y="1871.5" ></text>
</g>
<g >
<title>update_load_avg (145,735,608 samples, 0.21%)</title><rect x="551.2" y="1829" width="2.4" height="15.0" fill="rgb(234,117,6)" rx="2" ry="2" />
<text x="554.16" y="1839.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (98,734,585 samples, 0.14%)</title><rect x="355.3" y="1861" width="1.7" height="15.0" fill="rgb(222,60,38)" rx="2" ry="2" />
<text x="358.32" y="1871.5" ></text>
</g>
<g >
<title>update_rq_clock (25,826,918 samples, 0.04%)</title><rect x="158.5" y="1909" width="0.4" height="15.0" fill="rgb(234,17,5)" rx="2" ry="2" />
<text x="161.48" y="1919.5" ></text>
</g>
<g >
<title>timespec_get@plt (16,703,215 samples, 0.02%)</title><rect x="1189.7" y="2053" width="0.3" height="15.0" fill="rgb(242,126,18)" rx="2" ry="2" />
<text x="1192.72" y="2063.5" ></text>
</g>
<g >
<title>schedule (1,165,784,307 samples, 1.68%)</title><rect x="115.5" y="1941" width="19.8" height="15.0" fill="rgb(220,56,3)" rx="2" ry="2" />
<text x="118.49" y="1951.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1765" width="0.2" height="15.0" fill="rgb(246,105,1)" rx="2" ry="2" />
<text x="90.79" y="1775.5" ></text>
</g>
<g >
<title>__update_idle_core (26,876,056 samples, 0.04%)</title><rect x="794.1" y="1909" width="0.5" height="15.0" fill="rgb(206,120,25)" rx="2" ry="2" />
<text x="797.14" y="1919.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (62,759,636 samples, 0.09%)</title><rect x="497.2" y="2053" width="1.1" height="15.0" fill="rgb(221,208,0)" rx="2" ry="2" />
<text x="500.22" y="2063.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (23,811,254 samples, 0.03%)</title><rect x="130.0" y="1797" width="0.4" height="15.0" fill="rgb(248,153,29)" rx="2" ry="2" />
<text x="132.96" y="1807.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (200,271,159 samples, 0.29%)</title><rect x="87.7" y="2037" width="3.4" height="15.0" fill="rgb(240,178,26)" rx="2" ry="2" />
<text x="90.73" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,610,660 samples, 0.04%)</title><rect x="82.9" y="2037" width="0.4" height="15.0" fill="rgb(230,158,4)" rx="2" ry="2" />
<text x="85.91" y="2047.5" ></text>
</g>
<g >
<title>rd_kafka_consume0 (23,387,528 samples, 0.03%)</title><rect x="60.3" y="37" width="0.4" height="15.0" fill="rgb(241,50,3)" rx="2" ry="2" />
<text x="63.27" y="47.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (127,223,472 samples, 0.18%)</title><rect x="226.4" y="1845" width="2.1" height="15.0" fill="rgb(217,1,7)" rx="2" ry="2" />
<text x="229.35" y="1855.5" ></text>
</g>
<g >
<title>psi_task_change (25,465,425 samples, 0.04%)</title><rect x="794.6" y="1925" width="0.4" height="15.0" fill="rgb(226,43,54)" rx="2" ry="2" />
<text x="797.60" y="1935.5" ></text>
</g>
<g >
<title>pick_next_task_fair (375,372,084 samples, 0.54%)</title><rect x="574.3" y="1909" width="6.4" height="15.0" fill="rgb(213,227,17)" rx="2" ry="2" />
<text x="577.30" y="1919.5" ></text>
</g>
<g >
<title>[libnode.so.64] (2,243,083,247 samples, 3.23%)</title><rect x="13.8" y="1877" width="38.1" height="15.0" fill="rgb(245,169,23)" rx="2" ry="2" />
<text x="16.76" y="1887.5" >[li..</text>
</g>
<g >
<title>start_thread (233,282,248 samples, 0.34%)</title><rect x="161.3" y="2053" width="3.9" height="15.0" fill="rgb(216,23,37)" rx="2" ry="2" />
<text x="164.28" y="2063.5" ></text>
</g>
<g >
<title>find_busiest_group (50,886,326 samples, 0.07%)</title><rect x="768.9" y="1861" width="0.8" height="15.0" fill="rgb(223,29,48)" rx="2" ry="2" />
<text x="771.87" y="1871.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (228,257,657 samples, 0.33%)</title><rect x="218.4" y="1877" width="3.9" height="15.0" fill="rgb(234,0,11)" rx="2" ry="2" />
<text x="221.39" y="1887.5" ></text>
</g>
<g >
<title>native_write_msr (5,937,899 samples, 0.01%)</title><rect x="802.9" y="1861" width="0.1" height="15.0" fill="rgb(212,185,37)" rx="2" ry="2" />
<text x="805.94" y="1871.5" ></text>
</g>
<g >
<title>native_sched_clock (24,088,202 samples, 0.03%)</title><rect x="792.0" y="1829" width="0.4" height="15.0" fill="rgb(241,203,1)" rx="2" ry="2" />
<text x="794.98" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="869" width="13.1" height="15.0" fill="rgb(213,111,35)" rx="2" ry="2" />
<text x="60.02" y="879.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (30,857,894 samples, 0.04%)</title><rect x="609.6" y="1893" width="0.5" height="15.0" fill="rgb(225,53,2)" rx="2" ry="2" />
<text x="612.63" y="1903.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (3,123,557,679 samples, 4.50%)</title><rect x="325.7" y="1957" width="53.1" height="15.0" fill="rgb(212,92,19)" rx="2" ry="2" />
<text x="328.72" y="1967.5" >futex..</text>
</g>
<g >
<title>LazyCompile:*Promise._settlePromise /srv/service/node_modules/bluebird/js/release/promise.js:577 (441,631,362 samples, 0.64%)</title><rect x="167.3" y="1797" width="7.5" height="15.0" fill="rgb(237,163,42)" rx="2" ry="2" />
<text x="170.33" y="1807.5" ></text>
</g>
<g >
<title>dequeue_entity (181,738,824 samples, 0.26%)</title><rect x="569.5" y="1893" width="3.1" height="15.0" fill="rgb(214,150,1)" rx="2" ry="2" />
<text x="572.53" y="1903.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (98,596,589 samples, 0.14%)</title><rect x="784.1" y="1941" width="1.7" height="15.0" fill="rgb(220,142,10)" rx="2" ry="2" />
<text x="787.11" y="1951.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (72,382,564 samples, 0.10%)</title><rect x="312.4" y="2021" width="1.3" height="15.0" fill="rgb(231,38,16)" rx="2" ry="2" />
<text x="315.43" y="2031.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (15,776,520 samples, 0.02%)</title><rect x="753.4" y="1861" width="0.3" height="15.0" fill="rgb(242,35,23)" rx="2" ry="2" />
<text x="756.38" y="1871.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1749" width="0.2" height="15.0" fill="rgb(215,228,50)" rx="2" ry="2" />
<text x="553.58" y="1759.5" ></text>
</g>
<g >
<title>update_curr (21,893,891 samples, 0.03%)</title><rect x="465.4" y="1893" width="0.4" height="15.0" fill="rgb(222,46,52)" rx="2" ry="2" />
<text x="468.42" y="1903.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (441,631,362 samples, 0.64%)</title><rect x="167.3" y="1813" width="7.5" height="15.0" fill="rgb(208,15,33)" rx="2" ry="2" />
<text x="170.33" y="1823.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (32,916,886 samples, 0.05%)</title><rect x="772.0" y="2053" width="0.5" height="15.0" fill="rgb(205,80,8)" rx="2" ry="2" />
<text x="774.97" y="2063.5" ></text>
</g>
<g >
<title>poll_freewait (54,496,657 samples, 0.08%)</title><rect x="744.4" y="1973" width="0.9" height="15.0" fill="rgb(246,226,15)" rx="2" ry="2" />
<text x="747.37" y="1983.5" ></text>
</g>
<g >
<title>ep_poll_callback (254,250,683 samples, 0.37%)</title><rect x="72.9" y="1925" width="4.4" height="15.0" fill="rgb(235,203,53)" rx="2" ry="2" />
<text x="75.94" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="853" width="13.1" height="15.0" fill="rgb(236,82,45)" rx="2" ry="2" />
<text x="60.02" y="863.5" ></text>
</g>
<g >
<title>[unknown] (3,152,896,101 samples, 4.54%)</title><rect x="193.9" y="2053" width="53.6" height="15.0" fill="rgb(206,2,31)" rx="2" ry="2" />
<text x="196.88" y="2063.5" >[unkn..</text>
</g>
<g >
<title>syscall_exit_to_user_mode (68,437,109 samples, 0.10%)</title><rect x="158.9" y="2021" width="1.2" height="15.0" fill="rgb(220,117,4)" rx="2" ry="2" />
<text x="161.92" y="2031.5" ></text>
</g>
<g >
<title>dequeue_entity (473,728,626 samples, 0.68%)</title><rect x="271.0" y="1909" width="8.0" height="15.0" fill="rgb(240,117,9)" rx="2" ry="2" />
<text x="273.97" y="1919.5" ></text>
</g>
<g >
<title>aa_label_sk_perm.part.0 (81,057,429 samples, 0.12%)</title><rect x="452.4" y="1877" width="1.4" height="15.0" fill="rgb(217,13,24)" rx="2" ry="2" />
<text x="455.40" y="1887.5" ></text>
</g>
<g >
<title>plist_del (30,345,889 samples, 0.04%)</title><rect x="112.7" y="1941" width="0.5" height="15.0" fill="rgb(254,184,21)" rx="2" ry="2" />
<text x="115.71" y="1951.5" ></text>
</g>
<g >
<title>nf_hook_slow (28,788,323 samples, 0.04%)</title><rect x="221.0" y="1701" width="0.5" height="15.0" fill="rgb(233,118,18)" rx="2" ry="2" />
<text x="224.01" y="1711.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (70,181,889 samples, 0.10%)</title><rect x="135.8" y="2005" width="1.2" height="15.0" fill="rgb(239,43,53)" rx="2" ry="2" />
<text x="138.76" y="2015.5" ></text>
</g>
<g >
<title>new_sync_write (314,096,761 samples, 0.45%)</title><rect x="613.3" y="1957" width="5.4" height="15.0" fill="rgb(211,195,21)" rx="2" ry="2" />
<text x="616.34" y="1967.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (33,392,978 samples, 0.05%)</title><rect x="1173.9" y="1973" width="0.5" height="15.0" fill="rgb(249,150,34)" rx="2" ry="2" />
<text x="1176.86" y="1983.5" ></text>
</g>
<g >
<title>do_syscall_64 (915,858,319 samples, 1.32%)</title><rect x="209.6" y="2005" width="15.5" height="15.0" fill="rgb(239,193,11)" rx="2" ry="2" />
<text x="212.55" y="2015.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (1,170,198,418 samples, 1.69%)</title><rect x="1145.4" y="1845" width="19.9" height="15.0" fill="rgb(212,41,41)" rx="2" ry="2" />
<text x="1148.41" y="1855.5" ></text>
</g>
<g >
<title>asm_common_interrupt (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1909" width="0.2" height="15.0" fill="rgb(232,167,52)" rx="2" ry="2" />
<text x="553.58" y="1919.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (445,085,317 samples, 0.64%)</title><rect x="1045.8" y="2005" width="7.5" height="15.0" fill="rgb(229,107,51)" rx="2" ry="2" />
<text x="1048.77" y="2015.5" ></text>
</g>
<g >
<title>x86_pmu_disable (31,185,147 samples, 0.04%)</title><rect x="543.0" y="1909" width="0.5" height="15.0" fill="rgb(233,112,35)" rx="2" ry="2" />
<text x="546.02" y="1919.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1717" width="4.6" height="15.0" fill="rgb(254,9,46)" rx="2" ry="2" />
<text x="600.13" y="1727.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel.part.0 (30,325,063 samples, 0.04%)</title><rect x="1170.3" y="1941" width="0.5" height="15.0" fill="rgb(226,229,31)" rx="2" ry="2" />
<text x="1173.25" y="1951.5" ></text>
</g>
<g >
<title>dequeue_task_fair (135,170,301 samples, 0.19%)</title><rect x="543.5" y="1925" width="2.3" height="15.0" fill="rgb(238,44,53)" rx="2" ry="2" />
<text x="546.55" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="405" width="13.1" height="15.0" fill="rgb(216,13,21)" rx="2" ry="2" />
<text x="60.02" y="415.5" ></text>
</g>
<g >
<title>rd_kafka_broker_consumer_serve (68,914,583 samples, 0.10%)</title><rect x="708.6" y="2053" width="1.2" height="15.0" fill="rgb(243,228,8)" rx="2" ry="2" />
<text x="711.63" y="2063.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (163,420,265 samples, 0.24%)</title><rect x="745.3" y="1941" width="2.8" height="15.0" fill="rgb(207,145,26)" rx="2" ry="2" />
<text x="748.30" y="1951.5" ></text>
</g>
<g >
<title>__x64_sys_futex (839,292,990 samples, 1.21%)</title><rect x="566.4" y="2005" width="14.3" height="15.0" fill="rgb(232,133,8)" rx="2" ry="2" />
<text x="569.41" y="2015.5" ></text>
</g>
<g >
<title>vfs_write (222,775,555 samples, 0.32%)</title><rect x="987.0" y="1973" width="3.8" height="15.0" fill="rgb(239,7,16)" rx="2" ry="2" />
<text x="989.99" y="1983.5" ></text>
</g>
<g >
<title>tcp_poll (15,010,501 samples, 0.02%)</title><rect x="757.4" y="1957" width="0.2" height="15.0" fill="rgb(222,31,21)" rx="2" ry="2" />
<text x="760.37" y="1967.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_serve (68,320,307 samples, 0.10%)</title><rect x="239.3" y="2037" width="1.2" height="15.0" fill="rgb(228,104,4)" rx="2" ry="2" />
<text x="242.30" y="2047.5" ></text>
</g>
<g >
<title>__libc_read (611,999,757 samples, 0.88%)</title><rect x="523.9" y="2037" width="10.4" height="15.0" fill="rgb(236,156,42)" rx="2" ry="2" />
<text x="526.86" y="2047.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (179,038,657 samples, 0.26%)</title><rect x="88.1" y="1973" width="3.0" height="15.0" fill="rgb(239,130,40)" rx="2" ry="2" />
<text x="91.07" y="1983.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (54,538,751 samples, 0.08%)</title><rect x="567.7" y="1925" width="1.0" height="15.0" fill="rgb(207,223,50)" rx="2" ry="2" />
<text x="570.75" y="1935.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (28,608,563 samples, 0.04%)</title><rect x="316.1" y="1989" width="0.5" height="15.0" fill="rgb(215,183,19)" rx="2" ry="2" />
<text x="319.13" y="1999.5" ></text>
</g>
<g >
<title>futex_wake (43,082,636 samples, 0.06%)</title><rect x="248.0" y="1973" width="0.8" height="15.0" fill="rgb(230,53,37)" rx="2" ry="2" />
<text x="251.02" y="1983.5" ></text>
</g>
<g >
<title>perf_event_sched_in (24,088,202 samples, 0.03%)</title><rect x="792.0" y="1893" width="0.4" height="15.0" fill="rgb(220,55,24)" rx="2" ry="2" />
<text x="794.98" y="1903.5" ></text>
</g>
<g >
<title>EVP_CIPHER_flags (30,618,787 samples, 0.04%)</title><rect x="194.9" y="2037" width="0.5" height="15.0" fill="rgb(227,68,49)" rx="2" ry="2" />
<text x="197.87" y="2047.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (26,246,579 samples, 0.04%)</title><rect x="1039.6" y="2005" width="0.5" height="15.0" fill="rgb(224,60,3)" rx="2" ry="2" />
<text x="1042.62" y="2015.5" ></text>
</g>
<g >
<title>uv__run_timers (2,723,673,417 samples, 3.92%)</title><rect x="10.5" y="1989" width="46.3" height="15.0" fill="rgb(210,17,32)" rx="2" ry="2" />
<text x="13.50" y="1999.5" >uv__..</text>
</g>
<g >
<title>_raw_spin_lock_irqsave (156,105,459 samples, 0.22%)</title><rect x="486.0" y="1861" width="2.7" height="15.0" fill="rgb(208,72,52)" rx="2" ry="2" />
<text x="489.03" y="1871.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (13,570,464 samples, 0.02%)</title><rect x="493.6" y="1925" width="0.3" height="15.0" fill="rgb(232,178,19)" rx="2" ry="2" />
<text x="496.62" y="1935.5" ></text>
</g>
<g >
<title>nf_hook_slow (108,201,970 samples, 0.16%)</title><rect x="605.4" y="1701" width="1.9" height="15.0" fill="rgb(245,54,0)" rx="2" ry="2" />
<text x="608.43" y="1711.5" ></text>
</g>
<g >
<title>psi_group_change (167,574,726 samples, 0.24%)</title><rect x="88.3" y="1909" width="2.8" height="15.0" fill="rgb(221,79,23)" rx="2" ry="2" />
<text x="91.26" y="1919.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (14,197,649 samples, 0.02%)</title><rect x="541.5" y="1893" width="0.3" height="15.0" fill="rgb(238,229,37)" rx="2" ry="2" />
<text x="544.53" y="1903.5" ></text>
</g>
<g >
<title>__remove_hrtimer (30,325,063 samples, 0.04%)</title><rect x="1170.3" y="1925" width="0.5" height="15.0" fill="rgb(247,153,21)" rx="2" ry="2" />
<text x="1173.25" y="1935.5" ></text>
</g>
<g >
<title>__seccomp_filter (74,990,503 samples, 0.11%)</title><rect x="248.8" y="1989" width="1.2" height="15.0" fill="rgb(244,43,20)" rx="2" ry="2" />
<text x="251.75" y="1999.5" ></text>
</g>
<g >
<title>merge_sched_in (37,322,817 samples, 0.05%)</title><rect x="803.1" y="1845" width="0.6" height="15.0" fill="rgb(218,125,51)" rx="2" ry="2" />
<text x="806.08" y="1855.5" ></text>
</g>
<g >
<title>rb_insert_color (74,499,509 samples, 0.11%)</title><rect x="784.5" y="1909" width="1.3" height="15.0" fill="rgb(238,172,6)" rx="2" ry="2" />
<text x="787.52" y="1919.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1813" width="1.2" height="15.0" fill="rgb(248,133,16)" rx="2" ry="2" />
<text x="721.38" y="1823.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (203,897,115 samples, 0.29%)</title><rect x="749.9" y="1909" width="3.4" height="15.0" fill="rgb(237,111,5)" rx="2" ry="2" />
<text x="752.87" y="1919.5" ></text>
</g>
<g >
<title>mtx_unlock (349,130,781 samples, 0.50%)</title><rect x="1053.3" y="2037" width="6.0" height="15.0" fill="rgb(246,57,22)" rx="2" ry="2" />
<text x="1056.34" y="2047.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (297,064,474 samples, 0.43%)</title><rect x="123.6" y="1845" width="5.0" height="15.0" fill="rgb(209,34,48)" rx="2" ry="2" />
<text x="126.56" y="1855.5" ></text>
</g>
<g >
<title>__x64_sys_futex (50,111,297 samples, 0.07%)</title><rect x="67.4" y="101" width="0.8" height="15.0" fill="rgb(234,196,39)" rx="2" ry="2" />
<text x="70.36" y="111.5" ></text>
</g>
<g >
<title>__fget_files (83,558,443 samples, 0.12%)</title><rect x="742.4" y="1957" width="1.4" height="15.0" fill="rgb(209,121,18)" rx="2" ry="2" />
<text x="745.41" y="1967.5" ></text>
</g>
<g >
<title>rd_buf_write (59,159,551 samples, 0.09%)</title><rect x="381.5" y="2053" width="1.1" height="15.0" fill="rgb(205,37,26)" rx="2" ry="2" />
<text x="384.55" y="2063.5" ></text>
</g>
<g >
<title>__schedule (20,033,037 samples, 0.03%)</title><rect x="68.2" y="37" width="0.3" height="15.0" fill="rgb(248,214,50)" rx="2" ry="2" />
<text x="71.21" y="47.5" ></text>
</g>
<g >
<title>event_sched_in (34,711,815 samples, 0.05%)</title><rect x="151.8" y="1829" width="0.6" height="15.0" fill="rgb(223,53,14)" rx="2" ry="2" />
<text x="154.85" y="1839.5" ></text>
</g>
<g >
<title>enqueue_task_fair (24,329,495 samples, 0.04%)</title><rect x="560.1" y="1845" width="0.4" height="15.0" fill="rgb(251,137,19)" rx="2" ry="2" />
<text x="563.08" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (58,807,886 samples, 0.08%)</title><rect x="714.5" y="2021" width="1.0" height="15.0" fill="rgb(209,163,2)" rx="2" ry="2" />
<text x="717.54" y="2031.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (3,050,175,578 samples, 4.39%)</title><rect x="1118.4" y="1957" width="51.9" height="15.0" fill="rgb(229,214,0)" rx="2" ry="2" />
<text x="1121.41" y="1967.5" >futex..</text>
</g>
<g >
<title>napi_complete_done (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1797" width="0.2" height="15.0" fill="rgb(249,189,1)" rx="2" ry="2" />
<text x="90.79" y="1807.5" ></text>
</g>
<g >
<title>__remove_hrtimer (61,337,323 samples, 0.09%)</title><rect x="266.8" y="1941" width="1.1" height="15.0" fill="rgb(221,180,19)" rx="2" ry="2" />
<text x="269.81" y="1951.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (13,570,464 samples, 0.02%)</title><rect x="493.6" y="1893" width="0.3" height="15.0" fill="rgb(207,222,46)" rx="2" ry="2" />
<text x="496.62" y="1903.5" ></text>
</g>
<g >
<title>try_to_wake_up (445,085,317 samples, 0.64%)</title><rect x="1045.8" y="1925" width="7.5" height="15.0" fill="rgb(214,105,41)" rx="2" ry="2" />
<text x="1048.77" y="1935.5" ></text>
</g>
<g >
<title>update_cfs_group (23,711,547 samples, 0.03%)</title><rect x="1121.7" y="1877" width="0.5" height="15.0" fill="rgb(225,199,22)" rx="2" ry="2" />
<text x="1124.75" y="1887.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (166,593,562 samples, 0.24%)</title><rect x="483.0" y="1893" width="2.9" height="15.0" fill="rgb(224,57,38)" rx="2" ry="2" />
<text x="486.05" y="1903.5" ></text>
</g>
<g >
<title>__x64_sys_poll (1,906,219,297 samples, 2.75%)</title><rect x="648.2" y="2005" width="32.4" height="15.0" fill="rgb(247,195,30)" rx="2" ry="2" />
<text x="651.16" y="2015.5" >__..</text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (3,582,419,285 samples, 5.16%)</title><rect x="320.7" y="2053" width="60.8" height="15.0" fill="rgb(227,118,0)" rx="2" ry="2" />
<text x="323.66" y="2063.5" >pthrea..</text>
</g>
<g >
<title>__hrtimer_run_queues (98,734,585 samples, 0.14%)</title><rect x="355.3" y="1813" width="1.7" height="15.0" fill="rgb(212,120,53)" rx="2" ry="2" />
<text x="358.32" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (298,780,640 samples, 0.43%)</title><rect x="61.8" y="69" width="5.1" height="15.0" fill="rgb(228,163,35)" rx="2" ry="2" />
<text x="64.81" y="79.5" ></text>
</g>
<g >
<title>timerqueue_del (23,644,967 samples, 0.03%)</title><rect x="1043.0" y="1941" width="0.4" height="15.0" fill="rgb(249,20,51)" rx="2" ry="2" />
<text x="1046.03" y="1951.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (75,871,957 samples, 0.11%)</title><rect x="241.2" y="2037" width="1.3" height="15.0" fill="rgb(235,119,50)" rx="2" ry="2" />
<text x="244.17" y="2047.5" ></text>
</g>
<g >
<title>select_task_rq_fair (49,690,142 samples, 0.07%)</title><rect x="73.7" y="1845" width="0.8" height="15.0" fill="rgb(207,222,18)" rx="2" ry="2" />
<text x="76.68" y="1855.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (15,776,520 samples, 0.02%)</title><rect x="753.4" y="1877" width="0.3" height="15.0" fill="rgb(206,156,33)" rx="2" ry="2" />
<text x="756.38" y="1887.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (26,707,968 samples, 0.04%)</title><rect x="379.2" y="2005" width="0.5" height="15.0" fill="rgb(211,188,41)" rx="2" ry="2" />
<text x="382.20" y="2015.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (24,329,495 samples, 0.04%)</title><rect x="560.1" y="1941" width="0.4" height="15.0" fill="rgb(209,179,25)" rx="2" ry="2" />
<text x="563.08" y="1951.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (79,643,258 samples, 0.11%)</title><rect x="493.9" y="2021" width="1.3" height="15.0" fill="rgb(240,205,32)" rx="2" ry="2" />
<text x="496.85" y="2031.5" ></text>
</g>
<g >
<title>load_balance (145,120,388 samples, 0.21%)</title><rect x="669.2" y="1893" width="2.5" height="15.0" fill="rgb(253,196,38)" rx="2" ry="2" />
<text x="672.18" y="1903.5" ></text>
</g>
<g >
<title>enqueue_task_fair (27,172,777 samples, 0.04%)</title><rect x="782.9" y="1797" width="0.5" height="15.0" fill="rgb(243,165,39)" rx="2" ry="2" />
<text x="785.89" y="1807.5" ></text>
</g>
<g >
<title>ip6_xmit (269,290,922 samples, 0.39%)</title><rect x="597.1" y="1861" width="4.6" height="15.0" fill="rgb(213,150,20)" rx="2" ry="2" />
<text x="600.13" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1669" width="13.1" height="15.0" fill="rgb(212,23,54)" rx="2" ry="2" />
<text x="60.02" y="1679.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (23,771,023 samples, 0.03%)</title><rect x="500.8" y="1973" width="0.4" height="15.0" fill="rgb(217,169,6)" rx="2" ry="2" />
<text x="503.80" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="293" width="13.1" height="15.0" fill="rgb(232,218,33)" rx="2" ry="2" />
<text x="60.02" y="303.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (40,506,454 samples, 0.06%)</title><rect x="326.1" y="1941" width="0.7" height="15.0" fill="rgb(246,63,36)" rx="2" ry="2" />
<text x="329.14" y="1951.5" ></text>
</g>
<g >
<title>rd_kafka_timers_run (142,973,361 samples, 0.21%)</title><rect x="895.3" y="2021" width="2.4" height="15.0" fill="rgb(250,171,6)" rx="2" ry="2" />
<text x="898.30" y="2031.5" ></text>
</g>
<g >
<title>v8::internal::compiler::GraphReducer::ReduceNode (136,394,792 samples, 0.20%)</title><rect x="161.3" y="1925" width="2.3" height="15.0" fill="rgb(219,63,14)" rx="2" ry="2" />
<text x="164.28" y="1935.5" ></text>
</g>
<g >
<title>schedule (3,057,957,077 samples, 4.40%)</title><rect x="326.8" y="1941" width="52.0" height="15.0" fill="rgb(231,183,44)" rx="2" ry="2" />
<text x="329.83" y="1951.5" >sched..</text>
</g>
<g >
<title>[unknown] (4,770,317,125 samples, 6.87%)</title><rect x="816.7" y="2037" width="81.0" height="15.0" fill="rgb(254,105,46)" rx="2" ry="2" />
<text x="819.65" y="2047.5" >[unknown]</text>
</g>
<g >
<title>__x64_sys_futex (653,655,689 samples, 0.94%)</title><rect x="759.7" y="2005" width="11.1" height="15.0" fill="rgb(214,225,24)" rx="2" ry="2" />
<text x="762.72" y="2015.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (25,565,231 samples, 0.04%)</title><rect x="77.3" y="1941" width="0.4" height="15.0" fill="rgb(216,227,20)" rx="2" ry="2" />
<text x="80.27" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (580,638,643 samples, 0.84%)</title><rect x="57.0" y="101" width="9.9" height="15.0" fill="rgb(225,119,25)" rx="2" ry="2" />
<text x="60.02" y="111.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (19,509,603 samples, 0.03%)</title><rect x="668.9" y="1829" width="0.3" height="15.0" fill="rgb(250,132,20)" rx="2" ry="2" />
<text x="671.85" y="1839.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (139,515,542 samples, 0.20%)</title><rect x="803.1" y="1861" width="2.3" height="15.0" fill="rgb(219,116,54)" rx="2" ry="2" />
<text x="806.08" y="1871.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (50,865,780 samples, 0.07%)</title><rect x="69.2" y="149" width="0.9" height="15.0" fill="rgb(222,49,31)" rx="2" ry="2" />
<text x="72.22" y="159.5" ></text>
</g>
<g >
<title>do_futex (677,771,413 samples, 0.98%)</title><rect x="799.5" y="1989" width="11.6" height="15.0" fill="rgb(234,61,22)" rx="2" ry="2" />
<text x="802.53" y="1999.5" ></text>
</g>
<g >
<title>dequeue_entity (113,782,662 samples, 0.16%)</title><rect x="1121.5" y="1893" width="1.9" height="15.0" fill="rgb(207,98,2)" rx="2" ry="2" />
<text x="1124.47" y="1903.5" ></text>
</g>
<g >
<title>native_write_msr (26,944,498 samples, 0.04%)</title><rect x="284.4" y="1877" width="0.5" height="15.0" fill="rgb(220,81,17)" rx="2" ry="2" />
<text x="287.41" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1653" width="13.1" height="15.0" fill="rgb(249,150,11)" rx="2" ry="2" />
<text x="60.02" y="1663.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (11,979,223 samples, 0.02%)</title><rect x="474.2" y="2021" width="0.2" height="15.0" fill="rgb(221,116,19)" rx="2" ry="2" />
<text x="477.24" y="2031.5" ></text>
</g>
<g >
<title>do_softirq (87,733,563 samples, 0.13%)</title><rect x="615.4" y="1765" width="1.5" height="15.0" fill="rgb(219,215,46)" rx="2" ry="2" />
<text x="618.42" y="1775.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (23,644,967 samples, 0.03%)</title><rect x="1043.0" y="2005" width="0.4" height="15.0" fill="rgb(213,43,31)" rx="2" ry="2" />
<text x="1046.03" y="2015.5" ></text>
</g>
<g >
<title>__libc_read (226,145,493 samples, 0.33%)</title><rect x="446.4" y="2037" width="3.8" height="15.0" fill="rgb(246,74,41)" rx="2" ry="2" />
<text x="449.39" y="2047.5" ></text>
</g>
<g >
<title>wake_up_q (50,111,297 samples, 0.07%)</title><rect x="67.4" y="53" width="0.8" height="15.0" fill="rgb(252,75,10)" rx="2" ry="2" />
<text x="70.36" y="63.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (23,377,560 samples, 0.03%)</title><rect x="188.6" y="2021" width="0.4" height="15.0" fill="rgb(235,1,23)" rx="2" ry="2" />
<text x="191.63" y="2031.5" ></text>
</g>
<g >
<title>_raw_spin_lock (27,203,064 samples, 0.04%)</title><rect x="748.6" y="1925" width="0.4" height="15.0" fill="rgb(206,104,30)" rx="2" ry="2" />
<text x="751.59" y="1935.5" ></text>
</g>
<g >
<title>nf_conntrack_in (28,788,323 samples, 0.04%)</title><rect x="221.0" y="1685" width="0.5" height="15.0" fill="rgb(216,77,53)" rx="2" ry="2" />
<text x="224.01" y="1695.5" ></text>
</g>
<g >
<title>security_file_permission (39,979,681 samples, 0.06%)</title><rect x="77.7" y="1957" width="0.7" height="15.0" fill="rgb(251,63,17)" rx="2" ry="2" />
<text x="80.70" y="1967.5" ></text>
</g>
<g >
<title>malloc (65,476,246 samples, 0.09%)</title><rect x="59.0" y="37" width="1.1" height="15.0" fill="rgb(241,90,15)" rx="2" ry="2" />
<text x="62.00" y="47.5" ></text>
</g>
<g >
<title>reweight_entity (21,762,954 samples, 0.03%)</title><rect x="569.5" y="1877" width="0.4" height="15.0" fill="rgb(222,55,19)" rx="2" ry="2" />
<text x="572.53" y="1887.5" ></text>
</g>
<g >
<title>__update_load_avg_se (33,466,947 samples, 0.05%)</title><rect x="572.1" y="1861" width="0.5" height="15.0" fill="rgb(243,184,52)" rx="2" ry="2" />
<text x="575.05" y="1871.5" ></text>
</g>
<g >
<title>run_rebalance_domains (25,875,044 samples, 0.04%)</title><rect x="792.5" y="1813" width="0.4" height="15.0" fill="rgb(210,31,20)" rx="2" ry="2" />
<text x="795.47" y="1823.5" ></text>
</g>
<g >
<title>Builtin:JSEntryTrampoline (2,182,774,155 samples, 3.14%)</title><rect x="14.8" y="1845" width="37.1" height="15.0" fill="rgb(214,157,28)" rx="2" ry="2" />
<text x="17.79" y="1855.5" >Bui..</text>
</g>
<g >
<title>__nf_conntrack_find_get (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1653" width="0.2" height="15.0" fill="rgb(250,56,39)" rx="2" ry="2" />
<text x="553.58" y="1663.5" ></text>
</g>
<g >
<title>_raw_spin_lock (26,833,145 samples, 0.04%)</title><rect x="463.9" y="1925" width="0.5" height="15.0" fill="rgb(206,197,42)" rx="2" ry="2" />
<text x="466.90" y="1935.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (191,369,257 samples, 0.28%)</title><rect x="20.3" y="1621" width="3.2" height="15.0" fill="rgb(230,90,1)" rx="2" ry="2" />
<text x="23.29" y="1631.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1701" width="0.6" height="15.0" fill="rgb(239,25,52)" rx="2" ry="2" />
<text x="451.74" y="1711.5" ></text>
</g>
<g >
<title>ttwu_do_activate (77,304,666 samples, 0.11%)</title><rect x="988.9" y="1861" width="1.3" height="15.0" fill="rgb(251,215,17)" rx="2" ry="2" />
<text x="991.88" y="1871.5" ></text>
</g>
<g >
<title>pick_next_task_fair (72,372,370 samples, 0.10%)</title><rect x="792.9" y="1925" width="1.2" height="15.0" fill="rgb(228,219,46)" rx="2" ry="2" />
<text x="795.91" y="1935.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (31,689,460 samples, 0.05%)</title><rect x="737.2" y="2037" width="0.5" height="15.0" fill="rgb(225,15,30)" rx="2" ry="2" />
<text x="740.18" y="2047.5" ></text>
</g>
<g >
<title>do_futex (483,534,322 samples, 0.70%)</title><rect x="699.8" y="1989" width="8.2" height="15.0" fill="rgb(229,171,48)" rx="2" ry="2" />
<text x="702.78" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1973" width="13.1" height="15.0" fill="rgb(239,136,49)" rx="2" ry="2" />
<text x="60.02" y="1983.5" ></text>
</g>
<g >
<title>rb_erase (6,398,877 samples, 0.01%)</title><rect x="656.8" y="1909" width="0.1" height="15.0" fill="rgb(242,210,33)" rx="2" ry="2" />
<text x="659.76" y="1919.5" ></text>
</g>
<g >
<title>finish_task_switch (600,505,977 samples, 0.86%)</title><rect x="146.0" y="1909" width="10.2" height="15.0" fill="rgb(226,184,5)" rx="2" ry="2" />
<text x="149.02" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="757" width="13.1" height="15.0" fill="rgb(237,212,46)" rx="2" ry="2" />
<text x="60.02" y="767.5" ></text>
</g>
<g >
<title>switch_fpu_return (35,291,079 samples, 0.05%)</title><rect x="757.9" y="1989" width="0.6" height="15.0" fill="rgb(237,220,27)" rx="2" ry="2" />
<text x="760.94" y="1999.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (213,248,897 samples, 0.31%)</title><rect x="151.7" y="1861" width="3.6" height="15.0" fill="rgb(209,187,52)" rx="2" ry="2" />
<text x="154.65" y="1871.5" ></text>
</g>
<g >
<title>perf_event_sched_in (19,291,665 samples, 0.03%)</title><rect x="668.5" y="1893" width="0.3" height="15.0" fill="rgb(218,29,7)" rx="2" ry="2" />
<text x="671.47" y="1903.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.1] (28,216,792 samples, 0.04%)</title><rect x="196.2" y="2037" width="0.5" height="15.0" fill="rgb(220,7,18)" rx="2" ry="2" />
<text x="199.24" y="2047.5" ></text>
</g>
<g >
<title>event_sched_in (7,319,310 samples, 0.01%)</title><rect x="573.1" y="1829" width="0.1" height="15.0" fill="rgb(242,152,0)" rx="2" ry="2" />
<text x="576.06" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1765" width="13.1" height="15.0" fill="rgb(241,59,7)" rx="2" ry="2" />
<text x="60.02" y="1775.5" ></text>
</g>
<g >
<title>newidle_balance (412,671,475 samples, 0.59%)</title><rect x="486.0" y="1893" width="7.0" height="15.0" fill="rgb(237,187,39)" rx="2" ry="2" />
<text x="489.03" y="1903.5" ></text>
</g>
<g >
<title>__run_timers.part.0 (25,565,231 samples, 0.04%)</title><rect x="77.3" y="1829" width="0.4" height="15.0" fill="rgb(243,140,33)" rx="2" ry="2" />
<text x="80.27" y="1839.5" ></text>
</g>
<g >
<title>__errno_location (23,494,769 samples, 0.03%)</title><rect x="596.0" y="2037" width="0.4" height="15.0" fill="rgb(230,124,42)" rx="2" ry="2" />
<text x="599.03" y="2047.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (14,167,337 samples, 0.02%)</title><rect x="471.7" y="1829" width="0.3" height="15.0" fill="rgb(219,51,19)" rx="2" ry="2" />
<text x="474.71" y="1839.5" ></text>
</g>
<g >
<title>mtx_lock (38,221,690 samples, 0.06%)</title><rect x="853.4" y="1989" width="0.6" height="15.0" fill="rgb(214,160,41)" rx="2" ry="2" />
<text x="856.39" y="1999.5" ></text>
</g>
<g >
<title>__x64_sys_futex (26,113,955 samples, 0.04%)</title><rect x="66.9" y="85" width="0.5" height="15.0" fill="rgb(232,198,42)" rx="2" ry="2" />
<text x="69.91" y="95.5" ></text>
</g>
<g >
<title>CRYPTO_THREAD_run_once (141,338,745 samples, 0.20%)</title><rect x="501.2" y="2053" width="2.4" height="15.0" fill="rgb(216,110,46)" rx="2" ry="2" />
<text x="504.20" y="2063.5" ></text>
</g>
<g >
<title>asm_call_sysvec_on_stack (27,002,010 samples, 0.04%)</title><rect x="129.9" y="1861" width="0.5" height="15.0" fill="rgb(251,210,40)" rx="2" ry="2" />
<text x="132.94" y="1871.5" ></text>
</g>
<g >
<title>schedule (631,235,686 samples, 0.91%)</title><rect x="800.3" y="1941" width="10.7" height="15.0" fill="rgb(227,142,4)" rx="2" ry="2" />
<text x="803.30" y="1951.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (246,631,530 samples, 0.36%)</title><rect x="605.4" y="1733" width="4.2" height="15.0" fill="rgb(249,116,30)" rx="2" ry="2" />
<text x="608.43" y="1743.5" ></text>
</g>
<g >
<title>psi_group_change (83,988,436 samples, 0.12%)</title><rect x="755.1" y="1909" width="1.5" height="15.0" fill="rgb(217,43,25)" rx="2" ry="2" />
<text x="758.14" y="1919.5" ></text>
</g>
<g >
<title>ipv6_rcv (173,635,321 samples, 0.25%)</title><rect x="215.2" y="1701" width="2.9" height="15.0" fill="rgb(214,36,18)" rx="2" ry="2" />
<text x="218.19" y="1711.5" ></text>
</g>
<g >
<title>ip_forward (108,201,970 samples, 0.16%)</title><rect x="605.4" y="1717" width="1.9" height="15.0" fill="rgb(247,135,8)" rx="2" ry="2" />
<text x="608.43" y="1727.5" ></text>
</g>
<g >
<title>do_softirq (246,631,530 samples, 0.36%)</title><rect x="605.4" y="1829" width="4.2" height="15.0" fill="rgb(233,190,46)" rx="2" ry="2" />
<text x="608.43" y="1839.5" ></text>
</g>
<g >
<title>drain_stock (58,487,805 samples, 0.08%)</title><rect x="228.5" y="1813" width="1.0" height="15.0" fill="rgb(237,106,52)" rx="2" ry="2" />
<text x="231.52" y="1823.5" ></text>
</g>
<g >
<title>find_busiest_group (28,504,033 samples, 0.04%)</title><rect x="69.6" y="53" width="0.5" height="15.0" fill="rgb(212,57,32)" rx="2" ry="2" />
<text x="72.60" y="63.5" ></text>
</g>
<g >
<title>rd_kafka_toppar_fetch_decide (109,119,212 samples, 0.16%)</title><rect x="772.5" y="2053" width="1.9" height="15.0" fill="rgb(251,141,2)" rx="2" ry="2" />
<text x="775.53" y="2063.5" ></text>
</g>
<g >
<title>[libnode.so.64] (180,403,606 samples, 0.26%)</title><rect x="44.8" y="1685" width="3.0" height="15.0" fill="rgb(243,145,11)" rx="2" ry="2" />
<text x="47.78" y="1695.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (173,635,321 samples, 0.25%)</title><rect x="215.2" y="1829" width="2.9" height="15.0" fill="rgb(254,96,20)" rx="2" ry="2" />
<text x="218.19" y="1839.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (210,228,387 samples, 0.30%)</title><rect x="613.3" y="1845" width="3.6" height="15.0" fill="rgb(241,88,51)" rx="2" ry="2" />
<text x="616.34" y="1855.5" ></text>
</g>
<g >
<title>update_blocked_averages (70,800,635 samples, 0.10%)</title><rect x="131.7" y="1829" width="1.3" height="15.0" fill="rgb(248,44,22)" rx="2" ry="2" />
<text x="134.75" y="1839.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (120,631,355 samples, 0.17%)</title><rect x="599.7" y="1669" width="2.0" height="15.0" fill="rgb(205,202,49)" rx="2" ry="2" />
<text x="602.65" y="1679.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (23,789,036 samples, 0.03%)</title><rect x="75.1" y="1845" width="0.4" height="15.0" fill="rgb(210,215,7)" rx="2" ry="2" />
<text x="78.09" y="1855.5" ></text>
</g>
<g >
<title>ctx_sched_in (85,271,709 samples, 0.12%)</title><rect x="572.7" y="1877" width="1.5" height="15.0" fill="rgb(241,25,38)" rx="2" ry="2" />
<text x="575.74" y="1887.5" ></text>
</g>
<g >
<title>rd_kafka_transport_io_serve (62,336,368 samples, 0.09%)</title><rect x="244.8" y="2037" width="1.0" height="15.0" fill="rgb(207,0,6)" rx="2" ry="2" />
<text x="247.77" y="2047.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (201,395,507 samples, 0.29%)</title><rect x="700.6" y="1893" width="3.4" height="15.0" fill="rgb(214,119,38)" rx="2" ry="2" />
<text x="703.62" y="1903.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (147,634,338 samples, 0.21%)</title><rect x="1118.5" y="1925" width="2.5" height="15.0" fill="rgb(221,56,33)" rx="2" ry="2" />
<text x="1121.48" y="1935.5" ></text>
</g>
<g >
<title>net_rx_action (246,631,530 samples, 0.36%)</title><rect x="605.4" y="1765" width="4.2" height="15.0" fill="rgb(254,90,22)" rx="2" ry="2" />
<text x="608.43" y="1775.5" ></text>
</g>
<g >
<title>select_task_rq_fair (31,039,577 samples, 0.04%)</title><rect x="595.5" y="1909" width="0.5" height="15.0" fill="rgb(240,76,23)" rx="2" ry="2" />
<text x="598.50" y="1919.5" ></text>
</g>
<g >
<title>hrtimer_active (32,191,365 samples, 0.05%)</title><rect x="263.6" y="1957" width="0.6" height="15.0" fill="rgb(238,186,7)" rx="2" ry="2" />
<text x="266.63" y="1967.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (22,024,604 samples, 0.03%)</title><rect x="155.8" y="1813" width="0.4" height="15.0" fill="rgb(250,79,29)" rx="2" ry="2" />
<text x="158.83" y="1823.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (26,047,745 samples, 0.04%)</title><rect x="646.1" y="2053" width="0.4" height="15.0" fill="rgb(211,196,43)" rx="2" ry="2" />
<text x="649.09" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (23,050,461 samples, 0.03%)</title><rect x="708.2" y="2021" width="0.4" height="15.0" fill="rgb(208,23,41)" rx="2" ry="2" />
<text x="711.23" y="2031.5" ></text>
</g>
<g >
<title>nf_hook_slow (14,910,854 samples, 0.02%)</title><rect x="87.8" y="1701" width="0.2" height="15.0" fill="rgb(233,94,25)" rx="2" ry="2" />
<text x="90.79" y="1711.5" ></text>
</g>
<g >
<title>futex_wait_setup (24,860,665 samples, 0.04%)</title><rect x="135.3" y="1957" width="0.4" height="15.0" fill="rgb(242,88,23)" rx="2" ry="2" />
<text x="138.31" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1141" width="13.1" height="15.0" fill="rgb(250,37,29)" rx="2" ry="2" />
<text x="60.02" y="1151.5" ></text>
</g>
<g >
<title>process_backlog (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1749" width="1.2" height="15.0" fill="rgb(229,141,20)" rx="2" ry="2" />
<text x="721.38" y="1759.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1733" width="0.6" height="15.0" fill="rgb(246,164,45)" rx="2" ry="2" />
<text x="451.74" y="1743.5" ></text>
</g>
<g >
<title>update_blocked_averages (22,024,604 samples, 0.03%)</title><rect x="155.8" y="1781" width="0.4" height="15.0" fill="rgb(216,167,18)" rx="2" ry="2" />
<text x="158.83" y="1791.5" ></text>
</g>
<g >
<title>tick_sched_handle (26,038,975 samples, 0.04%)</title><rect x="356.4" y="1781" width="0.4" height="15.0" fill="rgb(251,20,21)" rx="2" ry="2" />
<text x="359.40" y="1791.5" ></text>
</g>
<g >
<title>pick_next_task_fair (261,014,680 samples, 0.38%)</title><rect x="669.2" y="1925" width="4.4" height="15.0" fill="rgb(222,28,2)" rx="2" ry="2" />
<text x="672.18" y="1935.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (21,081,219 samples, 0.03%)</title><rect x="708.3" y="1973" width="0.3" height="15.0" fill="rgb(206,81,32)" rx="2" ry="2" />
<text x="711.27" y="1983.5" ></text>
</g>
<g >
<title>ip_route_input_noref (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1685" width="0.6" height="15.0" fill="rgb(246,212,45)" rx="2" ry="2" />
<text x="451.74" y="1695.5" ></text>
</g>
<g >
<title>rdk:broker1005 (2,337,137,037 samples, 3.37%)</title><rect x="774.5" y="2069" width="39.7" height="15.0" fill="rgb(253,160,8)" rx="2" ry="2" />
<text x="777.52" y="2079.5" >rdk..</text>
</g>
<g >
<title>[[vdso]] (8,039,307 samples, 0.01%)</title><rect x="774.4" y="2037" width="0.1" height="15.0" fill="rgb(242,226,49)" rx="2" ry="2" />
<text x="777.38" y="2047.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (16,826,647 samples, 0.02%)</title><rect x="760.3" y="1925" width="0.2" height="15.0" fill="rgb(211,153,42)" rx="2" ry="2" />
<text x="763.25" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,335,862 samples, 0.04%)</title><rect x="990.8" y="2021" width="0.4" height="15.0" fill="rgb(222,69,12)" rx="2" ry="2" />
<text x="993.77" y="2031.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (175,322,453 samples, 0.25%)</title><rect x="297.5" y="1813" width="3.0" height="15.0" fill="rgb(209,183,45)" rx="2" ry="2" />
<text x="300.51" y="1823.5" ></text>
</g>
<g >
<title>__calc_delta (85,675,195 samples, 0.12%)</title><rect x="274.5" y="1877" width="1.5" height="15.0" fill="rgb(207,49,43)" rx="2" ry="2" />
<text x="277.54" y="1887.5" ></text>
</g>
<g >
<title>[libnode.so.64] (2,243,083,247 samples, 3.23%)</title><rect x="13.8" y="1893" width="38.1" height="15.0" fill="rgb(228,85,24)" rx="2" ry="2" />
<text x="16.76" y="1903.5" >[li..</text>
</g>
<g >
<title>__update_load_avg_cfs_rq (14,167,337 samples, 0.02%)</title><rect x="471.7" y="1781" width="0.3" height="15.0" fill="rgb(218,73,30)" rx="2" ry="2" />
<text x="474.71" y="1791.5" ></text>
</g>
<g >
<title>__fget_files (76,902,147 samples, 0.11%)</title><rect x="782.0" y="1957" width="1.4" height="15.0" fill="rgb(211,79,41)" rx="2" ry="2" />
<text x="785.05" y="1967.5" ></text>
</g>
<g >
<title>v8::HandleScope::Initialize@plt (154,638,977 samples, 0.22%)</title><rect x="54.2" y="1973" width="2.6" height="15.0" fill="rgb(231,125,27)" rx="2" ry="2" />
<text x="57.16" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (61,098,318 samples, 0.09%)</title><rect x="85.1" y="2005" width="1.0" height="15.0" fill="rgb(209,65,31)" rx="2" ry="2" />
<text x="88.10" y="2015.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (26,419,604 samples, 0.04%)</title><rect x="777.0" y="1989" width="0.5" height="15.0" fill="rgb(205,165,30)" rx="2" ry="2" />
<text x="780.03" y="1999.5" ></text>
</g>
<g >
<title>plist_add (127,982,758 samples, 0.18%)</title><rect x="138.8" y="1941" width="2.2" height="15.0" fill="rgb(236,19,21)" rx="2" ry="2" />
<text x="141.83" y="1951.5" ></text>
</g>
<g >
<title>_raw_spin_lock (30,053,179 samples, 0.04%)</title><rect x="325.2" y="1957" width="0.5" height="15.0" fill="rgb(224,63,35)" rx="2" ry="2" />
<text x="328.21" y="1967.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (14,424,468 samples, 0.02%)</title><rect x="523.6" y="2021" width="0.3" height="15.0" fill="rgb(234,101,11)" rx="2" ry="2" />
<text x="526.62" y="2031.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (15,193,499 samples, 0.02%)</title><rect x="550.6" y="1829" width="0.2" height="15.0" fill="rgb(228,218,47)" rx="2" ry="2" />
<text x="553.58" y="1839.5" ></text>
</g>
<g >
<title>newidle_balance (375,372,084 samples, 0.54%)</title><rect x="574.3" y="1893" width="6.4" height="15.0" fill="rgb(234,142,51)" rx="2" ry="2" />
<text x="577.30" y="1903.5" ></text>
</g>
<g >
<title>do_futex (26,113,955 samples, 0.04%)</title><rect x="66.9" y="69" width="0.5" height="15.0" fill="rgb(223,192,45)" rx="2" ry="2" />
<text x="69.91" y="79.5" ></text>
</g>
<g >
<title>__libc_read (997,514,938 samples, 1.44%)</title><rect x="208.7" y="2037" width="17.0" height="15.0" fill="rgb(232,108,34)" rx="2" ry="2" />
<text x="211.75" y="2047.5" ></text>
</g>
<g >
<title>arch_perf_update_userpage (51,208,891 samples, 0.07%)</title><rect x="666.7" y="1797" width="0.9" height="15.0" fill="rgb(214,92,5)" rx="2" ry="2" />
<text x="669.73" y="1807.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (30,582,412 samples, 0.04%)</title><rect x="449.7" y="1989" width="0.5" height="15.0" fill="rgb(234,21,7)" rx="2" ry="2" />
<text x="452.71" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (986,150,913 samples, 1.42%)</title><rect x="741.2" y="2021" width="16.7" height="15.0" fill="rgb(205,29,7)" rx="2" ry="2" />
<text x="744.18" y="2031.5" ></text>
</g>
<g >
<title>nf_conntrack_in (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1637" width="1.4" height="15.0" fill="rgb(214,167,54)" rx="2" ry="2" />
<text x="229.35" y="1647.5" ></text>
</g>
<g >
<title>NodeKafka::Workers::KafkaConsumerConsumeNum::Execute (242,840,778 samples, 0.35%)</title><rect x="57.0" y="53" width="4.1" height="15.0" fill="rgb(225,54,36)" rx="2" ry="2" />
<text x="60.02" y="63.5" ></text>
</g>
<g >
<title>event_sched_in (44,308,598 samples, 0.06%)</title><rect x="546.2" y="1845" width="0.8" height="15.0" fill="rgb(248,210,35)" rx="2" ry="2" />
<text x="549.21" y="1855.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (14,492,499 samples, 0.02%)</title><rect x="218.1" y="1893" width="0.3" height="15.0" fill="rgb(252,84,49)" rx="2" ry="2" />
<text x="221.14" y="1903.5" ></text>
</g>
<g >
<title>update_curr (124,006,085 samples, 0.18%)</title><rect x="787.9" y="1893" width="2.1" height="15.0" fill="rgb(232,224,11)" rx="2" ry="2" />
<text x="790.88" y="1903.5" ></text>
</g>
<g >
<title>dequeue_entity (362,850,072 samples, 0.52%)</title><rect x="657.4" y="1909" width="6.1" height="15.0" fill="rgb(238,178,35)" rx="2" ry="2" />
<text x="660.38" y="1919.5" ></text>
</g>
<g >
<title>irq_exit_rcu (322,548,771 samples, 0.46%)</title><rect x="169.4" y="1541" width="5.4" height="15.0" fill="rgb(246,119,48)" rx="2" ry="2" />
<text x="172.35" y="1551.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (150,493,886 samples, 0.22%)</title><rect x="130.4" y="1845" width="2.6" height="15.0" fill="rgb(241,114,4)" rx="2" ry="2" />
<text x="133.40" y="1855.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (164,033,565 samples, 0.24%)</title><rect x="357.0" y="1845" width="2.8" height="15.0" fill="rgb(237,9,31)" rx="2" ry="2" />
<text x="360.00" y="1855.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (583,878,092 samples, 0.84%)</title><rect x="284.9" y="1877" width="9.9" height="15.0" fill="rgb(220,121,43)" rx="2" ry="2" />
<text x="287.91" y="1887.5" ></text>
</g>
<g >
<title>[libssl.so.1.1] (143,734,862 samples, 0.21%)</title><rect x="588.7" y="2053" width="2.5" height="15.0" fill="rgb(210,120,25)" rx="2" ry="2" />
<text x="591.74" y="2063.5" ></text>
</g>
<g >
<title>rdk:broker1001 (6,456,917,748 samples, 9.30%)</title><rect x="391.5" y="2069" width="109.7" height="15.0" fill="rgb(208,92,36)" rx="2" ry="2" />
<text x="394.46" y="2079.5" >rdk:broker1001</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (31,039,577 samples, 0.04%)</title><rect x="595.5" y="2005" width="0.5" height="15.0" fill="rgb(230,208,0)" rx="2" ry="2" />
<text x="598.50" y="2015.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (13,570,464 samples, 0.02%)</title><rect x="493.6" y="1813" width="0.3" height="15.0" fill="rgb(221,193,33)" rx="2" ry="2" />
<text x="496.62" y="1823.5" ></text>
</g>
<g >
<title>__schedule (469,458,769 samples, 0.68%)</title><rect x="748.6" y="1941" width="8.0" height="15.0" fill="rgb(247,224,50)" rx="2" ry="2" />
<text x="751.59" y="1951.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (23,644,967 samples, 0.03%)</title><rect x="1043.0" y="1973" width="0.4" height="15.0" fill="rgb(220,168,18)" rx="2" ry="2" />
<text x="1046.03" y="1983.5" ></text>
</g>
<g >
<title>finish_task_switch (798,609,944 samples, 1.15%)</title><rect x="116.8" y="1909" width="13.6" height="15.0" fill="rgb(234,221,24)" rx="2" ry="2" />
<text x="119.82" y="1919.5" ></text>
</g>
<g >
<title>cfree (112,150,325 samples, 0.16%)</title><rect x="519.4" y="2005" width="1.9" height="15.0" fill="rgb(228,55,33)" rx="2" ry="2" />
<text x="522.36" y="2015.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (19,826,033 samples, 0.03%)</title><rect x="544.5" y="1877" width="0.3" height="15.0" fill="rgb(211,101,29)" rx="2" ry="2" />
<text x="547.48" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (150,339,559 samples, 0.22%)</title><rect x="717.3" y="2021" width="2.6" height="15.0" fill="rgb(240,187,19)" rx="2" ry="2" />
<text x="720.33" y="2031.5" ></text>
</g>
<g >
<title>do_futex (1,360,567,849 samples, 1.96%)</title><rect x="112.6" y="1989" width="23.2" height="15.0" fill="rgb(246,165,30)" rx="2" ry="2" />
<text x="115.63" y="1999.5" >d..</text>
</g>
<g >
<title>_raw_spin_lock_irqsave (15,776,520 samples, 0.02%)</title><rect x="753.4" y="1733" width="0.3" height="15.0" fill="rgb(249,111,52)" rx="2" ry="2" />
<text x="756.38" y="1743.5" ></text>
</g>
<g >
<title>all (69,426,866,546 samples, 100%)</title><rect x="10.0" y="2085" width="1180.0" height="15.0" fill="rgb(217,187,22)" rx="2" ry="2" />
<text x="13.00" y="2095.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (202,472,211 samples, 0.29%)</title><rect x="351.0" y="1845" width="3.5" height="15.0" fill="rgb(214,228,24)" rx="2" ry="2" />
<text x="354.03" y="1855.5" ></text>
</g>
<g >
<title>do_futex (80,984,090 samples, 0.12%)</title><rect x="83.7" y="1989" width="1.4" height="15.0" fill="rgb(226,181,34)" rx="2" ry="2" />
<text x="86.73" y="1999.5" ></text>
</g>
<g >
<title>nf_hook_slow (70,762,269 samples, 0.10%)</title><rect x="718.4" y="1701" width="1.2" height="15.0" fill="rgb(209,161,5)" rx="2" ry="2" />
<text x="721.38" y="1711.5" ></text>
</g>
<g >
<title>do_syscall_64 (142,082,408 samples, 0.20%)</title><rect x="83.7" y="2021" width="2.4" height="15.0" fill="rgb(253,26,42)" rx="2" ry="2" />
<text x="86.73" y="2031.5" ></text>
</g>
<g >
<title>NodeKafka::Workers::KafkaConsumerConsumeNum::Execute (13,808,188 samples, 0.02%)</title><rect x="61.6" y="37" width="0.2" height="15.0" fill="rgb(213,80,47)" rx="2" ry="2" />
<text x="64.57" y="47.5" ></text>
</g>
<g >
<title>put_prev_entity (125,246,075 samples, 0.18%)</title><rect x="674.7" y="1909" width="2.2" height="15.0" fill="rgb(232,139,22)" rx="2" ry="2" />
<text x="677.73" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1797" width="13.1" height="15.0" fill="rgb(217,94,24)" rx="2" ry="2" />
<text x="60.02" y="1807.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (16,826,647 samples, 0.02%)</title><rect x="760.3" y="1941" width="0.2" height="15.0" fill="rgb(208,47,45)" rx="2" ry="2" />
<text x="763.25" y="1951.5" ></text>
</g>
<g >
<title>__calc_delta (27,696,395 samples, 0.04%)</title><rect x="661.4" y="1877" width="0.5" height="15.0" fill="rgb(253,110,23)" rx="2" ry="2" />
<text x="664.38" y="1887.5" ></text>
</g>
<g >
<title>pick_next_task_fair (321,657,970 samples, 0.46%)</title><rect x="805.6" y="1909" width="5.4" height="15.0" fill="rgb(212,160,2)" rx="2" ry="2" />
<text x="808.56" y="1919.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (189,830,742 samples, 0.27%)</title><rect x="82.9" y="2053" width="3.2" height="15.0" fill="rgb(217,45,3)" rx="2" ry="2" />
<text x="85.91" y="2063.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (28,405,612 samples, 0.04%)</title><rect x="247.5" y="2053" width="0.5" height="15.0" fill="rgb(238,123,47)" rx="2" ry="2" />
<text x="250.50" y="2063.5" ></text>
</g>
<g >
<title>update_cfs_group (23,851,303 samples, 0.03%)</title><rect x="658.7" y="1893" width="0.4" height="15.0" fill="rgb(252,96,32)" rx="2" ry="2" />
<text x="661.70" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="501" width="13.1" height="15.0" fill="rgb(206,111,26)" rx="2" ry="2" />
<text x="60.02" y="511.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (30,560,503 samples, 0.04%)</title><rect x="792.4" y="1893" width="0.5" height="15.0" fill="rgb(237,5,35)" rx="2" ry="2" />
<text x="795.39" y="1903.5" ></text>
</g>
<g >
<title>__condvar_cancel_waiting (32,747,412 samples, 0.05%)</title><rect x="738.9" y="2053" width="0.6" height="15.0" fill="rgb(233,10,3)" rx="2" ry="2" />
<text x="741.90" y="2063.5" ></text>
</g>
<g >
<title>perf_swevent_add (17,220,355 samples, 0.02%)</title><rect x="1145.1" y="1813" width="0.3" height="15.0" fill="rgb(224,35,32)" rx="2" ry="2" />
<text x="1148.12" y="1823.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (52,313,776 samples, 0.08%)</title><rect x="559.6" y="2005" width="0.9" height="15.0" fill="rgb(213,35,33)" rx="2" ry="2" />
<text x="562.60" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1845" width="13.1" height="15.0" fill="rgb(218,63,3)" rx="2" ry="2" />
<text x="60.02" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="965" width="13.1" height="15.0" fill="rgb(214,91,13)" rx="2" ry="2" />
<text x="60.02" y="975.5" ></text>
</g>
<g >
<title>remove_wait_queue (36,781,187 samples, 0.05%)</title><rect x="262.9" y="1957" width="0.6" height="15.0" fill="rgb(254,110,49)" rx="2" ry="2" />
<text x="265.92" y="1967.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (35,162,748 samples, 0.05%)</title><rect x="546.4" y="1813" width="0.6" height="15.0" fill="rgb(217,33,4)" rx="2" ry="2" />
<text x="549.37" y="1823.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ops_io_serve (46,387,470 samples, 0.07%)</title><rect x="581.7" y="2053" width="0.8" height="15.0" fill="rgb(227,213,39)" rx="2" ry="2" />
<text x="584.68" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (314,911,843 samples, 0.45%)</title><rect x="199.8" y="2037" width="5.4" height="15.0" fill="rgb(206,12,24)" rx="2" ry="2" />
<text x="202.82" y="2047.5" ></text>
</g>
<g >
<title>BytecodeHandler:Star (29,971,104 samples, 0.04%)</title><rect x="166.8" y="1861" width="0.5" height="15.0" fill="rgb(221,122,51)" rx="2" ry="2" />
<text x="169.82" y="1871.5" ></text>
</g>
<g >
<title>rw_verify_area (25,560,713 samples, 0.04%)</title><rect x="612.0" y="1957" width="0.4" height="15.0" fill="rgb(224,205,29)" rx="2" ry="2" />
<text x="614.96" y="1967.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (3,416,893,554 samples, 4.92%)</title><rect x="1116.8" y="2053" width="58.1" height="15.0" fill="rgb(210,10,38)" rx="2" ry="2" />
<text x="1119.79" y="2063.5" >pthrea..</text>
</g>
<g >
<title>load_balance (50,886,326 samples, 0.07%)</title><rect x="768.9" y="1877" width="0.8" height="15.0" fill="rgb(212,127,14)" rx="2" ry="2" />
<text x="771.87" y="1887.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (14,211,680 samples, 0.02%)</title><rect x="1167.7" y="1813" width="0.3" height="15.0" fill="rgb(232,191,27)" rx="2" ry="2" />
<text x="1170.75" y="1823.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (554,927,271 samples, 0.80%)</title><rect x="463.0" y="1973" width="9.4" height="15.0" fill="rgb(245,98,5)" rx="2" ry="2" />
<text x="465.98" y="1983.5" ></text>
</g>
<g >
<title>__unqueue_futex (30,345,889 samples, 0.04%)</title><rect x="112.7" y="1957" width="0.5" height="15.0" fill="rgb(237,178,35)" rx="2" ry="2" />
<text x="115.71" y="1967.5" ></text>
</g>
<g >
<title>poll_select_set_timeout (30,311,733 samples, 0.04%)</title><rect x="310.9" y="1989" width="0.5" height="15.0" fill="rgb(236,92,50)" rx="2" ry="2" />
<text x="313.89" y="1999.5" ></text>
</g>
<g >
<title>hrtimer_cancel (30,325,063 samples, 0.04%)</title><rect x="1170.3" y="1957" width="0.5" height="15.0" fill="rgb(212,24,34)" rx="2" ry="2" />
<text x="1173.25" y="1967.5" ></text>
</g>
<g >
<title>_raw_spin_lock (35,912,804 samples, 0.05%)</title><rect x="760.8" y="1909" width="0.6" height="15.0" fill="rgb(221,74,45)" rx="2" ry="2" />
<text x="763.77" y="1919.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,134,123,204 samples, 4.51%)</title><rect x="1117.9" y="2021" width="53.3" height="15.0" fill="rgb(210,140,19)" rx="2" ry="2" />
<text x="1120.92" y="2031.5" >do_sy..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,226,918,607 samples, 3.21%)</title><rect x="647.1" y="2037" width="37.9" height="15.0" fill="rgb(251,212,7)" rx="2" ry="2" />
<text x="650.15" y="2047.5" >ent..</text>
</g>
<g >
<title>ip6_finish_output2 (87,733,563 samples, 0.13%)</title><rect x="615.4" y="1797" width="1.5" height="15.0" fill="rgb(207,208,18)" rx="2" ry="2" />
<text x="618.42" y="1807.5" ></text>
</g>
<g >
<title>uv__work_done (1,375,831,349 samples, 1.98%)</title><rect x="165.2" y="2053" width="23.4" height="15.0" fill="rgb(215,95,20)" rx="2" ry="2" />
<text x="168.24" y="2063.5" >u..</text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (17,190,181 samples, 0.02%)</title><rect x="786.1" y="1909" width="0.3" height="15.0" fill="rgb(252,48,26)" rx="2" ry="2" />
<text x="789.13" y="1919.5" ></text>
</g>
<g >
<title>enqueue_task_fair (11,598,261 samples, 0.02%)</title><rect x="356.2" y="1749" width="0.2" height="15.0" fill="rgb(247,133,20)" rx="2" ry="2" />
<text x="359.20" y="1759.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (112,703,409 samples, 0.16%)</title><rect x="152.4" y="1845" width="2.0" height="15.0" fill="rgb(211,67,54)" rx="2" ry="2" />
<text x="155.44" y="1855.5" ></text>
</g>
<g >
<title>__pthread_mutex_lock (120,843,217 samples, 0.17%)</title><rect x="63.4" y="37" width="2.1" height="15.0" fill="rgb(236,80,42)" rx="2" ry="2" />
<text x="66.43" y="47.5" ></text>
</g>
<g >
<title>process_backlog (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1749" width="0.6" height="15.0" fill="rgb(249,16,5)" rx="2" ry="2" />
<text x="451.74" y="1759.5" ></text>
</g>
<g >
<title>load_balance (169,422,689 samples, 0.24%)</title><rect x="704.3" y="1877" width="2.9" height="15.0" fill="rgb(235,197,19)" rx="2" ry="2" />
<text x="707.28" y="1887.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (32,064,458 samples, 0.05%)</title><rect x="769.2" y="1813" width="0.5" height="15.0" fill="rgb(222,28,35)" rx="2" ry="2" />
<text x="772.19" y="1823.5" ></text>
</g>
<g >
<title>__remove_hrtimer (6,398,877 samples, 0.01%)</title><rect x="656.8" y="1941" width="0.1" height="15.0" fill="rgb(207,7,51)" rx="2" ry="2" />
<text x="659.76" y="1951.5" ></text>
</g>
<g >
<title>uv_async_send (35,887,519 samples, 0.05%)</title><rect x="66.1" y="37" width="0.6" height="15.0" fill="rgb(242,105,33)" rx="2" ry="2" />
<text x="69.11" y="47.5" ></text>
</g>
<g >
<title>finish_task_switch (331,828,507 samples, 0.48%)</title><rect x="663.5" y="1925" width="5.7" height="15.0" fill="rgb(229,156,32)" rx="2" ry="2" />
<text x="666.54" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (843,933,402 samples, 1.22%)</title><rect x="566.4" y="2037" width="14.4" height="15.0" fill="rgb(247,12,45)" rx="2" ry="2" />
<text x="569.41" y="2047.5" ></text>
</g>
<g >
<title>add_wait_queue (15,746,498 samples, 0.02%)</title><rect x="310.6" y="1941" width="0.2" height="15.0" fill="rgb(209,50,31)" rx="2" ry="2" />
<text x="313.57" y="1951.5" ></text>
</g>
<g >
<title>[libssl.so.1.1] (934,195,630 samples, 1.35%)</title><rect x="420.7" y="2053" width="15.8" height="15.0" fill="rgb(235,120,44)" rx="2" ry="2" />
<text x="423.65" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (26,897,661 samples, 0.04%)</title><rect x="536.3" y="2005" width="0.4" height="15.0" fill="rgb(210,61,51)" rx="2" ry="2" />
<text x="539.26" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1893" width="13.1" height="15.0" fill="rgb(244,143,35)" rx="2" ry="2" />
<text x="60.02" y="1903.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (90,651,969 samples, 0.13%)</title><rect x="577.0" y="1797" width="1.5" height="15.0" fill="rgb(248,102,46)" rx="2" ry="2" />
<text x="579.95" y="1807.5" ></text>
</g>
<g >
<title>Stub:JSEntryStub (471,602,466 samples, 0.68%)</title><rect x="166.8" y="1909" width="8.0" height="15.0" fill="rgb(225,155,54)" rx="2" ry="2" />
<text x="169.82" y="1919.5" ></text>
</g>
<g >
<title>set_next_entity (23,718,371 samples, 0.03%)</title><rect x="707.6" y="1893" width="0.4" height="15.0" fill="rgb(222,209,3)" rx="2" ry="2" />
<text x="710.60" y="1903.5" ></text>
</g>
<g >
<title>futex_wait (483,534,322 samples, 0.70%)</title><rect x="699.8" y="1973" width="8.2" height="15.0" fill="rgb(220,154,34)" rx="2" ry="2" />
<text x="702.78" y="1983.5" ></text>
</g>
<g >
<title>try_to_wake_up (24,329,495 samples, 0.04%)</title><rect x="560.1" y="1877" width="0.4" height="15.0" fill="rgb(243,221,19)" rx="2" ry="2" />
<text x="563.08" y="1887.5" ></text>
</g>
<g >
<title>perf_swevent_add (65,344,800 samples, 0.09%)</title><rect x="666.5" y="1829" width="1.1" height="15.0" fill="rgb(249,147,20)" rx="2" ry="2" />
<text x="669.51" y="1839.5" ></text>
</g>
<g >
<title>rb_erase (30,325,063 samples, 0.04%)</title><rect x="1170.3" y="1893" width="0.5" height="15.0" fill="rgb(212,71,43)" rx="2" ry="2" />
<text x="1173.25" y="1903.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (8,988,698 samples, 0.01%)</title><rect x="483.1" y="1877" width="0.1" height="15.0" fill="rgb(206,129,35)" rx="2" ry="2" />
<text x="486.09" y="1887.5" ></text>
</g>
<g >
<title>inet_recvmsg (34,377,720 samples, 0.05%)</title><rect x="448.7" y="1925" width="0.6" height="15.0" fill="rgb(239,213,10)" rx="2" ry="2" />
<text x="451.74" y="1935.5" ></text>
</g>
<g >
<title>switch_fpu_return (21,081,219 samples, 0.03%)</title><rect x="708.3" y="1989" width="0.3" height="15.0" fill="rgb(226,212,20)" rx="2" ry="2" />
<text x="711.27" y="1999.5" ></text>
</g>
<g >
<title>tcp_recvmsg (611,999,757 samples, 0.88%)</title><rect x="523.9" y="1909" width="10.4" height="15.0" fill="rgb(213,43,16)" rx="2" ry="2" />
<text x="526.86" y="1919.5" ></text>
</g>
<g >
<title>process_backlog (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1701" width="1.4" height="15.0" fill="rgb(217,200,27)" rx="2" ry="2" />
<text x="229.35" y="1711.5" ></text>
</g>
<g >
<title>switch_fpu_return (11,979,223 samples, 0.02%)</title><rect x="474.2" y="1989" width="0.2" height="15.0" fill="rgb(246,138,30)" rx="2" ry="2" />
<text x="477.24" y="1999.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (29,094,152 samples, 0.04%)</title><rect x="567.2" y="1925" width="0.5" height="15.0" fill="rgb(247,2,0)" rx="2" ry="2" />
<text x="570.23" y="1935.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (38,545,995 samples, 0.06%)</title><rect x="737.7" y="2037" width="0.7" height="15.0" fill="rgb(221,221,41)" rx="2" ry="2" />
<text x="740.72" y="2047.5" ></text>
</g>
<g >
<title>tcp_stream_memory_free (25,537,304 samples, 0.04%)</title><rect x="795.6" y="1941" width="0.5" height="15.0" fill="rgb(215,17,14)" rx="2" ry="2" />
<text x="798.63" y="1951.5" ></text>
</g>
<g >
<title>__x64_sys_futex (44,103,726 samples, 0.06%)</title><rect x="991.3" y="1989" width="0.7" height="15.0" fill="rgb(208,219,5)" rx="2" ry="2" />
<text x="994.26" y="1999.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (14,944,433 samples, 0.02%)</title><rect x="454.1" y="2037" width="0.2" height="15.0" fill="rgb(209,142,45)" rx="2" ry="2" />
<text x="457.09" y="2047.5" ></text>
</g>
<g >
<title>switch_fpu_return (72,473,009 samples, 0.10%)</title><rect x="560.5" y="1989" width="1.2" height="15.0" fill="rgb(236,161,53)" rx="2" ry="2" />
<text x="563.49" y="1999.5" ></text>
</g>
<g >
<title>update_blocked_averages (175,322,453 samples, 0.25%)</title><rect x="297.5" y="1845" width="3.0" height="15.0" fill="rgb(253,159,8)" rx="2" ry="2" />
<text x="300.51" y="1855.5" ></text>
</g>
<g >
<title>copy_kernel_to_fpregs (25,814,077 samples, 0.04%)</title><rect x="798.2" y="1973" width="0.4" height="15.0" fill="rgb(210,53,32)" rx="2" ry="2" />
<text x="801.20" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="789" width="13.1" height="15.0" fill="rgb(226,36,20)" rx="2" ry="2" />
<text x="60.02" y="799.5" ></text>
</g>
<g >
<title>v8::internal::compiler::PipelineImpl::OptimizeGraph (231,690,612 samples, 0.33%)</title><rect x="161.3" y="1957" width="3.9" height="15.0" fill="rgb(233,189,43)" rx="2" ry="2" />
<text x="164.28" y="1967.5" ></text>
</g>
<g >
<title>__update_load_avg_se (8,028,550 samples, 0.01%)</title><rect x="790.0" y="1877" width="0.1" height="15.0" fill="rgb(247,96,7)" rx="2" ry="2" />
<text x="792.99" y="1887.5" ></text>
</g>
<g >
<title>futex_wait (1,360,567,849 samples, 1.96%)</title><rect x="112.6" y="1973" width="23.2" height="15.0" fill="rgb(233,67,14)" rx="2" ry="2" />
<text x="115.63" y="1983.5" >f..</text>
</g>
<g >
<title>__skb_datagram_iter (14,492,499 samples, 0.02%)</title><rect x="218.1" y="1877" width="0.3" height="15.0" fill="rgb(206,197,49)" rx="2" ry="2" />
<text x="221.14" y="1887.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (16,659,180 samples, 0.02%)</title><rect x="768.6" y="1877" width="0.3" height="15.0" fill="rgb(228,179,48)" rx="2" ry="2" />
<text x="771.58" y="1887.5" ></text>
</g>
<g >
<title>v8::internal::compiler::ValueNumberingReducer::Reduce (136,394,792 samples, 0.20%)</title><rect x="161.3" y="1861" width="2.3" height="15.0" fill="rgb(219,160,16)" rx="2" ry="2" />
<text x="164.28" y="1871.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (687,988,864 samples, 0.99%)</title><rect x="759.7" y="2037" width="11.7" height="15.0" fill="rgb(207,110,2)" rx="2" ry="2" />
<text x="762.72" y="2047.5" ></text>
</g>
<g >
<title>vfs_read (853,341,926 samples, 1.23%)</title><rect x="209.6" y="1973" width="14.5" height="15.0" fill="rgb(206,158,17)" rx="2" ry="2" />
<text x="212.55" y="1983.5" ></text>
</g>
<g >
<title>rd_kafka_q_pop_serve.localalias.12 (98,695,591 samples, 0.14%)</title><rect x="812.6" y="2053" width="1.6" height="15.0" fill="rgb(205,107,22)" rx="2" ry="2" />
<text x="815.56" y="2063.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (1,020,454,989 samples, 1.47%)</title><rect x="968.0" y="2021" width="17.3" height="15.0" fill="rgb(218,119,3)" rx="2" ry="2" />
<text x="970.97" y="2031.5" ></text>
</g>
<g >
<title>remove_entity_load_avg (15,776,520 samples, 0.02%)</title><rect x="753.4" y="1749" width="0.3" height="15.0" fill="rgb(205,28,15)" rx="2" ry="2" />
<text x="756.38" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1349" width="13.1" height="15.0" fill="rgb(222,175,15)" rx="2" ry="2" />
<text x="60.02" y="1359.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (26,038,975 samples, 0.04%)</title><rect x="356.4" y="1701" width="0.4" height="15.0" fill="rgb(205,222,25)" rx="2" ry="2" />
<text x="359.40" y="1711.5" ></text>
</g>
<g >
<title>aa_sk_perm (81,057,429 samples, 0.12%)</title><rect x="452.4" y="1893" width="1.4" height="15.0" fill="rgb(228,69,42)" rx="2" ry="2" />
<text x="455.40" y="1903.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (29,878,483 samples, 0.04%)</title><rect x="329.5" y="1861" width="0.5" height="15.0" fill="rgb(216,215,17)" rx="2" ry="2" />
<text x="332.53" y="1871.5" ></text>
</g>
<g >
<title>ctx_sched_in (236,904,210 samples, 0.34%)</title><rect x="546.1" y="1893" width="4.0" height="15.0" fill="rgb(243,51,48)" rx="2" ry="2" />
<text x="549.10" y="1903.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (27,172,777 samples, 0.04%)</title><rect x="782.9" y="1877" width="0.5" height="15.0" fill="rgb(221,28,3)" rx="2" ry="2" />
<text x="785.89" y="1887.5" ></text>
</g>
<g >
<title>update_blocked_averages (142,423,536 samples, 0.21%)</title><rect x="490.6" y="1877" width="2.4" height="15.0" fill="rgb(235,194,24)" rx="2" ry="2" />
<text x="493.62" y="1887.5" ></text>
</g>
<g >
<title>update_blocked_averages (176,881,020 samples, 0.25%)</title><rect x="300.5" y="1893" width="3.0" height="15.0" fill="rgb(253,220,16)" rx="2" ry="2" />
<text x="303.49" y="1903.5" ></text>
</g>
<g >
<title>schedule (724,149,717 samples, 1.04%)</title><rect x="481.3" y="1941" width="12.3" height="15.0" fill="rgb(218,10,37)" rx="2" ry="2" />
<text x="484.31" y="1951.5" ></text>
</g>
<g >
<title>switch_fpu_return (65,567,547 samples, 0.09%)</title><rect x="159.0" y="1989" width="1.1" height="15.0" fill="rgb(230,212,33)" rx="2" ry="2" />
<text x="161.97" y="1999.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel.part.0 (12,435,448 samples, 0.02%)</title><rect x="656.7" y="1957" width="0.2" height="15.0" fill="rgb(220,110,10)" rx="2" ry="2" />
<text x="659.65" y="1967.5" ></text>
</g>
<g >
<title>get_futex_key (10,956,700 samples, 0.02%)</title><rect x="991.8" y="1941" width="0.2" height="15.0" fill="rgb(227,65,31)" rx="2" ry="2" />
<text x="994.82" y="1951.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (107,224,831 samples, 0.15%)</title><rect x="990.8" y="2037" width="1.8" height="15.0" fill="rgb(235,9,0)" rx="2" ry="2" />
<text x="993.77" y="2047.5" ></text>
</g>
<g >
<title>__fdget_pos (116,425,065 samples, 0.17%)</title><rect x="71.0" y="1973" width="1.9" height="15.0" fill="rgb(212,190,47)" rx="2" ry="2" />
<text x="73.97" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (133,186,214 samples, 0.19%)</title><rect x="592.7" y="2021" width="2.3" height="15.0" fill="rgb(207,40,2)" rx="2" ry="2" />
<text x="595.73" y="2031.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (14,248,885 samples, 0.02%)</title><rect x="704.0" y="1877" width="0.3" height="15.0" fill="rgb(250,94,24)" rx="2" ry="2" />
<text x="707.04" y="1887.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (155,193,645 samples, 0.22%)</title><rect x="483.2" y="1861" width="2.7" height="15.0" fill="rgb(228,152,37)" rx="2" ry="2" />
<text x="486.24" y="1871.5" ></text>
</g>
<g >
<title>__pthread_enable_asynccancel (134,456,511 samples, 0.19%)</title><rect x="621.1" y="2037" width="2.3" height="15.0" fill="rgb(206,217,21)" rx="2" ry="2" />
<text x="624.11" y="2047.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (111,402,622 samples, 0.16%)</title><rect x="461.1" y="1941" width="1.9" height="15.0" fill="rgb(239,111,2)" rx="2" ry="2" />
<text x="464.09" y="1951.5" ></text>
</g>
<g >
<title>update_blocked_averages (25,875,044 samples, 0.04%)</title><rect x="792.5" y="1797" width="0.4" height="15.0" fill="rgb(231,229,21)" rx="2" ry="2" />
<text x="795.47" y="1807.5" ></text>
</g>
<g >
<title>new_sync_write (185,711,277 samples, 0.27%)</title><rect x="226.4" y="1957" width="3.1" height="15.0" fill="rgb(218,75,8)" rx="2" ry="2" />
<text x="229.35" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1333" width="13.1" height="15.0" fill="rgb(219,22,41)" rx="2" ry="2" />
<text x="60.02" y="1343.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (26,897,661 samples, 0.04%)</title><rect x="536.3" y="2053" width="0.4" height="15.0" fill="rgb(225,212,16)" rx="2" ry="2" />
<text x="539.26" y="2063.5" ></text>
</g>
<g >
<title>rd_kafka_broker_ApiVersion_supported (126,327,227 samples, 0.18%)</title><rect x="1174.9" y="2053" width="2.1" height="15.0" fill="rgb(228,150,39)" rx="2" ry="2" />
<text x="1177.87" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,324,651,155 samples, 4.79%)</title><rect x="1117.9" y="2037" width="56.5" height="15.0" fill="rgb(234,215,54)" rx="2" ry="2" />
<text x="1120.92" y="2047.5" >entry..</text>
</g>
<g >
<title>rb_next (21,679,410 samples, 0.03%)</title><rect x="703.2" y="1845" width="0.3" height="15.0" fill="rgb(227,2,32)" rx="2" ry="2" />
<text x="706.18" y="1855.5" ></text>
</g>
<g >
<title>do_sys_poll (3,378,452,747 samples, 4.87%)</title><rect x="253.5" y="1989" width="57.4" height="15.0" fill="rgb(212,173,33)" rx="2" ry="2" />
<text x="256.47" y="1999.5" >do_sys..</text>
</g>
<g >
<title>update_curr (27,607,799 samples, 0.04%)</title><rect x="482.0" y="1877" width="0.5" height="15.0" fill="rgb(219,122,53)" rx="2" ry="2" />
<text x="485.01" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (1,082,754,599 samples, 1.56%)</title><rect x="517.1" y="2053" width="18.4" height="15.0" fill="rgb(206,198,53)" rx="2" ry="2" />
<text x="520.15" y="2063.5" ></text>
</g>
<g >
<title>rd_kafka_q_pop_serve.localalias.12 (30,102,291 samples, 0.04%)</title><rect x="390.4" y="2053" width="0.5" height="15.0" fill="rgb(223,17,17)" rx="2" ry="2" />
<text x="393.42" y="2063.5" ></text>
</g>
<g >
<title>__x64_sys_poll (967,804,975 samples, 1.39%)</title><rect x="741.2" y="2005" width="16.4" height="15.0" fill="rgb(248,113,9)" rx="2" ry="2" />
<text x="744.18" y="2015.5" ></text>
</g>
<g >
<title>cpuacct_charge (44,856,394 samples, 0.06%)</title><rect x="662.3" y="1877" width="0.7" height="15.0" fill="rgb(233,88,12)" rx="2" ry="2" />
<text x="665.27" y="1887.5" ></text>
</g>
<g >
<title>InterpretedFunction: /srv/service/node_modules/swagger-ui-dist/swagger-ui-bundle.js:2 (1,409,512,557 samples, 2.03%)</title><rect x="20.3" y="1685" width="23.9" height="15.0" fill="rgb(226,0,44)" rx="2" ry="2" />
<text x="23.29" y="1695.5" >I..</text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="485" width="13.1" height="15.0" fill="rgb(230,167,30)" rx="2" ry="2" />
<text x="60.02" y="495.5" ></text>
</g>
<g >
<title>rcu_read_unlock_strict (18,619,729 samples, 0.03%)</title><rect x="328.0" y="1861" width="0.4" height="15.0" fill="rgb(240,7,54)" rx="2" ry="2" />
<text x="331.04" y="1871.5" ></text>
</g>
<g >
<title>switch_fpu_return (65,566,823 samples, 0.09%)</title><rect x="135.8" y="1989" width="1.2" height="15.0" fill="rgb(205,215,52)" rx="2" ry="2" />
<text x="138.84" y="1999.5" ></text>
</g>
<g >
<title>pick_next_task_fair (249,294,930 samples, 0.36%)</title><rect x="551.2" y="1925" width="4.2" height="15.0" fill="rgb(210,115,40)" rx="2" ry="2" />
<text x="554.16" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (26,780,789 samples, 0.04%)</title><rect x="209.1" y="2021" width="0.5" height="15.0" fill="rgb(248,66,1)" rx="2" ry="2" />
<text x="212.10" y="2031.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (99,694,011 samples, 0.14%)</title><rect x="355.3" y="1877" width="1.7" height="15.0" fill="rgb(210,64,1)" rx="2" ry="2" />
<text x="358.31" y="1887.5" ></text>
</g>
<g >
<title>__schedule (772,001,230 samples, 1.11%)</title><rect x="542.6" y="1941" width="13.1" height="15.0" fill="rgb(222,10,22)" rx="2" ry="2" />
<text x="545.56" y="1951.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (366,169,011 samples, 0.53%)</title><rect x="348.7" y="1861" width="6.2" height="15.0" fill="rgb(253,155,23)" rx="2" ry="2" />
<text x="351.68" y="1871.5" ></text>
</g>
<g >
<title>arch_perf_update_userpage (21,126,926 samples, 0.03%)</title><rect x="751.1" y="1797" width="0.4" height="15.0" fill="rgb(244,80,17)" rx="2" ry="2" />
<text x="754.11" y="1807.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (21,103,581 samples, 0.03%)</title><rect x="668.8" y="1893" width="0.4" height="15.0" fill="rgb(222,15,42)" rx="2" ry="2" />
<text x="671.83" y="1903.5" ></text>
</g>
<g >
<title>net_rx_action (82,778,484 samples, 0.12%)</title><rect x="226.4" y="1717" width="1.4" height="15.0" fill="rgb(220,218,8)" rx="2" ry="2" />
<text x="229.35" y="1727.5" ></text>
</g>
<g >
<title>rd_kafka_q_pop (28,530,131 samples, 0.04%)</title><rect x="443.1" y="2021" width="0.5" height="15.0" fill="rgb(245,141,9)" rx="2" ry="2" />
<text x="446.09" y="2031.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (27,172,777 samples, 0.04%)</title><rect x="782.9" y="1941" width="0.5" height="15.0" fill="rgb(245,136,3)" rx="2" ry="2" />
<text x="785.89" y="1951.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (458,080,875 samples, 0.66%)</title><rect x="286.9" y="1861" width="7.8" height="15.0" fill="rgb(246,21,24)" rx="2" ry="2" />
<text x="289.89" y="1871.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (627,343,593 samples, 0.90%)</title><rect x="759.8" y="1957" width="10.6" height="15.0" fill="rgb(234,207,40)" rx="2" ry="2" />
<text x="762.77" y="1967.5" ></text>
</g>
<g >
<title>[libc-2.28.so] (214,793,558 samples, 0.31%)</title><rect x="394.6" y="2053" width="3.7" height="15.0" fill="rgb(222,204,22)" rx="2" ry="2" />
<text x="397.64" y="2063.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (204,054,649 samples, 0.29%)</title><rect x="214.7" y="1893" width="3.4" height="15.0" fill="rgb(232,172,24)" rx="2" ry="2" />
<text x="217.67" y="1903.5" ></text>
</g>
<g >
<title>resched_curr (26,419,604 samples, 0.04%)</title><rect x="777.0" y="1877" width="0.5" height="15.0" fill="rgb(237,137,30)" rx="2" ry="2" />
<text x="780.03" y="1887.5" ></text>
</g>
<g >
<title>__pthread_mutex_lock (138,713,171 samples, 0.20%)</title><rect x="819.1" y="1973" width="2.3" height="15.0" fill="rgb(220,103,32)" rx="2" ry="2" />
<text x="822.08" y="1983.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock (17,403,693 samples, 0.03%)</title><rect x="65.5" y="37" width="0.3" height="15.0" fill="rgb(252,178,32)" rx="2" ry="2" />
<text x="68.48" y="47.5" ></text>
</g>
<g >
<title>rb_next (54,308,435 samples, 0.08%)</title><rect x="154.4" y="1845" width="0.9" height="15.0" fill="rgb(240,118,15)" rx="2" ry="2" />
<text x="157.35" y="1855.5" ></text>
</g>
<g >
<title>Builtin:ArgumentsAdaptorTrampoline (82,679,130 samples, 0.12%)</title><rect x="167.3" y="1717" width="1.4" height="15.0" fill="rgb(242,5,14)" rx="2" ry="2" />
<text x="170.33" y="1727.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (115,199,344 samples, 0.17%)</title><rect x="783.8" y="1957" width="2.0" height="15.0" fill="rgb(229,96,25)" rx="2" ry="2" />
<text x="786.83" y="1967.5" ></text>
</g>
<g >
<title>__pthread_getspecific (60,953,162 samples, 0.09%)</title><rect x="233.6" y="2037" width="1.0" height="15.0" fill="rgb(221,194,4)" rx="2" ry="2" />
<text x="236.59" y="2047.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (44,927,374 samples, 0.06%)</title><rect x="221.5" y="1701" width="0.8" height="15.0" fill="rgb(213,113,43)" rx="2" ry="2" />
<text x="224.50" y="1711.5" ></text>
</g>
<g >
<title>pick_next_task_fair (412,671,475 samples, 0.59%)</title><rect x="486.0" y="1909" width="7.0" height="15.0" fill="rgb(229,189,23)" rx="2" ry="2" />
<text x="489.03" y="1919.5" ></text>
</g>
<g >
<title>irq_exit_rcu (25,875,044 samples, 0.04%)</title><rect x="792.5" y="1877" width="0.4" height="15.0" fill="rgb(250,57,31)" rx="2" ry="2" />
<text x="795.47" y="1887.5" ></text>
</g>
<g >
<title>schedule (177,498,261 samples, 0.26%)</title><rect x="88.1" y="1957" width="3.0" height="15.0" fill="rgb(224,105,34)" rx="2" ry="2" />
<text x="91.09" y="1967.5" ></text>
</g>
<g >
<title>InterpretedFunction: :1 (358,952,232 samples, 0.52%)</title><rect x="168.7" y="1733" width="6.1" height="15.0" fill="rgb(221,222,51)" rx="2" ry="2" />
<text x="171.73" y="1743.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (15,776,520 samples, 0.02%)</title><rect x="753.4" y="1813" width="0.3" height="15.0" fill="rgb(251,30,47)" rx="2" ry="2" />
<text x="756.38" y="1823.5" ></text>
</g>
<g >
<title>new_sync_read (150,339,559 samples, 0.22%)</title><rect x="717.3" y="1957" width="2.6" height="15.0" fill="rgb(206,33,21)" rx="2" ry="2" />
<text x="720.33" y="1967.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (15,083,820 samples, 0.02%)</title><rect x="474.4" y="2037" width="0.3" height="15.0" fill="rgb(252,164,24)" rx="2" ry="2" />
<text x="477.44" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,398,723 samples, 0.04%)</title><rect x="252.0" y="2037" width="0.5" height="15.0" fill="rgb(221,102,38)" rx="2" ry="2" />
<text x="255.00" y="2047.5" ></text>
</g>
<g >
<title>new_sync_read (872,698,681 samples, 1.26%)</title><rect x="597.1" y="1957" width="14.9" height="15.0" fill="rgb(219,194,4)" rx="2" ry="2" />
<text x="600.13" y="1967.5" ></text>
</g>
<g >
<title>do_softirq (44,444,988 samples, 0.06%)</title><rect x="227.8" y="1765" width="0.7" height="15.0" fill="rgb(208,1,2)" rx="2" ry="2" />
<text x="230.76" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="981" width="13.1" height="15.0" fill="rgb(226,87,32)" rx="2" ry="2" />
<text x="60.02" y="991.5" ></text>
</g>
<g >
<title>__clock_gettime (46,278,179 samples, 0.07%)</title><rect x="1111.2" y="2053" width="0.8" height="15.0" fill="rgb(244,140,13)" rx="2" ry="2" />
<text x="1114.20" y="2063.5" ></text>
</g>
<g >
<title>newidle_balance (87,404,619 samples, 0.13%)</title><rect x="753.7" y="1909" width="1.4" height="15.0" fill="rgb(208,187,48)" rx="2" ry="2" />
<text x="756.65" y="1919.5" ></text>
</g>
<g >
<title>tcp_write_xmit (314,096,761 samples, 0.45%)</title><rect x="613.3" y="1861" width="5.4" height="15.0" fill="rgb(225,54,41)" rx="2" ry="2" />
<text x="616.34" y="1871.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (83,629,133 samples, 0.12%)</title><rect x="454.3" y="2037" width="1.5" height="15.0" fill="rgb(251,125,28)" rx="2" ry="2" />
<text x="457.35" y="2047.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (26,090,036 samples, 0.04%)</title><rect x="81.3" y="2053" width="0.4" height="15.0" fill="rgb(232,194,36)" rx="2" ry="2" />
<text x="84.27" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (768,907,694 samples, 1.11%)</title><rect x="57.0" y="1461" width="13.1" height="15.0" fill="rgb(212,129,51)" rx="2" ry="2" />
<text x="60.02" y="1471.5" ></text>
</g>
<g >
<title>reweight_entity (18,143,845 samples, 0.03%)</title><rect x="787.6" y="1893" width="0.3" height="15.0" fill="rgb(207,8,39)" rx="2" ry="2" />
<text x="790.57" y="1903.5" ></text>
</g>
<g >
<title>sock_write_iter (185,711,277 samples, 0.27%)</title><rect x="226.4" y="1941" width="3.1" height="15.0" fill="rgb(249,48,43)" rx="2" ry="2" />
<text x="229.35" y="1951.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (13,570,464 samples, 0.02%)</title><rect x="493.6" y="1845" width="0.3" height="15.0" fill="rgb(208,2,38)" rx="2" ry="2" />
<text x="496.62" y="1855.5" ></text>
</g>
<g >
<title>rd_kafka_broker_serve (41,250,671 samples, 0.06%)</title><rect x="240.5" y="2037" width="0.7" height="15.0" fill="rgb(207,37,36)" rx="2" ry="2" />
<text x="243.46" y="2047.5" ></text>
</g>
<g >
<title>event_sched_in (89,705,111 samples, 0.13%)</title><rect x="467.6" y="1845" width="1.5" height="15.0" fill="rgb(242,60,8)" rx="2" ry="2" />
<text x="470.59" y="1855.5" ></text>
</g>
<g >
<title>LazyCompile:* /srv/service/node_modules/node-rdkafka/lib/kafka-consumer.js:446 (471,602,466 samples, 0.68%)</title><rect x="166.8" y="1877" width="8.0" height="15.0" fill="rgb(225,37,33)" rx="2" ry="2" />
<text x="169.82" y="1887.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,158,377 samples, 0.01%)</title><rect x="295.2" y="1877" width="0.1" height="15.0" fill="rgb(248,145,29)" rx="2" ry="2" />
<text x="298.17" y="1887.5" ></text>
</g>
<g >
<title>perf_event_groups_first.isra.0 (70,448,930 samples, 0.10%)</title><rect x="803.7" y="1845" width="1.2" height="15.0" fill="rgb(238,190,51)" rx="2" ry="2" />
<text x="806.71" y="1855.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (583,116,621 samples, 0.84%)</title><rect x="523.9" y="1813" width="9.9" height="15.0" fill="rgb(211,117,24)" rx="2" ry="2" />
<text x="526.86" y="1823.5" ></text>
</g>
<g >
<title>ipt_do_table (108,201,970 samples, 0.16%)</title><rect x="605.4" y="1685" width="1.9" height="15.0" fill="rgb(219,3,15)" rx="2" ry="2" />
<text x="608.43" y="1695.5" ></text>
</g>
<g >
<title>mtx_unlock (25,056,336 samples, 0.04%)</title><rect x="854.0" y="1989" width="0.5" height="15.0" fill="rgb(254,179,12)" rx="2" ry="2" />
<text x="857.04" y="1999.5" ></text>
</g>
<g >
<title>timerqueue_del (6,398,877 samples, 0.01%)</title><rect x="656.8" y="1925" width="0.1" height="15.0" fill="rgb(206,79,51)" rx="2" ry="2" />
<text x="659.76" y="1935.5" ></text>
</g>
<g >
<title>__pthread_disable_asynccancel (90,742,666 samples, 0.13%)</title><rect x="229.5" y="2037" width="1.6" height="15.0" fill="rgb(221,209,10)" rx="2" ry="2" />
<text x="232.51" y="2047.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (58,141,161 samples, 0.08%)</title><rect x="1122.4" y="1861" width="1.0" height="15.0" fill="rgb(208,140,3)" rx="2" ry="2" />
<text x="1125.41" y="1871.5" ></text>
</g>
<g >
<title>rd_kafka_broker_thread_main (32,135,425 samples, 0.05%)</title><rect x="535.0" y="2037" width="0.5" height="15.0" fill="rgb(216,173,0)" rx="2" ry="2" />
<text x="538.00" y="2047.5" ></text>
</g>
<g >
<title>perf_swevent_add (85,098,122 samples, 0.12%)</title><rect x="467.7" y="1829" width="1.4" height="15.0" fill="rgb(219,181,54)" rx="2" ry="2" />
<text x="470.66" y="1839.5" ></text>
</g>
<g >
<title>finish_task_switch (1,586,222,058 samples, 2.28%)</title><rect x="330.0" y="1909" width="27.0" height="15.0" fill="rgb(229,131,46)" rx="2" ry="2" />
<text x="333.04" y="1919.5" >f..</text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (254,271,785 samples, 0.37%)</title><rect x="296.2" y="1861" width="4.3" height="15.0" fill="rgb(217,120,20)" rx="2" ry="2" />
<text x="299.17" y="1871.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (31,039,577 samples, 0.04%)</title><rect x="595.5" y="2021" width="0.5" height="15.0" fill="rgb(214,11,14)" rx="2" ry="2" />
<text x="598.50" y="2031.5" ></text>
</g>
</g>
</svg>

File Metadata

Mime Type
image/svg+xml
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
13537558
Default Alt Text
out.stacks.2580321.svg (444 KB)

Event Timeline