Skip to content

Instantly share code, notes, and snippets.

@bplotnick
Created July 31, 2017 23:04
Show Gist options
  • Save bplotnick/6528a812f5902c4b32b6d85a640dfc9c to your computer and use it in GitHub Desktop.
Save bplotnick/6528a812f5902c4b32b6d85a640dfc9c to your computer and use it in GitHub Desktop.
envoy
Display the source blob
Display the rendered blob
Raw
<?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="2114" onload="init(evt)" viewBox="0 0 1200 2114" 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. -->
<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">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 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;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
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);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
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;
if (a < b || a > b)
return a - b;
return matches[b] - matches[a];
});
// 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.
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="2114.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="2097" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="2097" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (5 samples, 0.11%)</title><rect x="821.6" y="1761" width="1.4" height="15.0" fill="rgb(212,116,36)" rx="2" ry="2" />
<text text-anchor="" x="824.63" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepare_exit_to_usermode (1 samples, 0.02%)</title><rect x="1172.3" y="1617" width="0.2" height="15.0" fill="rgb(249,177,16)" rx="2" ry="2" />
<text text-anchor="" x="1175.27" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::mutex::unlock (3 samples, 0.07%)</title><rect x="24.3" y="1905" width="0.8" height="15.0" fill="rgb(222,21,46)" rx="2" ry="2" />
<text text-anchor="" x="27.29" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (10 samples, 0.22%)</title><rect x="175.9" y="1921" width="2.7" height="15.0" fill="rgb(210,116,34)" rx="2" ry="2" />
<text text-anchor="" x="178.93" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_active_p (1 samples, 0.02%)</title><rect x="1107.2" y="1649" width="0.2" height="15.0" fill="rgb(206,138,51)" rx="2" ry="2" />
<text text-anchor="" x="1110.17" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Event::DispatcherImpl::DispatcherImpl (1 samples, 0.02%)</title><rect x="1186.0" y="1809" width="0.3" height="15.0" fill="rgb(225,111,19)" rx="2" ry="2" />
<text text-anchor="" x="1189.03" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (15 samples, 0.34%)</title><rect x="15.6" y="1985" width="3.9" height="15.0" fill="rgb(222,204,22)" rx="2" ry="2" />
<text text-anchor="" x="18.56" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcmp@plt (1 samples, 0.02%)</title><rect x="1035.2" y="1649" width="0.3" height="15.0" fill="rgb(235,44,39)" rx="2" ry="2" />
<text text-anchor="" x="1038.19" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (5 samples, 0.11%)</title><rect x="830.1" y="1729" width="1.3" height="15.0" fill="rgb(241,209,47)" rx="2" ry="2" />
<text text-anchor="" x="833.10" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::~_Function_base (1 samples, 0.02%)</title><rect x="870.6" y="1713" width="0.3" height="15.0" fill="rgb(215,19,21)" rx="2" ry="2" />
<text text-anchor="" x="873.59" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_poll (1 samples, 0.02%)</title><rect x="190.0" y="49" width="0.2" height="15.0" fill="rgb(254,93,53)" rx="2" ry="2" />
<text text-anchor="" x="192.95" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::construct&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (2 samples, 0.04%)</title><rect x="1051.9" y="1697" width="0.5" height="15.0" fill="rgb(210,229,36)" rx="2" ry="2" />
<text text-anchor="" x="1054.86" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::function&lt;void (1 samples, 0.02%)</title><rect x="619.5" y="1745" width="0.2" height="15.0" fill="rgb(223,171,14)" rx="2" ry="2" />
<text text-anchor="" x="622.45" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt;::shared_ptr&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, void&gt; (1 samples, 0.02%)</title><rect x="850.2" y="1745" width="0.3" height="15.0" fill="rgb(218,48,28)" rx="2" ry="2" />
<text text-anchor="" x="853.21" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="19.8" y="1937" width="0.3" height="15.0" fill="rgb(247,132,54)" rx="2" ry="2" />
<text text-anchor="" x="22.79" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="529" width="6.6" height="15.0" fill="rgb(243,20,21)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__atomic_add_dispatch (34 samples, 0.76%)</title><rect x="1002.4" y="1713" width="9.0" height="15.0" fill="rgb(210,202,8)" rx="2" ry="2" />
<text text-anchor="" x="1005.37" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (1 samples, 0.02%)</title><rect x="844.4" y="1601" width="0.3" height="15.0" fill="rgb(233,198,39)" rx="2" ry="2" />
<text text-anchor="" x="847.39" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_M_empty (2 samples, 0.04%)</title><rect x="216.9" y="1857" width="0.6" height="15.0" fill="rgb(237,93,28)" rx="2" ry="2" />
<text text-anchor="" x="219.94" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="1172.0" y="1617" width="0.3" height="15.0" fill="rgb(245,223,34)" rx="2" ry="2" />
<text text-anchor="" x="1175.00" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (35 samples, 0.78%)</title><rect x="25.3" y="2017" width="9.3" height="15.0" fill="rgb(242,148,50)" rx="2" ry="2" />
<text text-anchor="" x="28.35" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::reference_wrapper&lt;Envoy::Event::Dispatcher&gt;::get (2 samples, 0.04%)</title><rect x="888.6" y="1793" width="0.5" height="15.0" fill="rgb(229,48,31)" rx="2" ry="2" />
<text text-anchor="" x="891.58" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access (1 samples, 0.02%)</title><rect x="648.3" y="1585" width="0.3" height="15.0" fill="rgb(234,213,43)" rx="2" ry="2" />
<text text-anchor="" x="651.30" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (94 samples, 2.11%)</title><rect x="291.0" y="1745" width="24.9" height="15.0" fill="rgb(234,61,13)" rx="2" ry="2" />
<text text-anchor="" x="294.04" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="1151.6" y="1953" width="0.3" height="15.0" fill="rgb(245,78,50)" rx="2" ry="2" />
<text text-anchor="" x="1154.63" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::DateFormatter::now[abi:cxx11] (1 samples, 0.02%)</title><rect x="218.3" y="1825" width="0.2" height="15.0" fill="rgb(254,88,32)" rx="2" ry="2" />
<text text-anchor="" x="221.27" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (3 samples, 0.07%)</title><rect x="554.9" y="1505" width="0.8" height="15.0" fill="rgb(239,125,51)" rx="2" ry="2" />
<text text-anchor="" x="557.88" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xen_clocksource_get_cycles (1 samples, 0.02%)</title><rect x="22.2" y="1825" width="0.2" height="15.0" fill="rgb(242,138,46)" rx="2" ry="2" />
<text text-anchor="" x="25.17" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (3 samples, 0.07%)</title><rect x="191.3" y="49" width="0.8" height="15.0" fill="rgb(215,140,8)" rx="2" ry="2" />
<text text-anchor="" x="194.27" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::allocate (25 samples, 0.56%)</title><rect x="988.9" y="1729" width="6.6" height="15.0" fill="rgb(235,187,5)" rx="2" ry="2" />
<text text-anchor="" x="991.88" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access&lt;Envoy::ThreadLocal::InstanceImpl::set (1 samples, 0.02%)</title><rect x="856.6" y="1761" width="0.2" height="15.0" fill="rgb(232,3,1)" rx="2" ry="2" />
<text text-anchor="" x="859.56" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (193 samples, 4.33%)</title><rect x="746.2" y="1713" width="51.1" height="15.0" fill="rgb(233,5,15)" rx="2" ry="2" />
<text text-anchor="" x="749.21" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.02%)</title><rect x="24.3" y="1873" width="0.3" height="15.0" fill="rgb(229,186,3)" rx="2" ry="2" />
<text text-anchor="" x="27.29" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (2 samples, 0.04%)</title><rect x="918.5" y="1809" width="0.5" height="15.0" fill="rgb(249,175,34)" rx="2" ry="2" />
<text text-anchor="" x="921.49" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (2 samples, 0.04%)</title><rect x="597.5" y="1713" width="0.5" height="15.0" fill="rgb(248,179,17)" rx="2" ry="2" />
<text text-anchor="" x="600.49" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access&lt;Envoy::Event::DispatcherImpl::DispatcherImpl (1 samples, 0.02%)</title><rect x="1186.0" y="1793" width="0.3" height="15.0" fill="rgb(241,107,23)" rx="2" ry="2" />
<text text-anchor="" x="1189.03" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="191.0" y="145" width="0.3" height="15.0" fill="rgb(252,42,37)" rx="2" ry="2" />
<text text-anchor="" x="194.01" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__addressof&lt;std::mutex&gt; (4 samples, 0.09%)</title><rect x="614.4" y="1777" width="1.1" height="15.0" fill="rgb(225,208,30)" rx="2" ry="2" />
<text text-anchor="" x="617.42" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (177 samples, 3.97%)</title><rect x="324.6" y="1681" width="46.9" height="15.0" fill="rgb(212,133,7)" rx="2" ry="2" />
<text text-anchor="" x="327.65" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__vf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="194.7" y="993" width="0.3" height="15.0" fill="rgb(239,217,4)" rx="2" ry="2" />
<text text-anchor="" x="197.71" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Identity::operator (1 samples, 0.02%)</title><rect x="1069.3" y="1745" width="0.3" height="15.0" fill="rgb(229,108,50)" rx="2" ry="2" />
<text text-anchor="" x="1072.33" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (48 samples, 1.08%)</title><rect x="555.9" y="1505" width="12.7" height="15.0" fill="rgb(248,171,18)" rx="2" ry="2" />
<text text-anchor="" x="558.94" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="924.3" y="1745" width="0.3" height="15.0" fill="rgb(212,116,36)" rx="2" ry="2" />
<text text-anchor="" x="927.31" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (54 samples, 1.21%)</title><rect x="712.1" y="1681" width="14.3" height="15.0" fill="rgb(225,161,8)" rx="2" ry="2" />
<text text-anchor="" x="715.07" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (2 samples, 0.04%)</title><rect x="1111.9" y="1761" width="0.6" height="15.0" fill="rgb(236,106,31)" rx="2" ry="2" />
<text text-anchor="" x="1114.93" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add_dispatch (1 samples, 0.02%)</title><rect x="735.1" y="1729" width="0.3" height="15.0" fill="rgb(241,10,2)" rx="2" ry="2" />
<text text-anchor="" x="738.10" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::ThreadCache::ListTooLong (2 samples, 0.04%)</title><rect x="1168.3" y="1697" width="0.5" height="15.0" fill="rgb(247,51,51)" rx="2" ry="2" />
<text text-anchor="" x="1171.30" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (21 samples, 0.47%)</title><rect x="1118.8" y="1969" width="5.6" height="15.0" fill="rgb(205,224,6)" rx="2" ry="2" />
<text text-anchor="" x="1121.81" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (6 samples, 0.13%)</title><rect x="1154.0" y="1809" width="1.6" height="15.0" fill="rgb(248,52,6)" rx="2" ry="2" />
<text text-anchor="" x="1157.01" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::deallocate (13 samples, 0.29%)</title><rect x="1078.9" y="1713" width="3.4" height="15.0" fill="rgb(240,83,51)" rx="2" ry="2" />
<text text-anchor="" x="1081.85" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Node_iterator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true, true&gt;::_Node_iterator (2 samples, 0.04%)</title><rect x="1072.2" y="1761" width="0.6" height="15.0" fill="rgb(217,111,51)" rx="2" ry="2" />
<text text-anchor="" x="1075.24" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (10 samples, 0.22%)</title><rect x="552.0" y="1489" width="2.6" height="15.0" fill="rgb(209,86,53)" rx="2" ry="2" />
<text text-anchor="" x="554.97" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="1151.6" y="1873" width="0.3" height="15.0" fill="rgb(227,212,25)" rx="2" ry="2" />
<text text-anchor="" x="1154.63" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (3 samples, 0.07%)</title><rect x="843.3" y="1601" width="0.8" height="15.0" fill="rgb(235,92,46)" rx="2" ry="2" />
<text text-anchor="" x="846.33" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unordered_set&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;::insert (212 samples, 4.75%)</title><rect x="1016.9" y="1793" width="56.1" height="15.0" fill="rgb(232,106,33)" rx="2" ry="2" />
<text text-anchor="" x="1019.93" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1281" width="7.2" height="15.0" fill="rgb(231,123,32)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (12 samples, 0.27%)</title><rect x="196.0" y="1905" width="3.2" height="15.0" fill="rgb(254,60,29)" rx="2" ry="2" />
<text text-anchor="" x="199.04" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 0.58%)</title><rect x="187.8" y="945" width="6.9" height="15.0" fill="rgb(216,3,23)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.02%)</title><rect x="35.7" y="1921" width="0.2" height="15.0" fill="rgb(244,223,24)" rx="2" ry="2" />
<text text-anchor="" x="38.67" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (191 samples, 4.28%)</title><rect x="321.2" y="1745" width="50.6" height="15.0" fill="rgb(241,174,52)" rx="2" ry="2" />
<text text-anchor="" x="324.21" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_base::_Hash_node_base (1 samples, 0.02%)</title><rect x="1050.0" y="1681" width="0.3" height="15.0" fill="rgb(244,87,12)" rx="2" ry="2" />
<text text-anchor="" x="1053.01" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1713" width="7.2" height="15.0" fill="rgb(250,33,4)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1 samples, 0.02%)</title><rect x="482.4" y="1601" width="0.2" height="15.0" fill="rgb(241,88,27)" rx="2" ry="2" />
<text text-anchor="" x="485.37" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (1 samples, 0.02%)</title><rect x="19.8" y="1889" width="0.3" height="15.0" fill="rgb(248,191,24)" rx="2" ry="2" />
<text text-anchor="" x="22.79" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Insert_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_conjure_hashtable (1 samples, 0.02%)</title><rect x="1072.0" y="1761" width="0.2" height="15.0" fill="rgb(212,149,11)" rx="2" ry="2" />
<text text-anchor="" x="1074.97" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (4 samples, 0.09%)</title><rect x="1174.7" y="1633" width="1.0" height="15.0" fill="rgb(206,222,24)" rx="2" ry="2" />
<text text-anchor="" x="1177.65" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::mutex::unlock (1 samples, 0.02%)</title><rect x="1184.7" y="1761" width="0.3" height="15.0" fill="rgb(218,166,11)" rx="2" ry="2" />
<text text-anchor="" x="1187.71" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="1142.4" y="1969" width="0.2" height="15.0" fill="rgb(252,215,11)" rx="2" ry="2" />
<text text-anchor="" x="1145.37" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::clear (35 samples, 0.78%)</title><rect x="1073.0" y="1761" width="9.3" height="15.0" fill="rgb(239,204,21)" rx="2" ry="2" />
<text text-anchor="" x="1076.03" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.02%)</title><rect x="711.5" y="1681" width="0.3" height="15.0" fill="rgb(226,166,16)" rx="2" ry="2" />
<text text-anchor="" x="714.54" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="512.3" y="1537" width="0.2" height="15.0" fill="rgb(221,126,33)" rx="2" ry="2" />
<text text-anchor="" x="515.27" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_active_p (1 samples, 0.02%)</title><rect x="1011.1" y="1697" width="0.3" height="15.0" fill="rgb(250,163,42)" rx="2" ry="2" />
<text text-anchor="" x="1014.11" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (197 samples, 4.42%)</title><rect x="625.5" y="1697" width="52.2" height="15.0" fill="rgb(206,96,15)" rx="2" ry="2" />
<text text-anchor="" x="628.54" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (3 samples, 0.07%)</title><rect x="1108.8" y="1697" width="0.8" height="15.0" fill="rgb(242,141,24)" rx="2" ry="2" />
<text text-anchor="" x="1111.76" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access (2 samples, 0.04%)</title><rect x="674.8" y="1633" width="0.5" height="15.0" fill="rgb(244,62,24)" rx="2" ry="2" />
<text text-anchor="" x="677.76" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.02%)</title><rect x="551.2" y="1505" width="0.2" height="15.0" fill="rgb(254,131,43)" rx="2" ry="2" />
<text text-anchor="" x="554.18" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (2 samples, 0.04%)</title><rect x="216.1" y="1777" width="0.6" height="15.0" fill="rgb(238,106,2)" rx="2" ry="2" />
<text text-anchor="" x="219.15" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_h2 (1 samples, 0.02%)</title><rect x="1044.2" y="1681" width="0.3" height="15.0" fill="rgb(250,61,52)" rx="2" ry="2" />
<text text-anchor="" x="1047.19" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.02%)</title><rect x="315.7" y="1649" width="0.2" height="15.0" fill="rgb(253,170,34)" rx="2" ry="2" />
<text text-anchor="" x="318.65" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (28 samples, 0.63%)</title><rect x="187.6" y="1873" width="7.4" height="15.0" fill="rgb(228,105,3)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.02%)</title><rect x="475.0" y="1601" width="0.2" height="15.0" fill="rgb(207,173,36)" rx="2" ry="2" />
<text text-anchor="" x="477.96" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add (4 samples, 0.09%)</title><rect x="1176.5" y="1633" width="1.1" height="15.0" fill="rgb(249,129,36)" rx="2" ry="2" />
<text text-anchor="" x="1179.50" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="417" width="6.6" height="15.0" fill="rgb(207,85,34)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_insert&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;, std::__detail::_AllocNode&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt; &gt; (28 samples, 0.63%)</title><rect x="1092.6" y="1761" width="7.4" height="15.0" fill="rgb(217,62,6)" rx="2" ry="2" />
<text text-anchor="" x="1095.61" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.02%)</title><rect x="470.2" y="1601" width="0.3" height="15.0" fill="rgb(232,52,11)" rx="2" ry="2" />
<text text-anchor="" x="473.20" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="1142.4" y="1937" width="0.2" height="15.0" fill="rgb(238,116,40)" rx="2" ry="2" />
<text text-anchor="" x="1145.37" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (3 samples, 0.07%)</title><rect x="1124.4" y="2017" width="0.8" height="15.0" fill="rgb(239,58,20)" rx="2" ry="2" />
<text text-anchor="" x="1127.37" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::make_shared&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; (10 samples, 0.22%)</title><rect x="1179.2" y="1681" width="2.6" height="15.0" fill="rgb(221,221,26)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unordered_map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::shared_ptr&lt;Envoy::Stats::Counter&gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt; &gt;::begin (1 samples, 0.02%)</title><rect x="1016.7" y="1793" width="0.2" height="15.0" fill="rgb(246,130,1)" rx="2" ry="2" />
<text text-anchor="" x="1019.67" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__get_helper&lt;0ul, Envoy::Event::Timer*, std::default_delete&lt;Envoy::Event::Timer&gt; &gt; (1 samples, 0.02%)</title><rect x="727.4" y="1745" width="0.3" height="15.0" fill="rgb(211,14,32)" rx="2" ry="2" />
<text text-anchor="" x="730.42" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add (8 samples, 0.18%)</title><rect x="1105.1" y="1649" width="2.1" height="15.0" fill="rgb(215,29,22)" rx="2" ry="2" />
<text text-anchor="" x="1108.05" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__aligned_buffer&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::_M_ptr (1 samples, 0.02%)</title><rect x="997.6" y="1761" width="0.3" height="15.0" fill="rgb(209,176,47)" rx="2" ry="2" />
<text text-anchor="" x="1000.61" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_store_code (1 samples, 0.02%)</title><rect x="1069.1" y="1745" width="0.2" height="15.0" fill="rgb(217,229,21)" rx="2" ry="2" />
<text text-anchor="" x="1072.06" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (10 samples, 0.22%)</title><rect x="175.9" y="1905" width="2.7" height="15.0" fill="rgb(207,108,31)" rx="2" ry="2" />
<text text-anchor="" x="178.93" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::TimerImpl (76 samples, 1.70%)</title><rect x="1166.2" y="1857" width="20.1" height="15.0" fill="rgb(252,13,1)" rx="2" ry="2" />
<text text-anchor="" x="1169.18" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__aligned_buffer&lt;Envoy::Stats::ThreadLocalStoreImpl::ScopeImpl*&gt;::_M_addr (1 samples, 0.02%)</title><rect x="997.3" y="1745" width="0.3" height="15.0" fill="rgb(235,35,21)" rx="2" ry="2" />
<text text-anchor="" x="1000.35" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_swapgs (1 samples, 0.02%)</title><rect x="1152.7" y="2017" width="0.3" height="15.0" fill="rgb(233,33,4)" rx="2" ry="2" />
<text text-anchor="" x="1155.69" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::allocator (1 samples, 0.02%)</title><rect x="847.6" y="1665" width="0.2" height="15.0" fill="rgb(237,55,17)" rx="2" ry="2" />
<text text-anchor="" x="850.56" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (4 samples, 0.09%)</title><rect x="980.7" y="1761" width="1.0" height="15.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="983.68" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="24.0" y="1665" width="0.3" height="15.0" fill="rgb(234,176,9)" rx="2" ry="2" />
<text text-anchor="" x="27.03" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_active_p (1 samples, 0.02%)</title><rect x="1184.4" y="1729" width="0.3" height="15.0" fill="rgb(239,109,49)" rx="2" ry="2" />
<text text-anchor="" x="1187.44" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="371.5" y="1681" width="0.3" height="15.0" fill="rgb(249,122,17)" rx="2" ry="2" />
<text text-anchor="" x="374.49" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt; &gt;::construct&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (1 samples, 0.02%)</title><rect x="848.6" y="1665" width="0.3" height="15.0" fill="rgb(229,70,21)" rx="2" ry="2" />
<text text-anchor="" x="851.62" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::enableTimer (1,307 samples, 29.31%)</title><rect x="251.6" y="1777" width="345.9" height="15.0" fill="rgb(251,143,45)" rx="2" ry="2" />
<text text-anchor="" x="254.61" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Envoy::Event::TimerImpl::enableTimer</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1180.7" y="1585" width="0.3" height="15.0" fill="rgb(243,175,16)" rx="2" ry="2" />
<text text-anchor="" x="1183.74" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (2 samples, 0.04%)</title><rect x="846.0" y="1633" width="0.5" height="15.0" fill="rgb(216,59,42)" rx="2" ry="2" />
<text text-anchor="" x="848.98" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt;::~shared_ptr (3 samples, 0.07%)</title><rect x="890.4" y="1793" width="0.8" height="15.0" fill="rgb(241,26,5)" rx="2" ry="2" />
<text text-anchor="" x="893.44" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (2 samples, 0.04%)</title><rect x="481.8" y="1585" width="0.6" height="15.0" fill="rgb(230,122,21)" rx="2" ry="2" />
<text text-anchor="" x="484.84" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::~_Function_base (1 samples, 0.02%)</title><rect x="1168.0" y="1617" width="0.3" height="15.0" fill="rgb(245,45,27)" rx="2" ry="2" />
<text text-anchor="" x="1171.04" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.04%)</title><rect x="1111.9" y="1825" width="0.6" height="15.0" fill="rgb(234,122,8)" rx="2" ry="2" />
<text text-anchor="" x="1114.93" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="25.1" y="1841" width="0.2" height="15.0" fill="rgb(225,69,25)" rx="2" ry="2" />
<text text-anchor="" x="28.08" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.02%)</title><rect x="203.4" y="1921" width="0.3" height="15.0" fill="rgb(233,71,47)" rx="2" ry="2" />
<text text-anchor="" x="206.45" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="19.8" y="1905" width="0.3" height="15.0" fill="rgb(229,218,9)" rx="2" ry="2" />
<text text-anchor="" x="22.79" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.04%)</title><rect x="22.7" y="1825" width="0.5" height="15.0" fill="rgb(210,126,40)" rx="2" ry="2" />
<text text-anchor="" x="25.70" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::~_Function_base (79 samples, 1.77%)</title><rect x="867.4" y="1777" width="20.9" height="15.0" fill="rgb(244,40,21)" rx="2" ry="2" />
<text text-anchor="" x="870.41" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new (2 samples, 0.04%)</title><rect x="623.9" y="1713" width="0.6" height="15.0" fill="rgb(224,156,45)" rx="2" ry="2" />
<text text-anchor="" x="626.95" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Mod_range_hashing::operator (6 samples, 0.13%)</title><rect x="1018.8" y="1713" width="1.6" height="15.0" fill="rgb(229,181,35)" rx="2" ry="2" />
<text text-anchor="" x="1021.78" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::_List_base&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::_M_clear (20 samples, 0.45%)</title><rect x="1103.5" y="1777" width="5.3" height="15.0" fill="rgb(242,47,11)" rx="2" ry="2" />
<text text-anchor="" x="1106.46" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;::construct&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (1 samples, 0.02%)</title><rect x="1064.8" y="1729" width="0.3" height="15.0" fill="rgb(250,226,8)" rx="2" ry="2" />
<text text-anchor="" x="1067.83" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.02%)</title><rect x="470.2" y="1633" width="0.3" height="15.0" fill="rgb(240,197,7)" rx="2" ry="2" />
<text text-anchor="" x="473.20" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (239 samples, 5.36%)</title><rect x="112.7" y="1985" width="63.2" height="15.0" fill="rgb(252,155,44)" rx="2" ry="2" />
<text text-anchor="" x="115.68" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >entry_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1521" width="7.2" height="15.0" fill="rgb(241,84,45)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (28 samples, 0.63%)</title><rect x="187.6" y="1857" width="7.4" height="15.0" fill="rgb(221,129,34)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.02%)</title><rect x="1157.5" y="1809" width="0.2" height="15.0" fill="rgb(251,146,45)" rx="2" ry="2" />
<text text-anchor="" x="1160.45" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.02%)</title><rect x="188.4" y="97" width="0.2" height="15.0" fill="rgb(211,146,12)" rx="2" ry="2" />
<text text-anchor="" x="191.36" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.02%)</title><rect x="929.1" y="1777" width="0.2" height="15.0" fill="rgb(252,83,24)" rx="2" ry="2" />
<text text-anchor="" x="932.07" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::construct&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (1 samples, 0.02%)</title><rect x="1180.2" y="1569" width="0.3" height="15.0" fill="rgb(206,147,38)" rx="2" ry="2" />
<text text-anchor="" x="1183.21" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (1 samples, 0.02%)</title><rect x="1172.3" y="1601" width="0.2" height="15.0" fill="rgb(237,219,49)" rx="2" ry="2" />
<text text-anchor="" x="1175.27" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::function&lt;void (1 samples, 0.02%)</title><rect x="619.7" y="1745" width="0.3" height="15.0" fill="rgb(247,46,19)" rx="2" ry="2" />
<text text-anchor="" x="622.72" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1151.6" y="2017" width="0.3" height="15.0" fill="rgb(230,167,54)" rx="2" ry="2" />
<text text-anchor="" x="1154.63" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::Stats::Counter, (1 samples, 0.02%)</title><rect x="1011.4" y="1777" width="0.2" height="15.0" fill="rgb(220,18,34)" rx="2" ry="2" />
<text text-anchor="" x="1014.37" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (215 samples, 4.82%)</title><rect x="382.9" y="1713" width="56.9" height="15.0" fill="rgb(220,32,42)" rx="2" ry="2" />
<text text-anchor="" x="385.87" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >entry_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.02%)</title><rect x="321.7" y="1665" width="0.3" height="15.0" fill="rgb(208,206,10)" rx="2" ry="2" />
<text text-anchor="" x="324.74" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.02%)</title><rect x="203.4" y="1905" width="0.3" height="15.0" fill="rgb(253,12,7)" rx="2" ry="2" />
<text text-anchor="" x="206.45" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (2 samples, 0.04%)</title><rect x="439.2" y="1617" width="0.6" height="15.0" fill="rgb(234,110,52)" rx="2" ry="2" />
<text text-anchor="" x="442.24" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_bucket_index (11 samples, 0.25%)</title><rect x="1043.9" y="1697" width="2.9" height="15.0" fill="rgb(246,87,24)" rx="2" ry="2" />
<text text-anchor="" x="1046.92" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add_dispatch (1 samples, 0.02%)</title><rect x="1182.6" y="1665" width="0.3" height="15.0" fill="rgb(226,225,20)" rx="2" ry="2" />
<text text-anchor="" x="1185.59" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (4 samples, 0.09%)</title><rect x="23.2" y="1809" width="1.1" height="15.0" fill="rgb(209,109,29)" rx="2" ry="2" />
<text text-anchor="" x="26.23" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Server::InstanceImpl::initialize (612 samples, 13.73%)</title><rect x="950.0" y="1841" width="161.9" height="15.0" fill="rgb(220,14,35)" rx="2" ry="2" />
<text text-anchor="" x="952.98" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Envoy::Server::Insta..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="739.1" y="1649" width="0.2" height="15.0" fill="rgb(237,1,41)" rx="2" ry="2" />
<text text-anchor="" x="742.06" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="194.4" y="817" width="0.3" height="15.0" fill="rgb(234,161,25)" rx="2" ry="2" />
<text text-anchor="" x="197.45" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap&lt;std::_Any_data&gt; (2 samples, 0.04%)</title><rect x="865.8" y="1713" width="0.6" height="15.0" fill="rgb(210,85,44)" rx="2" ry="2" />
<text text-anchor="" x="868.82" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.02%)</title><rect x="1157.5" y="1841" width="0.2" height="15.0" fill="rgb(211,41,23)" rx="2" ry="2" />
<text text-anchor="" x="1160.45" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="25.1" y="1953" width="0.2" height="15.0" fill="rgb(232,196,20)" rx="2" ry="2" />
<text text-anchor="" x="28.08" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (2 samples, 0.04%)</title><rect x="175.4" y="1905" width="0.5" height="15.0" fill="rgb(232,52,11)" rx="2" ry="2" />
<text text-anchor="" x="178.40" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.02%)</title><rect x="1183.4" y="1745" width="0.2" height="15.0" fill="rgb(241,12,23)" rx="2" ry="2" />
<text text-anchor="" x="1186.38" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="1142.4" y="1841" width="0.2" height="15.0" fill="rgb(220,53,7)" rx="2" ry="2" />
<text text-anchor="" x="1145.37" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::unlock (1 samples, 0.02%)</title><rect x="1185.0" y="1761" width="0.2" height="15.0" fill="rgb(237,205,17)" rx="2" ry="2" />
<text text-anchor="" x="1187.97" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.04%)</title><rect x="190.0" y="129" width="0.5" height="15.0" fill="rgb(238,172,17)" rx="2" ry="2" />
<text text-anchor="" x="192.95" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (4 samples, 0.09%)</title><rect x="1178.1" y="1649" width="1.1" height="15.0" fill="rgb(225,109,50)" rx="2" ry="2" />
<text text-anchor="" x="1181.09" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="1152.4" y="1889" width="0.3" height="15.0" fill="rgb(245,100,43)" rx="2" ry="2" />
<text text-anchor="" x="1155.42" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (114 samples, 2.56%)</title><rect x="440.3" y="1681" width="30.2" height="15.0" fill="rgb(219,184,9)" rx="2" ry="2" />
<text text-anchor="" x="443.29" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="203.7" y="1937" width="0.3" height="15.0" fill="rgb(219,178,9)" rx="2" ry="2" />
<text text-anchor="" x="206.71" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (14 samples, 0.31%)</title><rect x="501.4" y="1537" width="3.7" height="15.0" fill="rgb(226,67,19)" rx="2" ry="2" />
<text text-anchor="" x="504.42" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.02%)</title><rect x="1151.9" y="1777" width="0.3" height="15.0" fill="rgb(216,205,24)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="1157.5" y="1825" width="0.2" height="15.0" fill="rgb(254,72,5)" rx="2" ry="2" />
<text text-anchor="" x="1160.45" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (1 samples, 0.02%)</title><rect x="924.6" y="1745" width="0.2" height="15.0" fill="rgb(216,176,7)" rx="2" ry="2" />
<text text-anchor="" x="927.57" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="739.9" y="1697" width="0.2" height="15.0" fill="rgb(234,5,32)" rx="2" ry="2" />
<text text-anchor="" x="742.86" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (2 samples, 0.04%)</title><rect x="14.2" y="2033" width="0.6" height="15.0" fill="rgb(207,17,45)" rx="2" ry="2" />
<text text-anchor="" x="17.23" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_extract (1 samples, 0.02%)</title><rect x="1071.4" y="1761" width="0.3" height="15.0" fill="rgb(224,93,32)" rx="2" ry="2" />
<text text-anchor="" x="1074.44" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__atomic_add (5 samples, 0.11%)</title><rect x="1090.5" y="1697" width="1.3" height="15.0" fill="rgb(244,85,46)" rx="2" ry="2" />
<text text-anchor="" x="1093.50" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add (4 samples, 0.09%)</title><rect x="1013.8" y="1697" width="1.0" height="15.0" fill="rgb(249,191,6)" rx="2" ry="2" />
<text text-anchor="" x="1016.75" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::~unique_lock (17 samples, 0.38%)</title><rect x="20.6" y="1937" width="4.5" height="15.0" fill="rgb(232,46,37)" rx="2" ry="2" />
<text text-anchor="" x="23.59" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="1124.9" y="1905" width="0.3" height="15.0" fill="rgb(253,105,6)" rx="2" ry="2" />
<text text-anchor="" x="1127.90" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1265" width="7.2" height="15.0" fill="rgb(238,35,15)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_handler&lt;void (1 samples, 0.02%)</title><rect x="212.2" y="1857" width="0.2" height="15.0" fill="rgb(234,76,44)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (26 samples, 0.58%)</title><rect x="505.4" y="1521" width="6.9" height="15.0" fill="rgb(214,203,22)" rx="2" ry="2" />
<text text-anchor="" x="508.39" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;::_List_iterator (1 samples, 0.02%)</title><rect x="984.9" y="1777" width="0.3" height="15.0" fill="rgb(217,192,27)" rx="2" ry="2" />
<text text-anchor="" x="987.91" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt;::~shared_ptr (2 samples, 0.04%)</title><rect x="1182.3" y="1729" width="0.6" height="15.0" fill="rgb(212,28,44)" rx="2" ry="2" />
<text text-anchor="" x="1185.33" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (3 samples, 0.07%)</title><rect x="742.8" y="1761" width="0.8" height="15.0" fill="rgb(237,123,27)" rx="2" ry="2" />
<text text-anchor="" x="745.77" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (11 samples, 0.25%)</title><rect x="551.7" y="1537" width="2.9" height="15.0" fill="rgb(247,217,12)" rx="2" ry="2" />
<text text-anchor="" x="554.70" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (36 samples, 0.81%)</title><rect x="856.8" y="1761" width="9.6" height="15.0" fill="rgb(251,95,37)" rx="2" ry="2" />
<text text-anchor="" x="859.83" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.09%)</title><rect x="1162.2" y="1777" width="1.1" height="15.0" fill="rgb(231,201,32)" rx="2" ry="2" />
<text text-anchor="" x="1165.21" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (2 samples, 0.04%)</title><rect x="1118.8" y="1937" width="0.5" height="15.0" fill="rgb(232,89,35)" rx="2" ry="2" />
<text text-anchor="" x="1121.81" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__aligned_buffer&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::_M_ptr (1 samples, 0.02%)</title><rect x="1076.2" y="1713" width="0.3" height="15.0" fill="rgb(249,227,33)" rx="2" ry="2" />
<text text-anchor="" x="1079.21" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vmacache_find (1 samples, 0.02%)</title><rect x="918.8" y="1761" width="0.2" height="15.0" fill="rgb(239,125,3)" rx="2" ry="2" />
<text text-anchor="" x="921.75" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Node_const_iterator&lt;Envoy::Stats::ThreadLocalStoreImpl::ScopeImpl*, true, false&gt;::operator* (1 samples, 0.02%)</title><rect x="997.3" y="1793" width="0.3" height="15.0" fill="rgb(205,197,3)" rx="2" ry="2" />
<text text-anchor="" x="1000.35" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::unique_lock (2 samples, 0.04%)</title><rect x="1185.5" y="1793" width="0.5" height="15.0" fill="rgb(216,157,39)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (15 samples, 0.34%)</title><rect x="178.6" y="1969" width="3.9" height="15.0" fill="rgb(245,222,13)" rx="2" ry="2" />
<text text-anchor="" x="181.57" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="1153.5" y="1841" width="0.2" height="15.0" fill="rgb(218,131,9)" rx="2" ry="2" />
<text text-anchor="" x="1156.48" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::function&lt;void (509 samples, 11.42%)</title><rect x="440.0" y="1729" width="134.7" height="15.0" fill="rgb(247,187,10)" rx="2" ry="2" />
<text text-anchor="" x="443.03" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__gnu_cxx::new_al..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (5 samples, 0.11%)</title><rect x="884.6" y="1649" width="1.3" height="15.0" fill="rgb(242,32,31)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strlen (5 samples, 0.11%)</title><rect x="192.9" y="33" width="1.3" height="15.0" fill="rgb(252,37,7)" rx="2" ry="2" />
<text text-anchor="" x="195.86" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.04%)</title><rect x="21.9" y="1857" width="0.5" height="15.0" fill="rgb(244,185,30)" rx="2" ry="2" />
<text text-anchor="" x="24.91" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::make_shared&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; (43 samples, 0.96%)</title><rect x="838.0" y="1745" width="11.4" height="15.0" fill="rgb(252,214,37)" rx="2" ry="2" />
<text text-anchor="" x="841.04" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.02%)</title><rect x="1172.0" y="1633" width="0.3" height="15.0" fill="rgb(242,206,50)" rx="2" ry="2" />
<text text-anchor="" x="1175.00" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rmap_walk (1 samples, 0.02%)</title><rect x="1172.0" y="1537" width="0.3" height="15.0" fill="rgb(218,5,1)" rx="2" ry="2" />
<text text-anchor="" x="1175.00" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (6 samples, 0.13%)</title><rect x="1154.0" y="1793" width="1.6" height="15.0" fill="rgb(210,132,17)" rx="2" ry="2" />
<text text-anchor="" x="1157.01" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (49 samples, 1.10%)</title><rect x="823.7" y="1761" width="13.0" height="15.0" fill="rgb(217,27,25)" rx="2" ry="2" />
<text text-anchor="" x="826.75" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::setThreadLocal (1 samples, 0.02%)</title><rect x="894.1" y="1809" width="0.3" height="15.0" fill="rgb(247,118,45)" rx="2" ry="2" />
<text text-anchor="" x="897.14" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_swapgs (1 samples, 0.02%)</title><rect x="440.0" y="1697" width="0.3" height="15.0" fill="rgb(232,206,29)" rx="2" ry="2" />
<text text-anchor="" x="443.03" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_active_p (2 samples, 0.04%)</title><rect x="1014.8" y="1713" width="0.5" height="15.0" fill="rgb(217,56,51)" rx="2" ry="2" />
<text text-anchor="" x="1017.81" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (12 samples, 0.27%)</title><rect x="196.0" y="1953" width="3.2" height="15.0" fill="rgb(228,153,33)" rx="2" ry="2" />
<text text-anchor="" x="199.04" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (17 samples, 0.38%)</title><rect x="183.1" y="1873" width="4.5" height="15.0" fill="rgb(212,33,52)" rx="2" ry="2" />
<text text-anchor="" x="186.07" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (3 samples, 0.07%)</title><rect x="1124.4" y="1969" width="0.8" height="15.0" fill="rgb(221,135,31)" rx="2" ry="2" />
<text text-anchor="" x="1127.37" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="24.3" y="1857" width="0.3" height="15.0" fill="rgb(253,13,32)" rx="2" ry="2" />
<text text-anchor="" x="27.29" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_rehash (24 samples, 0.54%)</title><rect x="1041.8" y="1729" width="6.4" height="15.0" fill="rgb(237,141,36)" rx="2" ry="2" />
<text text-anchor="" x="1044.81" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access (2 samples, 0.04%)</title><rect x="886.5" y="1713" width="0.5" height="15.0" fill="rgb(252,222,35)" rx="2" ry="2" />
<text text-anchor="" x="889.47" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access (1 samples, 0.02%)</title><rect x="649.1" y="1569" width="0.3" height="15.0" fill="rgb(233,137,15)" rx="2" ry="2" />
<text text-anchor="" x="652.09" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.04%)</title><rect x="190.0" y="113" width="0.5" height="15.0" fill="rgb(252,31,29)" rx="2" ry="2" />
<text text-anchor="" x="192.95" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.02%)</title><rect x="187.8" y="113" width="0.3" height="15.0" fill="rgb(233,194,49)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (3 samples, 0.07%)</title><rect x="1186.3" y="1841" width="0.8" height="15.0" fill="rgb(229,141,24)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (2 samples, 0.04%)</title><rect x="35.4" y="1953" width="0.5" height="15.0" fill="rgb(225,127,17)" rx="2" ry="2" />
<text text-anchor="" x="38.40" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::set (27 samples, 0.61%)</title><rect x="1175.7" y="1745" width="7.2" height="15.0" fill="rgb(245,190,16)" rx="2" ry="2" />
<text text-anchor="" x="1178.71" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>migrate_misplaced_page (1 samples, 0.02%)</title><rect x="1172.0" y="1569" width="0.3" height="15.0" fill="rgb(234,11,47)" rx="2" ry="2" />
<text text-anchor="" x="1175.00" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt;::~pair (1 samples, 0.02%)</title><rect x="1091.8" y="1793" width="0.3" height="15.0" fill="rgb(229,198,16)" rx="2" ry="2" />
<text text-anchor="" x="1094.82" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="22.4" y="1889" width="0.3" height="15.0" fill="rgb(230,195,6)" rx="2" ry="2" />
<text text-anchor="" x="25.44" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (1 samples, 0.02%)</title><rect x="1168.0" y="1553" width="0.3" height="15.0" fill="rgb(243,116,27)" rx="2" ry="2" />
<text text-anchor="" x="1171.04" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt; &gt;::construct&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (1 samples, 0.02%)</title><rect x="1151.9" y="1937" width="0.3" height="15.0" fill="rgb(231,135,49)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_active_nolock_ (4 samples, 0.09%)</title><rect x="371.8" y="1745" width="1.0" height="15.0" fill="rgb(239,194,9)" rx="2" ry="2" />
<text text-anchor="" x="374.75" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="551.2" y="1521" width="0.2" height="15.0" fill="rgb(231,133,47)" rx="2" ry="2" />
<text text-anchor="" x="554.18" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::unlock (12 samples, 0.27%)</title><rect x="21.9" y="1921" width="3.2" height="15.0" fill="rgb(230,114,36)" rx="2" ry="2" />
<text text-anchor="" x="24.91" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="514.7" y="1537" width="0.2" height="15.0" fill="rgb(246,15,21)" rx="2" ry="2" />
<text text-anchor="" x="517.66" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (108 samples, 2.42%)</title><rect x="441.6" y="1649" width="28.6" height="15.0" fill="rgb(210,50,13)" rx="2" ry="2" />
<text text-anchor="" x="444.62" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_read (1 samples, 0.02%)</title><rect x="1187.1" y="1873" width="0.3" height="15.0" fill="rgb(242,205,48)" rx="2" ry="2" />
<text text-anchor="" x="1190.09" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="305" width="6.6" height="15.0" fill="rgb(215,184,20)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.04%)</title><rect x="21.9" y="1873" width="0.5" height="15.0" fill="rgb(211,195,15)" rx="2" ry="2" />
<text text-anchor="" x="24.91" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="440.3" y="1649" width="0.3" height="15.0" fill="rgb(227,18,8)" rx="2" ry="2" />
<text text-anchor="" x="443.29" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="1010.8" y="1649" width="0.3" height="15.0" fill="rgb(206,25,48)" rx="2" ry="2" />
<text text-anchor="" x="1013.84" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (14 samples, 0.31%)</title><rect x="178.8" y="1905" width="3.7" height="15.0" fill="rgb(228,201,34)" rx="2" ry="2" />
<text text-anchor="" x="181.84" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pvclock_clocksource_read (1 samples, 0.02%)</title><rect x="1163.5" y="1777" width="0.3" height="15.0" fill="rgb(243,169,3)" rx="2" ry="2" />
<text text-anchor="" x="1166.54" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (15 samples, 0.34%)</title><rect x="471.0" y="1649" width="4.0" height="15.0" fill="rgb(225,36,29)" rx="2" ry="2" />
<text text-anchor="" x="473.99" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (3 samples, 0.07%)</title><rect x="1167.5" y="1665" width="0.8" height="15.0" fill="rgb(229,31,29)" rx="2" ry="2" />
<text text-anchor="" x="1170.51" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::TimerImpl (1 samples, 0.02%)</title><rect x="212.2" y="1905" width="0.2" height="15.0" fill="rgb(241,185,13)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="1186.8" y="1665" width="0.3" height="15.0" fill="rgb(226,211,16)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list (1 samples, 0.02%)</title><rect x="1153.7" y="1841" width="0.3" height="15.0" fill="rgb(246,154,17)" rx="2" ry="2" />
<text text-anchor="" x="1156.75" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="1057.9" y="1617" width="0.3" height="15.0" fill="rgb(217,216,51)" rx="2" ry="2" />
<text text-anchor="" x="1060.95" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (1 samples, 0.02%)</title><rect x="1151.9" y="2017" width="0.3" height="15.0" fill="rgb(206,78,24)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="1157.5" y="1793" width="0.2" height="15.0" fill="rgb(220,50,26)" rx="2" ry="2" />
<text text-anchor="" x="1160.45" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::ThreadCache::ReleaseToCentralCache (3 samples, 0.07%)</title><rect x="1080.7" y="1649" width="0.8" height="15.0" fill="rgb(244,222,0)" rx="2" ry="2" />
<text text-anchor="" x="1083.71" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::TimerImpl (3 samples, 0.07%)</title><rect x="1186.3" y="1857" width="0.8" height="15.0" fill="rgb(226,142,7)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (276 samples, 6.19%)</title><rect x="35.9" y="1985" width="73.1" height="15.0" fill="rgb(250,207,23)" rx="2" ry="2" />
<text text-anchor="" x="38.93" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_write</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.04%)</title><rect x="24.6" y="1825" width="0.5" height="15.0" fill="rgb(205,172,29)" rx="2" ry="2" />
<text text-anchor="" x="27.55" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.02%)</title><rect x="188.1" y="81" width="0.3" height="15.0" fill="rgb(225,6,26)" rx="2" ry="2" />
<text text-anchor="" x="191.10" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_AllocNode&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::operator (61 samples, 1.37%)</title><rect x="1049.2" y="1745" width="16.2" height="15.0" fill="rgb(235,63,47)" rx="2" ry="2" />
<text text-anchor="" x="1052.22" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (4 samples, 0.09%)</title><rect x="1171.5" y="1649" width="1.0" height="15.0" fill="rgb(246,91,12)" rx="2" ry="2" />
<text text-anchor="" x="1174.48" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_bucket_index (2 samples, 0.04%)</title><rect x="1041.3" y="1697" width="0.5" height="15.0" fill="rgb(228,88,4)" rx="2" ry="2" />
<text text-anchor="" x="1044.28" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.02%)</title><rect x="187.8" y="49" width="0.3" height="15.0" fill="rgb(235,83,20)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__atomic_add (1 samples, 0.02%)</title><rect x="736.2" y="1713" width="0.2" height="15.0" fill="rgb(220,212,10)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (2 samples, 0.04%)</title><rect x="1101.1" y="1681" width="0.5" height="15.0" fill="rgb(246,97,35)" rx="2" ry="2" />
<text text-anchor="" x="1104.08" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (5 samples, 0.11%)</title><rect x="1112.7" y="1809" width="1.4" height="15.0" fill="rgb(210,120,31)" rx="2" ry="2" />
<text text-anchor="" x="1115.73" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (2 samples, 0.04%)</title><rect x="890.7" y="1745" width="0.5" height="15.0" fill="rgb(211,167,44)" rx="2" ry="2" />
<text text-anchor="" x="893.70" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (28 samples, 0.63%)</title><rect x="187.6" y="1937" width="7.4" height="15.0" fill="rgb(213,21,12)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1585" width="7.2" height="15.0" fill="rgb(244,87,27)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9 samples, 0.20%)</title><rect x="188.4" y="161" width="2.3" height="15.0" fill="rgb(223,110,23)" rx="2" ry="2" />
<text text-anchor="" x="191.36" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (44 samples, 0.99%)</title><rect x="874.3" y="1681" width="11.6" height="15.0" fill="rgb(211,132,8)" rx="2" ry="2" />
<text text-anchor="" x="877.29" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::reference_wrapper&lt;Envoy::Event::Dispatcher&gt;::get (5 samples, 0.11%)</title><rect x="889.1" y="1777" width="1.3" height="15.0" fill="rgb(249,52,2)" rx="2" ry="2" />
<text text-anchor="" x="892.11" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (3 samples, 0.07%)</title><rect x="191.3" y="129" width="0.8" height="15.0" fill="rgb(218,200,22)" rx="2" ry="2" />
<text text-anchor="" x="194.27" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (3 samples, 0.07%)</title><rect x="214.6" y="1841" width="0.8" height="15.0" fill="rgb(220,168,37)" rx="2" ry="2" />
<text text-anchor="" x="217.56" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="1151.9" y="1761" width="0.3" height="15.0" fill="rgb(234,52,50)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_insert_unique_node (5 samples, 0.11%)</title><rect x="1094.7" y="1745" width="1.4" height="15.0" fill="rgb(249,166,48)" rx="2" ry="2" />
<text text-anchor="" x="1097.73" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_rehash_aux (1 samples, 0.02%)</title><rect x="1095.8" y="1713" width="0.3" height="15.0" fill="rgb(246,160,30)" rx="2" ry="2" />
<text text-anchor="" x="1098.79" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__iterator_category&lt;char const*&gt; (2 samples, 0.04%)</title><rect x="12.4" y="1969" width="0.5" height="15.0" fill="rgb(254,130,5)" rx="2" ry="2" />
<text text-anchor="" x="15.38" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="195.0" y="1969" width="0.2" height="15.0" fill="rgb(219,154,47)" rx="2" ry="2" />
<text text-anchor="" x="197.98" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="571.6" y="1601" width="0.2" height="15.0" fill="rgb(215,90,36)" rx="2" ry="2" />
<text text-anchor="" x="574.55" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy@plt (1 samples, 0.02%)</title><rect x="844.1" y="1601" width="0.3" height="15.0" fill="rgb(210,42,5)" rx="2" ry="2" />
<text text-anchor="" x="847.12" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="980.4" y="1745" width="0.3" height="15.0" fill="rgb(220,14,9)" rx="2" ry="2" />
<text text-anchor="" x="983.41" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::TimerImpl (21 samples, 0.47%)</title><rect x="19.8" y="2017" width="5.5" height="15.0" fill="rgb(216,227,18)" rx="2" ry="2" />
<text text-anchor="" x="22.79" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::setThreadLocal (13 samples, 0.29%)</title><rect x="1175.7" y="1729" width="3.5" height="15.0" fill="rgb(205,31,16)" rx="2" ry="2" />
<text text-anchor="" x="1178.71" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (1 samples, 0.02%)</title><rect x="797.5" y="1665" width="0.3" height="15.0" fill="rgb(207,152,43)" rx="2" ry="2" />
<text text-anchor="" x="800.55" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.02%)</title><rect x="1052.4" y="1681" width="0.3" height="15.0" fill="rgb(238,33,18)" rx="2" ry="2" />
<text text-anchor="" x="1055.39" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="785" width="6.6" height="15.0" fill="rgb(229,141,5)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (75 samples, 1.68%)</title><rect x="868.5" y="1761" width="19.8" height="15.0" fill="rgb(240,105,54)" rx="2" ry="2" />
<text text-anchor="" x="871.47" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.04%)</title><rect x="216.1" y="1841" width="0.6" height="15.0" fill="rgb(239,213,30)" rx="2" ry="2" />
<text text-anchor="" x="219.15" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Node_const_iterator&lt;Envoy::Stats::ThreadLocalStoreImpl::ScopeImpl*, true, false&gt;::operator++ (1 samples, 0.02%)</title><rect x="1089.4" y="1793" width="0.3" height="15.0" fill="rgb(209,147,49)" rx="2" ry="2" />
<text text-anchor="" x="1092.44" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (28 samples, 0.63%)</title><rect x="187.6" y="1953" width="7.4" height="15.0" fill="rgb(253,161,10)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (2 samples, 0.04%)</title><rect x="1182.3" y="1697" width="0.6" height="15.0" fill="rgb(252,146,34)" rx="2" ry="2" />
<text text-anchor="" x="1185.33" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (5 samples, 0.11%)</title><rect x="1096.3" y="1697" width="1.3" height="15.0" fill="rgb(254,227,45)" rx="2" ry="2" />
<text text-anchor="" x="1099.32" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::destroy&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; (2 samples, 0.04%)</title><rect x="1101.1" y="1697" width="0.5" height="15.0" fill="rgb(244,121,10)" rx="2" ry="2" />
<text text-anchor="" x="1104.08" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (15 samples, 0.34%)</title><rect x="501.2" y="1617" width="3.9" height="15.0" fill="rgb(226,168,25)" rx="2" ry="2" />
<text text-anchor="" x="504.16" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.02%)</title><rect x="1118.8" y="1889" width="0.3" height="15.0" fill="rgb(236,197,31)" rx="2" ry="2" />
<text text-anchor="" x="1121.81" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_insert_bucket_begin (3 samples, 0.07%)</title><rect x="1036.8" y="1745" width="0.8" height="15.0" fill="rgb(224,88,16)" rx="2" ry="2" />
<text text-anchor="" x="1039.78" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="798.3" y="1713" width="0.3" height="15.0" fill="rgb(205,173,17)" rx="2" ry="2" />
<text text-anchor="" x="801.34" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pvclock_clocksource_read (1 samples, 0.02%)</title><rect x="1152.2" y="1921" width="0.2" height="15.0" fill="rgb(235,222,32)" rx="2" ry="2" />
<text text-anchor="" x="1155.16" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.02%)</title><rect x="1116.2" y="1969" width="0.2" height="15.0" fill="rgb(246,45,40)" rx="2" ry="2" />
<text text-anchor="" x="1119.17" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::ThreadCache::ListTooLong (2 samples, 0.04%)</title><rect x="1108.2" y="1713" width="0.6" height="15.0" fill="rgb(235,65,45)" rx="2" ry="2" />
<text text-anchor="" x="1111.23" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (62 samples, 1.39%)</title><rect x="1126.0" y="1905" width="16.4" height="15.0" fill="rgb(220,134,40)" rx="2" ry="2" />
<text text-anchor="" x="1128.96" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (2 samples, 0.04%)</title><rect x="918.5" y="1777" width="0.5" height="15.0" fill="rgb(223,101,27)" rx="2" ry="2" />
<text text-anchor="" x="921.49" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="191.0" y="161" width="0.3" height="15.0" fill="rgb(224,19,4)" rx="2" ry="2" />
<text text-anchor="" x="194.01" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="337" width="6.6" height="15.0" fill="rgb(254,186,36)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::ThreadCache::ListTooLong (2 samples, 0.04%)</title><rect x="1174.1" y="1601" width="0.6" height="15.0" fill="rgb(231,173,46)" rx="2" ry="2" />
<text text-anchor="" x="1177.12" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (2 samples, 0.04%)</title><rect x="22.7" y="1857" width="0.5" height="15.0" fill="rgb(254,206,6)" rx="2" ry="2" />
<text text-anchor="" x="25.70" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__allocated_ptr&lt;std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (2 samples, 0.04%)</title><rect x="740.1" y="1697" width="0.6" height="15.0" fill="rgb(250,159,21)" rx="2" ry="2" />
<text text-anchor="" x="743.12" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.04%)</title><rect x="24.6" y="1857" width="0.5" height="15.0" fill="rgb(235,193,46)" rx="2" ry="2" />
<text text-anchor="" x="27.55" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (15 samples, 0.34%)</title><rect x="15.6" y="2001" width="3.9" height="15.0" fill="rgb(253,20,12)" rx="2" ry="2" />
<text text-anchor="" x="18.56" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (28 samples, 0.63%)</title><rect x="505.1" y="1569" width="7.4" height="15.0" fill="rgb(231,101,38)" rx="2" ry="2" />
<text text-anchor="" x="508.13" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (13 samples, 0.29%)</title><rect x="1169.6" y="1681" width="3.5" height="15.0" fill="rgb(216,117,40)" rx="2" ry="2" />
<text text-anchor="" x="1172.62" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="753" width="6.6" height="15.0" fill="rgb(237,24,36)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="23.0" y="1793" width="0.2" height="15.0" fill="rgb(253,214,24)" rx="2" ry="2" />
<text text-anchor="" x="25.97" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (24 samples, 0.54%)</title><rect x="1052.4" y="1697" width="6.3" height="15.0" fill="rgb(242,179,23)" rx="2" ry="2" />
<text text-anchor="" x="1055.39" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="1186.6" y="1697" width="0.2" height="15.0" fill="rgb(235,182,35)" rx="2" ry="2" />
<text text-anchor="" x="1189.56" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.02%)</title><rect x="187.6" y="1809" width="0.2" height="15.0" fill="rgb(223,151,25)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (10 samples, 0.22%)</title><rect x="552.0" y="1505" width="2.6" height="15.0" fill="rgb(218,85,47)" rx="2" ry="2" />
<text text-anchor="" x="554.97" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt; &gt;::destroy&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt; (7 samples, 0.16%)</title><rect x="740.7" y="1697" width="1.8" height="15.0" fill="rgb(244,214,33)" rx="2" ry="2" />
<text text-anchor="" x="743.65" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="252.7" y="1713" width="0.2" height="15.0" fill="rgb(249,76,39)" rx="2" ry="2" />
<text text-anchor="" x="255.67" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject, (35 samples, 0.78%)</title><rect x="733.2" y="1761" width="9.3" height="15.0" fill="rgb(226,215,34)" rx="2" ry="2" />
<text text-anchor="" x="736.24" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__is_null_pointer&lt;char&gt; (1 samples, 0.02%)</title><rect x="948.9" y="1809" width="0.3" height="15.0" fill="rgb(245,23,46)" rx="2" ry="2" />
<text text-anchor="" x="951.92" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (5 samples, 0.11%)</title><rect x="922.5" y="1793" width="1.3" height="15.0" fill="rgb(214,90,51)" rx="2" ry="2" />
<text text-anchor="" x="925.46" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="1118.8" y="1905" width="0.3" height="15.0" fill="rgb(208,81,20)" rx="2" ry="2" />
<text text-anchor="" x="1121.81" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_numa_work (1 samples, 0.02%)</title><rect x="1172.3" y="1569" width="0.2" height="15.0" fill="rgb(211,117,25)" rx="2" ry="2" />
<text text-anchor="" x="1175.27" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (48 samples, 1.08%)</title><rect x="854.2" y="1777" width="12.7" height="15.0" fill="rgb(208,23,40)" rx="2" ry="2" />
<text text-anchor="" x="857.18" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::~_Function_base (8 samples, 0.18%)</title><rect x="1173.6" y="1681" width="2.1" height="15.0" fill="rgb(213,13,49)" rx="2" ry="2" />
<text text-anchor="" x="1176.59" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (70 samples, 1.57%)</title><rect x="869.8" y="1745" width="18.5" height="15.0" fill="rgb(236,140,1)" rx="2" ry="2" />
<text text-anchor="" x="872.79" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vdso_clock_gettime (1 samples, 0.02%)</title><rect x="1116.4" y="2017" width="0.3" height="15.0" fill="rgb(243,23,18)" rx="2" ry="2" />
<text text-anchor="" x="1119.43" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (184 samples, 4.13%)</title><rect x="323.1" y="1697" width="48.7" height="15.0" fill="rgb(247,47,2)" rx="2" ry="2" />
<text text-anchor="" x="326.06" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vfs_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="273" width="6.6" height="15.0" fill="rgb(207,97,49)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="641" width="6.6" height="15.0" fill="rgb(235,101,10)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (33 samples, 0.74%)</title><rect x="733.8" y="1745" width="8.7" height="15.0" fill="rgb(233,36,50)" rx="2" ry="2" />
<text text-anchor="" x="736.77" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::~shared_ptr (3 samples, 0.07%)</title><rect x="849.4" y="1745" width="0.8" height="15.0" fill="rgb(245,188,38)" rx="2" ry="2" />
<text text-anchor="" x="852.42" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::reference_wrapper&lt;Envoy::Event::Dispatcher&gt; &gt;::operator* (1 samples, 0.02%)</title><rect x="811.8" y="1793" width="0.3" height="15.0" fill="rgb(221,42,42)" rx="2" ry="2" />
<text text-anchor="" x="814.84" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="195.8" y="1953" width="0.2" height="15.0" fill="rgb(208,105,32)" rx="2" ry="2" />
<text text-anchor="" x="198.77" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_bucket_index (3 samples, 0.07%)</title><rect x="1041.0" y="1713" width="0.8" height="15.0" fill="rgb(237,101,25)" rx="2" ry="2" />
<text text-anchor="" x="1044.01" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (5 samples, 0.11%)</title><rect x="1112.7" y="1841" width="1.4" height="15.0" fill="rgb(241,151,32)" rx="2" ry="2" />
<text text-anchor="" x="1115.73" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (2 samples, 0.04%)</title><rect x="740.1" y="1665" width="0.6" height="15.0" fill="rgb(235,222,18)" rx="2" ry="2" />
<text text-anchor="" x="743.12" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="212.2" y="1745" width="0.2" height="15.0" fill="rgb(228,42,47)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="19.8" y="1985" width="0.3" height="15.0" fill="rgb(239,48,42)" rx="2" ry="2" />
<text text-anchor="" x="22.79" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (19 samples, 0.43%)</title><rect x="182.5" y="1953" width="5.1" height="15.0" fill="rgb(232,119,49)" rx="2" ry="2" />
<text text-anchor="" x="185.54" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (2 samples, 0.04%)</title><rect x="216.1" y="1793" width="0.6" height="15.0" fill="rgb(217,118,51)" rx="2" ry="2" />
<text text-anchor="" x="219.15" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr&lt;Envoy::Event::Timer, std::default_delete&lt;Envoy::Event::Timer&gt; &gt;::operator (2 samples, 0.04%)</title><rect x="928.3" y="1809" width="0.5" height="15.0" fill="rgb(210,99,4)" rx="2" ry="2" />
<text text-anchor="" x="931.28" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::DateFormatter::fromTimeT[abi:cxx11] (3 samples, 0.07%)</title><rect x="221.7" y="1793" width="0.8" height="15.0" fill="rgb(224,212,30)" rx="2" ry="2" />
<text text-anchor="" x="224.71" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (16 samples, 0.36%)</title><rect x="15.6" y="2017" width="4.2" height="15.0" fill="rgb(221,17,12)" rx="2" ry="2" />
<text text-anchor="" x="18.56" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1151.9" y="2001" width="0.3" height="15.0" fill="rgb(225,48,12)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (1 samples, 0.02%)</title><rect x="1091.8" y="1777" width="0.3" height="15.0" fill="rgb(227,222,43)" rx="2" ry="2" />
<text text-anchor="" x="1094.82" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (8 samples, 0.18%)</title><rect x="110.3" y="1969" width="2.1" height="15.0" fill="rgb(216,76,13)" rx="2" ry="2" />
<text text-anchor="" x="113.30" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (2 samples, 0.04%)</title><rect x="23.5" y="1681" width="0.5" height="15.0" fill="rgb(234,159,36)" rx="2" ry="2" />
<text text-anchor="" x="26.50" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (3 samples, 0.07%)</title><rect x="382.9" y="1681" width="0.8" height="15.0" fill="rgb(221,48,27)" rx="2" ry="2" />
<text text-anchor="" x="385.87" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1809" width="7.2" height="15.0" fill="rgb(222,72,13)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="322.8" y="1697" width="0.3" height="15.0" fill="rgb(211,194,54)" rx="2" ry="2" />
<text text-anchor="" x="325.80" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (48 samples, 1.08%)</title><rect x="598.0" y="1729" width="12.7" height="15.0" fill="rgb(252,220,13)" rx="2" ry="2" />
<text text-anchor="" x="601.02" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (1 samples, 0.02%)</title><rect x="1142.4" y="2001" width="0.2" height="15.0" fill="rgb(205,40,45)" rx="2" ry="2" />
<text text-anchor="" x="1145.37" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hash_bytes (1 samples, 0.02%)</title><rect x="1098.7" y="1713" width="0.3" height="15.0" fill="rgb(237,74,21)" rx="2" ry="2" />
<text text-anchor="" x="1101.70" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.02%)</title><rect x="1186.6" y="1681" width="0.2" height="15.0" fill="rgb(230,120,46)" rx="2" ry="2" />
<text text-anchor="" x="1189.56" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_insert_unique_node (1 samples, 0.02%)</title><rect x="1071.2" y="1761" width="0.2" height="15.0" fill="rgb(232,111,17)" rx="2" ry="2" />
<text text-anchor="" x="1074.18" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt;::operator!= (1 samples, 0.02%)</title><rect x="1102.7" y="1809" width="0.2" height="15.0" fill="rgb(244,17,33)" rx="2" ry="2" />
<text text-anchor="" x="1105.67" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="188.9" y="65" width="0.5" height="15.0" fill="rgb(214,42,21)" rx="2" ry="2" />
<text text-anchor="" x="191.89" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_active_p (4 samples, 0.09%)</title><rect x="696.2" y="1713" width="1.1" height="15.0" fill="rgb(252,17,50)" rx="2" ry="2" />
<text text-anchor="" x="699.19" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt;::operator= (36 samples, 0.81%)</title><rect x="733.0" y="1777" width="9.5" height="15.0" fill="rgb(207,55,19)" rx="2" ry="2" />
<text text-anchor="" x="735.98" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (90 samples, 2.02%)</title><rect x="291.6" y="1665" width="23.8" height="15.0" fill="rgb(205,130,35)" rx="2" ry="2" />
<text text-anchor="" x="294.57" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="471.0" y="1633" width="0.3" height="15.0" fill="rgb(245,59,45)" rx="2" ry="2" />
<text text-anchor="" x="473.99" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1457" width="7.2" height="15.0" fill="rgb(227,215,46)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="1112.5" y="1825" width="0.2" height="15.0" fill="rgb(250,16,54)" rx="2" ry="2" />
<text text-anchor="" x="1115.46" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (11 samples, 0.25%)</title><rect x="707.8" y="1729" width="2.9" height="15.0" fill="rgb(207,216,0)" rx="2" ry="2" />
<text text-anchor="" x="710.84" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (41 samples, 0.92%)</title><rect x="798.3" y="1745" width="10.9" height="15.0" fill="rgb(236,202,38)" rx="2" ry="2" />
<text text-anchor="" x="801.34" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_ebo_helper&lt;0, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, true&gt;::_Sp_ebo_helper (1 samples, 0.02%)</title><rect x="1179.9" y="1569" width="0.3" height="15.0" fill="rgb(233,50,40)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="194.7" y="945" width="0.3" height="15.0" fill="rgb(228,217,5)" rx="2" ry="2" />
<text text-anchor="" x="197.71" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Thread::Thread::Thread (140 samples, 3.14%)</title><rect x="1153.0" y="2001" width="37.0" height="15.0" fill="rgb(221,183,0)" rx="2" ry="2" />
<text text-anchor="" x="1155.95" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Env..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_hook (6 samples, 0.13%)</title><rect x="692.2" y="1761" width="1.6" height="15.0" fill="rgb(207,112,37)" rx="2" ry="2" />
<text text-anchor="" x="695.22" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Node_iterator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt;, false, true&gt;::_Node_iterator (1 samples, 0.02%)</title><rect x="1092.1" y="1761" width="0.3" height="15.0" fill="rgb(228,129,26)" rx="2" ry="2" />
<text text-anchor="" x="1095.09" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (4 samples, 0.09%)</title><rect x="23.2" y="1745" width="1.1" height="15.0" fill="rgb(234,12,5)" rx="2" ry="2" />
<text text-anchor="" x="26.23" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::construct&lt;std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; const&amp;&gt; &gt; (11 samples, 0.25%)</title><rect x="985.7" y="1745" width="2.9" height="15.0" fill="rgb(212,185,41)" rx="2" ry="2" />
<text text-anchor="" x="988.70" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.04%)</title><rect x="1152.2" y="2001" width="0.5" height="15.0" fill="rgb(208,160,17)" rx="2" ry="2" />
<text text-anchor="" x="1155.16" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::push_back (1 samples, 0.02%)</title><rect x="1103.2" y="1809" width="0.3" height="15.0" fill="rgb(224,63,38)" rx="2" ry="2" />
<text text-anchor="" x="1106.20" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unordered_map&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::shared_ptr&lt;Envoy::Stats::Gauge&gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt; &gt;::begin (1 samples, 0.02%)</title><rect x="1092.1" y="1793" width="0.3" height="15.0" fill="rgb(224,1,42)" rx="2" ry="2" />
<text text-anchor="" x="1095.09" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="195.8" y="1985" width="0.2" height="15.0" fill="rgb(216,167,37)" rx="2" ry="2" />
<text text-anchor="" x="198.77" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::_M_deallocate_node (25 samples, 0.56%)</title><rect x="1075.7" y="1729" width="6.6" height="15.0" fill="rgb(220,88,15)" rx="2" ry="2" />
<text text-anchor="" x="1078.68" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (191 samples, 4.28%)</title><rect x="321.2" y="1729" width="50.6" height="15.0" fill="rgb(228,133,4)" rx="2" ry="2" />
<text text-anchor="" x="324.21" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >entry..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="19.8" y="1873" width="0.3" height="15.0" fill="rgb(244,146,16)" rx="2" ry="2" />
<text text-anchor="" x="22.79" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="689" width="6.6" height="15.0" fill="rgb(241,18,37)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (11 samples, 0.25%)</title><rect x="568.6" y="1537" width="3.0" height="15.0" fill="rgb(222,11,39)" rx="2" ry="2" />
<text text-anchor="" x="571.64" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (1 samples, 0.02%)</title><rect x="474.7" y="1553" width="0.3" height="15.0" fill="rgb(227,23,38)" rx="2" ry="2" />
<text text-anchor="" x="477.70" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="257" width="6.6" height="15.0" fill="rgb(250,23,4)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (19 samples, 0.43%)</title><rect x="1053.2" y="1665" width="5.0" height="15.0" fill="rgb(244,155,48)" rx="2" ry="2" />
<text text-anchor="" x="1056.18" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (64 samples, 1.44%)</title><rect x="819.8" y="1777" width="16.9" height="15.0" fill="rgb(206,10,46)" rx="2" ry="2" />
<text text-anchor="" x="822.78" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::_M_v (2 samples, 0.04%)</title><rect x="1033.6" y="1681" width="0.5" height="15.0" fill="rgb(230,120,11)" rx="2" ry="2" />
<text text-anchor="" x="1036.60" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;::~_List_node (12 samples, 0.27%)</title><rect x="1104.3" y="1745" width="3.1" height="15.0" fill="rgb(250,90,9)" rx="2" ry="2" />
<text text-anchor="" x="1107.26" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="194.4" y="721" width="0.3" height="15.0" fill="rgb(248,113,27)" rx="2" ry="2" />
<text text-anchor="" x="197.45" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (357 samples, 8.01%)</title><rect x="109.0" y="2017" width="94.4" height="15.0" fill="rgb(209,169,33)" rx="2" ry="2" />
<text text-anchor="" x="111.97" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.02%)</title><rect x="290.8" y="1697" width="0.2" height="15.0" fill="rgb(232,34,42)" rx="2" ry="2" />
<text text-anchor="" x="293.78" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1361" width="7.2" height="15.0" fill="rgb(223,110,21)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (41 samples, 0.92%)</title><rect x="798.3" y="1777" width="10.9" height="15.0" fill="rgb(254,4,18)" rx="2" ry="2" />
<text text-anchor="" x="801.34" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Server::InstanceImpl::run (3,447 samples, 77.30%)</title><rect x="204.0" y="1969" width="912.2" height="15.0" fill="rgb(244,74,20)" rx="2" ry="2" />
<text text-anchor="" x="206.98" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Envoy::Server::InstanceImpl::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (8 samples, 0.18%)</title><rect x="1179.7" y="1617" width="2.1" height="15.0" fill="rgb(216,174,54)" rx="2" ry="2" />
<text text-anchor="" x="1182.68" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__allocated_ptr&lt;std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (2 samples, 0.04%)</title><rect x="847.0" y="1665" width="0.6" height="15.0" fill="rgb(217,197,28)" rx="2" ry="2" />
<text text-anchor="" x="850.04" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (29 samples, 0.65%)</title><rect x="1144.0" y="1937" width="7.6" height="15.0" fill="rgb(252,127,31)" rx="2" ry="2" />
<text text-anchor="" x="1146.95" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="1151.6" y="1985" width="0.3" height="15.0" fill="rgb(221,50,2)" rx="2" ry="2" />
<text text-anchor="" x="1154.63" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::make_pair&lt;std::__detail::_Node_iterator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true, true&gt;, bool&gt; (4 samples, 0.09%)</title><rect x="1099.0" y="1745" width="1.0" height="15.0" fill="rgb(230,144,45)" rx="2" ry="2" />
<text text-anchor="" x="1101.97" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (52 samples, 1.17%)</title><rect x="554.9" y="1521" width="13.7" height="15.0" fill="rgb(228,44,47)" rx="2" ry="2" />
<text text-anchor="" x="557.88" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.02%)</title><rect x="980.4" y="1761" width="0.3" height="15.0" fill="rgb(237,214,22)" rx="2" ry="2" />
<text text-anchor="" x="983.41" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.02%)</title><rect x="551.2" y="1489" width="0.2" height="15.0" fill="rgb(245,0,19)" rx="2" ry="2" />
<text text-anchor="" x="554.18" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (3 samples, 0.07%)</title><rect x="513.9" y="1537" width="0.8" height="15.0" fill="rgb(221,169,46)" rx="2" ry="2" />
<text text-anchor="" x="516.86" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::TlsCachingDateProviderImpl (1 samples, 0.02%)</title><rect x="212.2" y="1841" width="0.2" height="15.0" fill="rgb(215,150,14)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_mutex_lock (1 samples, 0.02%)</title><rect x="1183.1" y="1745" width="0.3" height="15.0" fill="rgb(220,215,6)" rx="2" ry="2" />
<text text-anchor="" x="1186.12" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt;::_M_next (2 samples, 0.04%)</title><rect x="1100.6" y="1729" width="0.5" height="15.0" fill="rgb(244,11,1)" rx="2" ry="2" />
<text text-anchor="" x="1103.55" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (14 samples, 0.31%)</title><rect x="501.4" y="1569" width="3.7" height="15.0" fill="rgb(246,213,25)" rx="2" ry="2" />
<text text-anchor="" x="504.42" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.02%)</title><rect x="1186.3" y="1729" width="0.3" height="15.0" fill="rgb(211,111,25)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="20.6" y="1793" width="0.2" height="15.0" fill="rgb(251,164,2)" rx="2" ry="2" />
<text text-anchor="" x="23.59" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_bucket_index (1 samples, 0.02%)</title><rect x="1030.2" y="1713" width="0.2" height="15.0" fill="rgb(209,178,9)" rx="2" ry="2" />
<text text-anchor="" x="1033.16" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (2 samples, 0.04%)</title><rect x="512.5" y="1553" width="0.6" height="15.0" fill="rgb(227,109,32)" rx="2" ry="2" />
<text text-anchor="" x="515.54" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="20.6" y="1841" width="0.2" height="15.0" fill="rgb(205,188,33)" rx="2" ry="2" />
<text text-anchor="" x="23.59" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::_List_base&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::_M_put_node (5 samples, 0.11%)</title><rect x="1107.4" y="1761" width="1.4" height="15.0" fill="rgb(236,157,44)" rx="2" ry="2" />
<text text-anchor="" x="1110.43" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (13 samples, 0.29%)</title><rect x="199.5" y="1889" width="3.4" height="15.0" fill="rgb(251,102,24)" rx="2" ry="2" />
<text text-anchor="" x="202.48" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="194.7" y="1025" width="0.3" height="15.0" fill="rgb(252,117,47)" rx="2" ry="2" />
<text text-anchor="" x="197.71" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Maybe_unary_or_binary_function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt;, Envoy::Event::Dispatcher&amp;&gt;::_Maybe_unary_or_binary_function (1 samples, 0.02%)</title><rect x="631.4" y="1633" width="0.2" height="15.0" fill="rgb(251,36,25)" rx="2" ry="2" />
<text text-anchor="" x="634.36" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (8 samples, 0.18%)</title><rect x="110.3" y="1985" width="2.1" height="15.0" fill="rgb(231,127,42)" rx="2" ry="2" />
<text text-anchor="" x="113.30" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>evthread_posix_lock (3 samples, 0.07%)</title><rect x="1187.9" y="1889" width="0.8" height="15.0" fill="rgb(233,9,20)" rx="2" ry="2" />
<text text-anchor="" x="1190.88" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (10 samples, 0.22%)</title><rect x="175.9" y="1953" width="2.7" height="15.0" fill="rgb(230,105,44)" rx="2" ry="2" />
<text text-anchor="" x="178.93" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (45 samples, 1.01%)</title><rect x="680.3" y="1697" width="11.9" height="15.0" fill="rgb(236,175,33)" rx="2" ry="2" />
<text text-anchor="" x="683.32" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.02%)</title><rect x="188.1" y="65" width="0.3" height="15.0" fill="rgb(253,180,6)" rx="2" ry="2" />
<text text-anchor="" x="191.10" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (7 samples, 0.16%)</title><rect x="204.0" y="1921" width="1.8" height="15.0" fill="rgb(215,142,4)" rx="2" ry="2" />
<text text-anchor="" x="206.98" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="1164.1" y="1761" width="0.2" height="15.0" fill="rgb(219,224,18)" rx="2" ry="2" />
<text text-anchor="" x="1167.07" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::set (14 samples, 0.31%)</title><rect x="1169.4" y="1729" width="3.7" height="15.0" fill="rgb(253,89,12)" rx="2" ry="2" />
<text text-anchor="" x="1172.36" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (259 samples, 5.81%)</title><rect x="39.9" y="1953" width="68.5" height="15.0" fill="rgb(249,165,41)" rx="2" ry="2" />
<text text-anchor="" x="42.90" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__vfs_w..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access&lt;Envoy::ThreadLocal::InstanceImpl::set (2 samples, 0.04%)</title><rect x="626.9" y="1665" width="0.5" height="15.0" fill="rgb(218,167,49)" rx="2" ry="2" />
<text text-anchor="" x="629.86" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="819.5" y="1777" width="0.3" height="15.0" fill="rgb(207,181,28)" rx="2" ry="2" />
<text text-anchor="" x="822.51" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::allocator (1 samples, 0.02%)</title><rect x="1179.9" y="1553" width="0.3" height="15.0" fill="rgb(205,165,26)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_bucket_index (1 samples, 0.02%)</title><rect x="1095.3" y="1713" width="0.2" height="15.0" fill="rgb(230,71,47)" rx="2" ry="2" />
<text text-anchor="" x="1098.26" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (108 samples, 2.42%)</title><rect x="633.7" y="1601" width="28.6" height="15.0" fill="rgb(215,44,21)" rx="2" ry="2" />
<text text-anchor="" x="636.74" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >st..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.02%)</title><rect x="501.2" y="1585" width="0.2" height="15.0" fill="rgb(248,201,18)" rx="2" ry="2" />
<text text-anchor="" x="504.16" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::function&lt;void (9 samples, 0.20%)</title><rect x="1167.0" y="1777" width="2.4" height="15.0" fill="rgb(236,226,17)" rx="2" ry="2" />
<text text-anchor="" x="1169.98" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.02%)</title><rect x="1186.3" y="1697" width="0.3" height="15.0" fill="rgb(244,173,8)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.02%)</title><rect x="188.9" y="33" width="0.3" height="15.0" fill="rgb(230,206,50)" rx="2" ry="2" />
<text text-anchor="" x="191.89" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.04%)</title><rect x="1152.2" y="1985" width="0.5" height="15.0" fill="rgb(223,193,24)" rx="2" ry="2" />
<text text-anchor="" x="1155.16" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__put_user_8 (1 samples, 0.02%)</title><rect x="1186.8" y="1537" width="0.3" height="15.0" fill="rgb(214,206,32)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xen_clocksource_get_cycles (1 samples, 0.02%)</title><rect x="20.1" y="1857" width="0.2" height="15.0" fill="rgb(217,74,12)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="194.4" y="753" width="0.3" height="15.0" fill="rgb(241,167,26)" rx="2" ry="2" />
<text text-anchor="" x="197.45" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (3 samples, 0.07%)</title><rect x="1114.3" y="1873" width="0.8" height="15.0" fill="rgb(220,53,51)" rx="2" ry="2" />
<text text-anchor="" x="1117.31" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (2 samples, 0.04%)</title><rect x="216.1" y="1809" width="0.6" height="15.0" fill="rgb(237,61,49)" rx="2" ry="2" />
<text text-anchor="" x="219.15" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::construct&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (1 samples, 0.02%)</title><rect x="1151.9" y="1921" width="0.3" height="15.0" fill="rgb(220,120,4)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char const*&gt; (3 samples, 0.07%)</title><rect x="12.1" y="1985" width="0.8" height="15.0" fill="rgb(232,184,12)" rx="2" ry="2" />
<text text-anchor="" x="15.12" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.02%)</title><rect x="571.6" y="1585" width="0.2" height="15.0" fill="rgb(225,222,29)" rx="2" ry="2" />
<text text-anchor="" x="574.55" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::forward&lt;std::__detail::_Node_iterator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true, true&gt; &gt; (1 samples, 0.02%)</title><rect x="1070.4" y="1729" width="0.3" height="15.0" fill="rgb(207,52,53)" rx="2" ry="2" />
<text text-anchor="" x="1073.39" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (29 samples, 0.65%)</title><rect x="858.7" y="1729" width="7.7" height="15.0" fill="rgb(216,93,42)" rx="2" ry="2" />
<text text-anchor="" x="861.68" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Function_base (2 samples, 0.04%)</title><rect x="675.3" y="1681" width="0.5" height="15.0" fill="rgb(232,214,42)" rx="2" ry="2" />
<text text-anchor="" x="678.29" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_bucket_index (2 samples, 0.04%)</title><rect x="1094.2" y="1697" width="0.5" height="15.0" fill="rgb(244,31,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.20" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (67 samples, 1.50%)</title><rect x="481.8" y="1617" width="17.8" height="15.0" fill="rgb(240,130,23)" rx="2" ry="2" />
<text text-anchor="" x="484.84" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (6 samples, 0.13%)</title><rect x="499.6" y="1633" width="1.6" height="15.0" fill="rgb(220,171,50)" rx="2" ry="2" />
<text text-anchor="" x="502.57" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="25.1" y="1873" width="0.2" height="15.0" fill="rgb(248,160,32)" rx="2" ry="2" />
<text text-anchor="" x="28.08" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::~unique_lock (2 samples, 0.04%)</title><rect x="1186.6" y="1777" width="0.5" height="15.0" fill="rgb(242,226,2)" rx="2" ry="2" />
<text text-anchor="" x="1189.56" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (8 samples, 0.18%)</title><rect x="574.7" y="1729" width="2.1" height="15.0" fill="rgb(225,95,38)" rx="2" ry="2" />
<text text-anchor="" x="577.73" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_ts64 (1 samples, 0.02%)</title><rect x="190.2" y="81" width="0.3" height="15.0" fill="rgb(240,209,37)" rx="2" ry="2" />
<text text-anchor="" x="193.22" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::DispatcherImpl::DispatcherImpl (20 samples, 0.45%)</title><rect x="20.1" y="1969" width="5.2" height="15.0" fill="rgb(209,175,20)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strftime_l (1 samples, 0.02%)</title><rect x="226.7" y="1793" width="0.3" height="15.0" fill="rgb(235,203,45)" rx="2" ry="2" />
<text text-anchor="" x="229.73" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_data (1 samples, 0.02%)</title><rect x="189.2" y="33" width="0.2" height="15.0" fill="rgb(232,17,13)" rx="2" ry="2" />
<text text-anchor="" x="192.16" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Insert_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::insert (1 samples, 0.02%)</title><rect x="997.1" y="1793" width="0.2" height="15.0" fill="rgb(242,46,36)" rx="2" ry="2" />
<text text-anchor="" x="1000.08" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (12 samples, 0.27%)</title><rect x="571.6" y="1649" width="3.1" height="15.0" fill="rgb(233,120,48)" rx="2" ry="2" />
<text text-anchor="" x="574.55" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::operator (1 samples, 0.02%)</title><rect x="1069.6" y="1745" width="0.3" height="15.0" fill="rgb(220,26,36)" rx="2" ry="2" />
<text text-anchor="" x="1072.59" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_create (3 samples, 0.07%)</title><rect x="834.1" y="1729" width="0.8" height="15.0" fill="rgb(254,62,7)" rx="2" ry="2" />
<text text-anchor="" x="837.07" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1233" width="7.2" height="15.0" fill="rgb(206,6,36)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (1 samples, 0.02%)</title><rect x="19.5" y="2001" width="0.3" height="15.0" fill="rgb(241,43,49)" rx="2" ry="2" />
<text text-anchor="" x="22.53" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.04%)</title><rect x="189.4" y="81" width="0.6" height="15.0" fill="rgb(229,78,31)" rx="2" ry="2" />
<text text-anchor="" x="192.42" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.02%)</title><rect x="211.1" y="1841" width="0.3" height="15.0" fill="rgb(249,219,0)" rx="2" ry="2" />
<text text-anchor="" x="214.12" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (63 samples, 1.41%)</title><rect x="178.6" y="1985" width="16.6" height="15.0" fill="rgb(242,154,33)" rx="2" ry="2" />
<text text-anchor="" x="181.57" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (2 samples, 0.04%)</title><rect x="216.1" y="1825" width="0.6" height="15.0" fill="rgb(251,14,50)" rx="2" ry="2" />
<text text-anchor="" x="219.15" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; const&amp;&gt; (1 samples, 0.02%)</title><rect x="988.6" y="1745" width="0.3" height="15.0" fill="rgb(244,211,49)" rx="2" ry="2" />
<text text-anchor="" x="991.61" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="923.5" y="1777" width="0.3" height="15.0" fill="rgb(219,86,28)" rx="2" ry="2" />
<text text-anchor="" x="926.51" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::ThreadLocalObject::ThreadLocalObject (1 samples, 0.02%)</title><rect x="842.8" y="1617" width="0.3" height="15.0" fill="rgb(229,213,17)" rx="2" ry="2" />
<text text-anchor="" x="845.80" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::mutex::lock (2 samples, 0.04%)</title><rect x="1183.1" y="1761" width="0.5" height="15.0" fill="rgb(248,204,14)" rx="2" ry="2" />
<text text-anchor="" x="1186.12" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Node_iterator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;, false, true&gt;::operator* (3 samples, 0.07%)</title><rect x="997.6" y="1793" width="0.8" height="15.0" fill="rgb(208,185,31)" rx="2" ry="2" />
<text text-anchor="" x="1000.61" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::chrono::duration&lt;long, std::ratio&lt;1l, 1000l&gt; &gt;::duration&lt;int, void&gt; (4 samples, 0.09%)</title><rect x="816.1" y="1793" width="1.0" height="15.0" fill="rgb(205,190,47)" rx="2" ry="2" />
<text text-anchor="" x="819.07" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (56 samples, 1.26%)</title><rect x="711.8" y="1713" width="14.8" height="15.0" fill="rgb(206,89,6)" rx="2" ry="2" />
<text text-anchor="" x="714.81" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>evmap_io_active_ (6 samples, 0.13%)</title><rect x="1159.3" y="1873" width="1.6" height="15.0" fill="rgb(244,12,11)" rx="2" ry="2" />
<text text-anchor="" x="1162.30" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="190.7" y="113" width="0.3" height="15.0" fill="rgb(242,90,35)" rx="2" ry="2" />
<text text-anchor="" x="193.74" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (2 samples, 0.04%)</title><rect x="733.2" y="1745" width="0.6" height="15.0" fill="rgb(236,211,48)" rx="2" ry="2" />
<text text-anchor="" x="736.24" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (12 samples, 0.27%)</title><rect x="1179.2" y="1697" width="3.1" height="15.0" fill="rgb(245,142,32)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::DispatcherImpl::runPostCallbacks (19 samples, 0.43%)</title><rect x="20.1" y="1953" width="5.0" height="15.0" fill="rgb(230,161,49)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::function&lt;void (4 samples, 0.09%)</title><rect x="1167.2" y="1745" width="1.1" height="15.0" fill="rgb(241,164,29)" rx="2" ry="2" />
<text text-anchor="" x="1170.24" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (1 samples, 0.02%)</title><rect x="1151.9" y="1793" width="0.3" height="15.0" fill="rgb(227,103,40)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (4 samples, 0.09%)</title><rect x="982.5" y="1761" width="1.1" height="15.0" fill="rgb(214,221,5)" rx="2" ry="2" />
<text text-anchor="" x="985.53" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (4 samples, 0.09%)</title><rect x="887.3" y="1729" width="1.0" height="15.0" fill="rgb(231,25,46)" rx="2" ry="2" />
<text text-anchor="" x="890.26" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::DispatcherImpl::DispatcherImpl (73 samples, 1.64%)</title><rect x="1166.7" y="1809" width="19.3" height="15.0" fill="rgb(229,214,2)" rx="2" ry="2" />
<text text-anchor="" x="1169.71" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.02%)</title><rect x="739.1" y="1681" width="0.2" height="15.0" fill="rgb(217,15,42)" rx="2" ry="2" />
<text text-anchor="" x="742.06" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::construct&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (7 samples, 0.16%)</title><rect x="192.3" y="65" width="1.9" height="15.0" fill="rgb(214,110,25)" rx="2" ry="2" />
<text text-anchor="" x="195.33" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2 samples, 0.04%)</title><rect x="1124.6" y="1937" width="0.6" height="15.0" fill="rgb(225,2,5)" rx="2" ry="2" />
<text text-anchor="" x="1127.64" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (16 samples, 0.36%)</title><rect x="187.8" y="193" width="4.3" height="15.0" fill="rgb(246,158,22)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 0.58%)</title><rect x="187.8" y="993" width="6.9" height="15.0" fill="rgb(244,194,48)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (3 samples, 0.07%)</title><rect x="21.1" y="1841" width="0.8" height="15.0" fill="rgb(244,119,4)" rx="2" ry="2" />
<text text-anchor="" x="24.11" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::allocate (2 samples, 0.04%)</title><rect x="1097.6" y="1713" width="0.6" height="15.0" fill="rgb(209,10,47)" rx="2" ry="2" />
<text text-anchor="" x="1100.64" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::Stats::Counter, (1 samples, 0.02%)</title><rect x="1000.0" y="1777" width="0.3" height="15.0" fill="rgb(238,60,3)" rx="2" ry="2" />
<text text-anchor="" x="1002.99" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (2 samples, 0.04%)</title><rect x="175.4" y="1921" width="0.5" height="15.0" fill="rgb(206,98,41)" rx="2" ry="2" />
<text text-anchor="" x="178.40" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (7 samples, 0.16%)</title><rect x="192.3" y="97" width="1.9" height="15.0" fill="rgb(214,211,14)" rx="2" ry="2" />
<text text-anchor="" x="195.33" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_ts64 (1 samples, 0.02%)</title><rect x="1152.2" y="1953" width="0.2" height="15.0" fill="rgb(211,193,0)" rx="2" ry="2" />
<text text-anchor="" x="1155.16" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (9 samples, 0.20%)</title><rect x="1173.3" y="1745" width="2.4" height="15.0" fill="rgb(214,75,11)" rx="2" ry="2" />
<text text-anchor="" x="1176.33" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_rehash_aux (24 samples, 0.54%)</title><rect x="1041.8" y="1713" width="6.4" height="15.0" fill="rgb(227,99,25)" rx="2" ry="2" />
<text text-anchor="" x="1044.81" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="449" width="6.6" height="15.0" fill="rgb(234,69,39)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (2 samples, 0.04%)</title><rect x="894.7" y="1729" width="0.5" height="15.0" fill="rgb(242,153,19)" rx="2" ry="2" />
<text text-anchor="" x="897.67" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (1 samples, 0.02%)</title><rect x="1142.4" y="2017" width="0.2" height="15.0" fill="rgb(218,140,18)" rx="2" ry="2" />
<text text-anchor="" x="1145.37" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt;::allocate (1 samples, 0.02%)</title><rect x="1097.6" y="1697" width="0.3" height="15.0" fill="rgb(246,28,30)" rx="2" ry="2" />
<text text-anchor="" x="1100.64" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::unique_lock (43 samples, 0.96%)</title><rect x="694.1" y="1777" width="11.4" height="15.0" fill="rgb(220,45,17)" rx="2" ry="2" />
<text text-anchor="" x="697.08" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::~_Function_base (1 samples, 0.02%)</title><rect x="1186.8" y="1681" width="0.3" height="15.0" fill="rgb(250,154,5)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Function_base (1 samples, 0.02%)</title><rect x="631.1" y="1633" width="0.3" height="15.0" fill="rgb(226,187,45)" rx="2" ry="2" />
<text text-anchor="" x="634.09" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr&lt;Envoy::Event::Timer, std::default_delete&lt;Envoy::Event::Timer&gt; &gt;::operator (70 samples, 1.57%)</title><rect x="711.0" y="1777" width="18.5" height="15.0" fill="rgb(227,144,23)" rx="2" ry="2" />
<text text-anchor="" x="714.01" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator==&lt;char&gt; (5 samples, 0.11%)</title><rect x="1034.1" y="1665" width="1.4" height="15.0" fill="rgb(210,171,24)" rx="2" ry="2" />
<text text-anchor="" x="1037.13" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (3 samples, 0.07%)</title><rect x="847.8" y="1665" width="0.8" height="15.0" fill="rgb(242,141,21)" rx="2" ry="2" />
<text text-anchor="" x="850.83" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="769" width="6.6" height="15.0" fill="rgb(252,80,20)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (2 samples, 0.04%)</title><rect x="192.3" y="33" width="0.6" height="15.0" fill="rgb(250,150,32)" rx="2" ry="2" />
<text text-anchor="" x="195.33" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (13 samples, 0.29%)</title><rect x="1169.6" y="1697" width="3.5" height="15.0" fill="rgb(235,21,52)" rx="2" ry="2" />
<text text-anchor="" x="1172.62" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::_List_base&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::_M_get_node (3 samples, 0.07%)</title><rect x="1087.9" y="1745" width="0.7" height="15.0" fill="rgb(216,110,22)" rx="2" ry="2" />
<text text-anchor="" x="1090.85" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::_M_create_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; const&amp;&gt; (39 samples, 0.87%)</title><rect x="985.4" y="1761" width="10.4" height="15.0" fill="rgb(248,24,9)" rx="2" ry="2" />
<text text-anchor="" x="988.44" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (12 samples, 0.27%)</title><rect x="196.0" y="1969" width="3.2" height="15.0" fill="rgb(212,211,10)" rx="2" ry="2" />
<text text-anchor="" x="199.04" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (6 samples, 0.13%)</title><rect x="1112.5" y="1889" width="1.6" height="15.0" fill="rgb(230,216,18)" rx="2" ry="2" />
<text text-anchor="" x="1115.46" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.02%)</title><rect x="551.7" y="1521" width="0.3" height="15.0" fill="rgb(244,71,45)" rx="2" ry="2" />
<text text-anchor="" x="554.70" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Mod_range_hashing::operator (1 samples, 0.02%)</title><rect x="1095.8" y="1681" width="0.3" height="15.0" fill="rgb(212,113,48)" rx="2" ry="2" />
<text text-anchor="" x="1098.79" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="24.8" y="1793" width="0.3" height="15.0" fill="rgb(233,22,10)" rx="2" ry="2" />
<text text-anchor="" x="27.82" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::Stats::Counter, (10 samples, 0.22%)</title><rect x="986.0" y="1697" width="2.6" height="15.0" fill="rgb(224,197,36)" rx="2" ry="2" />
<text text-anchor="" x="988.97" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="980.4" y="1713" width="0.3" height="15.0" fill="rgb(207,181,0)" rx="2" ry="2" />
<text text-anchor="" x="983.41" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (2 samples, 0.04%)</title><rect x="321.2" y="1713" width="0.5" height="15.0" fill="rgb(217,202,8)" rx="2" ry="2" />
<text text-anchor="" x="324.21" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (2 samples, 0.04%)</title><rect x="108.4" y="1937" width="0.6" height="15.0" fill="rgb(212,225,26)" rx="2" ry="2" />
<text text-anchor="" x="111.44" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (39 samples, 0.87%)</title><rect x="1001.1" y="1745" width="10.3" height="15.0" fill="rgb(248,70,31)" rx="2" ry="2" />
<text text-anchor="" x="1004.05" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="739.1" y="1633" width="0.2" height="15.0" fill="rgb(238,141,24)" rx="2" ry="2" />
<text text-anchor="" x="742.06" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (1 samples, 0.02%)</title><rect x="1182.9" y="1761" width="0.2" height="15.0" fill="rgb(213,186,37)" rx="2" ry="2" />
<text text-anchor="" x="1185.85" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (11 samples, 0.25%)</title><rect x="551.7" y="1569" width="2.9" height="15.0" fill="rgb(228,74,9)" rx="2" ry="2" />
<text text-anchor="" x="554.70" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::set (6 samples, 0.13%)</title><rect x="730.6" y="1793" width="1.6" height="15.0" fill="rgb(244,186,13)" rx="2" ry="2" />
<text text-anchor="" x="733.60" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="20.3" y="1857" width="0.3" height="15.0" fill="rgb(219,199,46)" rx="2" ry="2" />
<text text-anchor="" x="23.32" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (3 samples, 0.07%)</title><rect x="744.9" y="1745" width="0.8" height="15.0" fill="rgb(250,139,17)" rx="2" ry="2" />
<text text-anchor="" x="747.89" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (2 samples, 0.04%)</title><rect x="439.2" y="1649" width="0.6" height="15.0" fill="rgb(208,51,23)" rx="2" ry="2" />
<text text-anchor="" x="442.24" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt;::deallocate (9 samples, 0.20%)</title><rect x="1079.1" y="1697" width="2.4" height="15.0" fill="rgb(254,37,37)" rx="2" ry="2" />
<text text-anchor="" x="1082.12" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>evthread_posix_unlock (3 samples, 0.07%)</title><rect x="610.7" y="1777" width="0.8" height="15.0" fill="rgb(207,1,13)" rx="2" ry="2" />
<text text-anchor="" x="613.72" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.02%)</title><rect x="211.1" y="1825" width="0.3" height="15.0" fill="rgb(211,54,16)" rx="2" ry="2" />
<text text-anchor="" x="214.12" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (3 samples, 0.07%)</title><rect x="1114.3" y="1857" width="0.8" height="15.0" fill="rgb(215,148,21)" rx="2" ry="2" />
<text text-anchor="" x="1117.31" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Function_base (2 samples, 0.04%)</title><rect x="866.9" y="1777" width="0.5" height="15.0" fill="rgb(207,164,45)" rx="2" ry="2" />
<text text-anchor="" x="869.88" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::chrono::duration&lt;long, std::ratio&lt;1l, 1000000l&gt; &gt;::count (3 samples, 0.07%)</title><rect x="239.7" y="1793" width="0.8" height="15.0" fill="rgb(243,90,21)" rx="2" ry="2" />
<text text-anchor="" x="242.70" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1 samples, 0.02%)</title><rect x="188.4" y="65" width="0.2" height="15.0" fill="rgb(211,100,10)" rx="2" ry="2" />
<text text-anchor="" x="191.36" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.02%)</title><rect x="711.5" y="1713" width="0.3" height="15.0" fill="rgb(219,68,40)" rx="2" ry="2" />
<text text-anchor="" x="714.54" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::clear (4 samples, 0.09%)</title><rect x="1100.6" y="1761" width="1.0" height="15.0" fill="rgb(240,83,20)" rx="2" ry="2" />
<text text-anchor="" x="1103.55" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="194.2" y="161" width="0.2" height="15.0" fill="rgb(219,168,10)" rx="2" ry="2" />
<text text-anchor="" x="197.18" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (11 samples, 0.25%)</title><rect x="568.6" y="1585" width="3.0" height="15.0" fill="rgb(222,93,53)" rx="2" ry="2" />
<text text-anchor="" x="571.64" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add (3 samples, 0.07%)</title><rect x="1108.8" y="1649" width="0.8" height="15.0" fill="rgb(239,220,4)" rx="2" ry="2" />
<text text-anchor="" x="1111.76" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (75 samples, 1.68%)</title><rect x="175.9" y="2001" width="19.9" height="15.0" fill="rgb(248,85,50)" rx="2" ry="2" />
<text text-anchor="" x="178.93" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt;::operator= (13 samples, 0.29%)</title><rect x="1175.7" y="1713" width="3.5" height="15.0" fill="rgb(224,74,46)" rx="2" ry="2" />
<text text-anchor="" x="1178.71" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocate_shared&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; (38 samples, 0.85%)</title><rect x="839.4" y="1729" width="10.0" height="15.0" fill="rgb(226,67,39)" rx="2" ry="2" />
<text text-anchor="" x="842.36" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="24.0" y="1681" width="0.3" height="15.0" fill="rgb(232,46,14)" rx="2" ry="2" />
<text text-anchor="" x="27.03" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (1 samples, 0.02%)</title><rect x="211.1" y="1793" width="0.3" height="15.0" fill="rgb(241,219,19)" rx="2" ry="2" />
<text text-anchor="" x="214.12" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="190.7" y="97" width="0.3" height="15.0" fill="rgb(250,123,25)" rx="2" ry="2" />
<text text-anchor="" x="193.74" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (50 samples, 1.12%)</title><rect x="597.5" y="1745" width="13.2" height="15.0" fill="rgb(244,145,3)" rx="2" ry="2" />
<text text-anchor="" x="600.49" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::get&lt;0ul, Envoy::Event::Timer*, std::default_delete&lt;Envoy::Event::Timer&gt; &gt; (1 samples, 0.02%)</title><rect x="726.9" y="1761" width="0.3" height="15.0" fill="rgb(243,147,48)" rx="2" ry="2" />
<text text-anchor="" x="729.89" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (2 samples, 0.04%)</title><rect x="175.4" y="1937" width="0.5" height="15.0" fill="rgb(246,164,22)" rx="2" ry="2" />
<text text-anchor="" x="178.40" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (1 samples, 0.02%)</title><rect x="187.6" y="1793" width="0.2" height="15.0" fill="rgb(244,167,26)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (28 samples, 0.63%)</title><rect x="590.1" y="1761" width="7.4" height="15.0" fill="rgb(210,165,5)" rx="2" ry="2" />
<text text-anchor="" x="593.08" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="1125.7" y="1921" width="0.3" height="15.0" fill="rgb(247,62,29)" rx="2" ry="2" />
<text text-anchor="" x="1128.69" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (4 samples, 0.09%)</title><rect x="1096.3" y="1681" width="1.1" height="15.0" fill="rgb(252,97,7)" rx="2" ry="2" />
<text text-anchor="" x="1099.32" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access (1 samples, 0.02%)</title><rect x="1186.0" y="1777" width="0.3" height="15.0" fill="rgb(228,9,43)" rx="2" ry="2" />
<text text-anchor="" x="1189.03" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (83 samples, 1.86%)</title><rect x="894.7" y="1745" width="21.9" height="15.0" fill="rgb(212,131,2)" rx="2" ry="2" />
<text text-anchor="" x="897.67" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::forward&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; (1 samples, 0.02%)</title><rect x="1069.3" y="1729" width="0.3" height="15.0" fill="rgb(205,87,29)" rx="2" ry="2" />
<text text-anchor="" x="1072.33" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (1 samples, 0.02%)</title><rect x="188.4" y="81" width="0.2" height="15.0" fill="rgb(219,31,10)" rx="2" ry="2" />
<text text-anchor="" x="191.36" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_handler&lt;void (3 samples, 0.07%)</title><rect x="1186.3" y="1825" width="0.8" height="15.0" fill="rgb(209,158,28)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (34 samples, 0.76%)</title><rect x="1142.6" y="2001" width="9.0" height="15.0" fill="rgb(242,53,34)" rx="2" ry="2" />
<text text-anchor="" x="1145.63" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="918.5" y="1761" width="0.3" height="15.0" fill="rgb(228,224,2)" rx="2" ry="2" />
<text text-anchor="" x="921.49" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (6 samples, 0.13%)</title><rect x="1112.5" y="1857" width="1.6" height="15.0" fill="rgb(243,84,11)" rx="2" ry="2" />
<text text-anchor="" x="1115.46" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::mutex::unlock (1 samples, 0.02%)</title><rect x="1185.0" y="1745" width="0.2" height="15.0" fill="rgb(208,227,15)" rx="2" ry="2" />
<text text-anchor="" x="1187.97" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Maybe_unary_or_binary_function&lt;void&gt;::_Maybe_unary_or_binary_function (1 samples, 0.02%)</title><rect x="625.0" y="1697" width="0.3" height="15.0" fill="rgb(229,211,46)" rx="2" ry="2" />
<text text-anchor="" x="628.01" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (84 samples, 1.88%)</title><rect x="894.4" y="1761" width="22.2" height="15.0" fill="rgb(240,213,16)" rx="2" ry="2" />
<text text-anchor="" x="897.40" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_extract (1 samples, 0.02%)</title><rect x="1030.4" y="1713" width="0.3" height="15.0" fill="rgb(228,4,2)" rx="2" ry="2" />
<text text-anchor="" x="1033.43" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;::~pair (20 samples, 0.45%)</title><rect x="1011.4" y="1793" width="5.3" height="15.0" fill="rgb(243,98,9)" rx="2" ry="2" />
<text text-anchor="" x="1014.37" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="203.7" y="1969" width="0.3" height="15.0" fill="rgb(250,0,15)" rx="2" ry="2" />
<text text-anchor="" x="206.71" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (58 samples, 1.30%)</title><rect x="711.3" y="1729" width="15.3" height="15.0" fill="rgb(215,82,8)" rx="2" ry="2" />
<text text-anchor="" x="714.28" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::reference_wrapper&lt;Envoy::Event::Dispatcher&gt;::operator Envoy::Event::Dispatcher&amp; (5 samples, 0.11%)</title><rect x="889.1" y="1793" width="1.3" height="15.0" fill="rgb(241,217,44)" rx="2" ry="2" />
<text text-anchor="" x="892.11" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (19 samples, 0.43%)</title><rect x="14.8" y="2033" width="5.0" height="15.0" fill="rgb(233,14,9)" rx="2" ry="2" />
<text text-anchor="" x="17.76" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (6 samples, 0.13%)</title><rect x="22.7" y="1889" width="1.6" height="15.0" fill="rgb(236,41,32)" rx="2" ry="2" />
<text text-anchor="" x="25.70" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::_List_base&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::_M_clear (3 samples, 0.07%)</title><rect x="1108.8" y="1777" width="0.8" height="15.0" fill="rgb(247,22,46)" rx="2" ry="2" />
<text text-anchor="" x="1111.76" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (7 samples, 0.16%)</title><rect x="36.2" y="1937" width="1.9" height="15.0" fill="rgb(212,182,26)" rx="2" ry="2" />
<text text-anchor="" x="39.20" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (14 samples, 0.31%)</title><rect x="501.4" y="1585" width="3.7" height="15.0" fill="rgb(233,215,4)" rx="2" ry="2" />
<text text-anchor="" x="504.42" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.02%)</title><rect x="474.7" y="1585" width="0.3" height="15.0" fill="rgb(223,94,33)" rx="2" ry="2" />
<text text-anchor="" x="477.70" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add_dispatch (10 samples, 0.22%)</title><rect x="1104.8" y="1665" width="2.6" height="15.0" fill="rgb(217,29,6)" rx="2" ry="2" />
<text text-anchor="" x="1107.79" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_handler&lt;void (34 samples, 0.76%)</title><rect x="1142.6" y="2017" width="9.0" height="15.0" fill="rgb(223,9,18)" rx="2" ry="2" />
<text text-anchor="" x="1145.63" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::allocate (20 samples, 0.45%)</title><rect x="1058.7" y="1713" width="5.3" height="15.0" fill="rgb(212,206,38)" rx="2" ry="2" />
<text text-anchor="" x="1061.74" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="191.0" y="113" width="0.3" height="15.0" fill="rgb(224,52,49)" rx="2" ry="2" />
<text text-anchor="" x="194.01" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::enableTimer (1 samples, 0.02%)</title><rect x="212.2" y="1809" width="0.2" height="15.0" fill="rgb(212,106,13)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xen_clocksource_get_cycles (1 samples, 0.02%)</title><rect x="190.2" y="65" width="0.3" height="15.0" fill="rgb(205,114,20)" rx="2" ry="2" />
<text text-anchor="" x="193.22" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (32 samples, 0.72%)</title><rect x="840.7" y="1681" width="8.5" height="15.0" fill="rgb(242,144,3)" rx="2" ry="2" />
<text text-anchor="" x="843.68" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::_M_valptr (1 samples, 0.02%)</title><rect x="1089.7" y="1761" width="0.3" height="15.0" fill="rgb(216,178,4)" rx="2" ry="2" />
<text text-anchor="" x="1092.70" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__aligned_buffer&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::_M_addr (1 samples, 0.02%)</title><rect x="998.1" y="1729" width="0.3" height="15.0" fill="rgb(211,179,49)" rx="2" ry="2" />
<text text-anchor="" x="1001.14" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (7 samples, 0.16%)</title><rect x="192.3" y="145" width="1.9" height="15.0" fill="rgb(214,182,5)" rx="2" ry="2" />
<text text-anchor="" x="195.33" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (187 samples, 4.19%)</title><rect x="625.8" y="1681" width="49.5" height="15.0" fill="rgb(226,110,26)" rx="2" ry="2" />
<text text-anchor="" x="628.80" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (1 samples, 0.02%)</title><rect x="1167.2" y="1697" width="0.3" height="15.0" fill="rgb(227,207,53)" rx="2" ry="2" />
<text text-anchor="" x="1170.24" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (230 samples, 5.16%)</title><rect x="378.9" y="1729" width="60.9" height="15.0" fill="rgb(233,14,37)" rx="2" ry="2" />
<text text-anchor="" x="381.90" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libpt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (248 samples, 5.56%)</title><rect x="110.3" y="2001" width="65.6" height="15.0" fill="rgb(228,68,48)" rx="2" ry="2" />
<text text-anchor="" x="113.30" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libpth..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.09%)</title><rect x="23.2" y="1793" width="1.1" height="15.0" fill="rgb(220,73,40)" rx="2" ry="2" />
<text text-anchor="" x="26.23" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (1 samples, 0.02%)</title><rect x="1116.2" y="2017" width="0.2" height="15.0" fill="rgb(224,34,18)" rx="2" ry="2" />
<text text-anchor="" x="1119.17" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (62 samples, 1.39%)</title><rect x="1126.0" y="1921" width="16.4" height="15.0" fill="rgb(249,158,15)" rx="2" ry="2" />
<text text-anchor="" x="1128.96" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (8 samples, 0.18%)</title><rect x="1163.3" y="1873" width="2.1" height="15.0" fill="rgb(241,188,32)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::TlsCachingDateProviderImpl (2,767 samples, 62.05%)</title><rect x="217.7" y="1841" width="732.3" height="15.0" fill="rgb(244,208,0)" rx="2" ry="2" />
<text text-anchor="" x="220.74" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Envoy::Http::TlsCachingDateProviderImpl::TlsCachingDateProviderImpl</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (210 samples, 4.71%)</title><rect x="742.8" y="1793" width="55.5" height="15.0" fill="rgb(215,25,46)" rx="2" ry="2" />
<text text-anchor="" x="745.77" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="20.3" y="1809" width="0.3" height="15.0" fill="rgb(207,16,43)" rx="2" ry="2" />
<text text-anchor="" x="23.32" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (64 samples, 1.44%)</title><rect x="1125.4" y="1937" width="17.0" height="15.0" fill="rgb(243,28,52)" rx="2" ry="2" />
<text text-anchor="" x="1128.43" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.02%)</title><rect x="1186.8" y="1617" width="0.3" height="15.0" fill="rgb(248,41,31)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="194.4" y="833" width="0.3" height="15.0" fill="rgb(206,65,14)" rx="2" ry="2" />
<text text-anchor="" x="197.45" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (3 samples, 0.07%)</title><rect x="214.6" y="1809" width="0.8" height="15.0" fill="rgb(209,210,52)" rx="2" ry="2" />
<text text-anchor="" x="217.56" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__atomic_add_dispatch (6 samples, 0.13%)</title><rect x="987.0" y="1649" width="1.6" height="15.0" fill="rgb(237,121,21)" rx="2" ry="2" />
<text text-anchor="" x="990.03" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_node&lt;std::function&lt;void (4 samples, 0.09%)</title><rect x="1167.2" y="1729" width="1.1" height="15.0" fill="rgb(243,229,52)" rx="2" ry="2" />
<text text-anchor="" x="1170.24" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (2 samples, 0.04%)</title><rect x="471.3" y="1617" width="0.5" height="15.0" fill="rgb(208,52,36)" rx="2" ry="2" />
<text text-anchor="" x="474.26" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="1172.0" y="1601" width="0.3" height="15.0" fill="rgb(229,112,17)" rx="2" ry="2" />
<text text-anchor="" x="1175.00" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (108 samples, 2.42%)</title><rect x="441.6" y="1633" width="28.6" height="15.0" fill="rgb(244,117,19)" rx="2" ry="2" />
<text text-anchor="" x="444.62" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ev..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="1151.6" y="1857" width="0.3" height="15.0" fill="rgb(212,229,32)" rx="2" ry="2" />
<text text-anchor="" x="1154.63" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (1 samples, 0.02%)</title><rect x="1087.3" y="1777" width="0.3" height="15.0" fill="rgb(211,66,43)" rx="2" ry="2" />
<text text-anchor="" x="1090.32" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt; &gt;::construct&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (1 samples, 0.02%)</title><rect x="1180.2" y="1585" width="0.3" height="15.0" fill="rgb(218,118,45)" rx="2" ry="2" />
<text text-anchor="" x="1183.21" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::~unique_lock (4 samples, 0.09%)</title><rect x="892.0" y="1793" width="1.1" height="15.0" fill="rgb(245,127,17)" rx="2" ry="2" />
<text text-anchor="" x="895.02" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.02%)</title><rect x="384.7" y="1649" width="0.3" height="15.0" fill="rgb(240,4,23)" rx="2" ry="2" />
<text text-anchor="" x="387.72" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (28 samples, 0.63%)</title><rect x="875.9" y="1649" width="7.4" height="15.0" fill="rgb(236,99,0)" rx="2" ry="2" />
<text text-anchor="" x="878.88" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (1 samples, 0.02%)</title><rect x="190.5" y="49" width="0.2" height="15.0" fill="rgb(214,33,40)" rx="2" ry="2" />
<text text-anchor="" x="193.48" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="204.0" y="1873" width="0.2" height="15.0" fill="rgb(221,90,30)" rx="2" ry="2" />
<text text-anchor="" x="206.98" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 0.58%)</title><rect x="187.8" y="881" width="6.9" height="15.0" fill="rgb(230,82,28)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (226 samples, 5.07%)</title><rect x="115.3" y="1937" width="59.8" height="15.0" fill="rgb(233,80,44)" rx="2" ry="2" />
<text text-anchor="" x="118.32" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__vfs_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="291.3" y="1697" width="0.3" height="15.0" fill="rgb(247,76,30)" rx="2" ry="2" />
<text text-anchor="" x="294.31" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (84 samples, 1.88%)</title><rect x="894.4" y="1777" width="22.2" height="15.0" fill="rgb(250,186,32)" rx="2" ry="2" />
<text text-anchor="" x="897.40" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list (1 samples, 0.02%)</title><rect x="21.9" y="1841" width="0.3" height="15.0" fill="rgb(223,23,53)" rx="2" ry="2" />
<text text-anchor="" x="24.91" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.02%)</title><rect x="1151.9" y="1841" width="0.3" height="15.0" fill="rgb(219,141,28)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (14 samples, 0.31%)</title><rect x="471.3" y="1633" width="3.7" height="15.0" fill="rgb(231,189,40)" rx="2" ry="2" />
<text text-anchor="" x="474.26" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.02%)</title><rect x="470.2" y="1617" width="0.3" height="15.0" fill="rgb(250,182,22)" rx="2" ry="2" />
<text text-anchor="" x="473.20" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1617" width="7.2" height="15.0" fill="rgb(219,2,19)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="369" width="6.6" height="15.0" fill="rgb(231,19,50)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Server::InstanceImpl::flushStats (612 samples, 13.73%)</title><rect x="950.0" y="1825" width="161.9" height="15.0" fill="rgb(249,185,14)" rx="2" ry="2" />
<text text-anchor="" x="952.98" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Envoy::Server::Insta..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.02%)</title><rect x="1052.1" y="1681" width="0.3" height="15.0" fill="rgb(233,95,10)" rx="2" ry="2" />
<text text-anchor="" x="1055.13" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (41 samples, 0.92%)</title><rect x="798.3" y="1761" width="10.9" height="15.0" fill="rgb(233,188,7)" rx="2" ry="2" />
<text text-anchor="" x="801.34" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_ebo_helper&lt;2, std::__detail::_Mod_range_hashing, true&gt;::_S_cget (1 samples, 0.02%)</title><rect x="1041.5" y="1681" width="0.3" height="15.0" fill="rgb(240,34,36)" rx="2" ry="2" />
<text text-anchor="" x="1044.54" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (7 samples, 0.16%)</title><rect x="1173.9" y="1665" width="1.8" height="15.0" fill="rgb(224,209,31)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.02%)</title><rect x="35.4" y="1937" width="0.3" height="15.0" fill="rgb(241,58,26)" rx="2" ry="2" />
<text text-anchor="" x="38.40" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::function&lt;void (1 samples, 0.02%)</title><rect x="1167.0" y="1761" width="0.2" height="15.0" fill="rgb(238,172,40)" rx="2" ry="2" />
<text text-anchor="" x="1169.98" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (1 samples, 0.02%)</title><rect x="1186.8" y="1729" width="0.3" height="15.0" fill="rgb(250,98,21)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt;::_M_next (1 samples, 0.02%)</title><rect x="1030.7" y="1713" width="0.3" height="15.0" fill="rgb(222,193,22)" rx="2" ry="2" />
<text text-anchor="" x="1033.69" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (2 samples, 0.04%)</title><rect x="1152.2" y="2017" width="0.5" height="15.0" fill="rgb(215,69,7)" rx="2" ry="2" />
<text text-anchor="" x="1155.16" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (10 samples, 0.22%)</title><rect x="824.0" y="1745" width="2.7" height="15.0" fill="rgb(213,131,35)" rx="2" ry="2" />
<text text-anchor="" x="827.01" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="203.7" y="1953" width="0.3" height="15.0" fill="rgb(225,75,11)" rx="2" ry="2" />
<text text-anchor="" x="206.71" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (209 samples, 4.69%)</title><rect x="742.8" y="1777" width="55.3" height="15.0" fill="rgb(215,6,53)" rx="2" ry="2" />
<text text-anchor="" x="745.77" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >entry..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="110.3" y="1937" width="0.3" height="15.0" fill="rgb(241,34,22)" rx="2" ry="2" />
<text text-anchor="" x="113.30" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::Stats::Gauge&gt;::~shared_ptr (3 samples, 0.07%)</title><rect x="1108.8" y="1729" width="0.8" height="15.0" fill="rgb(235,2,30)" rx="2" ry="2" />
<text text-anchor="" x="1111.76" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (1 samples, 0.02%)</title><rect x="887.0" y="1729" width="0.3" height="15.0" fill="rgb(208,13,29)" rx="2" ry="2" />
<text text-anchor="" x="889.99" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="188.4" y="113" width="0.2" height="15.0" fill="rgb(209,202,10)" rx="2" ry="2" />
<text text-anchor="" x="191.36" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::_M_valptr (1 samples, 0.02%)</title><rect x="1090.0" y="1777" width="0.2" height="15.0" fill="rgb(254,90,37)" rx="2" ry="2" />
<text text-anchor="" x="1092.97" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="25.1" y="1921" width="0.2" height="15.0" fill="rgb(214,34,25)" rx="2" ry="2" />
<text text-anchor="" x="28.08" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_bucket_index (2 samples, 0.04%)</title><rect x="1021.2" y="1729" width="0.5" height="15.0" fill="rgb(228,168,36)" rx="2" ry="2" />
<text text-anchor="" x="1024.16" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="739.9" y="1681" width="0.2" height="15.0" fill="rgb(205,22,42)" rx="2" ry="2" />
<text text-anchor="" x="742.86" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (15 samples, 0.34%)</title><rect x="471.0" y="1665" width="4.0" height="15.0" fill="rgb(245,38,30)" rx="2" ry="2" />
<text text-anchor="" x="473.99" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr&lt;Envoy::Event::Timer, std::default_delete&lt;Envoy::Event::Timer&gt; &gt;::operator (1 samples, 0.02%)</title><rect x="949.7" y="1825" width="0.3" height="15.0" fill="rgb(245,33,44)" rx="2" ry="2" />
<text text-anchor="" x="952.71" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (2 samples, 0.04%)</title><rect x="21.9" y="1905" width="0.5" height="15.0" fill="rgb(238,72,32)" rx="2" ry="2" />
<text text-anchor="" x="24.91" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (4 samples, 0.09%)</title><rect x="923.8" y="1777" width="1.0" height="15.0" fill="rgb(214,63,11)" rx="2" ry="2" />
<text text-anchor="" x="926.78" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (1 samples, 0.02%)</title><rect x="1101.6" y="1793" width="0.3" height="15.0" fill="rgb(223,212,3)" rx="2" ry="2" />
<text text-anchor="" x="1104.61" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="1164.3" y="1761" width="0.3" height="15.0" fill="rgb(246,26,13)" rx="2" ry="2" />
<text text-anchor="" x="1167.33" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (392 samples, 8.79%)</title><rect x="471.0" y="1697" width="103.7" height="15.0" fill="rgb(230,218,30)" rx="2" ry="2" />
<text text-anchor="" x="473.99" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::functio..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.04%)</title><rect x="22.7" y="1841" width="0.5" height="15.0" fill="rgb(210,164,16)" rx="2" ry="2" />
<text text-anchor="" x="25.70" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="194.2" y="193" width="0.2" height="15.0" fill="rgb(233,159,54)" rx="2" ry="2" />
<text text-anchor="" x="197.18" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1178.4" y="1633" width="0.2" height="15.0" fill="rgb(240,41,10)" rx="2" ry="2" />
<text text-anchor="" x="1181.36" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (4 samples, 0.09%)</title><rect x="980.7" y="1777" width="1.0" height="15.0" fill="rgb(242,48,38)" rx="2" ry="2" />
<text text-anchor="" x="983.68" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>retint_user (1 samples, 0.02%)</title><rect x="1172.3" y="1633" width="0.2" height="15.0" fill="rgb(212,104,48)" rx="2" ry="2" />
<text text-anchor="" x="1175.27" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_bucket_index (1 samples, 0.02%)</title><rect x="1095.3" y="1697" width="0.2" height="15.0" fill="rgb(252,170,53)" rx="2" ry="2" />
<text text-anchor="" x="1098.26" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2 samples, 0.04%)</title><rect x="195.2" y="1905" width="0.6" height="15.0" fill="rgb(240,54,14)" rx="2" ry="2" />
<text text-anchor="" x="198.24" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::unlock (1 samples, 0.02%)</title><rect x="1184.7" y="1777" width="0.3" height="15.0" fill="rgb(244,55,5)" rx="2" ry="2" />
<text text-anchor="" x="1187.71" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (64 samples, 1.44%)</title><rect x="551.7" y="1585" width="16.9" height="15.0" fill="rgb(210,54,44)" rx="2" ry="2" />
<text text-anchor="" x="554.70" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 0.58%)</title><rect x="187.8" y="929" width="6.9" height="15.0" fill="rgb(221,50,51)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (194 samples, 4.35%)</title><rect x="745.9" y="1729" width="51.4" height="15.0" fill="rgb(237,162,24)" rx="2" ry="2" />
<text text-anchor="" x="748.95" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__vfs..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt;::shared_ptr&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, void&gt; (2 samples, 0.04%)</title><rect x="1181.8" y="1681" width="0.5" height="15.0" fill="rgb(246,13,43)" rx="2" ry="2" />
<text text-anchor="" x="1184.80" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (3 samples, 0.07%)</title><rect x="114.5" y="1937" width="0.8" height="15.0" fill="rgb(205,217,26)" rx="2" ry="2" />
<text text-anchor="" x="117.53" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (1 samples, 0.02%)</title><rect x="187.6" y="1761" width="0.2" height="15.0" fill="rgb(222,70,38)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="20.6" y="1857" width="0.2" height="15.0" fill="rgb(240,101,8)" rx="2" ry="2" />
<text text-anchor="" x="23.59" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (1 samples, 0.02%)</title><rect x="1124.6" y="1921" width="0.3" height="15.0" fill="rgb(247,131,30)" rx="2" ry="2" />
<text text-anchor="" x="1127.64" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (47 samples, 1.05%)</title><rect x="556.2" y="1473" width="12.4" height="15.0" fill="rgb(216,198,0)" rx="2" ry="2" />
<text text-anchor="" x="559.20" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1393" width="7.2" height="15.0" fill="rgb(220,106,23)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__is_null_pointer&lt;char const&gt; (3 samples, 0.07%)</title><rect x="11.3" y="1985" width="0.8" height="15.0" fill="rgb(248,41,54)" rx="2" ry="2" />
<text text-anchor="" x="14.32" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="194.4" y="785" width="0.3" height="15.0" fill="rgb(210,68,21)" rx="2" ry="2" />
<text text-anchor="" x="197.45" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (34 samples, 0.76%)</title><rect x="1142.6" y="1969" width="9.0" height="15.0" fill="rgb(206,10,31)" rx="2" ry="2" />
<text text-anchor="" x="1145.63" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1121" width="7.2" height="15.0" fill="rgb(253,126,21)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="212.2" y="1713" width="0.2" height="15.0" fill="rgb(248,48,37)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;::~pair (1 samples, 0.02%)</title><rect x="1111.7" y="1809" width="0.2" height="15.0" fill="rgb(213,65,22)" rx="2" ry="2" />
<text text-anchor="" x="1114.67" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (7 samples, 0.16%)</title><rect x="986.8" y="1665" width="1.8" height="15.0" fill="rgb(222,187,24)" rx="2" ry="2" />
<text text-anchor="" x="989.76" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (140 samples, 3.14%)</title><rect x="253.7" y="1681" width="37.1" height="15.0" fill="rgb(210,112,5)" rx="2" ry="2" />
<text text-anchor="" x="256.73" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >eve..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_create (1 samples, 0.02%)</title><rect x="984.1" y="1777" width="0.3" height="15.0" fill="rgb(206,162,38)" rx="2" ry="2" />
<text text-anchor="" x="987.12" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (4 samples, 0.09%)</title><rect x="500.1" y="1553" width="1.1" height="15.0" fill="rgb(236,196,11)" rx="2" ry="2" />
<text text-anchor="" x="503.10" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="182.8" y="1889" width="0.3" height="15.0" fill="rgb(251,213,29)" rx="2" ry="2" />
<text text-anchor="" x="185.81" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__atomic_add (32 samples, 0.72%)</title><rect x="1002.6" y="1697" width="8.5" height="15.0" fill="rgb(215,188,19)" rx="2" ry="2" />
<text text-anchor="" x="1005.64" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (1 samples, 0.02%)</title><rect x="650.9" y="1569" width="0.3" height="15.0" fill="rgb(215,137,14)" rx="2" ry="2" />
<text text-anchor="" x="653.94" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (50 samples, 1.12%)</title><rect x="597.5" y="1761" width="13.2" height="15.0" fill="rgb(228,44,24)" rx="2" ry="2" />
<text text-anchor="" x="600.49" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (10 samples, 0.22%)</title><rect x="1176.5" y="1665" width="2.7" height="15.0" fill="rgb(248,34,47)" rx="2" ry="2" />
<text text-anchor="" x="1179.50" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1105" width="7.2" height="15.0" fill="rgb(217,210,27)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (13 samples, 0.29%)</title><rect x="199.5" y="1905" width="3.4" height="15.0" fill="rgb(227,24,49)" rx="2" ry="2" />
<text text-anchor="" x="202.48" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (3 samples, 0.07%)</title><rect x="23.5" y="1697" width="0.8" height="15.0" fill="rgb(219,31,15)" rx="2" ry="2" />
<text text-anchor="" x="26.50" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;::operator* (1 samples, 0.02%)</title><rect x="1102.1" y="1809" width="0.3" height="15.0" fill="rgb(230,59,20)" rx="2" ry="2" />
<text text-anchor="" x="1105.14" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access (1 samples, 0.02%)</title><rect x="924.3" y="1729" width="0.3" height="15.0" fill="rgb(250,181,15)" rx="2" ry="2" />
<text text-anchor="" x="927.31" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="385" width="6.6" height="15.0" fill="rgb(212,103,51)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_data (2 samples, 0.04%)</title><rect x="834.9" y="1729" width="0.5" height="15.0" fill="rgb(211,105,27)" rx="2" ry="2" />
<text text-anchor="" x="837.86" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_mutex_unlock (1 samples, 0.02%)</title><rect x="707.3" y="1745" width="0.3" height="15.0" fill="rgb(251,8,35)" rx="2" ry="2" />
<text text-anchor="" x="710.31" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::Stats::Counter&gt;::~shared_ptr (14 samples, 0.31%)</title><rect x="1011.6" y="1777" width="3.7" height="15.0" fill="rgb(235,6,20)" rx="2" ry="2" />
<text text-anchor="" x="1014.64" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::ThreadCache::ListTooLong (4 samples, 0.09%)</title><rect x="1174.7" y="1617" width="1.0" height="15.0" fill="rgb(253,122,47)" rx="2" ry="2" />
<text text-anchor="" x="1177.65" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.02%)</title><rect x="1186.6" y="1729" width="0.2" height="15.0" fill="rgb(240,14,24)" rx="2" ry="2" />
<text text-anchor="" x="1189.56" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="1152.7" y="2033" width="0.3" height="15.0" fill="rgb(244,146,43)" rx="2" ry="2" />
<text text-anchor="" x="1155.69" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="1151.6" y="1841" width="0.3" height="15.0" fill="rgb(251,113,8)" rx="2" ry="2" />
<text text-anchor="" x="1154.63" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::forward&lt;bool&gt; (2 samples, 0.04%)</title><rect x="1069.9" y="1729" width="0.5" height="15.0" fill="rgb(240,108,54)" rx="2" ry="2" />
<text text-anchor="" x="1072.86" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="22.4" y="1873" width="0.3" height="15.0" fill="rgb(218,190,50)" rx="2" ry="2" />
<text text-anchor="" x="25.44" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (212 samples, 4.75%)</title><rect x="512.5" y="1601" width="56.1" height="15.0" fill="rgb(234,15,43)" rx="2" ry="2" />
<text text-anchor="" x="515.54" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::~_Function_base (3 samples, 0.07%)</title><rect x="731.4" y="1761" width="0.8" height="15.0" fill="rgb(236,138,31)" rx="2" ry="2" />
<text text-anchor="" x="734.39" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate::ThreadLocalCachedDate (7 samples, 0.16%)</title><rect x="192.3" y="49" width="1.9" height="15.0" fill="rgb(217,182,26)" rx="2" ry="2" />
<text text-anchor="" x="195.33" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (144 samples, 3.23%)</title><rect x="252.9" y="1713" width="38.1" height="15.0" fill="rgb(254,37,8)" rx="2" ry="2" />
<text text-anchor="" x="255.93" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vfs..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_M_empty (1 samples, 0.02%)</title><rect x="1182.9" y="1745" width="0.2" height="15.0" fill="rgb(252,14,26)" rx="2" ry="2" />
<text text-anchor="" x="1185.85" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::chrono::duration&lt;long, std::ratio&lt;1l, 1000l&gt; &gt;::count (1 samples, 0.02%)</title><rect x="920.1" y="1809" width="0.2" height="15.0" fill="rgb(235,84,22)" rx="2" ry="2" />
<text text-anchor="" x="923.07" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_handler&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (12 samples, 0.27%)</title><rect x="1179.2" y="1713" width="3.1" height="15.0" fill="rgb(247,71,53)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (11 samples, 0.25%)</title><rect x="571.8" y="1585" width="2.9" height="15.0" fill="rgb(208,211,23)" rx="2" ry="2" />
<text text-anchor="" x="574.82" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::_List_base&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::~_List_base (3 samples, 0.07%)</title><rect x="1108.8" y="1793" width="0.8" height="15.0" fill="rgb(241,224,28)" rx="2" ry="2" />
<text text-anchor="" x="1111.76" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.04%)</title><rect x="21.9" y="1889" width="0.5" height="15.0" fill="rgb(226,44,5)" rx="2" ry="2" />
<text text-anchor="" x="24.91" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (17 samples, 0.38%)</title><rect x="183.1" y="1889" width="4.5" height="15.0" fill="rgb(220,199,17)" rx="2" ry="2" />
<text text-anchor="" x="186.07" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access (1 samples, 0.02%)</title><rect x="923.2" y="1761" width="0.3" height="15.0" fill="rgb(220,146,39)" rx="2" ry="2" />
<text text-anchor="" x="926.25" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remove_migration_pte (1 samples, 0.02%)</title><rect x="1172.0" y="1521" width="0.3" height="15.0" fill="rgb(233,75,11)" rx="2" ry="2" />
<text text-anchor="" x="1175.00" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (40 samples, 0.90%)</title><rect x="798.6" y="1729" width="10.6" height="15.0" fill="rgb(246,169,45)" rx="2" ry="2" />
<text text-anchor="" x="801.61" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="188.9" y="97" width="0.5" height="15.0" fill="rgb(251,157,22)" rx="2" ry="2" />
<text text-anchor="" x="191.89" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (7 samples, 0.16%)</title><rect x="36.2" y="1953" width="1.9" height="15.0" fill="rgb(218,78,25)" rx="2" ry="2" />
<text text-anchor="" x="39.20" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (2 samples, 0.04%)</title><rect x="108.4" y="1905" width="0.6" height="15.0" fill="rgb(236,90,44)" rx="2" ry="2" />
<text text-anchor="" x="111.44" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.02%)</title><rect x="1186.6" y="1649" width="0.2" height="15.0" fill="rgb(212,192,39)" rx="2" ry="2" />
<text text-anchor="" x="1189.56" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_estimate_accuracy (1 samples, 0.02%)</title><rect x="189.7" y="65" width="0.3" height="15.0" fill="rgb(233,205,4)" rx="2" ry="2" />
<text text-anchor="" x="192.69" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_eq (2 samples, 0.04%)</title><rect x="1036.0" y="1697" width="0.5" height="15.0" fill="rgb(219,142,44)" rx="2" ry="2" />
<text text-anchor="" x="1038.98" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap&lt;std::_Any_data&gt; (5 samples, 0.11%)</title><rect x="862.9" y="1697" width="1.3" height="15.0" fill="rgb(210,69,4)" rx="2" ry="2" />
<text text-anchor="" x="865.91" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (3 samples, 0.07%)</title><rect x="322.0" y="1697" width="0.8" height="15.0" fill="rgb(206,38,41)" rx="2" ry="2" />
<text text-anchor="" x="325.00" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="465" width="6.6" height="15.0" fill="rgb(253,17,51)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (5 samples, 0.11%)</title><rect x="1015.3" y="1777" width="1.4" height="15.0" fill="rgb(248,42,14)" rx="2" ry="2" />
<text text-anchor="" x="1018.34" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (75 samples, 1.68%)</title><rect x="929.1" y="1793" width="19.8" height="15.0" fill="rgb(247,67,0)" rx="2" ry="2" />
<text text-anchor="" x="932.07" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (3 samples, 0.07%)</title><rect x="744.1" y="1729" width="0.8" height="15.0" fill="rgb(254,39,12)" rx="2" ry="2" />
<text text-anchor="" x="747.09" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (1 samples, 0.02%)</title><rect x="23.0" y="1761" width="0.2" height="15.0" fill="rgb(226,43,16)" rx="2" ry="2" />
<text text-anchor="" x="25.97" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::_M_allocate_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; (56 samples, 1.26%)</title><rect x="1049.2" y="1729" width="14.8" height="15.0" fill="rgb(249,118,24)" rx="2" ry="2" />
<text text-anchor="" x="1052.22" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (3 samples, 0.07%)</title><rect x="744.1" y="1713" width="0.8" height="15.0" fill="rgb(224,128,13)" rx="2" ry="2" />
<text text-anchor="" x="747.09" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>change_protection (1 samples, 0.02%)</title><rect x="1172.3" y="1537" width="0.2" height="15.0" fill="rgb(240,154,16)" rx="2" ry="2" />
<text text-anchor="" x="1175.27" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::this_thread::get_id (2 samples, 0.04%)</title><rect x="891.2" y="1793" width="0.6" height="15.0" fill="rgb(212,87,51)" rx="2" ry="2" />
<text text-anchor="" x="894.23" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="20.3" y="1841" width="0.3" height="15.0" fill="rgb(242,7,24)" rx="2" ry="2" />
<text text-anchor="" x="23.32" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (2 samples, 0.04%)</title><rect x="846.5" y="1633" width="0.5" height="15.0" fill="rgb(210,171,46)" rx="2" ry="2" />
<text text-anchor="" x="849.51" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (19 samples, 0.43%)</title><rect x="182.5" y="1937" width="5.1" height="15.0" fill="rgb(245,97,6)" rx="2" ry="2" />
<text text-anchor="" x="185.54" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="20.6" y="1825" width="0.2" height="15.0" fill="rgb(229,147,8)" rx="2" ry="2" />
<text text-anchor="" x="23.59" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (42 samples, 0.94%)</title><rect x="651.2" y="1569" width="11.1" height="15.0" fill="rgb(252,30,5)" rx="2" ry="2" />
<text text-anchor="" x="654.21" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (146 samples, 3.27%)</title><rect x="252.4" y="1761" width="38.6" height="15.0" fill="rgb(231,15,3)" rx="2" ry="2" />
<text text-anchor="" x="255.40" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[li..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.02%)</title><rect x="1186.3" y="1745" width="0.3" height="15.0" fill="rgb(247,14,43)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (239 samples, 5.36%)</title><rect x="112.7" y="1969" width="63.2" height="15.0" fill="rgb(240,51,35)" rx="2" ry="2" />
<text text-anchor="" x="115.68" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_wr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.02%)</title><rect x="24.3" y="1841" width="0.3" height="15.0" fill="rgb(251,89,11)" rx="2" ry="2" />
<text text-anchor="" x="27.29" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (37 samples, 0.83%)</title><rect x="663.9" y="1649" width="9.8" height="15.0" fill="rgb(206,194,10)" rx="2" ry="2" />
<text text-anchor="" x="666.91" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (6 samples, 0.13%)</title><rect x="1079.9" y="1681" width="1.6" height="15.0" fill="rgb(246,220,45)" rx="2" ry="2" />
<text text-anchor="" x="1082.91" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Node_const_iterator&lt;Envoy::Stats::ThreadLocalStoreImpl::ScopeImpl*, true, false&gt;::operator* (1 samples, 0.02%)</title><rect x="1089.2" y="1793" width="0.2" height="15.0" fill="rgb(225,226,5)" rx="2" ry="2" />
<text text-anchor="" x="1092.17" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.04%)</title><rect x="195.2" y="1953" width="0.6" height="15.0" fill="rgb(249,200,6)" rx="2" ry="2" />
<text text-anchor="" x="198.24" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="25.1" y="1937" width="0.2" height="15.0" fill="rgb(214,151,33)" rx="2" ry="2" />
<text text-anchor="" x="28.08" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (1 samples, 0.02%)</title><rect x="475.5" y="1585" width="0.3" height="15.0" fill="rgb(227,100,54)" rx="2" ry="2" />
<text text-anchor="" x="478.49" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.02%)</title><rect x="474.7" y="1569" width="0.3" height="15.0" fill="rgb(244,129,44)" rx="2" ry="2" />
<text text-anchor="" x="477.70" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::set (3 samples, 0.07%)</title><rect x="1167.5" y="1649" width="0.8" height="15.0" fill="rgb(237,97,15)" rx="2" ry="2" />
<text text-anchor="" x="1170.51" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_process_active_single_queue.isra.29 (3,413 samples, 76.54%)</title><rect x="212.4" y="1921" width="903.2" height="15.0" fill="rgb(223,39,34)" rx="2" ry="2" />
<text text-anchor="" x="215.44" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event_process_active_single_queue.isra.29</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="1142.4" y="1953" width="0.2" height="15.0" fill="rgb(213,158,20)" rx="2" ry="2" />
<text text-anchor="" x="1145.37" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__enable_shared_from_this_helper&lt; (1 samples, 0.02%)</title><rect x="839.6" y="1697" width="0.3" height="15.0" fill="rgb(211,44,15)" rx="2" ry="2" />
<text text-anchor="" x="842.63" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="23.0" y="1777" width="0.2" height="15.0" fill="rgb(251,143,1)" rx="2" ry="2" />
<text text-anchor="" x="25.97" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strftime (6 samples, 0.13%)</title><rect x="228.6" y="1793" width="1.6" height="15.0" fill="rgb(240,158,15)" rx="2" ry="2" />
<text text-anchor="" x="231.59" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (1 samples, 0.02%)</title><rect x="1116.2" y="1953" width="0.2" height="15.0" fill="rgb(217,74,23)" rx="2" ry="2" />
<text text-anchor="" x="1119.17" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::mutex::lock (1 samples, 0.02%)</title><rect x="1184.4" y="1745" width="0.3" height="15.0" fill="rgb(205,79,53)" rx="2" ry="2" />
<text text-anchor="" x="1187.44" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="705" width="6.6" height="15.0" fill="rgb(252,119,24)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (2 samples, 0.04%)</title><rect x="187.8" y="161" width="0.6" height="15.0" fill="rgb(229,195,39)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (1 samples, 0.02%)</title><rect x="1116.2" y="1937" width="0.2" height="15.0" fill="rgb(247,23,51)" rx="2" ry="2" />
<text text-anchor="" x="1119.17" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="21.9" y="1825" width="0.3" height="15.0" fill="rgb(219,79,52)" rx="2" ry="2" />
<text text-anchor="" x="24.91" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::~_Function_base (4 samples, 0.09%)</title><rect x="923.8" y="1793" width="1.0" height="15.0" fill="rgb(208,55,14)" rx="2" ry="2" />
<text text-anchor="" x="926.78" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (4 samples, 0.09%)</title><rect x="115.3" y="1921" width="1.1" height="15.0" fill="rgb(237,171,54)" rx="2" ry="2" />
<text text-anchor="" x="118.32" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (6 samples, 0.13%)</title><rect x="22.7" y="1873" width="1.6" height="15.0" fill="rgb(212,195,29)" rx="2" ry="2" />
<text text-anchor="" x="25.70" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (73 samples, 1.64%)</title><rect x="929.6" y="1761" width="19.3" height="15.0" fill="rgb(212,226,12)" rx="2" ry="2" />
<text text-anchor="" x="932.60" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (1 samples, 0.02%)</title><rect x="25.1" y="1857" width="0.2" height="15.0" fill="rgb(219,198,3)" rx="2" ry="2" />
<text text-anchor="" x="28.08" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (2 samples, 0.04%)</title><rect x="439.2" y="1633" width="0.6" height="15.0" fill="rgb(233,20,40)" rx="2" ry="2" />
<text text-anchor="" x="442.24" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (21 samples, 0.47%)</title><rect x="860.3" y="1713" width="5.5" height="15.0" fill="rgb(238,91,47)" rx="2" ry="2" />
<text text-anchor="" x="863.27" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::allocator (1 samples, 0.02%)</title><rect x="842.3" y="1617" width="0.2" height="15.0" fill="rgb(215,216,10)" rx="2" ry="2" />
<text text-anchor="" x="845.27" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_insert&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;, std::__detail::_AllocNode&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt; &gt; (1 samples, 0.02%)</title><rect x="1092.4" y="1777" width="0.2" height="15.0" fill="rgb(242,163,0)" rx="2" ry="2" />
<text text-anchor="" x="1095.35" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (11 samples, 0.25%)</title><rect x="568.6" y="1601" width="3.0" height="15.0" fill="rgb(240,98,19)" rx="2" ry="2" />
<text text-anchor="" x="571.64" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_changelist_remove_all_ (1 samples, 0.02%)</title><rect x="1159.0" y="1873" width="0.3" height="15.0" fill="rgb(211,4,51)" rx="2" ry="2" />
<text text-anchor="" x="1162.04" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="24.8" y="1761" width="0.3" height="15.0" fill="rgb(209,73,23)" rx="2" ry="2" />
<text text-anchor="" x="27.82" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (258 samples, 5.79%)</title><rect x="40.2" y="1937" width="68.2" height="15.0" fill="rgb(252,82,48)" rx="2" ry="2" />
<text text-anchor="" x="43.17" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >eventfd..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="1186.3" y="1713" width="0.3" height="15.0" fill="rgb(225,102,8)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::set (127 samples, 2.85%)</title><rect x="630.3" y="1649" width="33.6" height="15.0" fill="rgb(216,222,40)" rx="2" ry="2" />
<text text-anchor="" x="633.30" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >En..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="203.4" y="1985" width="0.6" height="15.0" fill="rgb(254,189,51)" rx="2" ry="2" />
<text text-anchor="" x="206.45" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="1160.9" y="1825" width="0.3" height="15.0" fill="rgb(243,186,6)" rx="2" ry="2" />
<text text-anchor="" x="1163.89" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (9 samples, 0.20%)</title><rect x="986.2" y="1681" width="2.4" height="15.0" fill="rgb(211,219,15)" rx="2" ry="2" />
<text text-anchor="" x="989.23" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="212.2" y="1777" width="0.2" height="15.0" fill="rgb(250,58,13)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::~_Function_base (10 samples, 0.22%)</title><rect x="1173.1" y="1761" width="2.6" height="15.0" fill="rgb(221,186,42)" rx="2" ry="2" />
<text text-anchor="" x="1176.06" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;::destroy&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; (2 samples, 0.04%)</title><rect x="1101.1" y="1713" width="0.5" height="15.0" fill="rgb(217,196,6)" rx="2" ry="2" />
<text text-anchor="" x="1104.08" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (3 samples, 0.07%)</title><rect x="648.6" y="1585" width="0.8" height="15.0" fill="rgb(226,2,44)" rx="2" ry="2" />
<text text-anchor="" x="651.56" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pvclock_clocksource_read (1 samples, 0.02%)</title><rect x="20.8" y="1825" width="0.3" height="15.0" fill="rgb(231,72,47)" rx="2" ry="2" />
<text text-anchor="" x="23.85" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="848.4" y="1649" width="0.2" height="15.0" fill="rgb(216,51,25)" rx="2" ry="2" />
<text text-anchor="" x="851.36" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.02%)</title><rect x="440.3" y="1633" width="0.3" height="15.0" fill="rgb(211,26,8)" rx="2" ry="2" />
<text text-anchor="" x="443.29" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.02%)</title><rect x="371.5" y="1649" width="0.3" height="15.0" fill="rgb(212,45,4)" rx="2" ry="2" />
<text text-anchor="" x="374.49" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_handler&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (51 samples, 1.14%)</title><rect x="837.2" y="1777" width="13.5" height="15.0" fill="rgb(230,56,54)" rx="2" ry="2" />
<text text-anchor="" x="840.24" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (26 samples, 0.58%)</title><rect x="475.0" y="1633" width="6.8" height="15.0" fill="rgb(223,126,33)" rx="2" ry="2" />
<text text-anchor="" x="477.96" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__addressof&lt;std::mutex&gt; (1 samples, 0.02%)</title><rect x="1183.6" y="1761" width="0.3" height="15.0" fill="rgb(219,46,50)" rx="2" ry="2" />
<text text-anchor="" x="1186.65" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="817" width="6.6" height="15.0" fill="rgb(211,182,47)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (212 samples, 4.75%)</title><rect x="383.7" y="1681" width="56.1" height="15.0" fill="rgb(232,91,46)" rx="2" ry="2" />
<text text-anchor="" x="386.66" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vfs_w..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::~basic_string (5 samples, 0.11%)</title><rect x="883.3" y="1649" width="1.3" height="15.0" fill="rgb(205,169,29)" rx="2" ry="2" />
<text text-anchor="" x="886.29" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1409" width="7.2" height="15.0" fill="rgb(217,136,27)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (197 samples, 4.42%)</title><rect x="745.7" y="1745" width="52.1" height="15.0" fill="rgb(238,169,0)" rx="2" ry="2" />
<text text-anchor="" x="748.68" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vfs_w..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (4 samples, 0.09%)</title><rect x="1167.2" y="1713" width="1.1" height="15.0" fill="rgb(233,96,19)" rx="2" ry="2" />
<text text-anchor="" x="1170.24" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (3 samples, 0.07%)</title><rect x="1108.8" y="1681" width="0.8" height="15.0" fill="rgb(252,114,36)" rx="2" ry="2" />
<text text-anchor="" x="1111.76" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.02%)</title><rect x="1112.5" y="1809" width="0.2" height="15.0" fill="rgb(250,47,42)" rx="2" ry="2" />
<text text-anchor="" x="1115.46" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::lock (2 samples, 0.04%)</title><rect x="1183.1" y="1777" width="0.5" height="15.0" fill="rgb(234,191,11)" rx="2" ry="2" />
<text text-anchor="" x="1186.12" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="188.6" y="113" width="0.8" height="15.0" fill="rgb(233,120,45)" rx="2" ry="2" />
<text text-anchor="" x="191.63" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1089" width="7.2" height="15.0" fill="rgb(235,66,24)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (3 samples, 0.07%)</title><rect x="513.1" y="1521" width="0.8" height="15.0" fill="rgb(214,163,33)" rx="2" ry="2" />
<text text-anchor="" x="516.07" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1329" width="7.2" height="15.0" fill="rgb(243,185,31)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (4,459 samples, 100%)</title><rect x="10.0" y="2065" width="1180.0" height="15.0" fill="rgb(236,72,24)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2075.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (64 samples, 1.44%)</title><rect x="482.6" y="1601" width="17.0" height="15.0" fill="rgb(247,97,1)" rx="2" ry="2" />
<text text-anchor="" x="485.64" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (53 samples, 1.19%)</title><rect x="554.6" y="1553" width="14.0" height="15.0" fill="rgb(225,133,54)" rx="2" ry="2" />
<text text-anchor="" x="557.62" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (1 samples, 0.02%)</title><rect x="1153.2" y="1873" width="0.3" height="15.0" fill="rgb(229,12,22)" rx="2" ry="2" />
<text text-anchor="" x="1156.22" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (19 samples, 0.43%)</title><rect x="1119.3" y="1937" width="5.1" height="15.0" fill="rgb(249,219,20)" rx="2" ry="2" />
<text text-anchor="" x="1122.34" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__allocate_guarded&lt;std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (3 samples, 0.07%)</title><rect x="1180.5" y="1601" width="0.8" height="15.0" fill="rgb(205,67,37)" rx="2" ry="2" />
<text text-anchor="" x="1183.47" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="187.8" y="97" width="0.3" height="15.0" fill="rgb(241,25,39)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pv_queued_spin_unlock (1 samples, 0.02%)</title><rect x="1057.9" y="1601" width="0.3" height="15.0" fill="rgb(221,123,4)" rx="2" ry="2" />
<text text-anchor="" x="1060.95" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="1152.4" y="1921" width="0.3" height="15.0" fill="rgb(229,189,8)" rx="2" ry="2" />
<text text-anchor="" x="1155.42" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (3 samples, 0.07%)</title><rect x="744.1" y="1745" width="0.8" height="15.0" fill="rgb(229,135,47)" rx="2" ry="2" />
<text text-anchor="" x="747.09" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (215 samples, 4.82%)</title><rect x="382.9" y="1697" width="56.9" height="15.0" fill="rgb(229,99,0)" rx="2" ry="2" />
<text text-anchor="" x="385.87" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_wr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (1 samples, 0.02%)</title><rect x="1186.8" y="1745" width="0.3" height="15.0" fill="rgb(206,160,43)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="191.0" y="129" width="0.3" height="15.0" fill="rgb(251,158,46)" rx="2" ry="2" />
<text text-anchor="" x="194.01" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1041" width="7.2" height="15.0" fill="rgb(211,119,17)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (4 samples, 0.09%)</title><rect x="23.2" y="1825" width="1.1" height="15.0" fill="rgb(205,44,41)" rx="2" ry="2" />
<text text-anchor="" x="26.23" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (1 samples, 0.02%)</title><rect x="733.0" y="1761" width="0.2" height="15.0" fill="rgb(249,137,23)" rx="2" ry="2" />
<text text-anchor="" x="735.98" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (9 samples, 0.20%)</title><rect x="1160.9" y="1873" width="2.4" height="15.0" fill="rgb(236,49,17)" rx="2" ry="2" />
<text text-anchor="" x="1163.89" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_queue_remove_active (1 samples, 0.02%)</title><rect x="1115.4" y="1889" width="0.2" height="15.0" fill="rgb(208,51,34)" rx="2" ry="2" />
<text text-anchor="" x="1118.37" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_hash_code (1 samples, 0.02%)</title><rect x="1071.7" y="1761" width="0.3" height="15.0" fill="rgb(207,106,24)" rx="2" ry="2" />
<text text-anchor="" x="1074.71" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (11 samples, 0.25%)</title><rect x="1170.2" y="1665" width="2.9" height="15.0" fill="rgb(214,212,28)" rx="2" ry="2" />
<text text-anchor="" x="1173.15" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (2 samples, 0.04%)</title><rect x="810.0" y="1793" width="0.5" height="15.0" fill="rgb(234,30,52)" rx="2" ry="2" />
<text text-anchor="" x="812.99" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="20.6" y="1809" width="0.2" height="15.0" fill="rgb(251,44,14)" rx="2" ry="2" />
<text text-anchor="" x="23.59" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (1 samples, 0.02%)</title><rect x="839.9" y="1697" width="0.3" height="15.0" fill="rgb(244,194,32)" rx="2" ry="2" />
<text text-anchor="" x="842.89" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::Stats::Gauge, (6 samples, 0.13%)</title><rect x="1090.2" y="1761" width="1.6" height="15.0" fill="rgb(218,41,53)" rx="2" ry="2" />
<text text-anchor="" x="1093.23" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (14 samples, 0.31%)</title><rect x="178.8" y="1889" width="3.7" height="15.0" fill="rgb(248,172,14)" rx="2" ry="2" />
<text text-anchor="" x="181.84" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (4 samples, 0.09%)</title><rect x="832.5" y="1713" width="1.0" height="15.0" fill="rgb(212,104,5)" rx="2" ry="2" />
<text text-anchor="" x="835.48" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocate_shared&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; (10 samples, 0.22%)</title><rect x="1179.2" y="1665" width="2.6" height="15.0" fill="rgb(247,5,46)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="321" width="6.6" height="15.0" fill="rgb(238,144,24)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strlen (2 samples, 0.04%)</title><rect x="202.9" y="2001" width="0.5" height="15.0" fill="rgb(228,204,36)" rx="2" ry="2" />
<text text-anchor="" x="205.92" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (2 samples, 0.04%)</title><rect x="190.0" y="145" width="0.5" height="15.0" fill="rgb(227,29,44)" rx="2" ry="2" />
<text text-anchor="" x="192.95" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 0.58%)</title><rect x="187.8" y="897" width="6.9" height="15.0" fill="rgb(214,130,39)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (1 samples, 0.02%)</title><rect x="195.0" y="1889" width="0.2" height="15.0" fill="rgb(230,126,52)" rx="2" ry="2" />
<text text-anchor="" x="197.98" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__allocated_ptr&lt;std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1178.6" y="1633" width="0.3" height="15.0" fill="rgb(230,3,18)" rx="2" ry="2" />
<text text-anchor="" x="1181.62" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="188.6" y="81" width="0.3" height="15.0" fill="rgb(212,45,15)" rx="2" ry="2" />
<text text-anchor="" x="191.63" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::type_info::operator== (2 samples, 0.04%)</title><rect x="845.4" y="1649" width="0.6" height="15.0" fill="rgb(247,187,50)" rx="2" ry="2" />
<text text-anchor="" x="848.45" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (1 samples, 0.02%)</title><rect x="745.9" y="1713" width="0.3" height="15.0" fill="rgb(249,117,22)" rx="2" ry="2" />
<text text-anchor="" x="748.95" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_hook (2 samples, 0.04%)</title><rect x="996.3" y="1777" width="0.5" height="15.0" fill="rgb(245,58,48)" rx="2" ry="2" />
<text text-anchor="" x="999.29" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (94 samples, 2.11%)</title><rect x="291.0" y="1713" width="24.9" height="15.0" fill="rgb(220,141,41)" rx="2" ry="2" />
<text text-anchor="" x="294.04" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="577" width="6.6" height="15.0" fill="rgb(222,149,48)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unordered_set&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;::~unordered_set (4 samples, 0.09%)</title><rect x="1100.6" y="1793" width="1.0" height="15.0" fill="rgb(236,156,5)" rx="2" ry="2" />
<text text-anchor="" x="1103.55" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="1184.7" y="1745" width="0.3" height="15.0" fill="rgb(213,211,44)" rx="2" ry="2" />
<text text-anchor="" x="1187.71" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 0.58%)</title><rect x="187.8" y="913" width="6.9" height="15.0" fill="rgb(209,26,16)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::enableTimer (4 samples, 0.09%)</title><rect x="729.5" y="1793" width="1.1" height="15.0" fill="rgb(247,100,43)" rx="2" ry="2" />
<text text-anchor="" x="732.54" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gmtime_r (2 samples, 0.04%)</title><rect x="226.2" y="1793" width="0.5" height="15.0" fill="rgb(243,107,38)" rx="2" ry="2" />
<text text-anchor="" x="229.21" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.02%)</title><rect x="1186.8" y="1569" width="0.3" height="15.0" fill="rgb(214,183,16)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.02%)</title><rect x="474.7" y="1601" width="0.3" height="15.0" fill="rgb(217,228,44)" rx="2" ry="2" />
<text text-anchor="" x="477.70" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;::operator!= (1 samples, 0.02%)</title><rect x="1101.9" y="1809" width="0.2" height="15.0" fill="rgb(254,214,10)" rx="2" ry="2" />
<text text-anchor="" x="1104.88" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (1 samples, 0.02%)</title><rect x="439.0" y="1665" width="0.2" height="15.0" fill="rgb(244,8,18)" rx="2" ry="2" />
<text text-anchor="" x="441.97" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (11 samples, 0.25%)</title><rect x="1012.4" y="1745" width="2.9" height="15.0" fill="rgb(224,1,54)" rx="2" ry="2" />
<text text-anchor="" x="1015.43" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="194.2" y="81" width="0.2" height="15.0" fill="rgb(228,122,31)" rx="2" ry="2" />
<text text-anchor="" x="197.18" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xen_clocksource_get_cycles (1 samples, 0.02%)</title><rect x="1161.4" y="1809" width="0.3" height="15.0" fill="rgb(229,83,19)" rx="2" ry="2" />
<text text-anchor="" x="1164.42" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="848.9" y="1665" width="0.3" height="15.0" fill="rgb(231,175,33)" rx="2" ry="2" />
<text text-anchor="" x="851.89" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="190.7" y="129" width="0.3" height="15.0" fill="rgb(230,212,6)" rx="2" ry="2" />
<text text-anchor="" x="193.74" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.04%)</title><rect x="190.0" y="97" width="0.5" height="15.0" fill="rgb(247,177,16)" rx="2" ry="2" />
<text text-anchor="" x="192.95" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.04%)</title><rect x="188.9" y="81" width="0.5" height="15.0" fill="rgb(225,175,50)" rx="2" ry="2" />
<text text-anchor="" x="191.89" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::push_back (46 samples, 1.03%)</title><rect x="984.6" y="1793" width="12.2" height="15.0" fill="rgb(253,102,43)" rx="2" ry="2" />
<text text-anchor="" x="987.64" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_estimate_accuracy (1 samples, 0.02%)</title><rect x="191.0" y="65" width="0.3" height="15.0" fill="rgb(244,153,19)" rx="2" ry="2" />
<text text-anchor="" x="194.01" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="194.4" y="801" width="0.3" height="15.0" fill="rgb(226,155,0)" rx="2" ry="2" />
<text text-anchor="" x="197.45" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::mutex::lock (1 samples, 0.02%)</title><rect x="1183.9" y="1761" width="0.3" height="15.0" fill="rgb(207,9,22)" rx="2" ry="2" />
<text text-anchor="" x="1186.91" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (7 samples, 0.16%)</title><rect x="192.3" y="161" width="1.9" height="15.0" fill="rgb(206,199,31)" rx="2" ry="2" />
<text text-anchor="" x="195.33" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="1185.0" y="1729" width="0.2" height="15.0" fill="rgb(216,51,19)" rx="2" ry="2" />
<text text-anchor="" x="1187.97" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_hash_code (1 samples, 0.02%)</title><rect x="1100.0" y="1761" width="0.3" height="15.0" fill="rgb(225,54,32)" rx="2" ry="2" />
<text text-anchor="" x="1103.02" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.04%)</title><rect x="20.1" y="1921" width="0.5" height="15.0" fill="rgb(206,39,50)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.02%)</title><rect x="188.6" y="97" width="0.3" height="15.0" fill="rgb(216,225,40)" rx="2" ry="2" />
<text text-anchor="" x="191.63" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (2 samples, 0.04%)</title><rect x="481.8" y="1569" width="0.6" height="15.0" fill="rgb(247,163,42)" rx="2" ry="2" />
<text text-anchor="" x="484.84" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap&lt;bool (6 samples, 0.13%)</title><rect x="861.3" y="1697" width="1.6" height="15.0" fill="rgb(210,93,47)" rx="2" ry="2" />
<text text-anchor="" x="864.33" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="19.8" y="1969" width="0.3" height="15.0" fill="rgb(206,225,28)" rx="2" ry="2" />
<text text-anchor="" x="22.79" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (1 samples, 0.02%)</title><rect x="1180.2" y="1553" width="0.3" height="15.0" fill="rgb(213,178,53)" rx="2" ry="2" />
<text text-anchor="" x="1183.21" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (3 samples, 0.07%)</title><rect x="191.3" y="65" width="0.8" height="15.0" fill="rgb(214,56,39)" rx="2" ry="2" />
<text text-anchor="" x="194.27" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Insert_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::insert (212 samples, 4.75%)</title><rect x="1016.9" y="1777" width="56.1" height="15.0" fill="rgb(221,78,8)" rx="2" ry="2" />
<text text-anchor="" x="1019.93" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="1142.6" y="1953" width="0.3" height="15.0" fill="rgb(206,54,1)" rx="2" ry="2" />
<text text-anchor="" x="1145.63" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="1152.4" y="1953" width="0.3" height="15.0" fill="rgb(234,0,12)" rx="2" ry="2" />
<text text-anchor="" x="1155.42" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.02%)</title><rect x="187.6" y="1841" width="0.2" height="15.0" fill="rgb(205,207,32)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.02%)</title><rect x="371.5" y="1665" width="0.3" height="15.0" fill="rgb(241,5,49)" rx="2" ry="2" />
<text text-anchor="" x="374.49" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_handler&lt;void (3,382 samples, 75.85%)</title><rect x="217.5" y="1857" width="895.0" height="15.0" fill="rgb(244,64,8)" rx="2" ry="2" />
<text text-anchor="" x="220.47" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::_Function_handler&lt;void </text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="25.1" y="1905" width="0.2" height="15.0" fill="rgb(230,74,11)" rx="2" ry="2" />
<text text-anchor="" x="28.08" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (1 samples, 0.02%)</title><rect x="1185.2" y="1793" width="0.3" height="15.0" fill="rgb(219,75,36)" rx="2" ry="2" />
<text text-anchor="" x="1188.24" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt; &gt;::construct&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (1 samples, 0.02%)</title><rect x="1181.5" y="1601" width="0.3" height="15.0" fill="rgb(224,168,47)" rx="2" ry="2" />
<text text-anchor="" x="1184.53" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;Envoy::Stats::ThreadLocalStoreImpl::ScopeImpl*&gt;::_M_valptr (1 samples, 0.02%)</title><rect x="997.3" y="1761" width="0.3" height="15.0" fill="rgb(236,139,8)" rx="2" ry="2" />
<text text-anchor="" x="1000.35" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (2 samples, 0.04%)</title><rect x="108.4" y="1889" width="0.6" height="15.0" fill="rgb(253,9,52)" rx="2" ry="2" />
<text text-anchor="" x="111.44" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::_M_insert&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; const&amp;&gt; (1 samples, 0.02%)</title><rect x="984.4" y="1793" width="0.2" height="15.0" fill="rgb(246,30,12)" rx="2" ry="2" />
<text text-anchor="" x="987.38" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.04%)</title><rect x="20.1" y="1905" width="0.5" height="15.0" fill="rgb(252,83,36)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (205 samples, 4.60%)</title><rect x="743.6" y="1761" width="54.2" height="15.0" fill="rgb(254,24,11)" rx="2" ry="2" />
<text text-anchor="" x="746.56" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_w..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xen_clocksource_get_cycles (1 samples, 0.02%)</title><rect x="1163.5" y="1793" width="0.3" height="15.0" fill="rgb(207,134,13)" rx="2" ry="2" />
<text text-anchor="" x="1166.54" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add_dispatch (4 samples, 0.09%)</title><rect x="1176.5" y="1649" width="1.1" height="15.0" fill="rgb(234,41,2)" rx="2" ry="2" />
<text text-anchor="" x="1179.50" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (1 samples, 0.02%)</title><rect x="315.7" y="1617" width="0.2" height="15.0" fill="rgb(232,130,42)" rx="2" ry="2" />
<text text-anchor="" x="318.65" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, (10 samples, 0.22%)</title><rect x="1179.2" y="1633" width="2.6" height="15.0" fill="rgb(231,190,52)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="1142.4" y="1921" width="0.2" height="15.0" fill="rgb(230,164,22)" rx="2" ry="2" />
<text text-anchor="" x="1145.37" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="1125.2" y="1937" width="0.2" height="15.0" fill="rgb(245,61,18)" rx="2" ry="2" />
<text text-anchor="" x="1128.16" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.02%)</title><rect x="1057.9" y="1649" width="0.3" height="15.0" fill="rgb(226,192,17)" rx="2" ry="2" />
<text text-anchor="" x="1060.95" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.02%)</title><rect x="187.8" y="129" width="0.3" height="15.0" fill="rgb(209,182,47)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_bucket_index (1 samples, 0.02%)</title><rect x="1092.6" y="1745" width="0.3" height="15.0" fill="rgb(232,101,13)" rx="2" ry="2" />
<text text-anchor="" x="1095.61" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::chrono::duration&lt;long, std::ratio&lt;1l, 1000l&gt; &gt;::count (1 samples, 0.02%)</title><rect x="693.8" y="1777" width="0.3" height="15.0" fill="rgb(211,16,32)" rx="2" ry="2" />
<text text-anchor="" x="696.81" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__atomic_add_dispatch (1 samples, 0.02%)</title><rect x="734.8" y="1729" width="0.3" height="15.0" fill="rgb(240,166,31)" rx="2" ry="2" />
<text text-anchor="" x="737.83" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (2 samples, 0.04%)</title><rect x="20.1" y="1937" width="0.5" height="15.0" fill="rgb(221,172,47)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (28 samples, 0.63%)</title><rect x="505.1" y="1601" width="7.4" height="15.0" fill="rgb(237,2,42)" rx="2" ry="2" />
<text text-anchor="" x="508.13" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (4 samples, 0.09%)</title><rect x="211.4" y="1921" width="1.0" height="15.0" fill="rgb(243,187,53)" rx="2" ry="2" />
<text text-anchor="" x="214.39" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::operator!=&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;, true&gt; (2 samples, 0.04%)</title><rect x="999.2" y="1793" width="0.5" height="15.0" fill="rgb(220,160,28)" rx="2" ry="2" />
<text text-anchor="" x="1002.20" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.02%)</title><rect x="1186.8" y="1585" width="0.3" height="15.0" fill="rgb(224,0,42)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add (11 samples, 0.25%)</title><rect x="736.4" y="1697" width="2.9" height="15.0" fill="rgb(254,82,27)" rx="2" ry="2" />
<text text-anchor="" x="739.42" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (3 samples, 0.07%)</title><rect x="21.1" y="1793" width="0.8" height="15.0" fill="rgb(208,174,44)" rx="2" ry="2" />
<text text-anchor="" x="24.11" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1825" width="7.2" height="15.0" fill="rgb(206,182,32)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (3 samples, 0.07%)</title><rect x="826.7" y="1745" width="0.8" height="15.0" fill="rgb(248,166,33)" rx="2" ry="2" />
<text text-anchor="" x="829.66" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (2 samples, 0.04%)</title><rect x="827.5" y="1745" width="0.5" height="15.0" fill="rgb(223,32,32)" rx="2" ry="2" />
<text text-anchor="" x="830.45" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (5 samples, 0.11%)</title><rect x="1164.1" y="1793" width="1.3" height="15.0" fill="rgb(208,75,11)" rx="2" ry="2" />
<text text-anchor="" x="1167.07" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.07%)</title><rect x="1124.4" y="2001" width="0.8" height="15.0" fill="rgb(237,4,19)" rx="2" ry="2" />
<text text-anchor="" x="1127.37" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="25.1" y="1889" width="0.2" height="15.0" fill="rgb(253,70,22)" rx="2" ry="2" />
<text text-anchor="" x="28.08" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (122 samples, 2.74%)</title><rect x="631.6" y="1633" width="32.3" height="15.0" fill="rgb(225,15,52)" rx="2" ry="2" />
<text text-anchor="" x="634.62" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >st..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="440.6" y="1665" width="0.2" height="15.0" fill="rgb(251,148,21)" rx="2" ry="2" />
<text text-anchor="" x="443.56" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Node_iterator_base&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;, true&gt;::_M_incr (2 samples, 0.04%)</title><rect x="998.7" y="1777" width="0.5" height="15.0" fill="rgb(251,21,13)" rx="2" ry="2" />
<text text-anchor="" x="1001.67" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="203.7" y="1841" width="0.3" height="15.0" fill="rgb(209,140,40)" rx="2" ry="2" />
<text text-anchor="" x="206.71" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="188.6" y="129" width="0.8" height="15.0" fill="rgb(247,152,52)" rx="2" ry="2" />
<text text-anchor="" x="191.63" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__allocated_ptr&lt;std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="840.4" y="1681" width="0.3" height="15.0" fill="rgb(230,135,38)" rx="2" ry="2" />
<text text-anchor="" x="843.42" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_mutex_lock (1 samples, 0.02%)</title><rect x="1184.2" y="1745" width="0.2" height="15.0" fill="rgb(216,140,4)" rx="2" ry="2" />
<text text-anchor="" x="1187.18" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (27 samples, 0.61%)</title><rect x="735.4" y="1729" width="7.1" height="15.0" fill="rgb(238,193,51)" rx="2" ry="2" />
<text text-anchor="" x="738.36" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_init (21 samples, 0.47%)</title><rect x="1118.8" y="2017" width="5.6" height="15.0" fill="rgb(210,12,10)" rx="2" ry="2" />
<text text-anchor="" x="1121.81" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock@plt (1 samples, 0.02%)</title><rect x="710.7" y="1729" width="0.3" height="15.0" fill="rgb(230,7,35)" rx="2" ry="2" />
<text text-anchor="" x="713.75" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access&lt;Envoy::ThreadLocal::InstanceImpl::set (3 samples, 0.07%)</title><rect x="674.5" y="1649" width="0.8" height="15.0" fill="rgb(219,153,20)" rx="2" ry="2" />
<text text-anchor="" x="677.49" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.09%)</title><rect x="1162.2" y="1793" width="1.1" height="15.0" fill="rgb(220,144,42)" rx="2" ry="2" />
<text text-anchor="" x="1165.21" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.02%)</title><rect x="1116.2" y="1921" width="0.2" height="15.0" fill="rgb(252,10,16)" rx="2" ry="2" />
<text text-anchor="" x="1119.17" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (3 samples, 0.07%)</title><rect x="1081.5" y="1697" width="0.8" height="15.0" fill="rgb(223,151,14)" rx="2" ry="2" />
<text text-anchor="" x="1084.50" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1178.6" y="1601" width="0.3" height="15.0" fill="rgb(221,27,16)" rx="2" ry="2" />
<text text-anchor="" x="1181.62" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Node_iterator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true, true&gt;::_Node_iterator (1 samples, 0.02%)</title><rect x="1100.3" y="1761" width="0.3" height="15.0" fill="rgb(205,114,43)" rx="2" ry="2" />
<text text-anchor="" x="1103.29" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::destroy&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt; (7 samples, 0.16%)</title><rect x="740.7" y="1681" width="1.8" height="15.0" fill="rgb(230,200,22)" rx="2" ry="2" />
<text text-anchor="" x="743.65" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.04%)</title><rect x="1152.2" y="1969" width="0.5" height="15.0" fill="rgb(231,227,20)" rx="2" ry="2" />
<text text-anchor="" x="1155.16" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="19.8" y="1953" width="0.3" height="15.0" fill="rgb(250,20,12)" rx="2" ry="2" />
<text text-anchor="" x="22.79" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1313" width="7.2" height="15.0" fill="rgb(218,63,54)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Server::WorkerImpl::threadRoutine (140 samples, 3.14%)</title><rect x="1153.0" y="1937" width="37.0" height="15.0" fill="rgb(232,149,11)" rx="2" ry="2" />
<text text-anchor="" x="1155.95" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Env..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (2 samples, 0.04%)</title><rect x="470.5" y="1617" width="0.5" height="15.0" fill="rgb(218,27,50)" rx="2" ry="2" />
<text text-anchor="" x="473.46" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hash_impl::hash (1 samples, 0.02%)</title><rect x="1066.2" y="1729" width="0.2" height="15.0" fill="rgb(250,67,51)" rx="2" ry="2" />
<text text-anchor="" x="1069.15" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::_M_allocate_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; (8 samples, 0.18%)</title><rect x="1096.1" y="1729" width="2.1" height="15.0" fill="rgb(216,209,21)" rx="2" ry="2" />
<text text-anchor="" x="1099.06" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (75 samples, 1.68%)</title><rect x="929.1" y="1825" width="19.8" height="15.0" fill="rgb(239,228,48)" rx="2" ry="2" />
<text text-anchor="" x="932.07" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1473" width="7.2" height="15.0" fill="rgb(208,212,54)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (75 samples, 1.68%)</title><rect x="929.1" y="1809" width="19.8" height="15.0" fill="rgb(207,92,52)" rx="2" ry="2" />
<text text-anchor="" x="932.07" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (2 samples, 0.04%)</title><rect x="1111.9" y="1809" width="0.6" height="15.0" fill="rgb(220,11,30)" rx="2" ry="2" />
<text text-anchor="" x="1114.93" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="441.4" y="1649" width="0.2" height="15.0" fill="rgb(254,25,24)" rx="2" ry="2" />
<text text-anchor="" x="444.35" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::~_Function_base (1 samples, 0.02%)</title><rect x="1167.5" y="1633" width="0.3" height="15.0" fill="rgb(219,38,5)" rx="2" ry="2" />
<text text-anchor="" x="1170.51" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="23.0" y="1745" width="0.2" height="15.0" fill="rgb(238,88,2)" rx="2" ry="2" />
<text text-anchor="" x="25.97" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Node_iterator_base&lt;Envoy::Stats::ThreadLocalStoreImpl::ScopeImpl*, false&gt;::_M_incr (1 samples, 0.02%)</title><rect x="1089.4" y="1777" width="0.3" height="15.0" fill="rgb(215,34,17)" rx="2" ry="2" />
<text text-anchor="" x="1092.44" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (23 samples, 0.52%)</title><rect x="475.8" y="1585" width="6.0" height="15.0" fill="rgb(214,112,15)" rx="2" ry="2" />
<text text-anchor="" x="478.75" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_add_nolock_ (5 samples, 0.11%)</title><rect x="235.5" y="1793" width="1.3" height="15.0" fill="rgb(238,142,31)" rx="2" ry="2" />
<text text-anchor="" x="238.47" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (14 samples, 0.31%)</title><rect x="501.4" y="1553" width="3.7" height="15.0" fill="rgb(254,120,17)" rx="2" ry="2" />
<text text-anchor="" x="504.42" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__allocated_ptr&lt;std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="847.3" y="1649" width="0.3" height="15.0" fill="rgb(225,161,38)" rx="2" ry="2" />
<text text-anchor="" x="850.30" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="190.7" y="161" width="0.3" height="15.0" fill="rgb(221,50,52)" rx="2" ry="2" />
<text text-anchor="" x="193.74" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (2 samples, 0.04%)</title><rect x="739.3" y="1697" width="0.6" height="15.0" fill="rgb(211,133,49)" rx="2" ry="2" />
<text text-anchor="" x="742.33" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (8 samples, 0.18%)</title><rect x="1163.3" y="1841" width="2.1" height="15.0" fill="rgb(207,46,27)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;::operator++ (1 samples, 0.02%)</title><rect x="1102.4" y="1809" width="0.3" height="15.0" fill="rgb(213,93,8)" rx="2" ry="2" />
<text text-anchor="" x="1105.41" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (2 samples, 0.04%)</title><rect x="948.9" y="1825" width="0.5" height="15.0" fill="rgb(222,197,38)" rx="2" ry="2" />
<text text-anchor="" x="951.92" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::_List_base&lt;std::function&lt;void (50 samples, 1.12%)</title><rect x="679.0" y="1729" width="13.2" height="15.0" fill="rgb(244,105,16)" rx="2" ry="2" />
<text text-anchor="" x="681.99" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (20 samples, 0.45%)</title><rect x="206.1" y="1873" width="5.3" height="15.0" fill="rgb(209,166,11)" rx="2" ry="2" />
<text text-anchor="" x="209.09" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (39 samples, 0.87%)</title><rect x="798.6" y="1697" width="10.3" height="15.0" fill="rgb(207,208,35)" rx="2" ry="2" />
<text text-anchor="" x="801.61" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (16 samples, 0.36%)</title><rect x="841.7" y="1665" width="4.3" height="15.0" fill="rgb(213,218,12)" rx="2" ry="2" />
<text text-anchor="" x="844.74" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (281 samples, 6.30%)</title><rect x="34.6" y="2017" width="74.4" height="15.0" fill="rgb(248,11,32)" rx="2" ry="2" />
<text text-anchor="" x="37.61" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libpthr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="593" width="6.6" height="15.0" fill="rgb(219,99,50)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Node_iterator_base&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt;, true&gt;::_Node_iterator_base (1 samples, 0.02%)</title><rect x="1092.1" y="1745" width="0.3" height="15.0" fill="rgb(241,69,39)" rx="2" ry="2" />
<text text-anchor="" x="1095.09" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::set (2,470 samples, 55.39%)</title><rect x="240.5" y="1809" width="653.6" height="15.0" fill="rgb(227,97,11)" rx="2" ry="2" />
<text text-anchor="" x="243.50" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Envoy::ThreadLocal::InstanceImpl::set</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (2 samples, 0.04%)</title><rect x="677.9" y="1713" width="0.6" height="15.0" fill="rgb(254,81,25)" rx="2" ry="2" />
<text text-anchor="" x="680.93" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="20.3" y="1873" width="0.3" height="15.0" fill="rgb(221,167,24)" rx="2" ry="2" />
<text text-anchor="" x="23.32" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, (7 samples, 0.16%)</title><rect x="192.3" y="177" width="1.9" height="15.0" fill="rgb(224,211,7)" rx="2" ry="2" />
<text text-anchor="" x="195.33" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_S_copy_chars (1 samples, 0.02%)</title><rect x="1058.5" y="1681" width="0.2" height="15.0" fill="rgb(240,197,38)" rx="2" ry="2" />
<text text-anchor="" x="1061.48" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::Stats::Counter&gt;::shared_ptr (10 samples, 0.22%)</title><rect x="986.0" y="1713" width="2.6" height="15.0" fill="rgb(208,20,8)" rx="2" ry="2" />
<text text-anchor="" x="988.97" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::function&lt;void (2 samples, 0.04%)</title><rect x="815.0" y="1793" width="0.5" height="15.0" fill="rgb(241,42,6)" rx="2" ry="2" />
<text text-anchor="" x="818.01" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (3 samples, 0.07%)</title><rect x="554.9" y="1489" width="0.8" height="15.0" fill="rgb(226,145,25)" rx="2" ry="2" />
<text text-anchor="" x="557.88" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>evthread_notify_base_eventfd (7 samples, 0.16%)</title><rect x="586.1" y="1729" width="1.9" height="15.0" fill="rgb(213,30,48)" rx="2" ry="2" />
<text text-anchor="" x="589.11" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Equal_helper&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, unsigned long, true&gt;::_S_equals (1 samples, 0.02%)</title><rect x="1029.9" y="1713" width="0.3" height="15.0" fill="rgb(213,217,52)" rx="2" ry="2" />
<text text-anchor="" x="1032.90" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="211.1" y="1857" width="0.3" height="15.0" fill="rgb(252,97,0)" rx="2" ry="2" />
<text text-anchor="" x="214.12" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.07%)</title><rect x="191.3" y="161" width="0.8" height="15.0" fill="rgb(244,155,40)" rx="2" ry="2" />
<text text-anchor="" x="194.27" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::operator (9 samples, 0.20%)</title><rect x="1066.7" y="1729" width="2.4" height="15.0" fill="rgb(249,215,7)" rx="2" ry="2" />
<text text-anchor="" x="1069.68" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="555.7" y="1505" width="0.2" height="15.0" fill="rgb(251,37,54)" rx="2" ry="2" />
<text text-anchor="" x="558.67" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Server::WorkerImpl::start (140 samples, 3.14%)</title><rect x="1153.0" y="1953" width="37.0" height="15.0" fill="rgb(221,182,10)" rx="2" ry="2" />
<text text-anchor="" x="1155.95" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Env..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; &gt; &gt;::size (1 samples, 0.02%)</title><rect x="893.9" y="1793" width="0.2" height="15.0" fill="rgb(241,50,33)" rx="2" ry="2" />
<text text-anchor="" x="896.88" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="481" width="6.6" height="15.0" fill="rgb(226,49,29)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::Stats::Counter, (42 samples, 0.94%)</title><rect x="1000.3" y="1761" width="11.1" height="15.0" fill="rgb(218,171,48)" rx="2" ry="2" />
<text text-anchor="" x="1003.26" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::distance&lt;char*&gt; (1 samples, 0.02%)</title><rect x="1180.2" y="1521" width="0.3" height="15.0" fill="rgb(248,166,17)" rx="2" ry="2" />
<text text-anchor="" x="1183.21" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (1 samples, 0.02%)</title><rect x="188.4" y="49" width="0.2" height="15.0" fill="rgb(221,14,14)" rx="2" ry="2" />
<text text-anchor="" x="191.36" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (12 samples, 0.27%)</title><rect x="196.0" y="1921" width="3.2" height="15.0" fill="rgb(205,29,2)" rx="2" ry="2" />
<text text-anchor="" x="199.04" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (1 samples, 0.02%)</title><rect x="797.8" y="1761" width="0.3" height="15.0" fill="rgb(213,175,15)" rx="2" ry="2" />
<text text-anchor="" x="800.81" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (15 samples, 0.34%)</title><rect x="471.0" y="1681" width="4.0" height="15.0" fill="rgb(231,64,51)" rx="2" ry="2" />
<text text-anchor="" x="473.99" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (94 samples, 2.11%)</title><rect x="291.0" y="1729" width="24.9" height="15.0" fill="rgb(208,127,43)" rx="2" ry="2" />
<text text-anchor="" x="294.04" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (9 samples, 0.20%)</title><rect x="11.1" y="2001" width="2.3" height="15.0" fill="rgb(219,213,30)" rx="2" ry="2" />
<text text-anchor="" x="14.06" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__aligned_buffer&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::_M_ptr (1 samples, 0.02%)</title><rect x="1151.9" y="1969" width="0.3" height="15.0" fill="rgb(207,26,24)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (2 samples, 0.04%)</title><rect x="1167.8" y="1633" width="0.5" height="15.0" fill="rgb(211,157,24)" rx="2" ry="2" />
<text text-anchor="" x="1170.77" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="609" width="6.6" height="15.0" fill="rgb(229,177,49)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (339 samples, 7.60%)</title><rect x="481.8" y="1665" width="89.8" height="15.0" fill="rgb(205,217,39)" rx="2" ry="2" />
<text text-anchor="" x="484.84" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::_Func..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (3 samples, 0.07%)</title><rect x="1164.6" y="1777" width="0.8" height="15.0" fill="rgb(252,171,4)" rx="2" ry="2" />
<text text-anchor="" x="1167.60" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::ThreadCache::ReleaseToCentralCache (2 samples, 0.04%)</title><rect x="1108.2" y="1697" width="0.6" height="15.0" fill="rgb(248,165,1)" rx="2" ry="2" />
<text text-anchor="" x="1111.23" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::mutex::lock (2 samples, 0.04%)</title><rect x="695.4" y="1761" width="0.5" height="15.0" fill="rgb(232,86,13)" rx="2" ry="2" />
<text text-anchor="" x="698.40" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (1 samples, 0.02%)</title><rect x="175.1" y="1937" width="0.3" height="15.0" fill="rgb(248,142,8)" rx="2" ry="2" />
<text text-anchor="" x="178.13" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (18 samples, 0.40%)</title><rect x="206.4" y="1841" width="4.7" height="15.0" fill="rgb(216,44,50)" rx="2" ry="2" />
<text text-anchor="" x="209.36" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (2 samples, 0.04%)</title><rect x="597.5" y="1729" width="0.5" height="15.0" fill="rgb(221,121,31)" rx="2" ry="2" />
<text text-anchor="" x="600.49" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (6 samples, 0.13%)</title><rect x="1161.7" y="1825" width="1.6" height="15.0" fill="rgb(237,6,22)" rx="2" ry="2" />
<text text-anchor="" x="1164.68" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_active_nolock_ (1 samples, 0.02%)</title><rect x="1160.1" y="1857" width="0.3" height="15.0" fill="rgb(214,62,46)" rx="2" ry="2" />
<text text-anchor="" x="1163.10" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (65 samples, 1.46%)</title><rect x="1125.2" y="1969" width="17.2" height="15.0" fill="rgb(217,99,10)" rx="2" ry="2" />
<text text-anchor="" x="1128.16" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (2 samples, 0.04%)</title><rect x="1143.4" y="1937" width="0.6" height="15.0" fill="rgb(242,54,17)" rx="2" ry="2" />
<text text-anchor="" x="1146.42" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (11 samples, 0.25%)</title><rect x="471.8" y="1601" width="2.9" height="15.0" fill="rgb(248,7,9)" rx="2" ry="2" />
<text text-anchor="" x="474.79" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::distance&lt;char*&gt; (2 samples, 0.04%)</title><rect x="833.5" y="1713" width="0.6" height="15.0" fill="rgb(210,173,2)" rx="2" ry="2" />
<text text-anchor="" x="836.54" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="850.5" y="1761" width="0.2" height="15.0" fill="rgb(236,77,21)" rx="2" ry="2" />
<text text-anchor="" x="853.48" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::~_Hashtable (4 samples, 0.09%)</title><rect x="1100.6" y="1777" width="1.0" height="15.0" fill="rgb(232,126,21)" rx="2" ry="2" />
<text text-anchor="" x="1103.55" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_work_run (1 samples, 0.02%)</title><rect x="1172.3" y="1585" width="0.2" height="15.0" fill="rgb(251,211,18)" rx="2" ry="2" />
<text text-anchor="" x="1175.27" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (4 samples, 0.09%)</title><rect x="23.2" y="1729" width="1.1" height="15.0" fill="rgb(238,5,25)" rx="2" ry="2" />
<text text-anchor="" x="26.23" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (1 samples, 0.02%)</title><rect x="705.2" y="1729" width="0.3" height="15.0" fill="rgb(211,183,51)" rx="2" ry="2" />
<text text-anchor="" x="708.19" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (3 samples, 0.07%)</title><rect x="112.7" y="1921" width="0.8" height="15.0" fill="rgb(211,2,34)" rx="2" ry="2" />
<text text-anchor="" x="115.68" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::ThreadCache::ReleaseToCentralCache (2 samples, 0.04%)</title><rect x="1174.1" y="1585" width="0.6" height="15.0" fill="rgb(210,177,39)" rx="2" ry="2" />
<text text-anchor="" x="1177.12" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::_M_v (1 samples, 0.02%)</title><rect x="1088.9" y="1793" width="0.3" height="15.0" fill="rgb(230,180,28)" rx="2" ry="2" />
<text text-anchor="" x="1091.91" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (2 samples, 0.04%)</title><rect x="38.1" y="1969" width="0.5" height="15.0" fill="rgb(245,23,40)" rx="2" ry="2" />
<text text-anchor="" x="41.05" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Equal_helper&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, unsigned long, true&gt;::_S_equals (14 samples, 0.31%)</title><rect x="1031.7" y="1697" width="3.8" height="15.0" fill="rgb(220,111,19)" rx="2" ry="2" />
<text text-anchor="" x="1034.75" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="192.1" y="177" width="0.2" height="15.0" fill="rgb(250,131,48)" rx="2" ry="2" />
<text text-anchor="" x="195.07" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (18 samples, 0.40%)</title><rect x="182.8" y="1921" width="4.8" height="15.0" fill="rgb(244,90,14)" rx="2" ry="2" />
<text text-anchor="" x="185.81" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (55 samples, 1.23%)</title><rect x="711.8" y="1697" width="14.6" height="15.0" fill="rgb(249,115,49)" rx="2" ry="2" />
<text text-anchor="" x="714.81" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (52 samples, 1.17%)</title><rect x="1169.4" y="1777" width="13.7" height="15.0" fill="rgb(246,34,52)" rx="2" ry="2" />
<text text-anchor="" x="1172.36" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::~_Function_base (2 samples, 0.04%)</title><rect x="810.8" y="1793" width="0.5" height="15.0" fill="rgb(221,41,47)" rx="2" ry="2" />
<text text-anchor="" x="813.78" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1537" width="7.2" height="15.0" fill="rgb(215,158,31)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Prime_rehash_policy::_M_state (1 samples, 0.02%)</title><rect x="1049.0" y="1729" width="0.2" height="15.0" fill="rgb(214,76,1)" rx="2" ry="2" />
<text text-anchor="" x="1051.95" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>envoy-debug (4,459 samples, 100.00%)</title><rect x="10.0" y="2049" width="1180.0" height="15.0" fill="rgb(250,44,15)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >envoy-debug</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Node_iterator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;, false, true&gt;::operator++ (3 samples, 0.07%)</title><rect x="998.4" y="1793" width="0.8" height="15.0" fill="rgb(222,130,54)" rx="2" ry="2" />
<text text-anchor="" x="1001.41" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::set (35 samples, 0.78%)</title><rect x="857.1" y="1745" width="9.3" height="15.0" fill="rgb(245,136,36)" rx="2" ry="2" />
<text text-anchor="" x="860.09" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="192.1" y="193" width="0.2" height="15.0" fill="rgb(234,111,50)" rx="2" ry="2" />
<text text-anchor="" x="195.07" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="721" width="6.6" height="15.0" fill="rgb(217,197,3)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (112 samples, 2.51%)</title><rect x="440.8" y="1665" width="29.7" height="15.0" fill="rgb(253,72,4)" rx="2" ry="2" />
<text text-anchor="" x="443.82" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::Stats::Gauge, (1 samples, 0.02%)</title><rect x="1111.1" y="1809" width="0.3" height="15.0" fill="rgb(252,158,13)" rx="2" ry="2" />
<text text-anchor="" x="1114.14" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1553" width="7.2" height="15.0" fill="rgb(242,139,28)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__aligned_buffer&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::_M_ptr (1 samples, 0.02%)</title><rect x="998.1" y="1745" width="0.3" height="15.0" fill="rgb(224,218,48)" rx="2" ry="2" />
<text text-anchor="" x="1001.14" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (7 samples, 0.16%)</title><rect x="1163.5" y="1825" width="1.9" height="15.0" fill="rgb(215,35,46)" rx="2" ry="2" />
<text text-anchor="" x="1166.54" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.04%)</title><rect x="195.2" y="1937" width="0.6" height="15.0" fill="rgb(206,66,6)" rx="2" ry="2" />
<text text-anchor="" x="198.24" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::_M_node_allocator (2 samples, 0.04%)</title><rect x="1050.8" y="1713" width="0.5" height="15.0" fill="rgb(205,91,17)" rx="2" ry="2" />
<text text-anchor="" x="1053.80" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="1151.6" y="1969" width="0.3" height="15.0" fill="rgb(239,179,39)" rx="2" ry="2" />
<text text-anchor="" x="1154.63" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (4 samples, 0.09%)</title><rect x="238.6" y="1793" width="1.1" height="15.0" fill="rgb(230,154,20)" rx="2" ry="2" />
<text text-anchor="" x="241.64" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_active (1,029 samples, 23.08%)</title><rect x="315.9" y="1761" width="272.3" height="15.0" fill="rgb(227,218,9)" rx="2" ry="2" />
<text text-anchor="" x="318.92" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event_active</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Function_base (1 samples, 0.02%)</title><rect x="810.5" y="1793" width="0.3" height="15.0" fill="rgb(252,20,35)" rx="2" ry="2" />
<text text-anchor="" x="813.52" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.02%)</title><rect x="203.4" y="1969" width="0.3" height="15.0" fill="rgb(245,215,40)" rx="2" ry="2" />
<text text-anchor="" x="206.45" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (3 samples, 0.07%)</title><rect x="21.1" y="1857" width="0.8" height="15.0" fill="rgb(242,171,8)" rx="2" ry="2" />
<text text-anchor="" x="24.11" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="1186.8" y="1633" width="0.3" height="15.0" fill="rgb(211,167,2)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (26 samples, 0.58%)</title><rect x="475.0" y="1665" width="6.8" height="15.0" fill="rgb(250,95,26)" rx="2" ry="2" />
<text text-anchor="" x="477.96" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (2 samples, 0.04%)</title><rect x="842.0" y="1649" width="0.5" height="15.0" fill="rgb(244,195,41)" rx="2" ry="2" />
<text text-anchor="" x="845.01" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (3 samples, 0.07%)</title><rect x="21.1" y="1809" width="0.8" height="15.0" fill="rgb(232,12,53)" rx="2" ry="2" />
<text text-anchor="" x="24.11" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_node&lt;std::function&lt;void (1 samples, 0.02%)</title><rect x="678.7" y="1729" width="0.3" height="15.0" fill="rgb(213,76,37)" rx="2" ry="2" />
<text text-anchor="" x="681.73" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (2 samples, 0.04%)</title><rect x="1161.7" y="1777" width="0.5" height="15.0" fill="rgb(207,140,44)" rx="2" ry="2" />
<text text-anchor="" x="1164.68" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (1 samples, 0.02%)</title><rect x="1124.4" y="1937" width="0.2" height="15.0" fill="rgb(252,205,48)" rx="2" ry="2" />
<text text-anchor="" x="1127.37" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (6 samples, 0.13%)</title><rect x="1154.0" y="1825" width="1.6" height="15.0" fill="rgb(242,213,43)" rx="2" ry="2" />
<text text-anchor="" x="1157.01" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (1 samples, 0.02%)</title><rect x="1153.0" y="1905" width="0.2" height="15.0" fill="rgb(224,42,27)" rx="2" ry="2" />
<text text-anchor="" x="1155.95" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="24.0" y="1649" width="0.3" height="15.0" fill="rgb(211,142,0)" rx="2" ry="2" />
<text text-anchor="" x="27.03" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (114 samples, 2.56%)</title><rect x="440.3" y="1697" width="30.2" height="15.0" fill="rgb(222,88,10)" rx="2" ry="2" />
<text text-anchor="" x="443.29" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (59 samples, 1.32%)</title><rect x="711.3" y="1761" width="15.6" height="15.0" fill="rgb(233,222,42)" rx="2" ry="2" />
<text text-anchor="" x="714.28" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (6 samples, 0.13%)</title><rect x="1090.2" y="1729" width="1.6" height="15.0" fill="rgb(205,201,7)" rx="2" ry="2" />
<text text-anchor="" x="1093.23" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Maybe_unary_or_binary_function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt;, Envoy::Event::Dispatcher&amp;&gt;::_Maybe_unary_or_binary_function (2 samples, 0.04%)</title><rect x="919.5" y="1809" width="0.6" height="15.0" fill="rgb(221,190,21)" rx="2" ry="2" />
<text text-anchor="" x="922.54" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (15 samples, 0.34%)</title><rect x="178.6" y="1953" width="3.9" height="15.0" fill="rgb(228,21,25)" rx="2" ry="2" />
<text text-anchor="" x="181.57" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Stats::CounterImpl::latch (25 samples, 0.56%)</title><rect x="952.6" y="1809" width="6.6" height="15.0" fill="rgb(237,203,41)" rx="2" ry="2" />
<text text-anchor="" x="955.62" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_mutex_unlock (1 samples, 0.02%)</title><rect x="707.6" y="1729" width="0.2" height="15.0" fill="rgb(235,122,43)" rx="2" ry="2" />
<text text-anchor="" x="710.57" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (181 samples, 4.06%)</title><rect x="627.4" y="1665" width="47.9" height="15.0" fill="rgb(227,157,36)" rx="2" ry="2" />
<text text-anchor="" x="630.39" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::c_str (1 samples, 0.02%)</title><rect x="227.0" y="1793" width="0.3" height="15.0" fill="rgb(214,146,38)" rx="2" ry="2" />
<text text-anchor="" x="230.00" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="1187.6" y="1873" width="0.3" height="15.0" fill="rgb(236,105,30)" rx="2" ry="2" />
<text text-anchor="" x="1190.62" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 0.58%)</title><rect x="187.8" y="865" width="6.9" height="15.0" fill="rgb(210,95,28)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (2 samples, 0.04%)</title><rect x="108.4" y="1921" width="0.6" height="15.0" fill="rgb(220,61,16)" rx="2" ry="2" />
<text text-anchor="" x="111.44" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (1 samples, 0.02%)</title><rect x="626.6" y="1665" width="0.3" height="15.0" fill="rgb(251,27,18)" rx="2" ry="2" />
<text text-anchor="" x="629.60" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="289" width="6.6" height="15.0" fill="rgb(221,135,29)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::~basic_string (1 samples, 0.02%)</title><rect x="1078.6" y="1697" width="0.3" height="15.0" fill="rgb(229,4,53)" rx="2" ry="2" />
<text text-anchor="" x="1081.59" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (11 samples, 0.25%)</title><rect x="551.7" y="1553" width="2.9" height="15.0" fill="rgb(209,81,40)" rx="2" ry="2" />
<text text-anchor="" x="554.70" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="194.2" y="145" width="0.2" height="15.0" fill="rgb(205,38,15)" rx="2" ry="2" />
<text text-anchor="" x="197.18" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1137" width="7.2" height="15.0" fill="rgb(250,174,26)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Tuple_impl&lt;0ul, Envoy::Event::Timer*, std::default_delete&lt;Envoy::Event::Timer&gt; &gt;::_M_head (2 samples, 0.04%)</title><rect x="728.2" y="1729" width="0.5" height="15.0" fill="rgb(223,187,19)" rx="2" ry="2" />
<text text-anchor="" x="731.21" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.04%)</title><rect x="22.7" y="1809" width="0.5" height="15.0" fill="rgb(211,63,30)" rx="2" ry="2" />
<text text-anchor="" x="25.70" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (18 samples, 0.40%)</title><rect x="1083.1" y="1793" width="4.8" height="15.0" fill="rgb(223,23,13)" rx="2" ry="2" />
<text text-anchor="" x="1086.09" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_normalized_timespec (1 samples, 0.02%)</title><rect x="191.0" y="49" width="0.3" height="15.0" fill="rgb(235,95,1)" rx="2" ry="2" />
<text text-anchor="" x="194.01" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (1 samples, 0.02%)</title><rect x="633.5" y="1601" width="0.2" height="15.0" fill="rgb(238,168,5)" rx="2" ry="2" />
<text text-anchor="" x="636.48" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (2 samples, 0.04%)</title><rect x="108.4" y="1953" width="0.6" height="15.0" fill="rgb(215,219,18)" rx="2" ry="2" />
<text text-anchor="" x="111.44" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Maybe_unary_or_binary_function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt;, Envoy::Event::Dispatcher&amp;&gt;::_Maybe_unary_or_binary_function (3 samples, 0.07%)</title><rect x="814.0" y="1793" width="0.7" height="15.0" fill="rgb(244,3,8)" rx="2" ry="2" />
<text text-anchor="" x="816.96" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vdso_time (7 samples, 0.16%)</title><rect x="916.6" y="1809" width="1.9" height="15.0" fill="rgb(245,25,9)" rx="2" ry="2" />
<text text-anchor="" x="919.63" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (63 samples, 1.41%)</title><rect x="482.9" y="1585" width="16.7" height="15.0" fill="rgb(243,116,20)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (27 samples, 0.61%)</title><rect x="505.1" y="1537" width="7.2" height="15.0" fill="rgb(226,24,26)" rx="2" ry="2" />
<text text-anchor="" x="508.13" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (1 samples, 0.02%)</title><rect x="190.5" y="81" width="0.2" height="15.0" fill="rgb(239,52,53)" rx="2" ry="2" />
<text text-anchor="" x="193.48" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_swapgs (1 samples, 0.02%)</title><rect x="112.4" y="1985" width="0.3" height="15.0" fill="rgb(208,5,25)" rx="2" ry="2" />
<text text-anchor="" x="115.41" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_bucket_index (2 samples, 0.04%)</title><rect x="1094.2" y="1713" width="0.5" height="15.0" fill="rgb(209,2,7)" rx="2" ry="2" />
<text text-anchor="" x="1097.20" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (3 samples, 0.07%)</title><rect x="35.1" y="1985" width="0.8" height="15.0" fill="rgb(242,34,1)" rx="2" ry="2" />
<text text-anchor="" x="38.14" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (140 samples, 3.14%)</title><rect x="1153.0" y="1985" width="37.0" height="15.0" fill="rgb(230,155,7)" rx="2" ry="2" />
<text text-anchor="" x="1155.95" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="657" width="6.6" height="15.0" fill="rgb(215,15,30)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.02%)</title><rect x="188.1" y="129" width="0.3" height="15.0" fill="rgb(218,90,13)" rx="2" ry="2" />
<text text-anchor="" x="191.10" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>evthread_posix_get_id (1 samples, 0.02%)</title><rect x="588.0" y="1745" width="0.2" height="15.0" fill="rgb(244,134,49)" rx="2" ry="2" />
<text text-anchor="" x="590.96" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1151.9" y="1985" width="0.3" height="15.0" fill="rgb(221,135,17)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.02%)</title><rect x="315.7" y="1665" width="0.2" height="15.0" fill="rgb(227,63,47)" rx="2" ry="2" />
<text text-anchor="" x="318.65" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.02%)</title><rect x="1186.3" y="1777" width="0.3" height="15.0" fill="rgb(240,228,15)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.04%)</title><rect x="24.6" y="1841" width="0.5" height="15.0" fill="rgb(206,14,33)" rx="2" ry="2" />
<text text-anchor="" x="27.55" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="22.7" y="1777" width="0.3" height="15.0" fill="rgb(211,69,49)" rx="2" ry="2" />
<text text-anchor="" x="25.70" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="321.7" y="1681" width="0.3" height="15.0" fill="rgb(243,109,47)" rx="2" ry="2" />
<text text-anchor="" x="324.74" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (148 samples, 3.32%)</title><rect x="512.5" y="1585" width="39.2" height="15.0" fill="rgb(244,219,29)" rx="2" ry="2" />
<text text-anchor="" x="515.54" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[li..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (5 samples, 0.11%)</title><rect x="237.3" y="1793" width="1.3" height="15.0" fill="rgb(248,100,50)" rx="2" ry="2" />
<text text-anchor="" x="240.32" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (90 samples, 2.02%)</title><rect x="291.6" y="1681" width="23.8" height="15.0" fill="rgb(205,108,51)" rx="2" ry="2" />
<text text-anchor="" x="294.57" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="195.0" y="1953" width="0.2" height="15.0" fill="rgb(251,221,25)" rx="2" ry="2" />
<text text-anchor="" x="197.98" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1 samples, 0.02%)</title><rect x="187.6" y="1777" width="0.2" height="15.0" fill="rgb(222,136,23)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (1 samples, 0.02%)</title><rect x="439.5" y="1601" width="0.3" height="15.0" fill="rgb(219,24,15)" rx="2" ry="2" />
<text text-anchor="" x="442.50" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (281 samples, 6.30%)</title><rect x="34.6" y="2001" width="74.4" height="15.0" fill="rgb(252,171,37)" rx="2" ry="2" />
<text text-anchor="" x="37.61" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >entry_SY..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="194.2" y="177" width="0.2" height="15.0" fill="rgb(239,201,3)" rx="2" ry="2" />
<text text-anchor="" x="197.18" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::_M_deallocate_node (2 samples, 0.04%)</title><rect x="1101.1" y="1729" width="0.5" height="15.0" fill="rgb(224,38,20)" rx="2" ry="2" />
<text text-anchor="" x="1104.08" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (29 samples, 0.65%)</title><rect x="1144.0" y="1921" width="7.6" height="15.0" fill="rgb(236,140,49)" rx="2" ry="2" />
<text text-anchor="" x="1146.95" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::unique_lock (1 samples, 0.02%)</title><rect x="891.8" y="1793" width="0.2" height="15.0" fill="rgb(240,52,15)" rx="2" ry="2" />
<text text-anchor="" x="894.76" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1345" width="7.2" height="15.0" fill="rgb(207,132,52)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (2 samples, 0.04%)</title><rect x="874.8" y="1665" width="0.6" height="15.0" fill="rgb(240,134,15)" rx="2" ry="2" />
<text text-anchor="" x="877.82" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Maybe_unary_or_binary_function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt;, Envoy::Event::Dispatcher&amp;&gt;::_Maybe_unary_or_binary_function (1 samples, 0.02%)</title><rect x="860.0" y="1713" width="0.3" height="15.0" fill="rgb(231,190,3)" rx="2" ry="2" />
<text text-anchor="" x="863.00" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="35.1" y="1969" width="0.3" height="15.0" fill="rgb(246,63,32)" rx="2" ry="2" />
<text text-anchor="" x="38.14" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (41 samples, 0.92%)</title><rect x="798.3" y="1793" width="10.9" height="15.0" fill="rgb(228,138,32)" rx="2" ry="2" />
<text text-anchor="" x="801.34" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="241" width="6.6" height="15.0" fill="rgb(230,6,46)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="875.4" y="1665" width="0.2" height="15.0" fill="rgb(225,169,52)" rx="2" ry="2" />
<text text-anchor="" x="878.35" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::construct&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (9 samples, 0.20%)</title><rect x="842.8" y="1633" width="2.4" height="15.0" fill="rgb(224,39,7)" rx="2" ry="2" />
<text text-anchor="" x="845.80" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (2 samples, 0.04%)</title><rect x="113.5" y="1953" width="0.5" height="15.0" fill="rgb(216,25,43)" rx="2" ry="2" />
<text text-anchor="" x="116.47" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (9 samples, 0.20%)</title><rect x="1160.9" y="1841" width="2.4" height="15.0" fill="rgb(237,11,3)" rx="2" ry="2" />
<text text-anchor="" x="1163.89" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1601" width="7.2" height="15.0" fill="rgb(240,137,21)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1681" width="7.2" height="15.0" fill="rgb(248,194,16)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::function&lt;void (296 samples, 6.64%)</title><rect x="615.5" y="1777" width="78.3" height="15.0" fill="rgb(231,45,35)" rx="2" ry="2" />
<text text-anchor="" x="618.48" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::__cx..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::forward&lt;std::function&lt;void (1 samples, 0.02%)</title><rect x="625.3" y="1697" width="0.2" height="15.0" fill="rgb(213,165,36)" rx="2" ry="2" />
<text text-anchor="" x="628.27" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::pair&lt;std::__detail::_Node_iterator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true, true&gt;, bool&gt;::pair&lt;std::__detail::_Node_iterator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true, true&gt;, bool, void&gt; (1 samples, 0.02%)</title><rect x="1099.8" y="1729" width="0.2" height="15.0" fill="rgb(232,103,54)" rx="2" ry="2" />
<text text-anchor="" x="1102.76" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1793" width="7.2" height="15.0" fill="rgb(240,135,17)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="212.2" y="1825" width="0.2" height="15.0" fill="rgb(219,19,30)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (3,439 samples, 77.12%)</title><rect x="205.8" y="1937" width="910.1" height="15.0" fill="rgb(250,73,3)" rx="2" ry="2" />
<text text-anchor="" x="208.83" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event_base_loop</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (12 samples, 0.27%)</title><rect x="571.6" y="1665" width="3.1" height="15.0" fill="rgb(209,29,38)" rx="2" ry="2" />
<text text-anchor="" x="574.55" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.02%)</title><rect x="35.7" y="1937" width="0.2" height="15.0" fill="rgb(249,43,50)" rx="2" ry="2" />
<text text-anchor="" x="38.67" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (7 samples, 0.16%)</title><rect x="36.2" y="1969" width="1.9" height="15.0" fill="rgb(235,202,47)" rx="2" ry="2" />
<text text-anchor="" x="39.20" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_ts64 (1 samples, 0.02%)</title><rect x="194.7" y="929" width="0.3" height="15.0" fill="rgb(248,9,6)" rx="2" ry="2" />
<text text-anchor="" x="197.71" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (3 samples, 0.07%)</title><rect x="112.7" y="1953" width="0.8" height="15.0" fill="rgb(231,28,10)" rx="2" ry="2" />
<text text-anchor="" x="115.68" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_node&lt;std::function&lt;void (394 samples, 8.84%)</title><rect x="470.5" y="1713" width="104.2" height="15.0" fill="rgb(246,84,3)" rx="2" ry="2" />
<text text-anchor="" x="473.46" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::_List_n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (84 samples, 1.88%)</title><rect x="894.4" y="1793" width="22.2" height="15.0" fill="rgb(233,86,42)" rx="2" ry="2" />
<text text-anchor="" x="897.40" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_handler&lt;void (1 samples, 0.02%)</title><rect x="215.4" y="1873" width="0.2" height="15.0" fill="rgb(254,81,50)" rx="2" ry="2" />
<text text-anchor="" x="218.36" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (2 samples, 0.04%)</title><rect x="844.7" y="1601" width="0.5" height="15.0" fill="rgb(244,107,23)" rx="2" ry="2" />
<text text-anchor="" x="847.65" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (65 samples, 1.46%)</title><rect x="1125.2" y="2017" width="17.2" height="15.0" fill="rgb(254,192,17)" rx="2" ry="2" />
<text text-anchor="" x="1128.16" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="470.2" y="1649" width="0.3" height="15.0" fill="rgb(217,204,36)" rx="2" ry="2" />
<text text-anchor="" x="473.20" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::ThreadCache::ListTooLong (3 samples, 0.07%)</title><rect x="1080.7" y="1665" width="0.8" height="15.0" fill="rgb(205,122,52)" rx="2" ry="2" />
<text text-anchor="" x="1083.71" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (146 samples, 3.27%)</title><rect x="252.4" y="1729" width="38.6" height="15.0" fill="rgb(248,98,52)" rx="2" ry="2" />
<text text-anchor="" x="255.40" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_capacity (1 samples, 0.02%)</title><rect x="831.7" y="1729" width="0.3" height="15.0" fill="rgb(213,83,25)" rx="2" ry="2" />
<text text-anchor="" x="834.69" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::new_allocator (1 samples, 0.02%)</title><rect x="1076.5" y="1713" width="0.2" height="15.0" fill="rgb(218,58,25)" rx="2" ry="2" />
<text text-anchor="" x="1079.47" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hash_bytes (7 samples, 0.16%)</title><rect x="1067.2" y="1713" width="1.9" height="15.0" fill="rgb(244,8,53)" rx="2" ry="2" />
<text text-anchor="" x="1070.21" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.02%)</title><rect x="211.1" y="1809" width="0.3" height="15.0" fill="rgb(232,91,23)" rx="2" ry="2" />
<text text-anchor="" x="214.12" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::~unique_lock (19 samples, 0.43%)</title><rect x="706.0" y="1777" width="5.0" height="15.0" fill="rgb(236,100,20)" rx="2" ry="2" />
<text text-anchor="" x="708.99" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (65 samples, 1.46%)</title><rect x="1125.2" y="1953" width="17.2" height="15.0" fill="rgb(251,69,13)" rx="2" ry="2" />
<text text-anchor="" x="1128.16" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (3,389 samples, 76.00%)</title><rect x="215.6" y="1873" width="896.9" height="15.0" fill="rgb(249,102,20)" rx="2" ry="2" />
<text text-anchor="" x="218.62" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::function&lt;void </text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (1 samples, 0.02%)</title><rect x="1151.9" y="1873" width="0.3" height="15.0" fill="rgb(222,42,7)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (2 samples, 0.04%)</title><rect x="1111.9" y="1793" width="0.6" height="15.0" fill="rgb(214,178,42)" rx="2" ry="2" />
<text text-anchor="" x="1114.93" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::end (1 samples, 0.02%)</title><rect x="1088.6" y="1777" width="0.3" height="15.0" fill="rgb(212,61,10)" rx="2" ry="2" />
<text text-anchor="" x="1091.65" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (10 samples, 0.22%)</title><rect x="552.0" y="1521" width="2.6" height="15.0" fill="rgb(223,15,29)" rx="2" ry="2" />
<text text-anchor="" x="554.97" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.02%)</title><rect x="1151.9" y="1825" width="0.3" height="15.0" fill="rgb(245,46,2)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (2 samples, 0.04%)</title><rect x="1168.3" y="1713" width="0.5" height="15.0" fill="rgb(246,143,33)" rx="2" ry="2" />
<text text-anchor="" x="1171.30" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (1 samples, 0.02%)</title><rect x="1151.9" y="1809" width="0.3" height="15.0" fill="rgb(232,171,46)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (13 samples, 0.29%)</title><rect x="1169.6" y="1713" width="3.5" height="15.0" fill="rgb(246,85,28)" rx="2" ry="2" />
<text text-anchor="" x="1172.62" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::function&lt;void (6 samples, 0.13%)</title><rect x="1167.2" y="1761" width="1.6" height="15.0" fill="rgb(205,207,9)" rx="2" ry="2" />
<text text-anchor="" x="1170.24" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (140 samples, 3.14%)</title><rect x="851.5" y="1793" width="37.1" height="15.0" fill="rgb(214,143,2)" rx="2" ry="2" />
<text text-anchor="" x="854.53" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_M_empty (3 samples, 0.07%)</title><rect x="663.1" y="1601" width="0.8" height="15.0" fill="rgb(210,223,24)" rx="2" ry="2" />
<text text-anchor="" x="666.12" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.02%)</title><rect x="1186.6" y="1761" width="0.2" height="15.0" fill="rgb(209,216,24)" rx="2" ry="2" />
<text text-anchor="" x="1189.56" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_find_before_node (57 samples, 1.28%)</title><rect x="1021.7" y="1729" width="15.1" height="15.0" fill="rgb(246,12,1)" rx="2" ry="2" />
<text text-anchor="" x="1024.69" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (1 samples, 0.02%)</title><rect x="1180.2" y="1537" width="0.3" height="15.0" fill="rgb(223,224,43)" rx="2" ry="2" />
<text text-anchor="" x="1183.21" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="924.8" y="1793" width="0.3" height="15.0" fill="rgb(221,187,37)" rx="2" ry="2" />
<text text-anchor="" x="927.84" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::ThreadCache::ReleaseToCentralCache (4 samples, 0.09%)</title><rect x="1174.7" y="1601" width="1.0" height="15.0" fill="rgb(217,34,12)" rx="2" ry="2" />
<text text-anchor="" x="1177.65" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="22.4" y="1857" width="0.3" height="15.0" fill="rgb(205,166,23)" rx="2" ry="2" />
<text text-anchor="" x="25.44" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pvclock_clocksource_read (1 samples, 0.02%)</title><rect x="22.2" y="1809" width="0.2" height="15.0" fill="rgb(251,68,35)" rx="2" ry="2" />
<text text-anchor="" x="25.17" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="1116.2" y="1905" width="0.2" height="15.0" fill="rgb(244,123,37)" rx="2" ry="2" />
<text text-anchor="" x="1119.17" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_estimate_accuracy.part.6 (1 samples, 0.02%)</title><rect x="189.7" y="49" width="0.3" height="15.0" fill="rgb(235,83,33)" rx="2" ry="2" />
<text text-anchor="" x="192.69" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (3 samples, 0.07%)</title><rect x="1034.4" y="1649" width="0.8" height="15.0" fill="rgb(230,133,43)" rx="2" ry="2" />
<text text-anchor="" x="1037.40" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__aligned_buffer&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::_M_addr (1 samples, 0.02%)</title><rect x="1033.9" y="1649" width="0.2" height="15.0" fill="rgb(225,30,14)" rx="2" ry="2" />
<text text-anchor="" x="1036.87" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (47 samples, 1.05%)</title><rect x="635.9" y="1585" width="12.4" height="15.0" fill="rgb(231,133,28)" rx="2" ry="2" />
<text text-anchor="" x="638.86" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.02%)</title><rect x="475.0" y="1617" width="0.2" height="15.0" fill="rgb(231,214,12)" rx="2" ry="2" />
<text text-anchor="" x="477.96" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (3 samples, 0.07%)</title><rect x="112.7" y="1937" width="0.8" height="15.0" fill="rgb(230,144,33)" rx="2" ry="2" />
<text text-anchor="" x="115.68" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::TimerImpl (3,395 samples, 76.14%)</title><rect x="214.0" y="1889" width="898.5" height="15.0" fill="rgb(225,0,41)" rx="2" ry="2" />
<text text-anchor="" x="217.03" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Envoy::Event::TimerImpl::TimerImpl</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1569" width="7.2" height="15.0" fill="rgb(240,58,32)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (10 samples, 0.22%)</title><rect x="1104.8" y="1697" width="2.6" height="15.0" fill="rgb(227,134,24)" rx="2" ry="2" />
<text text-anchor="" x="1107.79" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="1151.6" y="1937" width="0.3" height="15.0" fill="rgb(218,141,34)" rx="2" ry="2" />
<text text-anchor="" x="1154.63" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (4 samples, 0.09%)</title><rect x="20.8" y="1873" width="1.1" height="15.0" fill="rgb(232,152,12)" rx="2" ry="2" />
<text text-anchor="" x="23.85" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (93 samples, 2.09%)</title><rect x="959.8" y="1793" width="24.6" height="15.0" fill="rgb(238,146,43)" rx="2" ry="2" />
<text text-anchor="" x="962.77" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Mod_range_hashing::operator (4 samples, 0.09%)</title><rect x="1028.8" y="1681" width="1.1" height="15.0" fill="rgb(225,126,53)" rx="2" ry="2" />
<text text-anchor="" x="1031.84" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (3 samples, 0.07%)</title><rect x="191.3" y="145" width="0.8" height="15.0" fill="rgb(248,41,12)" rx="2" ry="2" />
<text text-anchor="" x="194.27" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (204 samples, 4.58%)</title><rect x="385.0" y="1649" width="54.0" height="15.0" fill="rgb(218,158,9)" rx="2" ry="2" />
<text text-anchor="" x="387.99" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="561" width="6.6" height="15.0" fill="rgb(223,142,24)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::unlock (2 samples, 0.04%)</title><rect x="705.5" y="1777" width="0.5" height="15.0" fill="rgb(212,98,26)" rx="2" ry="2" />
<text text-anchor="" x="708.46" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add (2 samples, 0.04%)</title><rect x="890.7" y="1713" width="0.5" height="15.0" fill="rgb(214,161,28)" rx="2" ry="2" />
<text text-anchor="" x="893.70" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="1151.9" y="1857" width="0.3" height="15.0" fill="rgb(251,134,14)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (6 samples, 0.13%)</title><rect x="204.2" y="1857" width="1.6" height="15.0" fill="rgb(247,78,27)" rx="2" ry="2" />
<text text-anchor="" x="207.24" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="192.1" y="129" width="0.2" height="15.0" fill="rgb(219,213,4)" rx="2" ry="2" />
<text text-anchor="" x="195.07" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xen_clocksource_get_cycles (1 samples, 0.02%)</title><rect x="1152.2" y="1937" width="0.2" height="15.0" fill="rgb(216,119,12)" rx="2" ry="2" />
<text text-anchor="" x="1155.16" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (2 samples, 0.04%)</title><rect x="918.5" y="1793" width="0.5" height="15.0" fill="rgb(247,222,44)" rx="2" ry="2" />
<text text-anchor="" x="921.49" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="178.6" y="1921" width="0.2" height="15.0" fill="rgb(241,128,39)" rx="2" ry="2" />
<text text-anchor="" x="181.57" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pvclock_clocksource_read (1 samples, 0.02%)</title><rect x="1161.4" y="1793" width="0.3" height="15.0" fill="rgb(234,85,20)" rx="2" ry="2" />
<text text-anchor="" x="1164.42" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="194.7" y="961" width="0.3" height="15.0" fill="rgb(229,98,51)" rx="2" ry="2" />
<text text-anchor="" x="197.71" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.04%)</title><rect x="189.4" y="113" width="0.6" height="15.0" fill="rgb(206,216,36)" rx="2" ry="2" />
<text text-anchor="" x="192.42" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::shared_ptr&lt;std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; (10 samples, 0.22%)</title><rect x="1179.2" y="1649" width="2.6" height="15.0" fill="rgb(252,171,38)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (14 samples, 0.31%)</title><rect x="1169.4" y="1761" width="3.7" height="15.0" fill="rgb(220,10,4)" rx="2" ry="2" />
<text text-anchor="" x="1172.36" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::_M_valptr (2 samples, 0.04%)</title><rect x="1050.3" y="1713" width="0.5" height="15.0" fill="rgb(205,185,54)" rx="2" ry="2" />
<text text-anchor="" x="1053.27" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list (1 samples, 0.02%)</title><rect x="189.4" y="65" width="0.3" height="15.0" fill="rgb(222,7,21)" rx="2" ry="2" />
<text text-anchor="" x="192.42" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (8 samples, 0.18%)</title><rect x="110.3" y="1953" width="2.1" height="15.0" fill="rgb(249,109,3)" rx="2" ry="2" />
<text text-anchor="" x="113.30" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_ts64 (1 samples, 0.02%)</title><rect x="1161.4" y="1825" width="0.3" height="15.0" fill="rgb(252,193,46)" rx="2" ry="2" />
<text text-anchor="" x="1164.42" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_find_before_node (7 samples, 0.16%)</title><rect x="1092.9" y="1729" width="1.8" height="15.0" fill="rgb(211,117,5)" rx="2" ry="2" />
<text text-anchor="" x="1095.88" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (28 samples, 0.63%)</title><rect x="187.6" y="1889" width="7.4" height="15.0" fill="rgb(215,16,29)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>change_protection_range (1 samples, 0.02%)</title><rect x="1172.3" y="1521" width="0.2" height="15.0" fill="rgb(251,121,23)" rx="2" ry="2" />
<text text-anchor="" x="1175.27" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::_M_valptr (2 samples, 0.04%)</title><rect x="1033.6" y="1665" width="0.5" height="15.0" fill="rgb(217,1,52)" rx="2" ry="2" />
<text text-anchor="" x="1036.60" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt;::operator++ (1 samples, 0.02%)</title><rect x="1102.9" y="1809" width="0.3" height="15.0" fill="rgb(206,11,38)" rx="2" ry="2" />
<text text-anchor="" x="1105.94" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="203.7" y="1857" width="0.3" height="15.0" fill="rgb(244,132,5)" rx="2" ry="2" />
<text text-anchor="" x="206.71" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.02%)</title><rect x="798.3" y="1697" width="0.3" height="15.0" fill="rgb(209,105,14)" rx="2" ry="2" />
<text text-anchor="" x="801.34" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="1142.4" y="1873" width="0.2" height="15.0" fill="rgb(246,176,35)" rx="2" ry="2" />
<text text-anchor="" x="1145.37" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 0.58%)</title><rect x="187.8" y="961" width="6.9" height="15.0" fill="rgb(218,64,13)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__aligned_buffer&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::_M_ptr (2 samples, 0.04%)</title><rect x="1076.7" y="1697" width="0.6" height="15.0" fill="rgb(237,149,34)" rx="2" ry="2" />
<text text-anchor="" x="1079.74" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::~_Function_base (51 samples, 1.14%)</title><rect x="872.4" y="1697" width="13.5" height="15.0" fill="rgb(214,192,32)" rx="2" ry="2" />
<text text-anchor="" x="875.44" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (28 samples, 0.63%)</title><rect x="875.9" y="1633" width="7.4" height="15.0" fill="rgb(231,223,24)" rx="2" ry="2" />
<text text-anchor="" x="878.88" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1697" width="7.2" height="15.0" fill="rgb(240,198,8)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_node&lt;std::function&lt;void (201 samples, 4.51%)</title><rect x="624.5" y="1713" width="53.2" height="15.0" fill="rgb(228,40,21)" rx="2" ry="2" />
<text text-anchor="" x="627.48" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_rehash (1 samples, 0.02%)</title><rect x="1095.8" y="1729" width="0.3" height="15.0" fill="rgb(241,201,29)" rx="2" ry="2" />
<text text-anchor="" x="1098.79" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::lock (36 samples, 0.81%)</title><rect x="695.9" y="1761" width="9.6" height="15.0" fill="rgb(206,175,23)" rx="2" ry="2" />
<text text-anchor="" x="698.93" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::DispatcherImpl::runPostCallbacks (3 samples, 0.07%)</title><rect x="1186.3" y="1793" width="0.8" height="15.0" fill="rgb(218,25,40)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::distance&lt;char*&gt; (2 samples, 0.04%)</title><rect x="983.6" y="1761" width="0.5" height="15.0" fill="rgb(217,186,41)" rx="2" ry="2" />
<text text-anchor="" x="986.59" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>change_prot_numa (1 samples, 0.02%)</title><rect x="1172.3" y="1553" width="0.2" height="15.0" fill="rgb(217,89,53)" rx="2" ry="2" />
<text text-anchor="" x="1175.27" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (11 samples, 0.25%)</title><rect x="571.8" y="1617" width="2.9" height="15.0" fill="rgb(210,16,46)" rx="2" ry="2" />
<text text-anchor="" x="574.82" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="1151.6" y="1921" width="0.3" height="15.0" fill="rgb(216,147,21)" rx="2" ry="2" />
<text text-anchor="" x="1154.63" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.02%)</title><rect x="726.6" y="1745" width="0.3" height="15.0" fill="rgb(246,87,32)" rx="2" ry="2" />
<text text-anchor="" x="729.63" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.02%)</title><rect x="39.9" y="1937" width="0.3" height="15.0" fill="rgb(254,181,15)" rx="2" ry="2" />
<text text-anchor="" x="42.90" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;::construct&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (26 samples, 0.58%)</title><rect x="1051.9" y="1713" width="6.8" height="15.0" fill="rgb(240,156,51)" rx="2" ry="2" />
<text text-anchor="" x="1054.86" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_read (1 samples, 0.02%)</title><rect x="203.4" y="1889" width="0.3" height="15.0" fill="rgb(231,88,27)" rx="2" ry="2" />
<text text-anchor="" x="206.45" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::mutex::lock (36 samples, 0.81%)</title><rect x="695.9" y="1745" width="9.6" height="15.0" fill="rgb(224,202,39)" rx="2" ry="2" />
<text text-anchor="" x="698.93" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr&lt;Envoy::Event::Timer, std::default_delete&lt;Envoy::Event::Timer&gt; &gt;::get (2 samples, 0.04%)</title><rect x="928.3" y="1793" width="0.5" height="15.0" fill="rgb(247,107,31)" rx="2" ry="2" />
<text text-anchor="" x="931.28" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::_List_base&lt;std::function&lt;void (10 samples, 0.22%)</title><rect x="620.0" y="1745" width="2.6" height="15.0" fill="rgb(226,67,15)" rx="2" ry="2" />
<text text-anchor="" x="622.98" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_M_empty (3 samples, 0.07%)</title><rect x="676.9" y="1665" width="0.8" height="15.0" fill="rgb(207,93,26)" rx="2" ry="2" />
<text text-anchor="" x="679.88" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (3 samples, 0.07%)</title><rect x="214.6" y="1825" width="0.8" height="15.0" fill="rgb(223,76,30)" rx="2" ry="2" />
<text text-anchor="" x="217.56" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="1152.4" y="1937" width="0.3" height="15.0" fill="rgb(219,60,26)" rx="2" ry="2" />
<text text-anchor="" x="1155.42" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (11 samples, 0.25%)</title><rect x="611.5" y="1777" width="2.9" height="15.0" fill="rgb(219,209,13)" rx="2" ry="2" />
<text text-anchor="" x="614.51" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr&lt;Envoy::Event::Timer, std::default_delete&lt;Envoy::Event::Timer&gt; &gt;::operator (3 samples, 0.07%)</title><rect x="893.1" y="1793" width="0.8" height="15.0" fill="rgb(222,132,20)" rx="2" ry="2" />
<text text-anchor="" x="896.08" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="739.1" y="1665" width="0.2" height="15.0" fill="rgb(209,152,4)" rx="2" ry="2" />
<text text-anchor="" x="742.06" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (3 samples, 0.07%)</title><rect x="214.6" y="1873" width="0.8" height="15.0" fill="rgb(222,159,23)" rx="2" ry="2" />
<text text-anchor="" x="217.56" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="513" width="6.6" height="15.0" fill="rgb(206,209,3)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1761" width="7.2" height="15.0" fill="rgb(217,179,48)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::TimerImpl (76 samples, 1.70%)</title><rect x="1166.2" y="1873" width="20.1" height="15.0" fill="rgb(214,79,0)" rx="2" ry="2" />
<text text-anchor="" x="1169.18" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::forward&lt;std::function&lt;void (1 samples, 0.02%)</title><rect x="677.7" y="1713" width="0.2" height="15.0" fill="rgb(234,133,7)" rx="2" ry="2" />
<text text-anchor="" x="680.67" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="20.6" y="1905" width="0.2" height="15.0" fill="rgb(215,156,48)" rx="2" ry="2" />
<text text-anchor="" x="23.59" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.07%)</title><rect x="214.6" y="1857" width="0.8" height="15.0" fill="rgb(225,94,10)" rx="2" ry="2" />
<text text-anchor="" x="217.56" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.02%)</title><rect x="798.3" y="1729" width="0.3" height="15.0" fill="rgb(234,24,29)" rx="2" ry="2" />
<text text-anchor="" x="801.34" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (1 samples, 0.02%)</title><rect x="1151.9" y="1905" width="0.3" height="15.0" fill="rgb(219,48,15)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (2 samples, 0.04%)</title><rect x="481.8" y="1601" width="0.6" height="15.0" fill="rgb(238,103,49)" rx="2" ry="2" />
<text text-anchor="" x="484.84" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject, (2 samples, 0.04%)</title><rect x="1182.3" y="1713" width="0.6" height="15.0" fill="rgb(246,98,30)" rx="2" ry="2" />
<text text-anchor="" x="1185.33" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::mutex::unlock (13 samples, 0.29%)</title><rect x="707.6" y="1745" width="3.4" height="15.0" fill="rgb(206,88,25)" rx="2" ry="2" />
<text text-anchor="" x="710.57" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_M_empty (4 samples, 0.09%)</title><rect x="675.8" y="1681" width="1.1" height="15.0" fill="rgb(244,147,5)" rx="2" ry="2" />
<text text-anchor="" x="678.82" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.09%)</title><rect x="23.2" y="1761" width="1.1" height="15.0" fill="rgb(225,167,3)" rx="2" ry="2" />
<text text-anchor="" x="26.23" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (1 samples, 0.02%)</title><rect x="949.2" y="1809" width="0.2" height="15.0" fill="rgb(234,228,35)" rx="2" ry="2" />
<text text-anchor="" x="952.18" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (1 samples, 0.02%)</title><rect x="190.0" y="65" width="0.2" height="15.0" fill="rgb(247,173,16)" rx="2" ry="2" />
<text text-anchor="" x="192.95" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (1 samples, 0.02%)</title><rect x="865.6" y="1681" width="0.2" height="15.0" fill="rgb(220,17,25)" rx="2" ry="2" />
<text text-anchor="" x="868.56" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (11 samples, 0.25%)</title><rect x="568.6" y="1569" width="3.0" height="15.0" fill="rgb(228,52,49)" rx="2" ry="2" />
<text text-anchor="" x="571.64" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (2 samples, 0.04%)</title><rect x="1152.2" y="2033" width="0.5" height="15.0" fill="rgb(253,163,46)" rx="2" ry="2" />
<text text-anchor="" x="1155.16" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (7 samples, 0.16%)</title><rect x="843.3" y="1617" width="1.9" height="15.0" fill="rgb(211,229,41)" rx="2" ry="2" />
<text text-anchor="" x="846.33" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1153" width="7.2" height="15.0" fill="rgb(221,89,23)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move&lt;Envoy::ThreadLocal::InstanceImpl::set (2 samples, 0.04%)</title><rect x="866.4" y="1761" width="0.5" height="15.0" fill="rgb(210,219,36)" rx="2" ry="2" />
<text text-anchor="" x="869.35" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (147 samples, 3.30%)</title><rect x="512.5" y="1569" width="38.9" height="15.0" fill="rgb(216,141,44)" rx="2" ry="2" />
<text text-anchor="" x="515.54" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ent..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Function_base (2 samples, 0.04%)</title><rect x="836.7" y="1777" width="0.5" height="15.0" fill="rgb(213,14,47)" rx="2" ry="2" />
<text text-anchor="" x="839.71" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>evthread_posix_lock (2 samples, 0.04%)</title><rect x="236.8" y="1793" width="0.5" height="15.0" fill="rgb(209,227,20)" rx="2" ry="2" />
<text text-anchor="" x="239.79" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate::ThreadLocalCachedDate (2 samples, 0.04%)</title><rect x="13.7" y="2033" width="0.5" height="15.0" fill="rgb(215,43,15)" rx="2" ry="2" />
<text text-anchor="" x="16.70" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (14 samples, 0.31%)</title><rect x="199.2" y="1969" width="3.7" height="15.0" fill="rgb(220,94,21)" rx="2" ry="2" />
<text text-anchor="" x="202.21" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.02%)</title><rect x="1112.5" y="1841" width="0.2" height="15.0" fill="rgb(223,157,52)" rx="2" ry="2" />
<text text-anchor="" x="1115.46" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_insert_bucket_begin (3 samples, 0.07%)</title><rect x="1095.0" y="1729" width="0.8" height="15.0" fill="rgb(211,61,44)" rx="2" ry="2" />
<text text-anchor="" x="1098.00" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (9 samples, 0.20%)</title><rect x="1173.3" y="1729" width="2.4" height="15.0" fill="rgb(208,52,44)" rx="2" ry="2" />
<text text-anchor="" x="1176.33" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::construct&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (1 samples, 0.02%)</title><rect x="1096.1" y="1697" width="0.2" height="15.0" fill="rgb(242,217,51)" rx="2" ry="2" />
<text text-anchor="" x="1099.06" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr&lt;Envoy::Event::Timer, std::default_delete&lt;Envoy::Event::Timer&gt; &gt;::get (9 samples, 0.20%)</title><rect x="727.2" y="1761" width="2.3" height="15.0" fill="rgb(250,62,12)" rx="2" ry="2" />
<text text-anchor="" x="730.16" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (94 samples, 2.11%)</title><rect x="291.0" y="1761" width="24.9" height="15.0" fill="rgb(227,51,45)" rx="2" ry="2" />
<text text-anchor="" x="294.04" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="192.1" y="65" width="0.2" height="15.0" fill="rgb(211,114,4)" rx="2" ry="2" />
<text text-anchor="" x="195.07" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (1 samples, 0.02%)</title><rect x="1181.8" y="1665" width="0.3" height="15.0" fill="rgb(208,211,33)" rx="2" ry="2" />
<text text-anchor="" x="1184.80" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::unique_lock (4 samples, 0.09%)</title><rect x="1183.6" y="1777" width="1.1" height="15.0" fill="rgb(239,33,36)" rx="2" ry="2" />
<text text-anchor="" x="1186.65" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (35 samples, 0.78%)</title><rect x="576.8" y="1729" width="9.3" height="15.0" fill="rgb(238,176,48)" rx="2" ry="2" />
<text text-anchor="" x="579.84" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (11 samples, 0.25%)</title><rect x="925.1" y="1809" width="2.9" height="15.0" fill="rgb(206,60,52)" rx="2" ry="2" />
<text text-anchor="" x="928.10" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__allocate_guarded&lt;std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (4 samples, 0.09%)</title><rect x="846.0" y="1665" width="1.0" height="15.0" fill="rgb(235,59,7)" rx="2" ry="2" />
<text text-anchor="" x="848.98" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::ThreadCache::ReleaseToCentralCache (2 samples, 0.04%)</title><rect x="1168.3" y="1681" width="0.5" height="15.0" fill="rgb(246,15,32)" rx="2" ry="2" />
<text text-anchor="" x="1171.30" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (6 samples, 0.13%)</title><rect x="730.6" y="1777" width="1.6" height="15.0" fill="rgb(212,225,38)" rx="2" ry="2" />
<text text-anchor="" x="733.60" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list (1 samples, 0.02%)</title><rect x="1124.4" y="1953" width="0.2" height="15.0" fill="rgb(235,68,30)" rx="2" ry="2" />
<text text-anchor="" x="1127.37" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.02%)</title><rect x="1118.8" y="1921" width="0.3" height="15.0" fill="rgb(228,139,37)" rx="2" ry="2" />
<text text-anchor="" x="1121.81" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="1142.4" y="1889" width="0.2" height="15.0" fill="rgb(217,87,23)" rx="2" ry="2" />
<text text-anchor="" x="1145.37" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_M_empty (1 samples, 0.02%)</title><rect x="662.3" y="1617" width="0.3" height="15.0" fill="rgb(205,227,51)" rx="2" ry="2" />
<text text-anchor="" x="665.32" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="192.1" y="49" width="0.2" height="15.0" fill="rgb(248,85,20)" rx="2" ry="2" />
<text text-anchor="" x="195.07" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_data (1 samples, 0.02%)</title><rect x="1087.6" y="1777" width="0.3" height="15.0" fill="rgb(212,168,8)" rx="2" ry="2" />
<text text-anchor="" x="1090.59" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::reference_wrapper&lt;Envoy::Event::Dispatcher&gt;, std::allocator&lt;std::reference_wrapper&lt;Envoy::Event::Dispatcher&gt; &gt; &gt;::end (1 samples, 0.02%)</title><rect x="815.5" y="1793" width="0.3" height="15.0" fill="rgb(213,189,27)" rx="2" ry="2" />
<text text-anchor="" x="818.54" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="195.8" y="2001" width="0.2" height="15.0" fill="rgb(247,87,51)" rx="2" ry="2" />
<text text-anchor="" x="198.77" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1201" width="7.2" height="15.0" fill="rgb(247,45,37)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::_M_create_node&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; const&amp;&gt; (3 samples, 0.07%)</title><rect x="1087.9" y="1761" width="0.7" height="15.0" fill="rgb(229,188,4)" rx="2" ry="2" />
<text text-anchor="" x="1090.85" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::unlock (17 samples, 0.38%)</title><rect x="706.5" y="1761" width="4.5" height="15.0" fill="rgb(217,198,47)" rx="2" ry="2" />
<text text-anchor="" x="709.51" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="190.7" y="145" width="0.3" height="15.0" fill="rgb(254,9,24)" rx="2" ry="2" />
<text text-anchor="" x="193.74" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_callback_activate_nolock_ (813 samples, 18.23%)</title><rect x="372.8" y="1745" width="215.2" height="15.0" fill="rgb(229,53,49)" rx="2" ry="2" />
<text text-anchor="" x="375.81" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event_callback_activate_nolo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (3 samples, 0.07%)</title><rect x="1173.9" y="1617" width="0.8" height="15.0" fill="rgb(210,177,27)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::array&lt;char, 1024ul&gt;::size (4 samples, 0.09%)</title><rect x="227.5" y="1793" width="1.1" height="15.0" fill="rgb(229,178,0)" rx="2" ry="2" />
<text text-anchor="" x="230.53" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (2 samples, 0.04%)</title><rect x="1182.3" y="1681" width="0.6" height="15.0" fill="rgb(228,162,54)" rx="2" ry="2" />
<text text-anchor="" x="1185.33" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (2 samples, 0.04%)</title><rect x="740.1" y="1681" width="0.6" height="15.0" fill="rgb(208,135,41)" rx="2" ry="2" />
<text text-anchor="" x="743.12" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="1186.8" y="1649" width="0.3" height="15.0" fill="rgb(205,118,14)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="711.5" y="1697" width="0.3" height="15.0" fill="rgb(210,121,29)" rx="2" ry="2" />
<text text-anchor="" x="714.54" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::_List_base&lt;std::function&lt;void (2 samples, 0.04%)</title><rect x="1168.3" y="1745" width="0.5" height="15.0" fill="rgb(232,110,31)" rx="2" ry="2" />
<text text-anchor="" x="1171.30" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (7 samples, 0.16%)</title><rect x="22.4" y="1905" width="1.9" height="15.0" fill="rgb(236,227,38)" rx="2" ry="2" />
<text text-anchor="" x="25.44" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (10 samples, 0.22%)</title><rect x="1104.8" y="1681" width="2.6" height="15.0" fill="rgb(247,221,17)" rx="2" ry="2" />
<text text-anchor="" x="1107.79" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="195.8" y="1937" width="0.2" height="15.0" fill="rgb(213,199,45)" rx="2" ry="2" />
<text text-anchor="" x="198.77" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (6 samples, 0.13%)</title><rect x="1090.2" y="1745" width="1.6" height="15.0" fill="rgb(245,0,46)" rx="2" ry="2" />
<text text-anchor="" x="1093.23" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (67 samples, 1.50%)</title><rect x="481.8" y="1649" width="17.8" height="15.0" fill="rgb(225,79,33)" rx="2" ry="2" />
<text text-anchor="" x="484.84" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="401" width="6.6" height="15.0" fill="rgb(213,64,40)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_ebo_helper&lt;0, std::__detail::_Identity, true&gt;::_S_cget (1 samples, 0.02%)</title><rect x="1036.5" y="1697" width="0.3" height="15.0" fill="rgb(245,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1039.51" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.02%)</title><rect x="371.5" y="1633" width="0.3" height="15.0" fill="rgb(241,150,51)" rx="2" ry="2" />
<text text-anchor="" x="374.49" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_swapgs (8 samples, 0.18%)</title><rect x="1116.7" y="2017" width="2.1" height="15.0" fill="rgb(254,179,15)" rx="2" ry="2" />
<text text-anchor="" x="1119.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_unhook (2 samples, 0.04%)</title><rect x="1168.8" y="1761" width="0.6" height="15.0" fill="rgb(215,106,1)" rx="2" ry="2" />
<text text-anchor="" x="1171.83" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (2 samples, 0.04%)</title><rect x="189.4" y="129" width="0.6" height="15.0" fill="rgb(242,126,35)" rx="2" ry="2" />
<text text-anchor="" x="192.42" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="20.6" y="1777" width="0.2" height="15.0" fill="rgb(228,52,16)" rx="2" ry="2" />
<text text-anchor="" x="23.59" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Mod_range_hashing::operator (9 samples, 0.20%)</title><rect x="1044.5" y="1681" width="2.3" height="15.0" fill="rgb(251,117,9)" rx="2" ry="2" />
<text text-anchor="" x="1047.45" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="19.8" y="1921" width="0.3" height="15.0" fill="rgb(209,107,48)" rx="2" ry="2" />
<text text-anchor="" x="22.79" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::_M_node_allocator (2 samples, 0.04%)</title><rect x="1064.0" y="1729" width="0.6" height="15.0" fill="rgb(227,113,47)" rx="2" ry="2" />
<text text-anchor="" x="1067.03" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::DispatcherImpl::post (1,833 samples, 41.11%)</title><rect x="244.5" y="1793" width="485.0" height="15.0" fill="rgb(227,198,4)" rx="2" ry="2" />
<text text-anchor="" x="247.47" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Envoy::Event::DispatcherImpl::post</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 1.05%)</title><rect x="182.5" y="1969" width="12.5" height="15.0" fill="rgb(245,142,20)" rx="2" ry="2" />
<text text-anchor="" x="185.54" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_ts64 (1 samples, 0.02%)</title><rect x="22.2" y="1841" width="0.2" height="15.0" fill="rgb(228,75,8)" rx="2" ry="2" />
<text text-anchor="" x="25.17" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.04%)</title><rect x="195.2" y="1873" width="0.6" height="15.0" fill="rgb(223,36,27)" rx="2" ry="2" />
<text text-anchor="" x="198.24" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="315.7" y="1681" width="0.2" height="15.0" fill="rgb(212,115,31)" rx="2" ry="2" />
<text text-anchor="" x="318.65" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (28 samples, 0.63%)</title><rect x="505.1" y="1585" width="7.4" height="15.0" fill="rgb(228,95,39)" rx="2" ry="2" />
<text text-anchor="" x="508.13" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::get&lt;0ul, Envoy::Event::Timer*, std::default_delete&lt;Envoy::Event::Timer&gt; &gt; (7 samples, 0.16%)</title><rect x="727.7" y="1745" width="1.8" height="15.0" fill="rgb(223,218,37)" rx="2" ry="2" />
<text text-anchor="" x="730.69" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1649" width="7.2" height="15.0" fill="rgb(241,138,25)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::array&lt;char, 1024ul&gt;::operator[] (1 samples, 0.02%)</title><rect x="227.3" y="1793" width="0.2" height="15.0" fill="rgb(250,155,32)" rx="2" ry="2" />
<text text-anchor="" x="230.26" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (222 samples, 4.98%)</title><rect x="116.4" y="1921" width="58.7" height="15.0" fill="rgb(251,106,2)" rx="2" ry="2" />
<text text-anchor="" x="119.38" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >eventf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (3 samples, 0.07%)</title><rect x="324.6" y="1665" width="0.8" height="15.0" fill="rgb(228,161,8)" rx="2" ry="2" />
<text text-anchor="" x="327.65" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (146 samples, 3.27%)</title><rect x="252.4" y="1745" width="38.6" height="15.0" fill="rgb(244,219,12)" rx="2" ry="2" />
<text text-anchor="" x="255.40" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ent..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="203.7" y="1889" width="0.3" height="15.0" fill="rgb(226,117,29)" rx="2" ry="2" />
<text text-anchor="" x="206.71" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt;::_M_next (1 samples, 0.02%)</title><rect x="1095.5" y="1713" width="0.3" height="15.0" fill="rgb(218,49,27)" rx="2" ry="2" />
<text text-anchor="" x="1098.53" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate::~ThreadLocalCachedDate (4 samples, 0.09%)</title><rect x="740.7" y="1665" width="1.0" height="15.0" fill="rgb(233,52,13)" rx="2" ry="2" />
<text text-anchor="" x="743.65" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (1 samples, 0.02%)</title><rect x="843.1" y="1617" width="0.2" height="15.0" fill="rgb(211,120,9)" rx="2" ry="2" />
<text text-anchor="" x="846.07" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::~_Function_base (3 samples, 0.07%)</title><rect x="1167.5" y="1697" width="0.8" height="15.0" fill="rgb(210,73,40)" rx="2" ry="2" />
<text text-anchor="" x="1170.51" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1178.6" y="1617" width="0.3" height="15.0" fill="rgb(234,174,4)" rx="2" ry="2" />
<text text-anchor="" x="1181.62" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (12 samples, 0.27%)</title><rect x="196.0" y="1985" width="3.2" height="15.0" fill="rgb(242,174,8)" rx="2" ry="2" />
<text text-anchor="" x="199.04" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_ctx_read (1 samples, 0.02%)</title><rect x="203.4" y="1873" width="0.3" height="15.0" fill="rgb(249,46,42)" rx="2" ry="2" />
<text text-anchor="" x="206.45" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (3 samples, 0.07%)</title><rect x="676.9" y="1681" width="0.8" height="15.0" fill="rgb(229,88,35)" rx="2" ry="2" />
<text text-anchor="" x="679.88" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (1 samples, 0.02%)</title><rect x="315.4" y="1681" width="0.3" height="15.0" fill="rgb(253,11,48)" rx="2" ry="2" />
<text text-anchor="" x="318.39" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::_M_deallocate_nodes (4 samples, 0.09%)</title><rect x="1100.6" y="1745" width="1.0" height="15.0" fill="rgb(208,121,17)" rx="2" ry="2" />
<text text-anchor="" x="1103.55" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (6 samples, 0.13%)</title><rect x="188.4" y="145" width="1.6" height="15.0" fill="rgb(229,24,24)" rx="2" ry="2" />
<text text-anchor="" x="191.36" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::max_size (1 samples, 0.02%)</title><rect x="995.5" y="1729" width="0.3" height="15.0" fill="rgb(238,71,39)" rx="2" ry="2" />
<text text-anchor="" x="998.49" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_equals (22 samples, 0.49%)</title><rect x="1031.0" y="1713" width="5.8" height="15.0" fill="rgb(240,20,31)" rx="2" ry="2" />
<text text-anchor="" x="1033.96" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1425" width="7.2" height="15.0" fill="rgb(215,185,13)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (18 samples, 0.40%)</title><rect x="206.4" y="1857" width="4.7" height="15.0" fill="rgb(215,8,0)" rx="2" ry="2" />
<text text-anchor="" x="209.36" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (2 samples, 0.04%)</title><rect x="981.2" y="1729" width="0.5" height="15.0" fill="rgb(233,105,41)" rx="2" ry="2" />
<text text-anchor="" x="984.20" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::_List_base&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::_M_get_node (26 samples, 0.58%)</title><rect x="988.9" y="1745" width="6.9" height="15.0" fill="rgb(245,15,31)" rx="2" ry="2" />
<text text-anchor="" x="991.88" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_bucket_index (6 samples, 0.13%)</title><rect x="1018.8" y="1729" width="1.6" height="15.0" fill="rgb(219,5,2)" rx="2" ry="2" />
<text text-anchor="" x="1021.78" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.02%)</title><rect x="678.5" y="1729" width="0.2" height="15.0" fill="rgb(240,83,15)" rx="2" ry="2" />
<text text-anchor="" x="681.46" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;::construct&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (6 samples, 0.13%)</title><rect x="1096.1" y="1713" width="1.5" height="15.0" fill="rgb(224,168,1)" rx="2" ry="2" />
<text text-anchor="" x="1099.06" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access (1 samples, 0.02%)</title><rect x="827.2" y="1729" width="0.3" height="15.0" fill="rgb(226,86,25)" rx="2" ry="2" />
<text text-anchor="" x="830.19" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="192.1" y="81" width="0.2" height="15.0" fill="rgb(220,40,53)" rx="2" ry="2" />
<text text-anchor="" x="195.07" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (2 samples, 0.04%)</title><rect x="598.0" y="1697" width="0.5" height="15.0" fill="rgb(239,27,10)" rx="2" ry="2" />
<text text-anchor="" x="601.02" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (2 samples, 0.04%)</title><rect x="13.7" y="2017" width="0.5" height="15.0" fill="rgb(218,68,9)" rx="2" ry="2" />
<text text-anchor="" x="16.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (8 samples, 0.18%)</title><rect x="1173.6" y="1697" width="2.1" height="15.0" fill="rgb(206,39,5)" rx="2" ry="2" />
<text text-anchor="" x="1176.59" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (3 samples, 0.07%)</title><rect x="1124.4" y="1985" width="0.8" height="15.0" fill="rgb(239,88,48)" rx="2" ry="2" />
<text text-anchor="" x="1127.37" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="194.2" y="129" width="0.2" height="15.0" fill="rgb(234,174,54)" rx="2" ry="2" />
<text text-anchor="" x="197.18" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="194.4" y="849" width="0.3" height="15.0" fill="rgb(247,103,9)" rx="2" ry="2" />
<text text-anchor="" x="197.45" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="212.2" y="1793" width="0.2" height="15.0" fill="rgb(235,208,51)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (2 samples, 0.04%)</title><rect x="1161.7" y="1793" width="0.5" height="15.0" fill="rgb(250,31,53)" rx="2" ry="2" />
<text text-anchor="" x="1164.68" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (81 samples, 1.82%)</title><rect x="895.2" y="1729" width="21.4" height="15.0" fill="rgb(242,93,15)" rx="2" ry="2" />
<text text-anchor="" x="898.20" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (20 samples, 0.45%)</title><rect x="206.1" y="1921" width="5.3" height="15.0" fill="rgb(231,35,0)" rx="2" ry="2" />
<text text-anchor="" x="209.09" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_self (2 samples, 0.04%)</title><rect x="809.2" y="1793" width="0.5" height="15.0" fill="rgb(228,187,5)" rx="2" ry="2" />
<text text-anchor="" x="812.19" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (19 samples, 0.43%)</title><rect x="1119.3" y="1905" width="5.1" height="15.0" fill="rgb(230,105,17)" rx="2" ry="2" />
<text text-anchor="" x="1122.34" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_create (2 samples, 0.04%)</title><rect x="1172.5" y="1649" width="0.6" height="15.0" fill="rgb(243,78,50)" rx="2" ry="2" />
<text text-anchor="" x="1175.53" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="225" width="6.6" height="15.0" fill="rgb(254,117,6)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="188.6" y="49" width="0.3" height="15.0" fill="rgb(225,164,28)" rx="2" ry="2" />
<text text-anchor="" x="191.63" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_self (1 samples, 0.02%)</title><rect x="1160.6" y="1857" width="0.3" height="15.0" fill="rgb(208,137,1)" rx="2" ry="2" />
<text text-anchor="" x="1163.63" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (53 samples, 1.19%)</title><rect x="554.6" y="1569" width="14.0" height="15.0" fill="rgb(232,111,16)" rx="2" ry="2" />
<text text-anchor="" x="557.62" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (3 samples, 0.07%)</title><rect x="191.3" y="81" width="0.8" height="15.0" fill="rgb(232,159,4)" rx="2" ry="2" />
<text text-anchor="" x="194.27" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (2 samples, 0.04%)</title><rect x="1111.9" y="1777" width="0.6" height="15.0" fill="rgb(245,74,15)" rx="2" ry="2" />
<text text-anchor="" x="1114.93" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (14 samples, 0.31%)</title><rect x="222.5" y="1793" width="3.7" height="15.0" fill="rgb(249,58,49)" rx="2" ry="2" />
<text text-anchor="" x="225.50" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_bucket_index (9 samples, 0.20%)</title><rect x="1018.0" y="1745" width="2.4" height="15.0" fill="rgb(241,93,21)" rx="2" ry="2" />
<text text-anchor="" x="1020.99" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::Stats::Counter, (12 samples, 0.27%)</title><rect x="1012.2" y="1761" width="3.1" height="15.0" fill="rgb(211,141,18)" rx="2" ry="2" />
<text text-anchor="" x="1015.17" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (132 samples, 2.96%)</title><rect x="516.2" y="1521" width="35.0" height="15.0" fill="rgb(215,24,18)" rx="2" ry="2" />
<text text-anchor="" x="519.24" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (2 samples, 0.04%)</title><rect x="1179.9" y="1601" width="0.6" height="15.0" fill="rgb(219,27,37)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>main (3,447 samples, 77.30%)</title><rect x="204.0" y="2001" width="912.2" height="15.0" fill="rgb(243,67,42)" rx="2" ry="2" />
<text text-anchor="" x="206.98" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (3 samples, 0.07%)</title><rect x="214.6" y="1793" width="0.8" height="15.0" fill="rgb(236,54,11)" rx="2" ry="2" />
<text text-anchor="" x="217.56" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (1 samples, 0.02%)</title><rect x="1097.6" y="1681" width="0.3" height="15.0" fill="rgb(251,212,52)" rx="2" ry="2" />
<text text-anchor="" x="1100.64" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (1 samples, 0.02%)</title><rect x="949.4" y="1825" width="0.3" height="15.0" fill="rgb(247,35,25)" rx="2" ry="2" />
<text text-anchor="" x="952.45" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_handler&lt;void (75 samples, 1.68%)</title><rect x="1166.4" y="1825" width="19.9" height="15.0" fill="rgb(246,74,41)" rx="2" ry="2" />
<text text-anchor="" x="1169.45" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (13 samples, 0.29%)</title><rect x="187.8" y="177" width="3.5" height="15.0" fill="rgb(225,10,28)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_ts64 (1 samples, 0.02%)</title><rect x="1163.5" y="1809" width="0.3" height="15.0" fill="rgb(237,171,15)" rx="2" ry="2" />
<text text-anchor="" x="1166.54" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (2 samples, 0.04%)</title><rect x="924.3" y="1761" width="0.5" height="15.0" fill="rgb(210,80,32)" rx="2" ry="2" />
<text text-anchor="" x="927.31" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (5 samples, 0.11%)</title><rect x="662.6" y="1617" width="1.3" height="15.0" fill="rgb(245,226,54)" rx="2" ry="2" />
<text text-anchor="" x="665.59" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="20.6" y="1921" width="0.2" height="15.0" fill="rgb(251,46,4)" rx="2" ry="2" />
<text text-anchor="" x="23.59" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gettime (1 samples, 0.02%)</title><rect x="1115.9" y="1937" width="0.3" height="15.0" fill="rgb(217,104,46)" rx="2" ry="2" />
<text text-anchor="" x="1118.90" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xen_clocksource_get_cycles (1 samples, 0.02%)</title><rect x="20.8" y="1841" width="0.3" height="15.0" fill="rgb(213,189,28)" rx="2" ry="2" />
<text text-anchor="" x="23.85" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.04%)</title><rect x="195.2" y="1857" width="0.6" height="15.0" fill="rgb(248,57,23)" rx="2" ry="2" />
<text text-anchor="" x="198.24" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::Stats::Gauge&gt;::shared_ptr (6 samples, 0.13%)</title><rect x="1090.2" y="1777" width="1.6" height="15.0" fill="rgb(231,200,50)" rx="2" ry="2" />
<text text-anchor="" x="1093.23" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access&lt;Envoy::ThreadLocal::InstanceImpl::set (272 samples, 6.10%)</title><rect x="499.6" y="1649" width="72.0" height="15.0" fill="rgb(215,131,53)" rx="2" ry="2" />
<text text-anchor="" x="502.57" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::_An..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.04%)</title><rect x="195.2" y="1889" width="0.6" height="15.0" fill="rgb(252,41,12)" rx="2" ry="2" />
<text text-anchor="" x="198.24" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (3 samples, 0.07%)</title><rect x="850.7" y="1777" width="0.8" height="15.0" fill="rgb(251,20,15)" rx="2" ry="2" />
<text text-anchor="" x="853.74" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (34 samples, 0.76%)</title><rect x="1142.6" y="1985" width="9.0" height="15.0" fill="rgb(248,124,1)" rx="2" ry="2" />
<text text-anchor="" x="1145.63" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="212.2" y="1729" width="0.2" height="15.0" fill="rgb(238,191,2)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (2 samples, 0.04%)</title><rect x="1169.6" y="1665" width="0.6" height="15.0" fill="rgb(206,36,39)" rx="2" ry="2" />
<text text-anchor="" x="1172.62" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (2 samples, 0.04%)</title><rect x="597.5" y="1697" width="0.5" height="15.0" fill="rgb(210,101,32)" rx="2" ry="2" />
<text text-anchor="" x="600.49" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (145 samples, 3.25%)</title><rect x="513.1" y="1553" width="38.3" height="15.0" fill="rgb(219,116,19)" rx="2" ry="2" />
<text text-anchor="" x="516.07" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (18 samples, 0.40%)</title><rect x="182.8" y="1905" width="4.8" height="15.0" fill="rgb(231,167,34)" rx="2" ry="2" />
<text text-anchor="" x="185.81" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_process_active_single_queue.isra.29 (1 samples, 0.02%)</title><rect x="1189.2" y="1905" width="0.3" height="15.0" fill="rgb(223,113,0)" rx="2" ry="2" />
<text text-anchor="" x="1192.21" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (11 samples, 0.25%)</title><rect x="568.6" y="1521" width="3.0" height="15.0" fill="rgb(230,226,35)" rx="2" ry="2" />
<text text-anchor="" x="571.64" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="187.6" y="1825" width="0.2" height="15.0" fill="rgb(243,210,40)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.02%)</title><rect x="929.1" y="1745" width="0.2" height="15.0" fill="rgb(216,94,53)" rx="2" ry="2" />
<text text-anchor="" x="932.07" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (2 samples, 0.04%)</title><rect x="797.3" y="1681" width="0.5" height="15.0" fill="rgb(235,117,53)" rx="2" ry="2" />
<text text-anchor="" x="800.28" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::function&lt;void (209 samples, 4.69%)</title><rect x="623.2" y="1729" width="55.3" height="15.0" fill="rgb(248,191,23)" rx="2" ry="2" />
<text text-anchor="" x="626.16" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__gnu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (13 samples, 0.29%)</title><rect x="199.5" y="1921" width="3.4" height="15.0" fill="rgb(234,119,34)" rx="2" ry="2" />
<text text-anchor="" x="202.48" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1057" width="7.2" height="15.0" fill="rgb(215,6,51)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1297" width="7.2" height="15.0" fill="rgb(235,185,25)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="474.7" y="1617" width="0.3" height="15.0" fill="rgb(229,3,50)" rx="2" ry="2" />
<text text-anchor="" x="477.70" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt;::_Hash_node (2 samples, 0.04%)</title><rect x="1049.7" y="1713" width="0.6" height="15.0" fill="rgb(240,95,41)" rx="2" ry="2" />
<text text-anchor="" x="1052.74" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (7 samples, 0.16%)</title><rect x="110.6" y="1921" width="1.8" height="15.0" fill="rgb(234,32,16)" rx="2" ry="2" />
<text text-anchor="" x="113.56" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.02%)</title><rect x="551.7" y="1489" width="0.3" height="15.0" fill="rgb(227,83,43)" rx="2" ry="2" />
<text text-anchor="" x="554.70" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (22 samples, 0.49%)</title><rect x="989.7" y="1713" width="5.8" height="15.0" fill="rgb(220,114,33)" rx="2" ry="2" />
<text text-anchor="" x="992.67" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node&lt;Envoy::Stats::ThreadLocalStoreImpl::ScopeImpl*, false&gt;::_M_next (1 samples, 0.02%)</title><rect x="1089.4" y="1761" width="0.3" height="15.0" fill="rgb(222,218,18)" rx="2" ry="2" />
<text text-anchor="" x="1092.44" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (4 samples, 0.09%)</title><rect x="740.7" y="1649" width="1.0" height="15.0" fill="rgb(230,194,20)" rx="2" ry="2" />
<text text-anchor="" x="743.65" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (1 samples, 0.02%)</title><rect x="1178.9" y="1585" width="0.3" height="15.0" fill="rgb(249,210,23)" rx="2" ry="2" />
<text text-anchor="" x="1181.89" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (34 samples, 0.76%)</title><rect x="1002.4" y="1729" width="9.0" height="15.0" fill="rgb(218,80,40)" rx="2" ry="2" />
<text text-anchor="" x="1005.37" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (12 samples, 0.27%)</title><rect x="739.3" y="1713" width="3.2" height="15.0" fill="rgb(240,21,16)" rx="2" ry="2" />
<text text-anchor="" x="742.33" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_process_active_single_queue.isra.29 (85 samples, 1.91%)</title><rect x="1165.4" y="1889" width="22.5" height="15.0" fill="rgb(250,189,42)" rx="2" ry="2" />
<text text-anchor="" x="1168.39" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_self (2 samples, 0.04%)</title><rect x="891.2" y="1777" width="0.6" height="15.0" fill="rgb(245,161,47)" rx="2" ry="2" />
<text text-anchor="" x="894.23" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (7 samples, 0.16%)</title><rect x="204.0" y="1937" width="1.8" height="15.0" fill="rgb(243,110,13)" rx="2" ry="2" />
<text text-anchor="" x="206.98" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="551.7" y="1505" width="0.3" height="15.0" fill="rgb(252,140,28)" rx="2" ry="2" />
<text text-anchor="" x="554.70" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="1172.0" y="1585" width="0.3" height="15.0" fill="rgb(240,21,28)" rx="2" ry="2" />
<text text-anchor="" x="1175.00" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_swapgs (3 samples, 0.07%)</title><rect x="14.8" y="2017" width="0.8" height="15.0" fill="rgb(235,54,1)" rx="2" ry="2" />
<text text-anchor="" x="17.76" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.04%)</title><rect x="187.8" y="145" width="0.6" height="15.0" fill="rgb(223,228,32)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (1 samples, 0.02%)</title><rect x="555.9" y="1473" width="0.3" height="15.0" fill="rgb(209,68,42)" rx="2" ry="2" />
<text text-anchor="" x="558.94" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="809.7" y="1793" width="0.3" height="15.0" fill="rgb(237,212,47)" rx="2" ry="2" />
<text text-anchor="" x="812.72" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (2 samples, 0.04%)</title><rect x="384.2" y="1665" width="0.5" height="15.0" fill="rgb(221,126,11)" rx="2" ry="2" />
<text text-anchor="" x="387.19" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::~_Function_base (4 samples, 0.09%)</title><rect x="23.2" y="1841" width="1.1" height="15.0" fill="rgb(229,96,44)" rx="2" ry="2" />
<text text-anchor="" x="26.23" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.02%)</title><rect x="34.6" y="1985" width="0.3" height="15.0" fill="rgb(212,205,31)" rx="2" ry="2" />
<text text-anchor="" x="37.61" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (1 samples, 0.02%)</title><rect x="1151.9" y="1889" width="0.3" height="15.0" fill="rgb(244,181,5)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1179.9" y="1585" width="0.3" height="15.0" fill="rgb(250,125,29)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::destroy&lt;std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt; (3 samples, 0.07%)</title><rect x="1108.8" y="1761" width="0.8" height="15.0" fill="rgb(224,22,28)" rx="2" ry="2" />
<text text-anchor="" x="1111.76" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (30 samples, 0.67%)</title><rect x="697.3" y="1729" width="7.9" height="15.0" fill="rgb(224,27,40)" rx="2" ry="2" />
<text text-anchor="" x="700.25" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move&lt;std::_Any_data&amp;&gt; (1 samples, 0.02%)</title><rect x="860.8" y="1697" width="0.3" height="15.0" fill="rgb(215,64,31)" rx="2" ry="2" />
<text text-anchor="" x="863.80" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (67 samples, 1.50%)</title><rect x="481.8" y="1633" width="17.8" height="15.0" fill="rgb(212,63,1)" rx="2" ry="2" />
<text text-anchor="" x="484.84" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (3 samples, 0.07%)</title><rect x="191.3" y="97" width="0.8" height="15.0" fill="rgb(236,27,23)" rx="2" ry="2" />
<text text-anchor="" x="194.27" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="24.8" y="1745" width="0.3" height="15.0" fill="rgb(229,166,46)" rx="2" ry="2" />
<text text-anchor="" x="27.82" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="194.7" y="977" width="0.3" height="15.0" fill="rgb(216,184,35)" rx="2" ry="2" />
<text text-anchor="" x="197.71" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (11 samples, 0.25%)</title><rect x="568.6" y="1617" width="3.0" height="15.0" fill="rgb(219,115,33)" rx="2" ry="2" />
<text text-anchor="" x="571.64" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::DispatcherImpl::DispatcherImpl (1 samples, 0.02%)</title><rect x="1166.2" y="1825" width="0.2" height="15.0" fill="rgb(226,186,32)" rx="2" ry="2" />
<text text-anchor="" x="1169.18" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="203.7" y="1921" width="0.3" height="15.0" fill="rgb(208,113,16)" rx="2" ry="2" />
<text text-anchor="" x="206.71" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::operator (5 samples, 0.11%)</title><rect x="1034.1" y="1681" width="1.4" height="15.0" fill="rgb(208,167,19)" rx="2" ry="2" />
<text text-anchor="" x="1037.13" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>evthread_posix_lock (1 samples, 0.02%)</title><rect x="1115.6" y="1921" width="0.3" height="15.0" fill="rgb(245,186,22)" rx="2" ry="2" />
<text text-anchor="" x="1118.64" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_add_nolock_ (15 samples, 0.34%)</title><rect x="231.5" y="1777" width="4.0" height="15.0" fill="rgb(220,50,19)" rx="2" ry="2" />
<text text-anchor="" x="234.50" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (65 samples, 1.46%)</title><rect x="1125.2" y="2001" width="17.2" height="15.0" fill="rgb(244,192,42)" rx="2" ry="2" />
<text text-anchor="" x="1128.16" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::Stats::Counter, (10 samples, 0.22%)</title><rect x="1104.8" y="1713" width="2.6" height="15.0" fill="rgb(218,174,8)" rx="2" ry="2" />
<text text-anchor="" x="1107.79" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="1142.4" y="1857" width="0.2" height="15.0" fill="rgb(206,162,2)" rx="2" ry="2" />
<text text-anchor="" x="1145.37" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (1 samples, 0.02%)</title><rect x="1163.8" y="1809" width="0.3" height="15.0" fill="rgb(237,170,5)" rx="2" ry="2" />
<text text-anchor="" x="1166.80" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::shared_ptr&lt;std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; (7 samples, 0.16%)</title><rect x="192.3" y="193" width="1.9" height="15.0" fill="rgb(233,143,44)" rx="2" ry="2" />
<text text-anchor="" x="195.33" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Function_base (2 samples, 0.04%)</title><rect x="859.5" y="1713" width="0.5" height="15.0" fill="rgb(231,186,27)" rx="2" ry="2" />
<text text-anchor="" x="862.47" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 0.58%)</title><rect x="187.8" y="1025" width="6.9" height="15.0" fill="rgb(242,40,47)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.02%)</title><rect x="187.8" y="65" width="0.3" height="15.0" fill="rgb(210,141,9)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (174 samples, 3.90%)</title><rect x="325.4" y="1665" width="46.1" height="15.0" fill="rgb(229,95,20)" rx="2" ry="2" />
<text text-anchor="" x="328.44" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >even..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_store_code (3 samples, 0.07%)</title><rect x="1048.2" y="1729" width="0.8" height="15.0" fill="rgb(240,149,48)" rx="2" ry="2" />
<text text-anchor="" x="1051.16" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (21 samples, 0.47%)</title><rect x="1118.8" y="1953" width="5.6" height="15.0" fill="rgb(210,181,52)" rx="2" ry="2" />
<text text-anchor="" x="1121.81" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="191.0" y="81" width="0.3" height="15.0" fill="rgb(205,27,41)" rx="2" ry="2" />
<text text-anchor="" x="194.01" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Maybe_unary_or_binary_function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt;, Envoy::Event::Dispatcher&amp;&gt;::_Maybe_unary_or_binary_function (1 samples, 0.02%)</title><rect x="858.4" y="1729" width="0.3" height="15.0" fill="rgb(220,57,0)" rx="2" ry="2" />
<text text-anchor="" x="861.41" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (15 samples, 0.34%)</title><rect x="15.6" y="1969" width="3.9" height="15.0" fill="rgb(250,220,26)" rx="2" ry="2" />
<text text-anchor="" x="18.56" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (1 samples, 0.02%)</title><rect x="850.2" y="1729" width="0.3" height="15.0" fill="rgb(238,88,28)" rx="2" ry="2" />
<text text-anchor="" x="853.21" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (3 samples, 0.07%)</title><rect x="1173.9" y="1633" width="0.8" height="15.0" fill="rgb(217,74,14)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Mod_range_hashing::operator (1 samples, 0.02%)</title><rect x="1094.5" y="1681" width="0.2" height="15.0" fill="rgb(247,94,23)" rx="2" ry="2" />
<text text-anchor="" x="1097.47" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (49 samples, 1.10%)</title><rect x="649.4" y="1585" width="12.9" height="15.0" fill="rgb(218,76,1)" rx="2" ry="2" />
<text text-anchor="" x="652.35" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (138 samples, 3.09%)</title><rect x="514.9" y="1537" width="36.5" height="15.0" fill="rgb(251,131,44)" rx="2" ry="2" />
<text text-anchor="" x="517.92" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vfs..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::_M_node_allocator (1 samples, 0.02%)</title><rect x="1098.2" y="1729" width="0.2" height="15.0" fill="rgb(254,87,46)" rx="2" ry="2" />
<text text-anchor="" x="1101.17" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (92 samples, 2.06%)</title><rect x="291.6" y="1697" width="24.3" height="15.0" fill="rgb(213,26,46)" rx="2" ry="2" />
<text text-anchor="" x="294.57" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (17 samples, 0.38%)</title><rect x="1160.9" y="1889" width="4.5" height="15.0" fill="rgb(224,35,37)" rx="2" ry="2" />
<text text-anchor="" x="1163.89" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (365 samples, 8.19%)</title><rect x="475.0" y="1681" width="96.6" height="15.0" fill="rgb(239,79,43)" rx="2" ry="2" />
<text text-anchor="" x="477.96" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::_Funct..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Mod_range_hashing::operator (1 samples, 0.02%)</title><rect x="1092.6" y="1713" width="0.3" height="15.0" fill="rgb(240,5,8)" rx="2" ry="2" />
<text text-anchor="" x="1095.61" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_insert_unique_node (44 samples, 0.99%)</title><rect x="1037.6" y="1745" width="11.6" height="15.0" fill="rgb(243,68,32)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="1010.8" y="1665" width="0.3" height="15.0" fill="rgb(213,67,9)" rx="2" ry="2" />
<text text-anchor="" x="1013.84" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;Envoy::Stats::ThreadLocalStoreImpl::ScopeImpl*&gt;::_M_valptr (1 samples, 0.02%)</title><rect x="1089.2" y="1777" width="0.2" height="15.0" fill="rgb(251,84,23)" rx="2" ry="2" />
<text text-anchor="" x="1092.17" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (3 samples, 0.07%)</title><rect x="382.9" y="1649" width="0.8" height="15.0" fill="rgb(235,229,1)" rx="2" ry="2" />
<text text-anchor="" x="385.87" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="1167.8" y="1617" width="0.2" height="15.0" fill="rgb(210,126,53)" rx="2" ry="2" />
<text text-anchor="" x="1170.77" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access&lt;Envoy::ThreadLocal::InstanceImpl::set (1 samples, 0.02%)</title><rect x="869.5" y="1745" width="0.3" height="15.0" fill="rgb(215,149,50)" rx="2" ry="2" />
<text text-anchor="" x="872.53" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="840.2" y="1681" width="0.2" height="15.0" fill="rgb(215,50,42)" rx="2" ry="2" />
<text text-anchor="" x="843.15" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (2 samples, 0.04%)</title><rect x="216.1" y="1857" width="0.6" height="15.0" fill="rgb(244,40,35)" rx="2" ry="2" />
<text text-anchor="" x="219.15" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (2 samples, 0.04%)</title><rect x="871.9" y="1697" width="0.5" height="15.0" fill="rgb(225,28,6)" rx="2" ry="2" />
<text text-anchor="" x="874.91" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::_M_valptr (2 samples, 0.04%)</title><rect x="997.9" y="1761" width="0.5" height="15.0" fill="rgb(209,17,44)" rx="2" ry="2" />
<text text-anchor="" x="1000.88" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_insert&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;, std::__detail::_AllocNode&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt; &gt; (205 samples, 4.60%)</title><rect x="1016.9" y="1761" width="54.3" height="15.0" fill="rgb(236,36,8)" rx="2" ry="2" />
<text text-anchor="" x="1019.93" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="194.2" y="113" width="0.2" height="15.0" fill="rgb(206,213,3)" rx="2" ry="2" />
<text text-anchor="" x="197.18" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.02%)</title><rect x="190.5" y="97" width="0.2" height="15.0" fill="rgb(248,132,12)" rx="2" ry="2" />
<text text-anchor="" x="193.48" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::_M_v (1 samples, 0.02%)</title><rect x="996.8" y="1793" width="0.3" height="15.0" fill="rgb(227,90,52)" rx="2" ry="2" />
<text text-anchor="" x="999.82" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_S_copy_chars (3 samples, 0.07%)</title><rect x="835.9" y="1729" width="0.8" height="15.0" fill="rgb(230,72,5)" rx="2" ry="2" />
<text text-anchor="" x="838.92" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (26 samples, 0.58%)</title><rect x="196.0" y="2001" width="6.9" height="15.0" fill="rgb(223,102,0)" rx="2" ry="2" />
<text text-anchor="" x="199.04" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (6 samples, 0.13%)</title><rect x="1154.0" y="1777" width="1.6" height="15.0" fill="rgb(228,172,26)" rx="2" ry="2" />
<text text-anchor="" x="1157.01" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.02%)</title><rect x="798.1" y="1777" width="0.2" height="15.0" fill="rgb(224,72,38)" rx="2" ry="2" />
<text text-anchor="" x="801.08" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (1 samples, 0.02%)</title><rect x="190.7" y="65" width="0.3" height="15.0" fill="rgb(233,129,46)" rx="2" ry="2" />
<text text-anchor="" x="193.74" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__atomic_add (6 samples, 0.13%)</title><rect x="987.0" y="1633" width="1.6" height="15.0" fill="rgb(209,224,49)" rx="2" ry="2" />
<text text-anchor="" x="990.03" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (14 samples, 0.31%)</title><rect x="178.8" y="1921" width="3.7" height="15.0" fill="rgb(236,49,13)" rx="2" ry="2" />
<text text-anchor="" x="181.84" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (8 samples, 0.18%)</title><rect x="832.0" y="1729" width="2.1" height="15.0" fill="rgb(249,209,36)" rx="2" ry="2" />
<text text-anchor="" x="834.95" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.02%)</title><rect x="1157.5" y="1857" width="0.2" height="15.0" fill="rgb(213,184,28)" rx="2" ry="2" />
<text text-anchor="" x="1160.45" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (3,447 samples, 77.30%)</title><rect x="204.0" y="2017" width="912.2" height="15.0" fill="rgb(239,122,33)" rx="2" ry="2" />
<text text-anchor="" x="206.98" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (21 samples, 0.47%)</title><rect x="1118.8" y="1985" width="5.6" height="15.0" fill="rgb(247,209,52)" rx="2" ry="2" />
<text text-anchor="" x="1121.81" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4,279 samples, 95.96%)</title><rect x="19.8" y="2033" width="1132.4" height="15.0" fill="rgb(230,209,36)" rx="2" ry="2" />
<text text-anchor="" x="22.79" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TLS init function for Envoy::ThreadLocal::InstanceImpl::thread_local_data_ (1 samples, 0.02%)</title><rect x="732.7" y="1777" width="0.3" height="15.0" fill="rgb(215,106,21)" rx="2" ry="2" />
<text text-anchor="" x="735.71" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (1 samples, 0.02%)</title><rect x="1187.4" y="1873" width="0.2" height="15.0" fill="rgb(210,4,18)" rx="2" ry="2" />
<text text-anchor="" x="1190.35" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>migrate_pages (1 samples, 0.02%)</title><rect x="1172.0" y="1553" width="0.3" height="15.0" fill="rgb(225,189,12)" rx="2" ry="2" />
<text text-anchor="" x="1175.00" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::distance&lt;char*&gt; (1 samples, 0.02%)</title><rect x="1097.4" y="1681" width="0.2" height="15.0" fill="rgb(211,182,43)" rx="2" ry="2" />
<text text-anchor="" x="1100.38" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (5 samples, 0.11%)</title><rect x="1164.1" y="1809" width="1.3" height="15.0" fill="rgb(254,47,54)" rx="2" ry="2" />
<text text-anchor="" x="1167.07" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (2 samples, 0.04%)</title><rect x="515.7" y="1521" width="0.5" height="15.0" fill="rgb(212,79,0)" rx="2" ry="2" />
<text text-anchor="" x="518.71" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (3 samples, 0.07%)</title><rect x="382.9" y="1665" width="0.8" height="15.0" fill="rgb(234,147,23)" rx="2" ry="2" />
<text text-anchor="" x="385.87" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="823.7" y="1745" width="0.3" height="15.0" fill="rgb(215,176,3)" rx="2" ry="2" />
<text text-anchor="" x="826.75" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (24 samples, 0.54%)</title><rect x="475.5" y="1601" width="6.3" height="15.0" fill="rgb(237,112,41)" rx="2" ry="2" />
<text text-anchor="" x="478.49" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="22.4" y="1841" width="0.3" height="15.0" fill="rgb(247,178,39)" rx="2" ry="2" />
<text text-anchor="" x="25.44" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1377" width="7.2" height="15.0" fill="rgb(241,62,41)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[envoy-debug] (2 samples, 0.04%)</title><rect x="203.4" y="2001" width="0.6" height="15.0" fill="rgb(210,111,40)" rx="2" ry="2" />
<text text-anchor="" x="206.45" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (19 samples, 0.43%)</title><rect x="1059.0" y="1681" width="5.0" height="15.0" fill="rgb(234,10,22)" rx="2" ry="2" />
<text text-anchor="" x="1062.01" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (10 samples, 0.22%)</title><rect x="175.9" y="1985" width="2.7" height="15.0" fill="rgb(233,194,23)" rx="2" ry="2" />
<text text-anchor="" x="178.93" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::_M_v (3 samples, 0.07%)</title><rect x="997.6" y="1777" width="0.8" height="15.0" fill="rgb(248,198,43)" rx="2" ry="2" />
<text text-anchor="" x="1000.61" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.09%)</title><rect x="1162.2" y="1761" width="1.1" height="15.0" fill="rgb(231,131,22)" rx="2" ry="2" />
<text text-anchor="" x="1165.21" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="192.1" y="97" width="0.2" height="15.0" fill="rgb(231,131,42)" rx="2" ry="2" />
<text text-anchor="" x="195.07" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (2 samples, 0.04%)</title><rect x="797.3" y="1713" width="0.5" height="15.0" fill="rgb(214,104,54)" rx="2" ry="2" />
<text text-anchor="" x="800.28" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="194.7" y="1009" width="0.3" height="15.0" fill="rgb(239,145,43)" rx="2" ry="2" />
<text text-anchor="" x="197.71" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (15 samples, 0.34%)</title><rect x="15.6" y="1953" width="3.9" height="15.0" fill="rgb(244,5,49)" rx="2" ry="2" />
<text text-anchor="" x="18.56" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (3 samples, 0.07%)</title><rect x="1164.6" y="1745" width="0.8" height="15.0" fill="rgb(241,228,13)" rx="2" ry="2" />
<text text-anchor="" x="1167.60" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.02%)</title><rect x="845.2" y="1633" width="0.2" height="15.0" fill="rgb(250,110,26)" rx="2" ry="2" />
<text text-anchor="" x="848.18" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_set_length (1 samples, 0.02%)</title><rect x="1058.2" y="1681" width="0.3" height="15.0" fill="rgb(225,128,41)" rx="2" ry="2" />
<text text-anchor="" x="1061.21" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.04%)</title><rect x="195.2" y="1921" width="0.6" height="15.0" fill="rgb(246,100,49)" rx="2" ry="2" />
<text text-anchor="" x="198.24" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (2 samples, 0.04%)</title><rect x="24.6" y="1873" width="0.5" height="15.0" fill="rgb(237,127,29)" rx="2" ry="2" />
<text text-anchor="" x="27.55" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject, (1 samples, 0.02%)</title><rect x="1182.1" y="1665" width="0.2" height="15.0" fill="rgb(209,57,1)" rx="2" ry="2" />
<text text-anchor="" x="1185.06" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1 samples, 0.02%)</title><rect x="190.5" y="65" width="0.2" height="15.0" fill="rgb(231,147,12)" rx="2" ry="2" />
<text text-anchor="" x="193.48" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (1 samples, 0.02%)</title><rect x="808.9" y="1713" width="0.3" height="15.0" fill="rgb(250,46,40)" rx="2" ry="2" />
<text text-anchor="" x="811.93" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (33 samples, 0.74%)</title><rect x="1142.9" y="1953" width="8.7" height="15.0" fill="rgb(218,58,34)" rx="2" ry="2" />
<text text-anchor="" x="1145.90" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (6 samples, 0.13%)</title><rect x="864.2" y="1697" width="1.6" height="15.0" fill="rgb(228,143,24)" rx="2" ry="2" />
<text text-anchor="" x="867.24" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char const*&gt; (4 samples, 0.09%)</title><rect x="10.0" y="2001" width="1.1" height="15.0" fill="rgb(247,219,42)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::_Hash_node_value_base (2 samples, 0.04%)</title><rect x="1049.7" y="1697" width="0.6" height="15.0" fill="rgb(216,164,24)" rx="2" ry="2" />
<text text-anchor="" x="1052.74" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::_M_insert&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; const&amp;&gt; (3 samples, 0.07%)</title><rect x="1087.9" y="1777" width="0.7" height="15.0" fill="rgb(212,189,28)" rx="2" ry="2" />
<text text-anchor="" x="1090.85" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject, (1 samples, 0.02%)</title><rect x="837.8" y="1745" width="0.2" height="15.0" fill="rgb(253,65,24)" rx="2" ry="2" />
<text text-anchor="" x="840.77" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1665" width="7.2" height="15.0" fill="rgb(213,197,34)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__atomic_add_dispatch (2 samples, 0.04%)</title><rect x="1001.8" y="1729" width="0.6" height="15.0" fill="rgb(214,25,43)" rx="2" ry="2" />
<text text-anchor="" x="1004.85" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (3 samples, 0.07%)</title><rect x="890.4" y="1761" width="0.8" height="15.0" fill="rgb(253,67,13)" rx="2" ry="2" />
<text text-anchor="" x="893.44" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (33 samples, 0.74%)</title><rect x="828.0" y="1745" width="8.7" height="15.0" fill="rgb(224,206,0)" rx="2" ry="2" />
<text text-anchor="" x="830.98" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (7 samples, 0.16%)</title><rect x="110.6" y="1905" width="1.8" height="15.0" fill="rgb(238,101,39)" rx="2" ry="2" />
<text text-anchor="" x="113.56" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_hash_code (12 samples, 0.27%)</title><rect x="1065.9" y="1745" width="3.2" height="15.0" fill="rgb(247,1,35)" rx="2" ry="2" />
<text text-anchor="" x="1068.89" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1181.0" y="1569" width="0.3" height="15.0" fill="rgb(207,213,49)" rx="2" ry="2" />
<text text-anchor="" x="1184.00" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="1169.4" y="1713" width="0.2" height="15.0" fill="rgb(244,41,15)" rx="2" ry="2" />
<text text-anchor="" x="1172.36" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::distance&lt;char*&gt; (7 samples, 0.16%)</title><rect x="660.5" y="1553" width="1.8" height="15.0" fill="rgb(223,137,33)" rx="2" ry="2" />
<text text-anchor="" x="663.47" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (4 samples, 0.09%)</title><rect x="1077.5" y="1681" width="1.1" height="15.0" fill="rgb(214,70,28)" rx="2" ry="2" />
<text text-anchor="" x="1080.53" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (12 samples, 0.27%)</title><rect x="571.6" y="1633" width="3.1" height="15.0" fill="rgb(215,116,34)" rx="2" ry="2" />
<text text-anchor="" x="574.55" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::_M_insert&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; const&amp;&gt; (40 samples, 0.90%)</title><rect x="985.2" y="1777" width="10.6" height="15.0" fill="rgb(228,160,7)" rx="2" ry="2" />
<text text-anchor="" x="988.17" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1729" width="7.2" height="15.0" fill="rgb(230,138,24)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (6 samples, 0.13%)</title><rect x="204.2" y="1873" width="1.6" height="15.0" fill="rgb(225,107,3)" rx="2" ry="2" />
<text text-anchor="" x="207.24" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (1 samples, 0.02%)</title><rect x="1087.3" y="1761" width="0.3" height="15.0" fill="rgb(248,105,27)" rx="2" ry="2" />
<text text-anchor="" x="1090.32" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject, (12 samples, 0.27%)</title><rect x="1176.0" y="1697" width="3.2" height="15.0" fill="rgb(253,198,40)" rx="2" ry="2" />
<text text-anchor="" x="1178.97" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (1 samples, 0.02%)</title><rect x="1097.9" y="1697" width="0.3" height="15.0" fill="rgb(227,31,24)" rx="2" ry="2" />
<text text-anchor="" x="1100.91" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::ThreadLocalObject::~ThreadLocalObject (3 samples, 0.07%)</title><rect x="741.7" y="1665" width="0.8" height="15.0" fill="rgb(239,160,0)" rx="2" ry="2" />
<text text-anchor="" x="744.71" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1151.9" y="1953" width="0.3" height="15.0" fill="rgb(250,218,22)" rx="2" ry="2" />
<text text-anchor="" x="1154.89" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.02%)</title><rect x="1186.6" y="1713" width="0.2" height="15.0" fill="rgb(250,137,5)" rx="2" ry="2" />
<text text-anchor="" x="1189.56" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.02%)</title><rect x="980.4" y="1729" width="0.3" height="15.0" fill="rgb(239,157,9)" rx="2" ry="2" />
<text text-anchor="" x="983.41" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (3 samples, 0.07%)</title><rect x="1164.6" y="1761" width="0.8" height="15.0" fill="rgb(254,114,52)" rx="2" ry="2" />
<text text-anchor="" x="1167.60" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.04%)</title><rect x="1188.7" y="1889" width="0.5" height="15.0" fill="rgb(226,109,43)" rx="2" ry="2" />
<text text-anchor="" x="1191.68" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (6 samples, 0.13%)</title><rect x="1161.7" y="1809" width="1.6" height="15.0" fill="rgb(205,223,41)" rx="2" ry="2" />
<text text-anchor="" x="1164.68" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::operator (1 samples, 0.02%)</title><rect x="1098.7" y="1729" width="0.3" height="15.0" fill="rgb(254,138,9)" rx="2" ry="2" />
<text text-anchor="" x="1101.70" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_set_length (2 samples, 0.04%)</title><rect x="835.4" y="1729" width="0.5" height="15.0" fill="rgb(221,215,16)" rx="2" ry="2" />
<text text-anchor="" x="838.39" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::~unique_lock (1 samples, 0.02%)</title><rect x="1185.0" y="1777" width="0.2" height="15.0" fill="rgb(249,220,1)" rx="2" ry="2" />
<text text-anchor="" x="1187.97" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::begin (1 samples, 0.02%)</title><rect x="1092.1" y="1777" width="0.3" height="15.0" fill="rgb(214,176,52)" rx="2" ry="2" />
<text text-anchor="" x="1095.09" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="39.6" y="1953" width="0.3" height="15.0" fill="rgb(233,79,8)" rx="2" ry="2" />
<text text-anchor="" x="42.64" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_mutex_lock (4 samples, 0.09%)</title><rect x="696.2" y="1729" width="1.1" height="15.0" fill="rgb(218,112,24)" rx="2" ry="2" />
<text text-anchor="" x="699.19" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (1 samples, 0.02%)</title><rect x="23.2" y="1697" width="0.3" height="15.0" fill="rgb(213,71,33)" rx="2" ry="2" />
<text text-anchor="" x="26.23" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (2 samples, 0.04%)</title><rect x="175.4" y="1889" width="0.5" height="15.0" fill="rgb(229,98,2)" rx="2" ry="2" />
<text text-anchor="" x="178.40" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::DispatcherImpl::runPostCallbacks (70 samples, 1.57%)</title><rect x="1166.7" y="1793" width="18.5" height="15.0" fill="rgb(235,193,14)" rx="2" ry="2" />
<text text-anchor="" x="1169.71" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access&lt;Envoy::ThreadLocal::InstanceImpl::set (3 samples, 0.07%)</title><rect x="886.2" y="1729" width="0.8" height="15.0" fill="rgb(226,134,54)" rx="2" ry="2" />
<text text-anchor="" x="889.20" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="499.8" y="1569" width="0.3" height="15.0" fill="rgb(211,57,33)" rx="2" ry="2" />
<text text-anchor="" x="502.84" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (21 samples, 0.47%)</title><rect x="1118.8" y="2001" width="5.6" height="15.0" fill="rgb(247,182,6)" rx="2" ry="2" />
<text text-anchor="" x="1121.81" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::TimerImpl (1 samples, 0.02%)</title><rect x="212.2" y="1889" width="0.2" height="15.0" fill="rgb(230,221,5)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list (1 samples, 0.02%)</title><rect x="190.0" y="81" width="0.2" height="15.0" fill="rgb(215,177,0)" rx="2" ry="2" />
<text text-anchor="" x="192.95" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (46 samples, 1.03%)</title><rect x="598.5" y="1697" width="12.2" height="15.0" fill="rgb(250,206,31)" rx="2" ry="2" />
<text text-anchor="" x="601.54" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="203.7" y="1905" width="0.3" height="15.0" fill="rgb(207,90,24)" rx="2" ry="2" />
<text text-anchor="" x="206.71" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="20.6" y="1873" width="0.2" height="15.0" fill="rgb(217,97,54)" rx="2" ry="2" />
<text text-anchor="" x="23.59" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1181.0" y="1585" width="0.3" height="15.0" fill="rgb(216,45,35)" rx="2" ry="2" />
<text text-anchor="" x="1184.00" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (2 samples, 0.04%)</title><rect x="923.0" y="1777" width="0.5" height="15.0" fill="rgb(227,203,50)" rx="2" ry="2" />
<text text-anchor="" x="925.98" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (57 samples, 1.28%)</title><rect x="870.9" y="1713" width="15.0" height="15.0" fill="rgb(238,151,8)" rx="2" ry="2" />
<text text-anchor="" x="873.85" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate::~ThreadLocalCachedDate (1 samples, 0.02%)</title><rect x="1178.9" y="1601" width="0.3" height="15.0" fill="rgb(236,9,45)" rx="2" ry="2" />
<text text-anchor="" x="1181.89" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt;::_M_next (9 samples, 0.20%)</title><rect x="1073.3" y="1729" width="2.4" height="15.0" fill="rgb(235,195,10)" rx="2" ry="2" />
<text text-anchor="" x="1076.30" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_bucket_index (1 samples, 0.02%)</title><rect x="1095.8" y="1697" width="0.3" height="15.0" fill="rgb(237,79,3)" rx="2" ry="2" />
<text text-anchor="" x="1098.79" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="195.0" y="1937" width="0.2" height="15.0" fill="rgb(230,30,19)" rx="2" ry="2" />
<text text-anchor="" x="197.98" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::destroy&lt;std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt; (12 samples, 0.27%)</title><rect x="1104.3" y="1761" width="3.1" height="15.0" fill="rgb(213,83,18)" rx="2" ry="2" />
<text text-anchor="" x="1107.26" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_mutex_unlock (3 samples, 0.07%)</title><rect x="24.3" y="1889" width="0.8" height="15.0" fill="rgb(224,129,50)" rx="2" ry="2" />
<text text-anchor="" x="27.29" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="194.4" y="737" width="0.3" height="15.0" fill="rgb(253,126,35)" rx="2" ry="2" />
<text text-anchor="" x="197.45" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (1 samples, 0.02%)</title><rect x="861.1" y="1697" width="0.2" height="15.0" fill="rgb(226,206,47)" rx="2" ry="2" />
<text text-anchor="" x="864.06" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="20.6" y="1889" width="0.2" height="15.0" fill="rgb(249,110,33)" rx="2" ry="2" />
<text text-anchor="" x="23.59" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::end (2 samples, 0.04%)</title><rect x="995.8" y="1777" width="0.5" height="15.0" fill="rgb(209,216,47)" rx="2" ry="2" />
<text text-anchor="" x="998.76" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (28 samples, 0.63%)</title><rect x="187.6" y="1905" width="7.4" height="15.0" fill="rgb(211,6,7)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.02%)</title><rect x="34.9" y="1985" width="0.2" height="15.0" fill="rgb(209,192,2)" rx="2" ry="2" />
<text text-anchor="" x="37.88" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::set (1 samples, 0.02%)</title><rect x="928.8" y="1825" width="0.3" height="15.0" fill="rgb(221,148,37)" rx="2" ry="2" />
<text text-anchor="" x="931.81" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (3 samples, 0.07%)</title><rect x="823.0" y="1761" width="0.7" height="15.0" fill="rgb(220,141,18)" rx="2" ry="2" />
<text text-anchor="" x="825.95" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::function&lt;void (263 samples, 5.90%)</title><rect x="622.6" y="1745" width="69.6" height="15.0" fill="rgb(230,107,3)" rx="2" ry="2" />
<text text-anchor="" x="625.63" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="1152.4" y="1905" width="0.3" height="15.0" fill="rgb(221,36,34)" rx="2" ry="2" />
<text text-anchor="" x="1155.42" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (2 samples, 0.04%)</title><rect x="470.5" y="1633" width="0.5" height="15.0" fill="rgb(244,65,17)" rx="2" ry="2" />
<text text-anchor="" x="473.46" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.02%)</title><rect x="203.4" y="1937" width="0.3" height="15.0" fill="rgb(207,65,1)" rx="2" ry="2" />
<text text-anchor="" x="206.45" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (41 samples, 0.92%)</title><rect x="969.8" y="1777" width="10.9" height="15.0" fill="rgb(233,68,18)" rx="2" ry="2" />
<text text-anchor="" x="972.83" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_bucket_index (11 samples, 0.25%)</title><rect x="1027.0" y="1697" width="2.9" height="15.0" fill="rgb(216,119,25)" rx="2" ry="2" />
<text text-anchor="" x="1029.99" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_ts64 (1 samples, 0.02%)</title><rect x="20.8" y="1857" width="0.3" height="15.0" fill="rgb(229,219,48)" rx="2" ry="2" />
<text text-anchor="" x="23.85" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__aligned_buffer&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::_M_ptr (7 samples, 0.16%)</title><rect x="192.3" y="113" width="1.9" height="15.0" fill="rgb(212,223,36)" rx="2" ry="2" />
<text text-anchor="" x="195.33" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::mutex::unlock (1 samples, 0.02%)</title><rect x="706.3" y="1761" width="0.2" height="15.0" fill="rgb(221,132,10)" rx="2" ry="2" />
<text text-anchor="" x="709.25" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (19 samples, 0.43%)</title><rect x="1119.3" y="1889" width="5.1" height="15.0" fill="rgb(227,157,38)" rx="2" ry="2" />
<text text-anchor="" x="1122.34" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move&lt;Envoy::ThreadLocal::InstanceImpl::set (1 samples, 0.02%)</title><rect x="888.3" y="1777" width="0.3" height="15.0" fill="rgb(224,70,19)" rx="2" ry="2" />
<text text-anchor="" x="891.32" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (3 samples, 0.07%)</title><rect x="849.4" y="1729" width="0.8" height="15.0" fill="rgb(246,212,19)" rx="2" ry="2" />
<text text-anchor="" x="852.42" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_ebo_helper&lt;0, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, true&gt;::~_Sp_ebo_helper (1 samples, 0.02%)</title><rect x="739.9" y="1665" width="0.2" height="15.0" fill="rgb(241,128,19)" rx="2" ry="2" />
<text text-anchor="" x="742.86" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (2 samples, 0.04%)</title><rect x="439.2" y="1665" width="0.6" height="15.0" fill="rgb(234,203,43)" rx="2" ry="2" />
<text text-anchor="" x="442.24" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (1 samples, 0.02%)</title><rect x="1161.2" y="1809" width="0.2" height="15.0" fill="rgb(227,223,36)" rx="2" ry="2" />
<text text-anchor="" x="1164.15" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.02%)</title><rect x="551.4" y="1569" width="0.3" height="15.0" fill="rgb(250,220,1)" rx="2" ry="2" />
<text text-anchor="" x="554.44" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="24.6" y="1793" width="0.2" height="15.0" fill="rgb(227,157,18)" rx="2" ry="2" />
<text text-anchor="" x="27.55" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list (1 samples, 0.02%)</title><rect x="195.0" y="1905" width="0.2" height="15.0" fill="rgb(242,84,13)" rx="2" ry="2" />
<text text-anchor="" x="197.98" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.02%)</title><rect x="24.3" y="1825" width="0.3" height="15.0" fill="rgb(233,1,31)" rx="2" ry="2" />
<text text-anchor="" x="27.29" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy@plt (1 samples, 0.02%)</title><rect x="831.4" y="1729" width="0.3" height="15.0" fill="rgb(218,149,49)" rx="2" ry="2" />
<text text-anchor="" x="834.42" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1633" width="7.2" height="15.0" fill="rgb(228,134,54)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pvclock_clocksource_read (1 samples, 0.02%)</title><rect x="194.7" y="897" width="0.3" height="15.0" fill="rgb(234,192,46)" rx="2" ry="2" />
<text text-anchor="" x="197.71" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (14 samples, 0.31%)</title><rect x="10.0" y="2017" width="3.7" height="15.0" fill="rgb(243,158,31)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_find_node (61 samples, 1.37%)</title><rect x="1020.6" y="1745" width="16.2" height="15.0" fill="rgb(238,140,51)" rx="2" ry="2" />
<text text-anchor="" x="1023.63" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_del_nolock_ (2 samples, 0.04%)</title><rect x="1115.1" y="1905" width="0.5" height="15.0" fill="rgb(238,173,31)" rx="2" ry="2" />
<text text-anchor="" x="1118.11" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="1151.6" y="1905" width="0.3" height="15.0" fill="rgb(215,43,16)" rx="2" ry="2" />
<text text-anchor="" x="1154.63" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (3 samples, 0.07%)</title><rect x="1114.3" y="1905" width="0.8" height="15.0" fill="rgb(237,10,21)" rx="2" ry="2" />
<text text-anchor="" x="1117.31" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt;::_M_next (5 samples, 0.11%)</title><rect x="1046.8" y="1697" width="1.4" height="15.0" fill="rgb(232,120,17)" rx="2" ry="2" />
<text text-anchor="" x="1049.83" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::set (1 samples, 0.02%)</title><rect x="856.3" y="1761" width="0.3" height="15.0" fill="rgb(252,140,46)" rx="2" ry="2" />
<text text-anchor="" x="859.30" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.02%)</title><rect x="190.5" y="129" width="0.2" height="15.0" fill="rgb(236,8,14)" rx="2" ry="2" />
<text text-anchor="" x="193.48" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::destroy&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt; (1 samples, 0.02%)</title><rect x="1178.9" y="1617" width="0.3" height="15.0" fill="rgb(242,224,13)" rx="2" ry="2" />
<text text-anchor="" x="1181.89" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (2 samples, 0.04%)</title><rect x="470.5" y="1697" width="0.5" height="15.0" fill="rgb(254,160,9)" rx="2" ry="2" />
<text text-anchor="" x="473.46" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="188.1" y="97" width="0.3" height="15.0" fill="rgb(239,177,16)" rx="2" ry="2" />
<text text-anchor="" x="191.10" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_AllocNode&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::operator (10 samples, 0.22%)</title><rect x="1096.1" y="1745" width="2.6" height="15.0" fill="rgb(230,217,38)" rx="2" ry="2" />
<text text-anchor="" x="1099.06" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (12 samples, 0.27%)</title><rect x="921.9" y="1809" width="3.2" height="15.0" fill="rgb(206,112,37)" rx="2" ry="2" />
<text text-anchor="" x="924.93" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (5 samples, 0.11%)</title><rect x="1112.7" y="1825" width="1.4" height="15.0" fill="rgb(223,135,3)" rx="2" ry="2" />
<text text-anchor="" x="1115.73" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__addressof&lt;std::mutex&gt; (3 samples, 0.07%)</title><rect x="694.6" y="1761" width="0.8" height="15.0" fill="rgb(246,55,1)" rx="2" ry="2" />
<text text-anchor="" x="697.61" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="737" width="6.6" height="15.0" fill="rgb(210,178,20)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (12 samples, 0.27%)</title><rect x="196.0" y="1937" width="3.2" height="15.0" fill="rgb(236,44,44)" rx="2" ry="2" />
<text text-anchor="" x="199.04" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1169" width="7.2" height="15.0" fill="rgb(228,187,9)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="212.2" y="1681" width="0.2" height="15.0" fill="rgb(230,61,23)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_find_before_node (1 samples, 0.02%)</title><rect x="1020.4" y="1745" width="0.2" height="15.0" fill="rgb(230,86,20)" rx="2" ry="2" />
<text text-anchor="" x="1023.37" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::~allocator (2 samples, 0.04%)</title><rect x="1051.3" y="1713" width="0.6" height="15.0" fill="rgb(222,5,40)" rx="2" ry="2" />
<text text-anchor="" x="1054.33" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (4 samples, 0.09%)</title><rect x="500.1" y="1569" width="1.1" height="15.0" fill="rgb(224,185,17)" rx="2" ry="2" />
<text text-anchor="" x="503.10" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (12 samples, 0.27%)</title><rect x="1157.7" y="1889" width="3.2" height="15.0" fill="rgb(252,220,12)" rx="2" ry="2" />
<text text-anchor="" x="1160.71" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="1186.8" y="1713" width="0.3" height="15.0" fill="rgb(247,206,38)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (3 samples, 0.07%)</title><rect x="513.1" y="1537" width="0.8" height="15.0" fill="rgb(217,39,7)" rx="2" ry="2" />
<text text-anchor="" x="516.07" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (74 samples, 1.66%)</title><rect x="929.3" y="1777" width="19.6" height="15.0" fill="rgb(218,115,34)" rx="2" ry="2" />
<text text-anchor="" x="932.34" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_extract (2 samples, 0.04%)</title><rect x="1035.5" y="1697" width="0.5" height="15.0" fill="rgb(205,21,15)" rx="2" ry="2" />
<text text-anchor="" x="1038.45" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (6 samples, 0.13%)</title><rect x="1085.7" y="1777" width="1.6" height="15.0" fill="rgb(218,154,16)" rx="2" ry="2" />
<text text-anchor="" x="1088.73" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (189 samples, 4.24%)</title><rect x="321.7" y="1713" width="50.1" height="15.0" fill="rgb(224,34,30)" rx="2" ry="2" />
<text text-anchor="" x="324.74" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_w..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::_List_base&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::~_List_base (20 samples, 0.45%)</title><rect x="1103.5" y="1793" width="5.3" height="15.0" fill="rgb(247,180,23)" rx="2" ry="2" />
<text text-anchor="" x="1106.46" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (7 samples, 0.16%)</title><rect x="1013.5" y="1729" width="1.8" height="15.0" fill="rgb(225,154,21)" rx="2" ry="2" />
<text text-anchor="" x="1016.49" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (2 samples, 0.04%)</title><rect x="1111.9" y="1841" width="0.6" height="15.0" fill="rgb(243,108,28)" rx="2" ry="2" />
<text text-anchor="" x="1114.93" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (2 samples, 0.04%)</title><rect x="797.3" y="1729" width="0.5" height="15.0" fill="rgb(208,71,7)" rx="2" ry="2" />
<text text-anchor="" x="800.28" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="545" width="6.6" height="15.0" fill="rgb(207,204,39)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.04%)</title><rect x="20.1" y="1889" width="0.5" height="15.0" fill="rgb(243,174,8)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.02%)</title><rect x="1057.9" y="1633" width="0.3" height="15.0" fill="rgb(234,136,6)" rx="2" ry="2" />
<text text-anchor="" x="1060.95" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::main_common (3,447 samples, 77.30%)</title><rect x="204.0" y="1985" width="912.2" height="15.0" fill="rgb(209,148,23)" rx="2" ry="2" />
<text text-anchor="" x="206.98" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Envoy::main_common</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.02%)</title><rect x="195.0" y="1921" width="0.2" height="15.0" fill="rgb(236,140,35)" rx="2" ry="2" />
<text text-anchor="" x="197.98" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::DispatcherImpl::DispatcherImpl (3 samples, 0.07%)</title><rect x="1186.3" y="1809" width="0.8" height="15.0" fill="rgb(253,192,51)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="190.5" y="145" width="0.2" height="15.0" fill="rgb(233,56,19)" rx="2" ry="2" />
<text text-anchor="" x="193.48" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1249" width="7.2" height="15.0" fill="rgb(246,116,23)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (7 samples, 0.16%)</title><rect x="204.0" y="1905" width="1.8" height="15.0" fill="rgb(208,155,53)" rx="2" ry="2" />
<text text-anchor="" x="206.98" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.02%)</title><rect x="187.8" y="81" width="0.3" height="15.0" fill="rgb(233,108,0)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="1153.7" y="1825" width="0.3" height="15.0" fill="rgb(254,43,35)" rx="2" ry="2" />
<text text-anchor="" x="1156.75" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::reference_wrapper&lt;Envoy::Event::Dispatcher&gt; &gt;::_List_iterator (1 samples, 0.02%)</title><rect x="811.3" y="1793" width="0.3" height="15.0" fill="rgb(224,208,21)" rx="2" ry="2" />
<text text-anchor="" x="814.31" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.02%)</title><rect x="182.5" y="1921" width="0.3" height="15.0" fill="rgb(239,69,17)" rx="2" ry="2" />
<text text-anchor="" x="185.54" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (1 samples, 0.02%)</title><rect x="188.1" y="113" width="0.3" height="15.0" fill="rgb(218,72,34)" rx="2" ry="2" />
<text text-anchor="" x="191.10" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list (1 samples, 0.02%)</title><rect x="23.2" y="1713" width="0.3" height="15.0" fill="rgb(245,188,50)" rx="2" ry="2" />
<text text-anchor="" x="26.23" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (14 samples, 0.31%)</title><rect x="1169.4" y="1745" width="3.7" height="15.0" fill="rgb(249,192,0)" rx="2" ry="2" />
<text text-anchor="" x="1172.36" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::function&lt;void (2 samples, 0.04%)</title><rect x="1168.3" y="1729" width="0.5" height="15.0" fill="rgb(220,54,30)" rx="2" ry="2" />
<text text-anchor="" x="1171.30" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, (35 samples, 0.78%)</title><rect x="840.2" y="1697" width="9.2" height="15.0" fill="rgb(232,193,24)" rx="2" ry="2" />
<text text-anchor="" x="843.15" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="24.8" y="1809" width="0.3" height="15.0" fill="rgb(230,74,0)" rx="2" ry="2" />
<text text-anchor="" x="27.82" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::reference_wrapper&lt;Envoy::Event::Dispatcher&gt; &gt;::operator!= (1 samples, 0.02%)</title><rect x="811.6" y="1793" width="0.2" height="15.0" fill="rgb(233,162,36)" rx="2" ry="2" />
<text text-anchor="" x="814.57" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (19 samples, 0.43%)</title><rect x="1119.3" y="1921" width="5.1" height="15.0" fill="rgb(207,93,47)" rx="2" ry="2" />
<text text-anchor="" x="1122.34" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::allocate (1 samples, 0.02%)</title><rect x="1098.4" y="1729" width="0.3" height="15.0" fill="rgb(212,131,41)" rx="2" ry="2" />
<text text-anchor="" x="1101.44" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::~allocator (1 samples, 0.02%)</title><rect x="1064.6" y="1729" width="0.2" height="15.0" fill="rgb(229,168,52)" rx="2" ry="2" />
<text text-anchor="" x="1067.56" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (4 samples, 0.09%)</title><rect x="980.7" y="1745" width="1.0" height="15.0" fill="rgb(209,166,7)" rx="2" ry="2" />
<text text-anchor="" x="983.68" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cxxabiv1::__class_type_info::~__class_type_info (2 samples, 0.04%)</title><rect x="203.4" y="2017" width="0.6" height="15.0" fill="rgb(233,89,12)" rx="2" ry="2" />
<text text-anchor="" x="206.45" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__aligned_buffer&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::_M_addr (1 samples, 0.02%)</title><rect x="1077.0" y="1681" width="0.3" height="15.0" fill="rgb(209,53,15)" rx="2" ry="2" />
<text text-anchor="" x="1080.00" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="190.7" y="49" width="0.3" height="15.0" fill="rgb(249,208,51)" rx="2" ry="2" />
<text text-anchor="" x="193.74" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (1 samples, 0.02%)</title><rect x="1114.1" y="1889" width="0.2" height="15.0" fill="rgb(220,225,30)" rx="2" ry="2" />
<text text-anchor="" x="1117.05" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::unlock (1 samples, 0.02%)</title><rect x="1186.8" y="1761" width="0.3" height="15.0" fill="rgb(237,200,38)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="291.0" y="1681" width="0.3" height="15.0" fill="rgb(211,138,4)" rx="2" ry="2" />
<text text-anchor="" x="294.04" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_poll (1 samples, 0.02%)</title><rect x="23.2" y="1681" width="0.3" height="15.0" fill="rgb(243,122,15)" rx="2" ry="2" />
<text text-anchor="" x="26.23" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (2 samples, 0.04%)</title><rect x="1156.9" y="1889" width="0.6" height="15.0" fill="rgb(247,205,10)" rx="2" ry="2" />
<text text-anchor="" x="1159.92" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (115 samples, 2.58%)</title><rect x="440.0" y="1713" width="30.5" height="15.0" fill="rgb(225,179,20)" rx="2" ry="2" />
<text text-anchor="" x="443.03" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[l..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1073" width="7.2" height="15.0" fill="rgb(217,190,28)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (4 samples, 0.09%)</title><rect x="20.8" y="1889" width="1.1" height="15.0" fill="rgb(210,189,11)" rx="2" ry="2" />
<text text-anchor="" x="23.85" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1505" width="7.2" height="15.0" fill="rgb(249,178,17)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.02%)</title><rect x="315.7" y="1633" width="0.2" height="15.0" fill="rgb(211,0,47)" rx="2" ry="2" />
<text text-anchor="" x="318.65" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (10 samples, 0.22%)</title><rect x="175.9" y="1937" width="2.7" height="15.0" fill="rgb(254,118,13)" rx="2" ry="2" />
<text text-anchor="" x="178.93" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (76 samples, 1.70%)</title><rect x="1166.2" y="1841" width="20.1" height="15.0" fill="rgb(205,29,14)" rx="2" ry="2" />
<text text-anchor="" x="1169.18" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (1 samples, 0.02%)</title><rect x="841.5" y="1665" width="0.2" height="15.0" fill="rgb(232,48,36)" rx="2" ry="2" />
<text text-anchor="" x="844.48" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1179.4" y="1617" width="0.3" height="15.0" fill="rgb(252,4,53)" rx="2" ry="2" />
<text text-anchor="" x="1182.41" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt;::allocate (20 samples, 0.45%)</title><rect x="1058.7" y="1697" width="5.3" height="15.0" fill="rgb(246,124,13)" rx="2" ry="2" />
<text text-anchor="" x="1061.74" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (6 samples, 0.13%)</title><rect x="499.6" y="1601" width="1.6" height="15.0" fill="rgb(230,77,16)" rx="2" ry="2" />
<text text-anchor="" x="502.57" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;::shared_ptr&lt;std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; (38 samples, 0.85%)</title><rect x="839.4" y="1713" width="10.0" height="15.0" fill="rgb(212,94,32)" rx="2" ry="2" />
<text text-anchor="" x="842.36" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (4 samples, 0.09%)</title><rect x="20.8" y="1921" width="1.1" height="15.0" fill="rgb(237,26,14)" rx="2" ry="2" />
<text text-anchor="" x="23.85" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::pair&lt;std::__detail::_Node_iterator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true, true&gt;, bool&gt;::pair&lt;std::__detail::_Node_iterator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true, true&gt;, bool, void&gt; (1 samples, 0.02%)</title><rect x="1070.9" y="1745" width="0.3" height="15.0" fill="rgb(209,186,47)" rx="2" ry="2" />
<text text-anchor="" x="1073.92" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (10 samples, 0.22%)</title><rect x="175.9" y="1969" width="2.7" height="15.0" fill="rgb(205,93,41)" rx="2" ry="2" />
<text text-anchor="" x="178.93" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xen_clocksource_get_cycles (1 samples, 0.02%)</title><rect x="194.7" y="913" width="0.3" height="15.0" fill="rgb(242,156,9)" rx="2" ry="2" />
<text text-anchor="" x="197.71" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.02%)</title><rect x="554.6" y="1521" width="0.3" height="15.0" fill="rgb(226,134,40)" rx="2" ry="2" />
<text text-anchor="" x="557.62" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (2 samples, 0.04%)</title><rect x="188.9" y="49" width="0.5" height="15.0" fill="rgb(216,81,53)" rx="2" ry="2" />
<text text-anchor="" x="191.89" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject, (1 samples, 0.02%)</title><rect x="815.8" y="1793" width="0.3" height="15.0" fill="rgb(231,127,52)" rx="2" ry="2" />
<text text-anchor="" x="818.81" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="1142.4" y="1905" width="0.2" height="15.0" fill="rgb(213,212,6)" rx="2" ry="2" />
<text text-anchor="" x="1145.37" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::reference_wrapper&lt;Envoy::Event::Dispatcher&gt; &gt;::operator* (2 samples, 0.04%)</title><rect x="919.0" y="1809" width="0.5" height="15.0" fill="rgb(239,155,4)" rx="2" ry="2" />
<text text-anchor="" x="922.02" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1185" width="7.2" height="15.0" fill="rgb(240,3,3)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Insert_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::insert (30 samples, 0.67%)</title><rect x="1092.6" y="1777" width="8.0" height="15.0" fill="rgb(244,89,23)" rx="2" ry="2" />
<text text-anchor="" x="1095.61" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_ebo_helper&lt;2, std::__detail::_Mod_range_hashing, true&gt;::_S_cget (1 samples, 0.02%)</title><rect x="1044.2" y="1665" width="0.3" height="15.0" fill="rgb(252,42,47)" rx="2" ry="2" />
<text text-anchor="" x="1047.19" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="191.0" y="97" width="0.3" height="15.0" fill="rgb(217,20,32)" rx="2" ry="2" />
<text text-anchor="" x="194.01" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::Stats::Counter, (6 samples, 0.13%)</title><rect x="1109.6" y="1809" width="1.5" height="15.0" fill="rgb(235,180,20)" rx="2" ry="2" />
<text text-anchor="" x="1112.55" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::Stats::Counter&gt;::~shared_ptr (12 samples, 0.27%)</title><rect x="1104.3" y="1729" width="3.1" height="15.0" fill="rgb(205,102,31)" rx="2" ry="2" />
<text text-anchor="" x="1107.26" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pvclock_clocksource_read (1 samples, 0.02%)</title><rect x="190.2" y="49" width="0.3" height="15.0" fill="rgb(242,151,9)" rx="2" ry="2" />
<text text-anchor="" x="193.22" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.02%)</title><rect x="188.6" y="65" width="0.3" height="15.0" fill="rgb(209,21,1)" rx="2" ry="2" />
<text text-anchor="" x="191.63" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_hash_code (1 samples, 0.02%)</title><rect x="1098.7" y="1745" width="0.3" height="15.0" fill="rgb(209,151,38)" rx="2" ry="2" />
<text text-anchor="" x="1101.70" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>evthread_posix_lock (7 samples, 0.16%)</title><rect x="588.2" y="1761" width="1.9" height="15.0" fill="rgb(235,178,38)" rx="2" ry="2" />
<text text-anchor="" x="591.22" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__atomic_add_dispatch (5 samples, 0.11%)</title><rect x="1090.5" y="1713" width="1.3" height="15.0" fill="rgb(235,156,35)" rx="2" ry="2" />
<text text-anchor="" x="1093.50" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_M_empty (2 samples, 0.04%)</title><rect x="851.0" y="1761" width="0.5" height="15.0" fill="rgb(226,187,46)" rx="2" ry="2" />
<text text-anchor="" x="854.00" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (14 samples, 0.31%)</title><rect x="199.2" y="1953" width="3.7" height="15.0" fill="rgb(214,189,52)" rx="2" ry="2" />
<text text-anchor="" x="202.21" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (65 samples, 1.46%)</title><rect x="1125.2" y="1985" width="17.2" height="15.0" fill="rgb(221,139,20)" rx="2" ry="2" />
<text text-anchor="" x="1128.16" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__iterator_category&lt;char*&gt; (1 samples, 0.02%)</title><rect x="833.8" y="1697" width="0.3" height="15.0" fill="rgb(242,93,49)" rx="2" ry="2" />
<text text-anchor="" x="836.80" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (2 samples, 0.04%)</title><rect x="195.2" y="1985" width="0.6" height="15.0" fill="rgb(214,168,35)" rx="2" ry="2" />
<text text-anchor="" x="198.24" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (2 samples, 0.04%)</title><rect x="23.5" y="1665" width="0.5" height="15.0" fill="rgb(235,97,25)" rx="2" ry="2" />
<text text-anchor="" x="26.50" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="1168.0" y="1569" width="0.3" height="15.0" fill="rgb(229,221,23)" rx="2" ry="2" />
<text text-anchor="" x="1171.04" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::shared_ptr&lt;Envoy::Stats::Counter&gt;::shared_ptr (42 samples, 0.94%)</title><rect x="1000.3" y="1777" width="11.1" height="15.0" fill="rgb(215,91,37)" rx="2" ry="2" />
<text text-anchor="" x="1003.26" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="24.8" y="1777" width="0.3" height="15.0" fill="rgb(219,124,15)" rx="2" ry="2" />
<text text-anchor="" x="27.82" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::_M_v (1 samples, 0.02%)</title><rect x="1089.7" y="1777" width="0.3" height="15.0" fill="rgb(239,26,10)" rx="2" ry="2" />
<text text-anchor="" x="1092.70" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::Stats::Gauge, (3 samples, 0.07%)</title><rect x="1108.8" y="1713" width="0.8" height="15.0" fill="rgb(227,165,10)" rx="2" ry="2" />
<text text-anchor="" x="1111.76" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="497" width="6.6" height="15.0" fill="rgb(231,16,14)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="1124.9" y="1921" width="0.3" height="15.0" fill="rgb(212,158,12)" rx="2" ry="2" />
<text text-anchor="" x="1127.90" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (8 samples, 0.18%)</title><rect x="1163.3" y="1857" width="2.1" height="15.0" fill="rgb(249,175,8)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.09%)</title><rect x="20.8" y="1905" width="1.1" height="15.0" fill="rgb(217,25,13)" rx="2" ry="2" />
<text text-anchor="" x="23.85" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::allocate (3 samples, 0.07%)</title><rect x="1087.9" y="1729" width="0.7" height="15.0" fill="rgb(228,101,45)" rx="2" ry="2" />
<text text-anchor="" x="1090.85" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="192.1" y="161" width="0.2" height="15.0" fill="rgb(212,72,10)" rx="2" ry="2" />
<text text-anchor="" x="195.07" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (1 samples, 0.02%)</title><rect x="1186.8" y="1697" width="0.3" height="15.0" fill="rgb(220,189,27)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="1116.2" y="2001" width="0.2" height="15.0" fill="rgb(218,102,40)" rx="2" ry="2" />
<text text-anchor="" x="1119.17" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::DispatcherImpl::post (2 samples, 0.04%)</title><rect x="230.2" y="1809" width="0.5" height="15.0" fill="rgb(217,25,10)" rx="2" ry="2" />
<text text-anchor="" x="233.17" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="1186.6" y="1745" width="0.2" height="15.0" fill="rgb(247,153,23)" rx="2" ry="2" />
<text text-anchor="" x="1189.56" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (49 samples, 1.10%)</title><rect x="837.5" y="1761" width="13.0" height="15.0" fill="rgb(240,76,38)" rx="2" ry="2" />
<text text-anchor="" x="840.51" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (3 samples, 0.07%)</title><rect x="1114.3" y="1825" width="0.8" height="15.0" fill="rgb(230,12,43)" rx="2" ry="2" />
<text text-anchor="" x="1117.31" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt; &gt;::destroy&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt; (1 samples, 0.02%)</title><rect x="1178.9" y="1633" width="0.3" height="15.0" fill="rgb(224,164,19)" rx="2" ry="2" />
<text text-anchor="" x="1181.89" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (1 samples, 0.02%)</title><rect x="726.4" y="1697" width="0.2" height="15.0" fill="rgb(215,83,9)" rx="2" ry="2" />
<text text-anchor="" x="729.36" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (3 samples, 0.07%)</title><rect x="23.5" y="1713" width="0.8" height="15.0" fill="rgb(250,83,16)" rx="2" ry="2" />
<text text-anchor="" x="26.50" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.02%)</title><rect x="1010.8" y="1681" width="0.3" height="15.0" fill="rgb(206,7,18)" rx="2" ry="2" />
<text text-anchor="" x="1013.84" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="633.2" y="1601" width="0.3" height="15.0" fill="rgb(217,21,6)" rx="2" ry="2" />
<text text-anchor="" x="636.21" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Mod_range_hashing::operator (1 samples, 0.02%)</title><rect x="1095.3" y="1681" width="0.2" height="15.0" fill="rgb(233,146,44)" rx="2" ry="2" />
<text text-anchor="" x="1098.26" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="1142.4" y="1985" width="0.2" height="15.0" fill="rgb(251,63,7)" rx="2" ry="2" />
<text text-anchor="" x="1145.37" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.02%)</title><rect x="291.0" y="1697" width="0.3" height="15.0" fill="rgb(248,46,53)" rx="2" ry="2" />
<text text-anchor="" x="294.04" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="203.4" y="1953" width="0.3" height="15.0" fill="rgb(227,142,49)" rx="2" ry="2" />
<text text-anchor="" x="206.45" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_handler&lt;void (20 samples, 0.45%)</title><rect x="20.1" y="1985" width="5.2" height="15.0" fill="rgb(218,129,33)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::ThreadLocal::InstanceImpl::set (3 samples, 0.07%)</title><rect x="1167.5" y="1681" width="0.8" height="15.0" fill="rgb(232,216,53)" rx="2" ry="2" />
<text text-anchor="" x="1170.51" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (2 samples, 0.04%)</title><rect x="846.0" y="1617" width="0.5" height="15.0" fill="rgb(220,165,13)" rx="2" ry="2" />
<text text-anchor="" x="848.98" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (1 samples, 0.02%)</title><rect x="1182.1" y="1649" width="0.2" height="15.0" fill="rgb(236,197,36)" rx="2" ry="2" />
<text text-anchor="" x="1185.06" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1745" width="7.2" height="15.0" fill="rgb(212,76,15)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="849.2" y="1681" width="0.2" height="15.0" fill="rgb(254,123,19)" rx="2" ry="2" />
<text text-anchor="" x="852.15" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1777" width="7.2" height="15.0" fill="rgb(220,194,39)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (3 samples, 0.07%)</title><rect x="191.3" y="113" width="0.8" height="15.0" fill="rgb(253,57,41)" rx="2" ry="2" />
<text text-anchor="" x="194.27" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access (3 samples, 0.07%)</title><rect x="673.7" y="1649" width="0.8" height="15.0" fill="rgb(247,171,30)" rx="2" ry="2" />
<text text-anchor="" x="676.70" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.02%)</title><rect x="188.1" y="49" width="0.3" height="15.0" fill="rgb(222,206,13)" rx="2" ry="2" />
<text text-anchor="" x="191.10" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (1 samples, 0.02%)</title><rect x="189.4" y="49" width="0.3" height="15.0" fill="rgb(215,131,21)" rx="2" ry="2" />
<text text-anchor="" x="192.42" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; &gt; &gt;::operator[] (1 samples, 0.02%)</title><rect x="742.5" y="1777" width="0.3" height="15.0" fill="rgb(210,104,32)" rx="2" ry="2" />
<text text-anchor="" x="745.51" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="801" width="6.6" height="15.0" fill="rgb(237,61,46)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.02%)</title><rect x="1157.5" y="1889" width="0.2" height="15.0" fill="rgb(236,85,28)" rx="2" ry="2" />
<text text-anchor="" x="1160.45" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_ebo_helper&lt;0, std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt;, true&gt;::_S_get (1 samples, 0.02%)</title><rect x="1051.1" y="1697" width="0.2" height="15.0" fill="rgb(237,106,40)" rx="2" ry="2" />
<text text-anchor="" x="1054.07" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="22.4" y="1825" width="0.3" height="15.0" fill="rgb(211,210,22)" rx="2" ry="2" />
<text text-anchor="" x="25.44" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (6 samples, 0.13%)</title><rect x="499.6" y="1585" width="1.6" height="15.0" fill="rgb(252,167,8)" rx="2" ry="2" />
<text text-anchor="" x="502.57" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (8 samples, 0.18%)</title><rect x="1153.5" y="1873" width="2.1" height="15.0" fill="rgb(237,145,53)" rx="2" ry="2" />
<text text-anchor="" x="1156.48" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.02%)</title><rect x="1119.1" y="1921" width="0.2" height="15.0" fill="rgb(243,214,35)" rx="2" ry="2" />
<text text-anchor="" x="1122.08" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="194.4" y="769" width="0.3" height="15.0" fill="rgb(212,194,18)" rx="2" ry="2" />
<text text-anchor="" x="197.45" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (4 samples, 0.09%)</title><rect x="323.6" y="1681" width="1.0" height="15.0" fill="rgb(231,195,54)" rx="2" ry="2" />
<text text-anchor="" x="326.59" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Node_iterator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt;, false, true&gt;::operator* (2 samples, 0.04%)</title><rect x="1089.7" y="1793" width="0.5" height="15.0" fill="rgb(207,109,14)" rx="2" ry="2" />
<text text-anchor="" x="1092.70" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject, (3 samples, 0.07%)</title><rect x="890.4" y="1777" width="0.8" height="15.0" fill="rgb(234,198,52)" rx="2" ry="2" />
<text text-anchor="" x="893.44" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (7 samples, 0.16%)</title><rect x="204.0" y="1889" width="1.8" height="15.0" fill="rgb(249,201,22)" rx="2" ry="2" />
<text text-anchor="" x="206.98" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1217" width="7.2" height="15.0" fill="rgb(212,87,9)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::begin (1 samples, 0.02%)</title><rect x="1016.7" y="1777" width="0.2" height="15.0" fill="rgb(233,60,19)" rx="2" ry="2" />
<text text-anchor="" x="1019.67" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_find_node (7 samples, 0.16%)</title><rect x="1092.9" y="1745" width="1.8" height="15.0" fill="rgb(209,79,16)" rx="2" ry="2" />
<text text-anchor="" x="1095.88" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::~_Hashtable (35 samples, 0.78%)</title><rect x="1073.0" y="1777" width="9.3" height="15.0" fill="rgb(244,183,50)" rx="2" ry="2" />
<text text-anchor="" x="1076.03" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="192.1" y="145" width="0.2" height="15.0" fill="rgb(207,64,23)" rx="2" ry="2" />
<text text-anchor="" x="195.07" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add_dispatch (2 samples, 0.04%)</title><rect x="890.7" y="1729" width="0.5" height="15.0" fill="rgb(206,84,4)" rx="2" ry="2" />
<text text-anchor="" x="893.70" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.02%)</title><rect x="1116.2" y="1985" width="0.2" height="15.0" fill="rgb(250,48,28)" rx="2" ry="2" />
<text text-anchor="" x="1119.17" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gettime (2 samples, 0.04%)</title><rect x="1189.5" y="1905" width="0.5" height="15.0" fill="rgb(231,216,51)" rx="2" ry="2" />
<text text-anchor="" x="1192.47" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strlen (1 samples, 0.02%)</title><rect x="13.4" y="2001" width="0.3" height="15.0" fill="rgb(212,14,27)" rx="2" ry="2" />
<text text-anchor="" x="16.44" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::DispatcherImpl::run (140 samples, 3.14%)</title><rect x="1153.0" y="1921" width="37.0" height="15.0" fill="rgb(247,23,27)" rx="2" ry="2" />
<text text-anchor="" x="1155.95" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Env..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_handler&lt;void (27 samples, 0.61%)</title><rect x="1175.7" y="1761" width="7.2" height="15.0" fill="rgb(216,50,8)" rx="2" ry="2" />
<text text-anchor="" x="1178.71" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::TlsCachingDateProviderImpl (1 samples, 0.02%)</title><rect x="216.7" y="1857" width="0.2" height="15.0" fill="rgb(226,198,39)" rx="2" ry="2" />
<text text-anchor="" x="219.68" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.07%)</title><rect x="1114.3" y="1889" width="0.8" height="15.0" fill="rgb(215,28,32)" rx="2" ry="2" />
<text text-anchor="" x="1117.31" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::pair&lt;std::__detail::_Node_iterator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true, true&gt;, bool&gt;::pair&lt;std::__detail::_Node_iterator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true, true&gt;, bool, void&gt; (1 samples, 0.02%)</title><rect x="1070.7" y="1729" width="0.2" height="15.0" fill="rgb(206,19,53)" rx="2" ry="2" />
<text text-anchor="" x="1073.65" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (2 samples, 0.04%)</title><rect x="513.3" y="1505" width="0.6" height="15.0" fill="rgb(226,218,10)" rx="2" ry="2" />
<text text-anchor="" x="516.33" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (3 samples, 0.07%)</title><rect x="191.3" y="177" width="0.8" height="15.0" fill="rgb(224,66,10)" rx="2" ry="2" />
<text text-anchor="" x="194.27" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.02%)</title><rect x="203.7" y="1873" width="0.3" height="15.0" fill="rgb(215,121,52)" rx="2" ry="2" />
<text text-anchor="" x="206.71" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.04%)</title><rect x="1124.6" y="1953" width="0.6" height="15.0" fill="rgb(219,131,23)" rx="2" ry="2" />
<text text-anchor="" x="1127.64" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::deallocate (5 samples, 0.11%)</title><rect x="1107.4" y="1745" width="1.4" height="15.0" fill="rgb(253,13,30)" rx="2" ry="2" />
<text text-anchor="" x="1110.43" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (84 samples, 1.88%)</title><rect x="894.4" y="1809" width="22.2" height="15.0" fill="rgb(230,96,53)" rx="2" ry="2" />
<text text-anchor="" x="897.40" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_add (17 samples, 0.38%)</title><rect x="231.0" y="1793" width="4.5" height="15.0" fill="rgb(209,21,53)" rx="2" ry="2" />
<text text-anchor="" x="233.97" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="849" width="6.6" height="15.0" fill="rgb(247,146,24)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unary_function&lt;Envoy::Event::Dispatcher&amp;, std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; &gt;::unary_function (1 samples, 0.02%)</title><rect x="860.0" y="1697" width="0.3" height="15.0" fill="rgb(213,7,45)" rx="2" ry="2" />
<text text-anchor="" x="863.00" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (39 samples, 0.87%)</title><rect x="875.6" y="1665" width="10.3" height="15.0" fill="rgb(252,82,27)" rx="2" ry="2" />
<text text-anchor="" x="878.62" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.04%)</title><rect x="189.4" y="97" width="0.6" height="15.0" fill="rgb(249,220,29)" rx="2" ry="2" />
<text text-anchor="" x="192.42" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (205 samples, 4.60%)</title><rect x="384.7" y="1665" width="54.3" height="15.0" fill="rgb(229,72,31)" rx="2" ry="2" />
<text text-anchor="" x="387.72" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__vfs..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (141 samples, 3.16%)</title><rect x="253.5" y="1697" width="37.3" height="15.0" fill="rgb(251,133,53)" rx="2" ry="2" />
<text text-anchor="" x="256.46" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (21 samples, 0.47%)</title><rect x="1052.7" y="1681" width="5.5" height="15.0" fill="rgb(219,9,50)" rx="2" ry="2" />
<text text-anchor="" x="1055.66" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="923.0" y="1761" width="0.2" height="15.0" fill="rgb(232,49,13)" rx="2" ry="2" />
<text text-anchor="" x="925.98" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::length (1 samples, 0.02%)</title><rect x="1066.4" y="1729" width="0.3" height="15.0" fill="rgb(254,79,42)" rx="2" ry="2" />
<text text-anchor="" x="1069.42" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (58 samples, 1.30%)</title><rect x="711.3" y="1745" width="15.3" height="15.0" fill="rgb(214,131,35)" rx="2" ry="2" />
<text text-anchor="" x="714.28" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (25 samples, 0.56%)</title><rect x="475.2" y="1617" width="6.6" height="15.0" fill="rgb(246,11,40)" rx="2" ry="2" />
<text text-anchor="" x="478.23" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (12 samples, 0.27%)</title><rect x="1179.2" y="1729" width="3.1" height="15.0" fill="rgb(217,218,45)" rx="2" ry="2" />
<text text-anchor="" x="1182.15" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (53 samples, 1.19%)</title><rect x="554.6" y="1537" width="14.0" height="15.0" fill="rgb(241,227,6)" rx="2" ry="2" />
<text text-anchor="" x="557.62" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_create (2 samples, 0.04%)</title><rect x="12.9" y="1985" width="0.5" height="15.0" fill="rgb(227,85,37)" rx="2" ry="2" />
<text text-anchor="" x="15.91" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1841" width="7.2" height="15.0" fill="rgb(210,14,40)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="194.2" y="97" width="0.2" height="15.0" fill="rgb(213,131,8)" rx="2" ry="2" />
<text text-anchor="" x="197.18" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (73 samples, 1.64%)</title><rect x="929.6" y="1745" width="19.3" height="15.0" fill="rgb(213,151,39)" rx="2" ry="2" />
<text text-anchor="" x="932.60" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="1124.9" y="1889" width="0.3" height="15.0" fill="rgb(208,117,37)" rx="2" ry="2" />
<text text-anchor="" x="1127.90" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="833" width="6.6" height="15.0" fill="rgb(239,155,34)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (5 samples, 0.11%)</title><rect x="109.0" y="2001" width="1.3" height="15.0" fill="rgb(223,62,2)" rx="2" ry="2" />
<text text-anchor="" x="111.97" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (4 samples, 0.09%)</title><rect x="23.2" y="1857" width="1.1" height="15.0" fill="rgb(237,131,11)" rx="2" ry="2" />
<text text-anchor="" x="26.23" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (48 samples, 1.08%)</title><rect x="598.0" y="1713" width="12.7" height="15.0" fill="rgb(239,58,53)" rx="2" ry="2" />
<text text-anchor="" x="601.02" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::reference_wrapper&lt;Envoy::Event::Dispatcher&gt;::operator Envoy::Event::Dispatcher&amp; (1 samples, 0.02%)</title><rect x="928.0" y="1809" width="0.3" height="15.0" fill="rgb(212,62,41)" rx="2" ry="2" />
<text text-anchor="" x="931.01" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (140 samples, 3.14%)</title><rect x="1153.0" y="2033" width="37.0" height="15.0" fill="rgb(223,221,45)" rx="2" ry="2" />
<text text-anchor="" x="1155.95" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sta..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add_dispatch (11 samples, 0.25%)</title><rect x="736.4" y="1713" width="2.9" height="15.0" fill="rgb(221,227,46)" rx="2" ry="2" />
<text text-anchor="" x="739.42" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::destroy&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; (4 samples, 0.09%)</title><rect x="1077.5" y="1697" width="1.1" height="15.0" fill="rgb(234,95,25)" rx="2" ry="2" />
<text text-anchor="" x="1080.53" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (9 samples, 0.20%)</title><rect x="981.7" y="1777" width="2.4" height="15.0" fill="rgb(225,28,0)" rx="2" ry="2" />
<text text-anchor="" x="984.73" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::~list (3 samples, 0.07%)</title><rect x="1108.8" y="1809" width="0.8" height="15.0" fill="rgb(228,196,10)" rx="2" ry="2" />
<text text-anchor="" x="1111.76" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char const*&gt; (14 samples, 0.31%)</title><rect x="199.2" y="1985" width="3.7" height="15.0" fill="rgb(217,192,17)" rx="2" ry="2" />
<text text-anchor="" x="202.21" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (2 samples, 0.04%)</title><rect x="740.1" y="1649" width="0.6" height="15.0" fill="rgb(244,192,32)" rx="2" ry="2" />
<text text-anchor="" x="743.12" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list (1 samples, 0.02%)</title><rect x="1161.2" y="1825" width="0.2" height="15.0" fill="rgb(241,2,29)" rx="2" ry="2" />
<text text-anchor="" x="1164.15" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="1186.8" y="1601" width="0.3" height="15.0" fill="rgb(252,52,44)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (1 samples, 0.02%)</title><rect x="212.2" y="1873" width="0.2" height="15.0" fill="rgb(225,177,33)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (14 samples, 0.31%)</title><rect x="199.2" y="1937" width="3.7" height="15.0" fill="rgb(253,0,41)" rx="2" ry="2" />
<text text-anchor="" x="202.21" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::enableTimer (37 samples, 0.83%)</title><rect x="230.7" y="1809" width="9.8" height="15.0" fill="rgb(228,132,48)" rx="2" ry="2" />
<text text-anchor="" x="233.70" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (1 samples, 0.02%)</title><rect x="12.1" y="1969" width="0.3" height="15.0" fill="rgb(251,187,54)" rx="2" ry="2" />
<text text-anchor="" x="15.12" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::DateFormatter::now[abi:cxx11] (34 samples, 0.76%)</title><rect x="221.2" y="1809" width="9.0" height="15.0" fill="rgb(242,78,9)" rx="2" ry="2" />
<text text-anchor="" x="224.18" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (11 samples, 0.25%)</title><rect x="1176.2" y="1681" width="3.0" height="15.0" fill="rgb(228,19,11)" rx="2" ry="2" />
<text text-anchor="" x="1179.24" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::setThreadLocal (40 samples, 0.90%)</title><rect x="732.2" y="1793" width="10.6" height="15.0" fill="rgb(252,129,17)" rx="2" ry="2" />
<text text-anchor="" x="735.18" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_ts64 (1 samples, 0.02%)</title><rect x="20.1" y="1873" width="0.2" height="15.0" fill="rgb(254,130,37)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_handler&lt;void (140 samples, 3.14%)</title><rect x="1153.0" y="1969" width="37.0" height="15.0" fill="rgb(248,6,49)" rx="2" ry="2" />
<text text-anchor="" x="1155.95" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="190.7" y="81" width="0.3" height="15.0" fill="rgb(236,114,45)" rx="2" ry="2" />
<text text-anchor="" x="193.74" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::~list (20 samples, 0.45%)</title><rect x="1103.5" y="1809" width="5.3" height="15.0" fill="rgb(253,219,42)" rx="2" ry="2" />
<text text-anchor="" x="1106.46" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_ebo_helper&lt;0, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, true&gt;::_Sp_ebo_helper (2 samples, 0.04%)</title><rect x="842.0" y="1633" width="0.5" height="15.0" fill="rgb(251,108,27)" rx="2" ry="2" />
<text text-anchor="" x="845.01" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_begin (1 samples, 0.02%)</title><rect x="1016.7" y="1761" width="0.2" height="15.0" fill="rgb(250,26,39)" rx="2" ry="2" />
<text text-anchor="" x="1019.67" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::set (59 samples, 1.32%)</title><rect x="870.3" y="1729" width="15.6" height="15.0" fill="rgb(218,6,16)" rx="2" ry="2" />
<text text-anchor="" x="873.32" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt;::pair (6 samples, 0.13%)</title><rect x="1090.2" y="1793" width="1.6" height="15.0" fill="rgb(230,203,46)" rx="2" ry="2" />
<text text-anchor="" x="1093.23" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (3 samples, 0.07%)</title><rect x="1082.3" y="1793" width="0.8" height="15.0" fill="rgb(210,31,15)" rx="2" ry="2" />
<text text-anchor="" x="1085.29" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (26 samples, 0.58%)</title><rect x="475.0" y="1649" width="6.8" height="15.0" fill="rgb(226,126,34)" rx="2" ry="2" />
<text text-anchor="" x="477.96" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (7 samples, 0.16%)</title><rect x="1173.9" y="1649" width="1.8" height="15.0" fill="rgb(244,47,47)" rx="2" ry="2" />
<text text-anchor="" x="1176.86" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.02%)</title><rect x="650.7" y="1569" width="0.2" height="15.0" fill="rgb(240,162,24)" rx="2" ry="2" />
<text text-anchor="" x="653.68" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (8 samples, 0.18%)</title><rect x="1153.5" y="1857" width="2.1" height="15.0" fill="rgb(250,28,51)" rx="2" ry="2" />
<text text-anchor="" x="1156.48" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (113 samples, 2.53%)</title><rect x="632.4" y="1617" width="29.9" height="15.0" fill="rgb(246,55,51)" rx="2" ry="2" />
<text text-anchor="" x="635.42" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >st..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__aligned_buffer&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::_M_ptr (1 samples, 0.02%)</title><rect x="1089.7" y="1745" width="0.3" height="15.0" fill="rgb(218,21,50)" rx="2" ry="2" />
<text text-anchor="" x="1092.70" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (11 samples, 0.25%)</title><rect x="571.8" y="1601" width="2.9" height="15.0" fill="rgb(251,217,18)" rx="2" ry="2" />
<text text-anchor="" x="574.82" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (2 samples, 0.04%)</title><rect x="470.5" y="1649" width="0.5" height="15.0" fill="rgb(213,3,28)" rx="2" ry="2" />
<text text-anchor="" x="473.46" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 0.58%)</title><rect x="187.8" y="977" width="6.9" height="15.0" fill="rgb(222,51,19)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::make_pair&lt;std::__detail::_Node_iterator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true, true&gt;, bool&gt; (4 samples, 0.09%)</title><rect x="1069.9" y="1745" width="1.0" height="15.0" fill="rgb(251,60,47)" rx="2" ry="2" />
<text text-anchor="" x="1072.86" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (20 samples, 0.45%)</title><rect x="206.1" y="1889" width="5.3" height="15.0" fill="rgb(221,18,40)" rx="2" ry="2" />
<text text-anchor="" x="209.09" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (234 samples, 5.25%)</title><rect x="114.0" y="1953" width="61.9" height="15.0" fill="rgb(241,195,49)" rx="2" ry="2" />
<text text-anchor="" x="117.00" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vfs_wr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (130 samples, 2.92%)</title><rect x="817.1" y="1793" width="34.4" height="15.0" fill="rgb(206,110,28)" rx="2" ry="2" />
<text text-anchor="" x="820.13" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >st..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::chrono::duration_cast&lt;std::chrono::duration&lt;long, std::ratio&lt;1l, 1000000l&gt; &gt;, long, std::ratio&lt;1l, 1000l&gt; &gt; (6 samples, 0.13%)</title><rect x="920.3" y="1809" width="1.6" height="15.0" fill="rgb(246,145,26)" rx="2" ry="2" />
<text text-anchor="" x="923.34" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;::pair (44 samples, 0.99%)</title><rect x="999.7" y="1793" width="11.7" height="15.0" fill="rgb(236,194,17)" rx="2" ry="2" />
<text text-anchor="" x="1002.73" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (240 samples, 5.38%)</title><rect x="505.1" y="1617" width="63.5" height="15.0" fill="rgb(251,48,23)" rx="2" ry="2" />
<text text-anchor="" x="508.13" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt; &gt;::max_size (1 samples, 0.02%)</title><rect x="989.4" y="1713" width="0.3" height="15.0" fill="rgb(242,197,29)" rx="2" ry="2" />
<text text-anchor="" x="992.41" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__distance&lt;char*&gt; (1 samples, 0.02%)</title><rect x="1180.2" y="1505" width="0.3" height="15.0" fill="rgb(254,155,47)" rx="2" ry="2" />
<text text-anchor="" x="1183.21" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::function&lt;void (281 samples, 6.30%)</title><rect x="617.9" y="1761" width="74.3" height="15.0" fill="rgb(221,56,46)" rx="2" ry="2" />
<text text-anchor="" x="620.86" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::__c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::_List_base&lt;std::function&lt;void (2 samples, 0.04%)</title><rect x="617.3" y="1761" width="0.6" height="15.0" fill="rgb(251,202,54)" rx="2" ry="2" />
<text text-anchor="" x="620.33" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.02%)</title><rect x="188.4" y="129" width="0.2" height="15.0" fill="rgb(235,74,46)" rx="2" ry="2" />
<text text-anchor="" x="191.36" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt; &gt;::construct&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (11 samples, 0.25%)</title><rect x="842.5" y="1649" width="2.9" height="15.0" fill="rgb(247,144,34)" rx="2" ry="2" />
<text text-anchor="" x="845.54" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (3 samples, 0.07%)</title><rect x="1114.3" y="1841" width="0.8" height="15.0" fill="rgb(246,169,23)" rx="2" ry="2" />
<text text-anchor="" x="1117.31" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_active_p (2 samples, 0.04%)</title><rect x="1177.6" y="1649" width="0.5" height="15.0" fill="rgb(206,139,4)" rx="2" ry="2" />
<text text-anchor="" x="1180.56" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.04%)</title><rect x="195.2" y="1969" width="0.6" height="15.0" fill="rgb(208,136,1)" rx="2" ry="2" />
<text text-anchor="" x="198.24" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (1 samples, 0.02%)</title><rect x="1164.1" y="1777" width="0.2" height="15.0" fill="rgb(241,74,0)" rx="2" ry="2" />
<text text-anchor="" x="1167.07" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1441" width="7.2" height="15.0" fill="rgb(224,173,32)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.02%)</title><rect x="571.6" y="1617" width="0.2" height="15.0" fill="rgb(254,11,42)" rx="2" ry="2" />
<text text-anchor="" x="574.55" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (2 samples, 0.04%)</title><rect x="797.3" y="1697" width="0.5" height="15.0" fill="rgb(216,221,2)" rx="2" ry="2" />
<text text-anchor="" x="800.28" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Any_data::_M_access (1 samples, 0.02%)</title><rect x="885.9" y="1729" width="0.3" height="15.0" fill="rgb(212,129,8)" rx="2" ry="2" />
<text text-anchor="" x="888.94" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Thread::Thread::Thread (140 samples, 3.14%)</title><rect x="1153.0" y="2017" width="37.0" height="15.0" fill="rgb(224,45,1)" rx="2" ry="2" />
<text text-anchor="" x="1155.95" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Env..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; const&amp;&gt; (11 samples, 0.25%)</title><rect x="985.7" y="1729" width="2.9" height="15.0" fill="rgb(206,131,7)" rx="2" ry="2" />
<text text-anchor="" x="988.70" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__aligned_buffer&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::_M_addr (1 samples, 0.02%)</title><rect x="1089.7" y="1729" width="0.3" height="15.0" fill="rgb(220,219,53)" rx="2" ry="2" />
<text text-anchor="" x="1092.70" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_lock&lt;std::mutex&gt;::lock (2 samples, 0.04%)</title><rect x="1184.2" y="1761" width="0.5" height="15.0" fill="rgb(250,137,47)" rx="2" ry="2" />
<text text-anchor="" x="1187.18" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Stats::ThreadLocalStoreImpl::counters[abi:cxx11] (468 samples, 10.50%)</title><rect x="959.2" y="1809" width="123.9" height="15.0" fill="rgb(238,170,10)" rx="2" ry="2" />
<text text-anchor="" x="962.24" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Envoy::Stats::T..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::TimerImpl (14 samples, 0.31%)</title><rect x="10.0" y="2033" width="3.7" height="15.0" fill="rgb(233,136,45)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__get_helper&lt;0ul, Envoy::Event::Timer*, std::default_delete&lt;Envoy::Event::Timer&gt; &gt; (3 samples, 0.07%)</title><rect x="728.7" y="1729" width="0.8" height="15.0" fill="rgb(249,29,10)" rx="2" ry="2" />
<text text-anchor="" x="731.74" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="1157.5" y="1873" width="0.2" height="15.0" fill="rgb(236,168,32)" rx="2" ry="2" />
<text text-anchor="" x="1160.45" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (266 samples, 5.97%)</title><rect x="38.6" y="1969" width="70.4" height="15.0" fill="rgb(217,58,11)" rx="2" ry="2" />
<text text-anchor="" x="41.58" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vfs_write</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add (1 samples, 0.02%)</title><rect x="1182.6" y="1649" width="0.3" height="15.0" fill="rgb(238,219,21)" rx="2" ry="2" />
<text text-anchor="" x="1185.59" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;::_List_iterator (1 samples, 0.02%)</title><rect x="996.0" y="1761" width="0.3" height="15.0" fill="rgb(224,116,3)" rx="2" ry="2" />
<text text-anchor="" x="999.02" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list (1 samples, 0.02%)</title><rect x="22.7" y="1793" width="0.3" height="15.0" fill="rgb(245,213,7)" rx="2" ry="2" />
<text text-anchor="" x="25.70" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (27 samples, 0.61%)</title><rect x="187.8" y="1489" width="7.2" height="15.0" fill="rgb(224,41,15)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.02%)</title><rect x="1151.6" y="2001" width="0.3" height="15.0" fill="rgb(245,185,49)" rx="2" ry="2" />
<text text-anchor="" x="1154.63" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.02%)</title><rect x="1124.6" y="1905" width="0.3" height="15.0" fill="rgb(245,2,30)" rx="2" ry="2" />
<text text-anchor="" x="1127.64" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (1 samples, 0.02%)</title><rect x="1178.6" y="1585" width="0.3" height="15.0" fill="rgb(208,74,34)" rx="2" ry="2" />
<text text-anchor="" x="1181.62" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, std::shared_ptr&lt;Envoy::Stats::Counter&gt; &gt;::pair (1 samples, 0.02%)</title><rect x="1111.4" y="1809" width="0.3" height="15.0" fill="rgb(212,122,0)" rx="2" ry="2" />
<text text-anchor="" x="1114.40" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (21 samples, 0.47%)</title><rect x="19.8" y="2001" width="5.5" height="15.0" fill="rgb(249,23,42)" rx="2" ry="2" />
<text text-anchor="" x="22.79" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="1168.0" y="1585" width="0.3" height="15.0" fill="rgb(216,60,15)" rx="2" ry="2" />
<text text-anchor="" x="1171.04" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (4 samples, 0.09%)</title><rect x="846.0" y="1649" width="1.0" height="15.0" fill="rgb(248,97,3)" rx="2" ry="2" />
<text text-anchor="" x="848.98" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_ebo_helper&lt;0, std::__detail::_Identity, true&gt;::_S_cget (1 samples, 0.02%)</title><rect x="1035.7" y="1681" width="0.3" height="15.0" fill="rgb(235,220,13)" rx="2" ry="2" />
<text text-anchor="" x="1038.72" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="433" width="6.6" height="15.0" fill="rgb(241,100,54)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 0.58%)</title><rect x="187.8" y="1009" width="6.9" height="15.0" fill="rgb(245,31,3)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="929.1" y="1761" width="0.2" height="15.0" fill="rgb(232,153,3)" rx="2" ry="2" />
<text text-anchor="" x="932.07" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_try_to_cancel (1 samples, 0.02%)</title><rect x="1164.3" y="1777" width="0.3" height="15.0" fill="rgb(224,62,35)" rx="2" ry="2" />
<text text-anchor="" x="1167.33" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::reference_wrapper&lt;Envoy::Event::Dispatcher&gt; &gt;::operator++ (7 samples, 0.16%)</title><rect x="812.1" y="1793" width="1.9" height="15.0" fill="rgb(205,43,29)" rx="2" ry="2" />
<text text-anchor="" x="815.10" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.02%)</title><rect x="1010.8" y="1633" width="0.3" height="15.0" fill="rgb(230,19,3)" rx="2" ry="2" />
<text text-anchor="" x="1013.84" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="353" width="6.6" height="15.0" fill="rgb(247,51,41)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::TimerImpl (3,403 samples, 76.32%)</title><rect x="213.8" y="1905" width="900.5" height="15.0" fill="rgb(248,58,21)" rx="2" ry="2" />
<text text-anchor="" x="216.77" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Envoy::Event::TimerImpl::TimerImpl</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::set (2 samples, 0.04%)</title><rect x="869.0" y="1745" width="0.5" height="15.0" fill="rgb(242,66,13)" rx="2" ry="2" />
<text text-anchor="" x="872.00" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::ThreadLocal::InstanceImpl::set (8 samples, 0.18%)</title><rect x="1173.6" y="1713" width="2.1" height="15.0" fill="rgb(214,132,29)" rx="2" ry="2" />
<text text-anchor="" x="1176.59" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::forward&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; (1 samples, 0.02%)</title><rect x="1065.1" y="1729" width="0.3" height="15.0" fill="rgb(252,48,1)" rx="2" ry="2" />
<text text-anchor="" x="1068.09" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__cxx11::list&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt;, std::allocator&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt; &gt;::push_back (4 samples, 0.09%)</title><rect x="1087.9" y="1793" width="1.0" height="15.0" fill="rgb(230,205,42)" rx="2" ry="2" />
<text text-anchor="" x="1090.85" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (2 samples, 0.04%)</title><rect x="470.5" y="1665" width="0.5" height="15.0" fill="rgb(216,114,26)" rx="2" ry="2" />
<text text-anchor="" x="473.46" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (1 samples, 0.02%)</title><rect x="253.5" y="1681" width="0.2" height="15.0" fill="rgb(238,149,31)" rx="2" ry="2" />
<text text-anchor="" x="256.46" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (2 samples, 0.04%)</title><rect x="35.4" y="1969" width="0.5" height="15.0" fill="rgb(242,43,43)" rx="2" ry="2" />
<text text-anchor="" x="38.40" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (28 samples, 0.63%)</title><rect x="505.1" y="1553" width="7.4" height="15.0" fill="rgb(253,182,16)" rx="2" ry="2" />
<text text-anchor="" x="508.13" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__shared_count&lt; (1 samples, 0.02%)</title><rect x="1104.5" y="1713" width="0.3" height="15.0" fill="rgb(248,75,20)" rx="2" ry="2" />
<text text-anchor="" x="1107.52" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (7 samples, 0.16%)</title><rect x="110.6" y="1937" width="1.8" height="15.0" fill="rgb(246,125,46)" rx="2" ry="2" />
<text text-anchor="" x="113.56" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;::_M_valptr (2 samples, 0.04%)</title><rect x="1076.7" y="1713" width="0.6" height="15.0" fill="rgb(250,159,35)" rx="2" ry="2" />
<text text-anchor="" x="1079.74" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (28 samples, 0.63%)</title><rect x="187.6" y="1921" width="7.4" height="15.0" fill="rgb(209,184,8)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (6 samples, 0.13%)</title><rect x="1154.0" y="1841" width="1.6" height="15.0" fill="rgb(215,53,5)" rx="2" ry="2" />
<text text-anchor="" x="1157.01" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unordered_set&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;::insert (31 samples, 0.70%)</title><rect x="1092.4" y="1793" width="8.2" height="15.0" fill="rgb(249,203,5)" rx="2" ry="2" />
<text text-anchor="" x="1095.35" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (9 samples, 0.20%)</title><rect x="1153.2" y="1905" width="2.4" height="15.0" fill="rgb(212,203,2)" rx="2" ry="2" />
<text text-anchor="" x="1156.22" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt;::max_size (1 samples, 0.02%)</title><rect x="1058.7" y="1681" width="0.3" height="15.0" fill="rgb(216,218,5)" rx="2" ry="2" />
<text text-anchor="" x="1061.74" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::TimerImpl::TimerImpl (1 samples, 0.02%)</title><rect x="205.8" y="1921" width="0.3" height="15.0" fill="rgb(242,143,49)" rx="2" ry="2" />
<text text-anchor="" x="208.83" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="1151.6" y="1889" width="0.3" height="15.0" fill="rgb(226,86,17)" rx="2" ry="2" />
<text text-anchor="" x="1154.63" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (11 samples, 0.25%)</title><rect x="471.8" y="1617" width="2.9" height="15.0" fill="rgb(215,13,24)" rx="2" ry="2" />
<text text-anchor="" x="474.79" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unordered_set&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;::~unordered_set (35 samples, 0.78%)</title><rect x="1073.0" y="1793" width="9.3" height="15.0" fill="rgb(245,151,11)" rx="2" ry="2" />
<text text-anchor="" x="1076.03" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.02%)</title><rect x="321.7" y="1697" width="0.3" height="15.0" fill="rgb(214,84,39)" rx="2" ry="2" />
<text text-anchor="" x="324.74" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_iterator&lt;std::function&lt;void (1 samples, 0.02%)</title><rect x="617.1" y="1761" width="0.2" height="15.0" fill="rgb(218,71,45)" rx="2" ry="2" />
<text text-anchor="" x="620.07" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (1 samples, 0.02%)</title><rect x="212.2" y="1697" width="0.2" height="15.0" fill="rgb(206,145,26)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_insert_bucket_begin (12 samples, 0.27%)</title><rect x="1038.6" y="1729" width="3.2" height="15.0" fill="rgb(246,110,45)" rx="2" ry="2" />
<text text-anchor="" x="1041.63" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;void (12 samples, 0.27%)</title><rect x="571.6" y="1681" width="3.1" height="15.0" fill="rgb(237,155,31)" rx="2" ry="2" />
<text text-anchor="" x="574.55" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.02%)</title><rect x="440.3" y="1665" width="0.3" height="15.0" fill="rgb(233,124,50)" rx="2" ry="2" />
<text text-anchor="" x="443.29" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (9 samples, 0.20%)</title><rect x="1153.2" y="1889" width="2.4" height="15.0" fill="rgb(223,133,2)" rx="2" ry="2" />
<text text-anchor="" x="1156.22" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (9 samples, 0.20%)</title><rect x="1160.9" y="1857" width="2.4" height="15.0" fill="rgb(209,20,18)" rx="2" ry="2" />
<text text-anchor="" x="1163.89" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="190.5" y="113" width="0.2" height="15.0" fill="rgb(240,92,7)" rx="2" ry="2" />
<text text-anchor="" x="193.48" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Event::DispatcherImpl::run (3,447 samples, 77.30%)</title><rect x="204.0" y="1953" width="912.2" height="15.0" fill="rgb(205,22,53)" rx="2" ry="2" />
<text text-anchor="" x="206.98" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Envoy::Event::DispatcherImpl::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function&lt;std::shared_ptr&lt;Envoy::ThreadLocal::ThreadLocalObject&gt; (266 samples, 5.97%)</title><rect x="501.2" y="1633" width="70.4" height="15.0" fill="rgb(230,188,37)" rx="2" ry="2" />
<text text-anchor="" x="504.16" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::fu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.02%)</title><rect x="20.3" y="1825" width="0.3" height="15.0" fill="rgb(254,165,18)" rx="2" ry="2" />
<text text-anchor="" x="23.32" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (3 samples, 0.07%)</title><rect x="21.1" y="1825" width="0.8" height="15.0" fill="rgb(235,54,27)" rx="2" ry="2" />
<text text-anchor="" x="24.11" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt; &gt;::construct&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;&gt; &gt; (7 samples, 0.16%)</title><rect x="192.3" y="81" width="1.9" height="15.0" fill="rgb(251,124,47)" rx="2" ry="2" />
<text text-anchor="" x="195.33" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (39 samples, 0.87%)</title><rect x="798.6" y="1713" width="10.3" height="15.0" fill="rgb(231,146,17)" rx="2" ry="2" />
<text text-anchor="" x="801.61" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add_dispatch (4 samples, 0.09%)</title><rect x="1013.8" y="1713" width="1.0" height="15.0" fill="rgb(206,22,17)" rx="2" ry="2" />
<text text-anchor="" x="1016.75" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_node_value_base&lt;Envoy::Stats::ThreadLocalStoreImpl::ScopeImpl*&gt;::_M_v (1 samples, 0.02%)</title><rect x="997.3" y="1777" width="0.3" height="15.0" fill="rgb(245,40,39)" rx="2" ry="2" />
<text text-anchor="" x="1000.35" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gthread_active_p (1 samples, 0.02%)</title><rect x="695.9" y="1729" width="0.3" height="15.0" fill="rgb(222,147,27)" rx="2" ry="2" />
<text text-anchor="" x="698.93" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pvclock_clocksource_read (1 samples, 0.02%)</title><rect x="20.1" y="1841" width="0.2" height="15.0" fill="rgb(219,94,46)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::make_pair&lt;std::__detail::_Node_iterator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true, true&gt;, bool&gt; (1 samples, 0.02%)</title><rect x="1072.8" y="1761" width="0.2" height="15.0" fill="rgb(226,140,5)" rx="2" ry="2" />
<text text-anchor="" x="1075.77" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (11 samples, 0.25%)</title><rect x="568.6" y="1553" width="3.0" height="15.0" fill="rgb(221,76,38)" rx="2" ry="2" />
<text text-anchor="" x="571.64" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (4 samples, 0.09%)</title><rect x="23.2" y="1777" width="1.1" height="15.0" fill="rgb(213,109,46)" rx="2" ry="2" />
<text text-anchor="" x="26.23" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_base&lt; (1 samples, 0.02%)</title><rect x="1000.8" y="1745" width="0.3" height="15.0" fill="rgb(240,98,46)" rx="2" ry="2" />
<text text-anchor="" x="1003.79" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (7 samples, 0.16%)</title><rect x="192.3" y="129" width="1.9" height="15.0" fill="rgb(216,174,33)" rx="2" ry="2" />
<text text-anchor="" x="195.33" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list (1 samples, 0.02%)</title><rect x="24.6" y="1809" width="0.2" height="15.0" fill="rgb(226,172,2)" rx="2" ry="2" />
<text text-anchor="" x="27.55" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.02%)</title><rect x="1186.8" y="1553" width="0.3" height="15.0" fill="rgb(227,166,37)" rx="2" ry="2" />
<text text-anchor="" x="1189.82" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (2,684 samples, 60.19%)</title><rect x="218.5" y="1825" width="710.3" height="15.0" fill="rgb(205,187,20)" rx="2" ry="2" />
<text text-anchor="" x="221.53" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (132 samples, 2.96%)</title><rect x="516.2" y="1505" width="35.0" height="15.0" fill="rgb(205,135,15)" rx="2" ry="2" />
<text text-anchor="" x="519.24" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ev..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (24 samples, 0.54%)</title><rect x="187.8" y="209" width="6.4" height="15.0" fill="rgb(217,40,7)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_deletearray_nothrow (5 samples, 0.11%)</title><rect x="1107.4" y="1729" width="1.4" height="15.0" fill="rgb(212,56,51)" rx="2" ry="2" />
<text text-anchor="" x="1110.43" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="673" width="6.6" height="15.0" fill="rgb(254,204,32)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (15 samples, 0.34%)</title><rect x="178.6" y="1937" width="3.9" height="15.0" fill="rgb(238,178,19)" rx="2" ry="2" />
<text text-anchor="" x="181.57" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator&lt;std::_List_node&lt;std::function&lt;void (50 samples, 1.12%)</title><rect x="679.0" y="1713" width="13.2" height="15.0" fill="rgb(228,30,43)" rx="2" ry="2" />
<text text-anchor="" x="681.99" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__addressof&lt;std::mutex&gt; (1 samples, 0.02%)</title><rect x="1166.7" y="1777" width="0.3" height="15.0" fill="rgb(233,158,41)" rx="2" ry="2" />
<text text-anchor="" x="1169.71" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (3 samples, 0.07%)</title><rect x="554.9" y="1473" width="0.8" height="15.0" fill="rgb(251,15,0)" rx="2" ry="2" />
<text text-anchor="" x="557.88" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__allocated_ptr&lt;std::allocator&lt;std::_Sp_counted_ptr_inplace&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate, std::allocator&lt;Envoy::Http::TlsCachingDateProviderImpl::ThreadLocalCachedDate&gt;, (1 samples, 0.02%)</title><rect x="1181.3" y="1601" width="0.2" height="15.0" fill="rgb(236,170,23)" rx="2" ry="2" />
<text text-anchor="" x="1184.27" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move&lt;std::_Any_data&amp;&gt; (2 samples, 0.04%)</title><rect x="863.7" y="1681" width="0.5" height="15.0" fill="rgb(226,166,34)" rx="2" ry="2" />
<text text-anchor="" x="866.71" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.07%)</title><rect x="1186.3" y="1873" width="0.8" height="15.0" fill="rgb(212,153,4)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (6 samples, 0.13%)</title><rect x="499.6" y="1617" width="1.6" height="15.0" fill="rgb(207,171,2)" rx="2" ry="2" />
<text text-anchor="" x="502.57" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_write (1 samples, 0.02%)</title><rect x="439.8" y="1729" width="0.2" height="15.0" fill="rgb(224,135,38)" rx="2" ry="2" />
<text text-anchor="" x="442.76" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.02%)</title><rect x="1186.6" y="1665" width="0.2" height="15.0" fill="rgb(205,182,31)" rx="2" ry="2" />
<text text-anchor="" x="1189.56" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (50 samples, 1.12%)</title><rect x="597.5" y="1777" width="13.2" height="15.0" fill="rgb(225,115,19)" rx="2" ry="2" />
<text text-anchor="" x="600.49" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (3 samples, 0.07%)</title><rect x="1087.9" y="1713" width="0.7" height="15.0" fill="rgb(241,111,50)" rx="2" ry="2" />
<text text-anchor="" x="1090.85" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (15 samples, 0.34%)</title><rect x="501.2" y="1601" width="3.9" height="15.0" fill="rgb(228,177,44)" rx="2" ry="2" />
<text text-anchor="" x="504.16" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Identity, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_bucket_index (11 samples, 0.25%)</title><rect x="1027.0" y="1713" width="2.9" height="15.0" fill="rgb(232,9,41)" rx="2" ry="2" />
<text text-anchor="" x="1029.99" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Envoy::Stats::ThreadLocalStoreImpl::gauges[abi:cxx11] (71 samples, 1.59%)</title><rect x="1083.1" y="1809" width="18.8" height="15.0" fill="rgb(242,23,5)" rx="2" ry="2" />
<text text-anchor="" x="1086.09" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="195.8" y="1969" width="0.2" height="15.0" fill="rgb(233,147,53)" rx="2" ry="2" />
<text text-anchor="" x="198.77" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_h1 (2 samples, 0.04%)</title><rect x="1065.4" y="1745" width="0.5" height="15.0" fill="rgb(253,63,27)" rx="2" ry="2" />
<text text-anchor="" x="1068.36" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="212.2" y="1761" width="0.2" height="15.0" fill="rgb(214,61,23)" rx="2" ry="2" />
<text text-anchor="" x="215.18" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eventfd_write (63 samples, 1.41%)</title><rect x="482.9" y="1569" width="16.7" height="15.0" fill="rgb(230,3,32)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_numa_fault (1 samples, 0.02%)</title><rect x="918.5" y="1745" width="0.3" height="15.0" fill="rgb(218,121,51)" rx="2" ry="2" />
<text text-anchor="" x="921.49" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hash_code_base&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::__detail::_Identity, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true&gt;::_M_bucket_index (1 samples, 0.02%)</title><rect x="1092.6" y="1729" width="0.3" height="15.0" fill="rgb(210,133,37)" rx="2" ry="2" />
<text text-anchor="" x="1095.61" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.04%)</title><rect x="470.5" y="1681" width="0.5" height="15.0" fill="rgb(226,42,49)" rx="2" ry="2" />
<text text-anchor="" x="473.46" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Function_base::_Base_manager&lt;Envoy::Http::TlsCachingDateProviderImpl::onRefreshDate (1 samples, 0.02%)</title><rect x="1168.0" y="1601" width="0.3" height="15.0" fill="rgb(233,143,9)" rx="2" ry="2" />
<text text-anchor="" x="1171.04" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Maybe_unary_or_binary_function&lt;void&gt;::_Maybe_unary_or_binary_function (1 samples, 0.02%)</title><rect x="814.7" y="1793" width="0.3" height="15.0" fill="rgb(222,211,43)" rx="2" ry="2" />
<text text-anchor="" x="817.75" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.02%)</title><rect x="291.0" y="1665" width="0.3" height="15.0" fill="rgb(238,86,51)" rx="2" ry="2" />
<text text-anchor="" x="294.04" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits&lt;std::allocator&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;::destroy&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; (6 samples, 0.13%)</title><rect x="1077.3" y="1713" width="1.6" height="15.0" fill="rgb(208,138,7)" rx="2" ry="2" />
<text text-anchor="" x="1080.27" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.02%)</title><rect x="199.2" y="1921" width="0.3" height="15.0" fill="rgb(216,119,31)" rx="2" ry="2" />
<text text-anchor="" x="202.21" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (48 samples, 1.08%)</title><rect x="555.9" y="1489" width="12.7" height="15.0" fill="rgb(239,201,54)" rx="2" ry="2" />
<text text-anchor="" x="558.94" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (25 samples, 0.56%)</title><rect x="187.8" y="625" width="6.6" height="15.0" fill="rgb(219,227,2)" rx="2" ry="2" />
<text text-anchor="" x="190.83" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_List_node&lt;std::shared_ptr&lt;Envoy::Stats::Gauge&gt; &gt;::~_List_node (3 samples, 0.07%)</title><rect x="1108.8" y="1745" width="0.8" height="15.0" fill="rgb(213,23,19)" rx="2" ry="2" />
<text text-anchor="" x="1111.76" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (4 samples, 0.09%)</title><rect x="1096.3" y="1665" width="1.1" height="15.0" fill="rgb(226,77,7)" rx="2" ry="2" />
<text text-anchor="" x="1099.32" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.02%)</title><rect x="1186.3" y="1761" width="0.3" height="15.0" fill="rgb(231,99,7)" rx="2" ry="2" />
<text text-anchor="" x="1189.30" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator new[] (34 samples, 0.76%)</title><rect x="651.5" y="1553" width="9.0" height="15.0" fill="rgb(242,218,9)" rx="2" ry="2" />
<text text-anchor="" x="654.47" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_callback_activate_nolock_ (1 samples, 0.02%)</title><rect x="1160.4" y="1857" width="0.2" height="15.0" fill="rgb(248,73,52)" rx="2" ry="2" />
<text text-anchor="" x="1163.36" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (6 samples, 0.13%)</title><rect x="1112.5" y="1873" width="1.6" height="15.0" fill="rgb(254,32,19)" rx="2" ry="2" />
<text text-anchor="" x="1115.46" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__exchange_and_add_dispatch (3 samples, 0.07%)</title><rect x="1108.8" y="1665" width="0.8" height="15.0" fill="rgb(242,53,5)" rx="2" ry="2" />
<text text-anchor="" x="1111.76" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_Hashtable_alloc&lt;std::allocator&lt;std::__detail::_Hash_node&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, true&gt; &gt; &gt;::_M_deallocate_nodes (35 samples, 0.78%)</title><rect x="1073.0" y="1745" width="9.3" height="15.0" fill="rgb(253,9,14)" rx="2" ry="2" />
<text text-anchor="" x="1076.03" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.02%)</title><rect x="194.2" y="209" width="0.2" height="15.0" fill="rgb(219,219,32)" rx="2" ry="2" />
<text text-anchor="" x="197.18" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (127 samples, 2.85%)</title><rect x="1155.6" y="1905" width="33.6" height="15.0" fill="rgb(241,4,38)" rx="2" ry="2" />
<text text-anchor="" x="1158.60" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ev..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="192.1" y="113" width="0.2" height="15.0" fill="rgb(250,110,7)" rx="2" ry="2" />
<text text-anchor="" x="195.07" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (20 samples, 0.45%)</title><rect x="206.1" y="1905" width="5.3" height="15.0" fill="rgb(228,180,3)" rx="2" ry="2" />
<text text-anchor="" x="209.09" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment