谢瑞阳&徐翔宇的KV分离LEVELDB实现
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10950 lines
577 KiB

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="2134" onload="init(evt)" viewBox="0 0 1200 2134" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom(dont_update_text) {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
if (currentSearchTerm === null) return;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="2134.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="2117" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="2117" > </text>
<g id="frames">
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="331.1" y="1701" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="334.10" y="1711.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="617.8" y="1813" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="620.84" y="1823.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="648.5" y="1765" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="651.53" y="1775.5" ></text>
</g>
<g >
<title>leveldb::EncodeVarint32 (20,202,020 samples, 0.04%)</title><rect x="215.9" y="1813" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="218.94" y="1823.5" ></text>
</g>
<g >
<title>__x64_sys_write (20,202,020 samples, 0.04%)</title><rect x="22.6" y="1701" width="0.5" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="25.59" y="1711.5" ></text>
</g>
<g >
<title>ondemand_readahead (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1541" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="56.29" y="1551.5" ></text>
</g>
<g >
<title>std::istream::seekg (20,202,020 samples, 0.04%)</title><rect x="1186.6" y="2053" width="0.5" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1189.59" y="2063.5" ></text>
</g>
<g >
<title>fsnotify_compare_groups (10,101,010 samples, 0.02%)</title><rect x="874.1" y="1925" width="0.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="877.14" y="1935.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="167.4" y="1877" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="170.40" y="1887.5" ></text>
</g>
<g >
<title>std::ctype&lt;char&gt; const&amp; std::use_facet&lt;std::ctype&lt;char&gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="833.0" y="2005" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="835.96" y="2015.5" ></text>
</g>
<g >
<title>leveldb::MakeFileName (30,303,030 samples, 0.07%)</title><rect x="190.0" y="1829" width="0.8" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="192.96" y="1839.5" ></text>
</g>
<g >
<title>__handle_mm_fault (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1653" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="56.29" y="1663.5" ></text>
</g>
<g >
<title>std::atomic&lt;leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node*&gt;::load (20,202,020 samples, 0.04%)</title><rect x="672.7" y="1749" width="0.5" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="675.67" y="1759.5" ></text>
</g>
<g >
<title>leveldb::Slice::remove_prefix (30,303,030 samples, 0.07%)</title><rect x="351.8" y="1845" width="0.8" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="354.83" y="1855.5" ></text>
</g>
<g >
<title>submit_bio (90,909,090 samples, 0.20%)</title><rect x="1163.2" y="1765" width="2.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1166.24" y="1775.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::Write (16,191,919,030 samples, 35.64%)</title><rect x="170.8" y="1909" width="420.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="173.81" y="1919.5" >leveldb::DBImpl::Write</text>
</g>
<g >
<title>ext4_inode_attach_jinode (10,101,010 samples, 0.02%)</title><rect x="767.9" y="1861" width="0.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="770.90" y="1871.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::Add (262,626,260 samples, 0.58%)</title><rect x="17.6" y="1829" width="6.8" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="20.61" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1733" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1743.5" ></text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (10,101,010 samples, 0.02%)</title><rect x="80.6" y="1845" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="83.57" y="1855.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ShardedLRUCache::HashSlice (10,101,010 samples, 0.02%)</title><rect x="53.0" y="1717" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="56.02" y="1727.5" ></text>
</g>
<g >
<title>pthread_mutex_lock@@GLIBC_2.2.5 (10,101,010 samples, 0.02%)</title><rect x="697.6" y="1845" width="0.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="700.59" y="1855.5" ></text>
</g>
<g >
<title>dget_parent (10,101,010 samples, 0.02%)</title><rect x="977.2" y="1925" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="980.24" y="1935.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Valid (20,202,020 samples, 0.04%)</title><rect x="68.8" y="1781" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="71.76" y="1791.5" ></text>
</g>
<g >
<title>radix_tree_lookup (20,202,020 samples, 0.04%)</title><rect x="411.9" y="1637" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="414.90" y="1647.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::~_Vector_base (20,202,020 samples, 0.04%)</title><rect x="235.1" y="1845" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="238.09" y="1855.5" ></text>
</g>
<g >
<title>std::allocator&lt;char&gt;::allocator (10,101,010 samples, 0.02%)</title><rect x="160.6" y="1845" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="163.58" y="1855.5" ></text>
</g>
<g >
<title>errseq_check (10,101,010 samples, 0.02%)</title><rect x="146.4" y="1541" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="149.42" y="1551.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (10,101,010 samples, 0.02%)</title><rect x="949.7" y="1813" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="952.70" y="1823.5" ></text>
</g>
<g >
<title>filemap_get_read_batch (151,515,150 samples, 0.33%)</title><rect x="1128.4" y="1877" width="3.9" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="1131.35" y="1887.5" ></text>
</g>
<g >
<title>std::enable_if&lt;std::__and_&lt;std::__not_&lt;std::__is_tuple_like&lt;char const*&gt; &gt;, std::is_move_constructible&lt;char const*&gt;, std::is_move_assignable&lt;char const*&gt; &gt;::value, void&gt;::type std::swap&lt;char const*&gt; (10,101,010 samples, 0.02%)</title><rect x="701.5" y="1893" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="704.53" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (20,202,020 samples, 0.04%)</title><rect x="713.1" y="1317" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1327.5" ></text>
</g>
<g >
<title>fput (10,101,010 samples, 0.02%)</title><rect x="388.8" y="1749" width="0.3" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="391.82" y="1759.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="609.2" y="1813" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="612.18" y="1823.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (40,404,040 samples, 0.09%)</title><rect x="614.4" y="1797" width="1.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="617.43" y="1807.5" ></text>
</g>
<g >
<title>bool std::has_facet&lt;std::codecvt&lt;char, char, __mbstate_t&gt; &gt; (40,404,040 samples, 0.09%)</title><rect x="716.7" y="2021" width="1.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="719.74" y="2031.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (10,101,010 samples, 0.02%)</title><rect x="892.5" y="1845" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="895.51" y="1855.5" ></text>
</g>
<g >
<title>leveldb::MemTableIterator::key (161,616,160 samples, 0.36%)</title><rect x="12.9" y="1829" width="4.2" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="15.89" y="1839.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (10,101,010 samples, 0.02%)</title><rect x="911.9" y="1765" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="914.92" y="1775.5" ></text>
</g>
<g >
<title>ext4_da_write_begin (10,101,010 samples, 0.02%)</title><rect x="680.8" y="1637" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="683.80" y="1647.5" ></text>
</g>
<g >
<title>futex_wait_queue (10,101,010 samples, 0.02%)</title><rect x="658.0" y="1749" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="660.98" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="357" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="367.5" ></text>
</g>
<g >
<title>__memmove_evex_unaligned_erms (616,161,610 samples, 1.36%)</title><rect x="988.3" y="2053" width="16.0" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="991.26" y="2063.5" ></text>
</g>
<g >
<title>__GI___unlink (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1829" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="13.79" y="1839.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (10,101,010 samples, 0.02%)</title><rect x="666.6" y="1813" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="669.63" y="1823.5" ></text>
</g>
<g >
<title>__gnu_cxx::__alloc_traits&lt;std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt;, std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt;::_S_select_on_copy (20,202,020 samples, 0.04%)</title><rect x="230.1" y="1845" width="0.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="233.10" y="1855.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_plug_list (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1493" width="0.6" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="14.84" y="1503.5" ></text>
</g>
<g >
<title>std::codecvt&lt;char, char, __mbstate_t&gt;::do_max_length (10,101,010 samples, 0.02%)</title><rect x="1185.5" y="2053" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1188.54" y="2063.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="170.6" y="1893" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="173.55" y="1903.5" ></text>
</g>
<g >
<title>path_openat (1,737,373,720 samples, 3.82%)</title><rect x="751.1" y="1925" width="45.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="754.11" y="1935.5" >path..</text>
</g>
<g >
<title>leveldb::crc32c::Extend (20,202,020 samples, 0.04%)</title><rect x="23.1" y="1749" width="0.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="26.12" y="1759.5" ></text>
</g>
<g >
<title>process_measurement (10,101,010 samples, 0.02%)</title><rect x="760.6" y="1893" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="763.55" y="1903.5" ></text>
</g>
<g >
<title>ext4_inode_attach_jinode (30,303,030 samples, 0.07%)</title><rect x="765.5" y="1845" width="0.8" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="768.54" y="1855.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="850.5" y="1989" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="853.53" y="1999.5" ></text>
</g>
<g >
<title>process_measurement (20,202,020 samples, 0.04%)</title><rect x="758.5" y="1877" width="0.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="761.45" y="1887.5" ></text>
</g>
<g >
<title>leveldb::Slice::compare (50,505,050 samples, 0.11%)</title><rect x="32.6" y="1845" width="1.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="35.56" y="1855.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Unlock (20,202,020 samples, 0.04%)</title><rect x="654.3" y="1765" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="657.30" y="1775.5" ></text>
</g>
<g >
<title>__wake_up (10,101,010 samples, 0.02%)</title><rect x="909.3" y="1733" width="0.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="912.30" y="1743.5" ></text>
</g>
<g >
<title>operator delete (10,101,010 samples, 0.02%)</title><rect x="665.3" y="1765" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="668.32" y="1775.5" ></text>
</g>
<g >
<title>dput (10,101,010 samples, 0.02%)</title><rect x="1169.3" y="1909" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1172.28" y="1919.5" ></text>
</g>
<g >
<title>leveldb::Slice::empty (10,101,010 samples, 0.02%)</title><rect x="352.6" y="1861" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="355.61" y="1871.5" ></text>
</g>
<g >
<title>fsnotify (10,101,010 samples, 0.02%)</title><rect x="771.3" y="1829" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="774.31" y="1839.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wait (10,101,010 samples, 0.02%)</title><rect x="682.6" y="1829" width="0.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="685.64" y="1839.5" ></text>
</g>
<g >
<title>do_futex (5,555,555,500 samples, 12.23%)</title><rect x="439.7" y="1781" width="144.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="442.71" y="1791.5" >do_futex</text>
</g>
<g >
<title>leveldb::TableBuilder::Flush (40,404,040 samples, 0.09%)</title><rect x="22.6" y="1813" width="1.0" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="25.59" y="1823.5" ></text>
</g>
<g >
<title>inotify_handle_inode_event (30,303,030 samples, 0.07%)</title><rect x="677.7" y="1621" width="0.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="680.65" y="1631.5" ></text>
</g>
<g >
<title>[libstdc++.so.6.0.30] (30,303,030 samples, 0.07%)</title><rect x="712.3" y="2037" width="0.8" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="715.28" y="2047.5" ></text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (40,404,040 samples, 0.09%)</title><rect x="671.6" y="1733" width="1.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="674.62" y="1743.5" ></text>
</g>
<g >
<title>blk_mq_submit_bio (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1541" width="0.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="14.84" y="1551.5" ></text>
</g>
<g >
<title>__x64_sys_futex (10,101,010 samples, 0.02%)</title><rect x="660.6" y="1749" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="663.60" y="1759.5" ></text>
</g>
<g >
<title>iput (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1733" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="13.79" y="1743.5" ></text>
</g>
<g >
<title>ext4_da_get_block_prep (10,101,010 samples, 0.02%)</title><rect x="942.4" y="1861" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="945.35" y="1871.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixMmapReadableFile::Read (10,101,010 samples, 0.02%)</title><rect x="647.7" y="1797" width="0.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="650.75" y="1807.5" ></text>
</g>
<g >
<title>memset_orig (10,101,010 samples, 0.02%)</title><rect x="148.0" y="1557" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="150.99" y="1567.5" ></text>
</g>
<g >
<title>block_write_end (20,202,020 samples, 0.04%)</title><rect x="885.4" y="1877" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="888.42" y="1887.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (70,707,070 samples, 0.16%)</title><rect x="979.1" y="1925" width="1.8" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="982.08" y="1935.5" ></text>
</g>
<g >
<title>mutex_unlock (10,101,010 samples, 0.02%)</title><rect x="1117.6" y="1957" width="0.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1120.59" y="1967.5" ></text>
</g>
<g >
<title>std::basic_fstream&lt;char, std::char_traits&lt;char&gt; &gt;::close (40,404,040 samples, 0.09%)</title><rect x="223.5" y="1861" width="1.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="226.54" y="1871.5" ></text>
</g>
<g >
<title>std::basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;::init (20,202,020 samples, 0.04%)</title><rect x="719.6" y="2021" width="0.6" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="722.63" y="2031.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (10,101,010 samples, 0.02%)</title><rect x="424.8" y="1845" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="427.76" y="1855.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (161,616,160 samples, 0.36%)</title><rect x="930.0" y="1797" width="4.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="933.02" y="1807.5" ></text>
</g>
<g >
<title>truncate_cleanup_folio (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1685" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="659.93" y="1695.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::ParseNextKey (212,121,210 samples, 0.47%)</title><rect x="56.4" y="1749" width="5.5" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="59.43" y="1759.5" ></text>
</g>
<g >
<title>bdev_getblk (10,101,010 samples, 0.02%)</title><rect x="794.4" y="1813" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="797.39" y="1823.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_M_end (10,101,010 samples, 0.02%)</title><rect x="201.0" y="1797" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="203.98" y="1807.5" ></text>
</g>
<g >
<title>void __gnu_cxx::new_allocator&lt;unsigned int&gt;::construct&lt;unsigned int, unsigned int&gt; (10,101,010 samples, 0.02%)</title><rect x="131.7" y="1781" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="134.73" y="1791.5" ></text>
</g>
<g >
<title>_find_first_bit (10,101,010 samples, 0.02%)</title><rect x="147.5" y="1557" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="150.47" y="1567.5" ></text>
</g>
<g >
<title>ext4_bread_batch (10,101,010 samples, 0.02%)</title><rect x="794.4" y="1845" width="0.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="797.39" y="1855.5" ></text>
</g>
<g >
<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.02%)</title><rect x="680.0" y="1637" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="683.01" y="1647.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (10,101,010 samples, 0.02%)</title><rect x="21.5" y="1797" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="24.54" y="1807.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.02%)</title><rect x="754.5" y="1877" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="757.52" y="1887.5" ></text>
</g>
<g >
<title>lookup_bh_lru (10,101,010 samples, 0.02%)</title><rect x="408.0" y="1525" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="410.97" y="1535.5" ></text>
</g>
<g >
<title>__submit_bio (80,808,080 samples, 0.18%)</title><rect x="1163.5" y="1717" width="2.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1166.50" y="1727.5" ></text>
</g>
<g >
<title>part_in_flight (70,707,070 samples, 0.16%)</title><rect x="1163.8" y="1653" width="1.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1166.77" y="1663.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="349.5" y="1829" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="352.47" y="1839.5" ></text>
</g>
<g >
<title>up_write (10,101,010 samples, 0.02%)</title><rect x="952.6" y="1893" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="955.58" y="1903.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="660.9" y="1765" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="663.86" y="1775.5" ></text>
</g>
<g >
<title>__fdget_pos (40,404,040 samples, 0.09%)</title><rect x="389.6" y="1733" width="1.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="392.60" y="1743.5" ></text>
</g>
<g >
<title>futex_wait_setup (10,101,010 samples, 0.02%)</title><rect x="682.6" y="1701" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="685.64" y="1711.5" ></text>
</g>
<g >
<title>__memmove_evex_unaligned_erms (10,101,010 samples, 0.02%)</title><rect x="716.2" y="2021" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="719.22" y="2031.5" ></text>
</g>
<g >
<title>futex_q_lock (10,101,010 samples, 0.02%)</title><rect x="707.0" y="1733" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="710.03" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="869" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="879.5" ></text>
</g>
<g >
<title>leveldb::MutexLock::MutexLock (30,303,030 samples, 0.07%)</title><rect x="697.1" y="1893" width="0.8" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="700.07" y="1903.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::Next (272,727,270 samples, 0.60%)</title><rect x="55.6" y="1765" width="7.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="58.65" y="1775.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="635.4" y="1749" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="638.42" y="1759.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (10,101,010 samples, 0.02%)</title><rect x="123.6" y="1813" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="126.59" y="1823.5" ></text>
</g>
<g >
<title>leveldb::DB::Put (1,424,242,410 samples, 3.13%)</title><rect x="658.8" y="1893" width="37.0" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="661.76" y="1903.5" >lev..</text>
</g>
<g >
<title>policy_nodemask (10,101,010 samples, 0.02%)</title><rect x="925.6" y="1813" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="928.56" y="1823.5" ></text>
</g>
<g >
<title>lockref_get_not_zero (10,101,010 samples, 0.02%)</title><rect x="977.2" y="1909" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="980.24" y="1919.5" ></text>
</g>
<g >
<title>std::_Rb_tree_iterator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_Rb_tree_iterator (10,101,010 samples, 0.02%)</title><rect x="200.2" y="1797" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="203.20" y="1807.5" ></text>
</g>
<g >
<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.04%)</title><rect x="877.6" y="1813" width="0.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="880.55" y="1823.5" ></text>
</g>
<g >
<title>leveldb::Status::operator= (40,404,040 samples, 0.09%)</title><rect x="179.5" y="1893" width="1.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="182.47" y="1903.5" ></text>
</g>
<g >
<title>lockref_put_return (10,101,010 samples, 0.02%)</title><rect x="771.6" y="1829" width="0.2" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="774.57" y="1839.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="697.1" y="1813" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="700.07" y="1823.5" ></text>
</g>
<g >
<title>leveldb::DecodeEntry (30,303,030 samples, 0.07%)</title><rect x="638.6" y="1781" width="0.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="641.56" y="1791.5" ></text>
</g>
<g >
<title>mntget (10,101,010 samples, 0.02%)</title><rect x="769.5" y="1845" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="772.47" y="1855.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="850.5" y="1973" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="853.53" y="1983.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1349" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="87.77" y="1359.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::HandleTable::Lookup (20,202,020 samples, 0.04%)</title><rect x="653.3" y="1781" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="656.25" y="1791.5" ></text>
</g>
<g >
<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.04%)</title><rect x="877.6" y="1797" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="880.55" y="1807.5" ></text>
</g>
<g >
<title>__filemap_add_folio (414,141,410 samples, 0.91%)</title><rect x="893.0" y="1829" width="10.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="896.03" y="1839.5" ></text>
</g>
<g >
<title>generic_update_time (10,101,010 samples, 0.02%)</title><rect x="146.4" y="1637" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="149.42" y="1647.5" ></text>
</g>
<g >
<title>std::less&lt;unsigned long&gt;::operator (20,202,020 samples, 0.04%)</title><rect x="196.8" y="1813" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="199.79" y="1823.5" ></text>
</g>
<g >
<title>rw_verify_area (90,909,090 samples, 0.20%)</title><rect x="1168.0" y="1941" width="2.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="1170.96" y="1951.5" ></text>
</g>
<g >
<title>current_obj_cgroup (30,303,030 samples, 0.07%)</title><rect x="401.1" y="1637" width="0.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="404.15" y="1647.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (3,020,201,990 samples, 6.65%)</title><rect x="874.9" y="1925" width="78.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="877.93" y="1935.5" >ext4_file..</text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (50,505,050 samples, 0.11%)</title><rect x="932.6" y="1781" width="1.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="935.65" y="1791.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::~Iter (10,101,010 samples, 0.02%)</title><rect x="627.0" y="1829" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="630.02" y="1839.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (40,404,040 samples, 0.09%)</title><rect x="407.2" y="1653" width="1.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="410.18" y="1663.5" ></text>
</g>
<g >
<title>void std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_construct&lt;char*&gt; (10,101,010 samples, 0.02%)</title><rect x="723.3" y="2021" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="726.30" y="2031.5" ></text>
</g>
<g >
<title>leveldb::GetLengthPrefixedSlice (10,101,010 samples, 0.02%)</title><rect x="249.8" y="1877" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="252.78" y="1887.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::substr (20,202,020 samples, 0.04%)</title><rect x="711.0" y="1925" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="713.97" y="1935.5" ></text>
</g>
<g >
<title>leveldb::Compaction::ReleaseInputs (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1877" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="13.79" y="1887.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irq (101,010,100 samples, 0.22%)</title><rect x="882.3" y="1781" width="2.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="885.28" y="1791.5" ></text>
</g>
<g >
<title>schedule (20,202,020 samples, 0.04%)</title><rect x="619.7" y="1701" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="622.68" y="1711.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::append (10,101,010 samples, 0.02%)</title><rect x="644.9" y="1797" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="647.86" y="1807.5" ></text>
</g>
<g >
<title>free_unref_page_list (10,101,010 samples, 0.02%)</title><rect x="11.0" y="1637" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="14.05" y="1647.5" ></text>
</g>
<g >
<title>ext4_evict_inode (30,303,030 samples, 0.07%)</title><rect x="11.0" y="1717" width="0.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="14.05" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1685" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1695.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_append (20,202,020 samples, 0.04%)</title><rect x="593.7" y="1877" width="0.5" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="596.70" y="1887.5" ></text>
</g>
<g >
<title>std::map&lt;unsigned long, unsigned long, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::count (10,101,010 samples, 0.02%)</title><rect x="229.1" y="1861" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="232.05" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (404,040,400 samples, 0.89%)</title><rect x="713.1" y="2037" width="10.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="2047.5" ></text>
</g>
<g >
<title>leveldb::crc32c::(anonymous namespace)::ReadUint32LE (111,111,110 samples, 0.24%)</title><rect x="425.0" y="1845" width="2.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="428.02" y="1855.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed64 (10,101,010 samples, 0.02%)</title><rect x="647.5" y="1781" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="650.48" y="1791.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.02%)</title><rect x="40.4" y="1765" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="43.43" y="1775.5" ></text>
</g>
<g >
<title>std::num_put&lt;char, std::ostreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt; const&amp; std::use_facet&lt;std::num_put&lt;char, std::ostreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="723.0" y="2021" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="726.04" y="2031.5" ></text>
</g>
<g >
<title>scsi_init_command (10,101,010 samples, 0.02%)</title><rect x="1162.2" y="1621" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1165.19" y="1631.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (30,303,030 samples, 0.07%)</title><rect x="909.6" y="1781" width="0.7" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="912.56" y="1791.5" ></text>
</g>
<g >
<title>folio_add_lru (10,101,010 samples, 0.02%)</title><rect x="927.7" y="1845" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="930.66" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1109" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1119.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::WriteRawBlock (262,626,260 samples, 0.58%)</title><rect x="149.8" y="1813" width="6.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="152.83" y="1823.5" ></text>
</g>
<g >
<title>fault_in_readable (10,101,010 samples, 0.02%)</title><rect x="681.3" y="1621" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="684.33" y="1631.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1077" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1087.5" ></text>
</g>
<g >
<title>[unknown] (20,202,020 samples, 0.04%)</title><rect x="713.1" y="1333" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1343.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_S_key (20,202,020 samples, 0.04%)</title><rect x="196.3" y="1813" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="199.26" y="1823.5" ></text>
</g>
<g >
<title>futex_wait (80,808,080 samples, 0.18%)</title><rect x="705.2" y="1781" width="2.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="708.20" y="1791.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::KeyIsAfterNode (10,101,010 samples, 0.02%)</title><rect x="344.5" y="1813" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="347.48" y="1823.5" ></text>
</g>
<g >
<title>leveldb::ExtractUserKey (80,808,080 samples, 0.18%)</title><rect x="42.8" y="1813" width="2.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="45.79" y="1823.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="40.4" y="1797" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="43.43" y="1807.5" ></text>
</g>
<g >
<title>std::vector&lt;unsigned int, std::allocator&lt;unsigned int&gt; &gt;::push_back (20,202,020 samples, 0.04%)</title><rect x="131.5" y="1829" width="0.5" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="134.46" y="1839.5" ></text>
</g>
<g >
<title>aa_label_next_confined (10,101,010 samples, 0.02%)</title><rect x="772.6" y="1829" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="775.62" y="1839.5" ></text>
</g>
<g >
<title>filemap_get_entry (70,707,070 samples, 0.16%)</title><rect x="925.8" y="1845" width="1.9" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="928.82" y="1855.5" ></text>
</g>
<g >
<title>void std::_Destroy&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="235.6" y="1861" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="238.61" y="1871.5" ></text>
</g>
<g >
<title>blk_mq_get_tag (10,101,010 samples, 0.02%)</title><rect x="1163.5" y="1669" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1166.50" y="1679.5" ></text>
</g>
<g >
<title>leveldb::Slice::compare (10,101,010 samples, 0.02%)</title><rect x="616.8" y="1797" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="619.79" y="1807.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (858,585,850 samples, 1.89%)</title><rect x="1139.9" y="1621" width="22.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="1142.89" y="1631.5" >s..</text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Insert (10,101,010 samples, 0.02%)</title><rect x="350.0" y="1845" width="0.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="352.99" y="1855.5" ></text>
</g>
<g >
<title>futex_wait (10,101,010 samples, 0.02%)</title><rect x="697.3" y="1749" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="700.33" y="1759.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::size (20,202,020 samples, 0.04%)</title><rect x="62.2" y="1749" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="65.21" y="1759.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::front (40,404,040 samples, 0.09%)</title><rect x="586.9" y="1893" width="1.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="589.88" y="1903.5" ></text>
</g>
<g >
<title>generic_perform_write (10,101,010 samples, 0.02%)</title><rect x="22.9" y="1621" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="25.85" y="1631.5" ></text>
</g>
<g >
<title>filemap_alloc_folio (686,868,680 samples, 1.51%)</title><rect x="908.0" y="1845" width="17.8" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="910.99" y="1855.5" ></text>
</g>
<g >
<title>__GI___libc_write (252,525,250 samples, 0.56%)</title><rect x="675.0" y="1797" width="6.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="678.03" y="1807.5" ></text>
</g>
<g >
<title>__check_object_size (90,909,090 samples, 0.20%)</title><rect x="802.3" y="1893" width="2.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="805.26" y="1903.5" ></text>
</g>
<g >
<title>__filemap_get_folio (30,303,030 samples, 0.07%)</title><rect x="146.9" y="1621" width="0.8" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="149.94" y="1631.5" ></text>
</g>
<g >
<title>get_partial_node.part.0 (20,202,020 samples, 0.04%)</title><rect x="869.9" y="1829" width="0.6" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="872.95" y="1839.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (20,202,020 samples, 0.04%)</title><rect x="619.7" y="1669" width="0.5" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="622.68" y="1679.5" ></text>
</g>
<g >
<title>std::operator== (10,101,010 samples, 0.02%)</title><rect x="197.6" y="1829" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="200.57" y="1839.5" ></text>
</g>
<g >
<title>__schedule (30,303,030 samples, 0.07%)</title><rect x="705.7" y="1717" width="0.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="708.72" y="1727.5" ></text>
</g>
<g >
<title>__legitimize_mnt (20,202,020 samples, 0.04%)</title><rect x="757.1" y="1861" width="0.6" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="760.14" y="1871.5" ></text>
</g>
<g >
<title>lseek64@plt (10,101,010 samples, 0.02%)</title><rect x="1064.6" y="2053" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1067.60" y="2063.5" ></text>
</g>
<g >
<title>fsnotify_handle_inode_event.isra.0 (40,404,040 samples, 0.09%)</title><rect x="677.4" y="1637" width="1.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="680.39" y="1647.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1157" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1167.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="773" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="783.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::SkipEmptyDataBlocksForward (70,707,070 samples, 0.16%)</title><rect x="52.5" y="1781" width="1.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="55.50" y="1791.5" ></text>
</g>
<g >
<title>std::locale::id::_M_id (40,404,040 samples, 0.09%)</title><rect x="720.9" y="2021" width="1.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="723.94" y="2031.5" ></text>
</g>
<g >
<title>__gnu_cxx::__aligned_membuf&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_ptr (10,101,010 samples, 0.02%)</title><rect x="192.6" y="1781" width="0.3" height="15.0" fill="rgb(230,117,27)" rx="2" ry="2" />
<text x="195.59" y="1791.5" ></text>
</g>
<g >
<title>leveldb::PutLengthPrefixedSlice (10,101,010 samples, 0.02%)</title><rect x="693.7" y="1877" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="696.65" y="1887.5" ></text>
</g>
<g >
<title>std::ctype&lt;char&gt; const&amp; std::use_facet&lt;std::ctype&lt;char&gt; &gt; (30,303,030 samples, 0.07%)</title><rect x="720.2" y="2021" width="0.7" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="723.15" y="2031.5" ></text>
</g>
<g >
<title>submit_bio (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1621" width="1.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="85.67" y="1631.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_append (101,010,100 samples, 0.22%)</title><rect x="1173.2" y="2053" width="2.6" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="1176.21" y="2063.5" ></text>
</g>
<g >
<title>leveldb::Slice::operator[] (20,202,020 samples, 0.04%)</title><rect x="352.9" y="1861" width="0.5" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="355.88" y="1871.5" ></text>
</g>
<g >
<title>security_file_permission (30,303,030 samples, 0.07%)</title><rect x="1169.5" y="1925" width="0.8" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="1172.54" y="1935.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::Iterate (262,626,260 samples, 0.58%)</title><rect x="667.2" y="1845" width="6.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="670.16" y="1855.5" ></text>
</g>
<g >
<title>mpt_put_msg_frame (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1573" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="1168.86" y="1583.5" ></text>
</g>
<g >
<title>dd_insert_request.isra.0 (10,101,010 samples, 0.02%)</title><rect x="1162.7" y="1701" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1165.72" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="325" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="335.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixWritableFile::FlushBuffer (20,202,020 samples, 0.04%)</title><rect x="22.6" y="1781" width="0.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="25.59" y="1791.5" ></text>
</g>
<g >
<title>do_unlinkat (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1749" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="13.79" y="1759.5" ></text>
</g>
<g >
<title>do_read_fault (20,202,020 samples, 0.04%)</title><rect x="651.4" y="1669" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="654.42" y="1679.5" ></text>
</g>
<g >
<title>malloc (10,101,010 samples, 0.02%)</title><rect x="357.6" y="1781" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="360.60" y="1791.5" ></text>
</g>
<g >
<title>__x64_sys_unlink (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1765" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="13.79" y="1775.5" ></text>
</g>
<g >
<title>operator delete (10,101,010 samples, 0.02%)</title><rect x="235.3" y="1797" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="238.35" y="1807.5" ></text>
</g>
<g >
<title>inode_needs_update_time (40,404,040 samples, 0.09%)</title><rect x="408.2" y="1669" width="1.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="411.23" y="1679.5" ></text>
</g>
<g >
<title>operator delete (20,202,020 samples, 0.04%)</title><rect x="645.9" y="1749" width="0.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="648.91" y="1759.5" ></text>
</g>
<g >
<title>[libstdc++.so.6.0.30] (27,040,403,770 samples, 59.52%)</title><rect x="10.0" y="2053" width="702.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="13.00" y="2063.5" >[libstdc++.so.6.0.30]</text>
</g>
<g >
<title>leveldb::GetLengthPrefixedSlice (80,808,080 samples, 0.18%)</title><rect x="350.5" y="1861" width="2.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="353.52" y="1871.5" ></text>
</g>
<g >
<title>leveldb::ValueLogFileName (40,404,040 samples, 0.09%)</title><rect x="189.7" y="1845" width="1.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="192.70" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="713.1" y="1573" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1583.5" ></text>
</g>
<g >
<title>_IO_file_open (10,101,010 samples, 0.02%)</title><rect x="725.7" y="2037" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="728.66" y="2047.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixEnv::BackgroundThreadMain (6,101,010,040 samples, 13.43%)</title><rect x="10.0" y="1941" width="158.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="13.00" y="1951.5" >leveldb::(anonymous ..</text>
</g>
<g >
<title>_int_free (10,101,010 samples, 0.02%)</title><rect x="714.6" y="1989" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="717.64" y="1999.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::append (30,303,030 samples, 0.07%)</title><rect x="595.5" y="1893" width="0.8" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="598.54" y="1903.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::Iterate (323,232,320 samples, 0.71%)</title><rect x="239.0" y="1877" width="8.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="242.02" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1973" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1983.5" ></text>
</g>
<g >
<title>leveldb::Status::ok (10,101,010 samples, 0.02%)</title><rect x="710.4" y="1925" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="713.44" y="1935.5" ></text>
</g>
<g >
<title>folio_alloc (20,202,020 samples, 0.04%)</title><rect x="147.2" y="1589" width="0.5" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="150.20" y="1599.5" ></text>
</g>
<g >
<title>ext4_da_write_begin (2,010,100,990 samples, 4.42%)</title><rect x="890.9" y="1877" width="52.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="893.93" y="1887.5" >ext4_..</text>
</g>
<g >
<title>std::vector&lt;leveldb::FileMetaData*, std::allocator&lt;leveldb::FileMetaData*&gt; &gt;::size (30,303,030 samples, 0.07%)</title><rect x="175.3" y="1861" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="178.27" y="1871.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (363,636,360 samples, 0.80%)</title><rect x="683.4" y="1813" width="9.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="686.42" y="1823.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (70,707,070 samples, 0.16%)</title><rect x="632.5" y="1765" width="1.9" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="635.53" y="1775.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (20,202,020 samples, 0.04%)</title><rect x="420.6" y="1669" width="0.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="423.56" y="1679.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="617.8" y="1781" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="620.84" y="1791.5" ></text>
</g>
<g >
<title>std::vector&lt;unsigned int, std::allocator&lt;unsigned int&gt; &gt;::size (10,101,010 samples, 0.02%)</title><rect x="132.2" y="1829" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="135.25" y="1839.5" ></text>
</g>
<g >
<title>file_close_fd (20,202,020 samples, 0.04%)</title><rect x="986.2" y="1973" width="0.5" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="989.16" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="713.1" y="1525" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1535.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wake (10,101,010 samples, 0.02%)</title><rect x="660.9" y="1813" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="663.86" y="1823.5" ></text>
</g>
<g >
<title>mntput_no_expire (20,202,020 samples, 0.04%)</title><rect x="795.4" y="1877" width="0.6" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="798.44" y="1887.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::Valid (10,101,010 samples, 0.02%)</title><rect x="76.4" y="1797" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="79.37" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="53" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="63.5" ></text>
</g>
<g >
<title>futex_wake (5,515,151,460 samples, 12.14%)</title><rect x="440.5" y="1765" width="143.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="443.50" y="1775.5" >futex_wake</text>
</g>
<g >
<title>irqentry_exit (10,101,010 samples, 0.02%)</title><rect x="86.3" y="1797" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="89.34" y="1807.5" ></text>
</g>
<g >
<title>do_unlinkat (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1781" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="659.93" y="1791.5" ></text>
</g>
<g >
<title>scsi_queue_rq (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1477" width="0.8" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="84.88" y="1487.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Valid (20,202,020 samples, 0.04%)</title><rect x="72.4" y="1781" width="0.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="75.44" y="1791.5" ></text>
</g>
<g >
<title>_raw_read_lock (30,303,030 samples, 0.07%)</title><rect x="935.5" y="1813" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="938.53" y="1823.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (999,999,990 samples, 2.20%)</title><rect x="962.3" y="2037" width="26.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="965.29" y="2047.5" >e..</text>
</g>
<g >
<title>leveldb::DBImpl::Writer*&amp; std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::emplace_back&lt;leveldb::DBImpl::Writer*&gt; (90,909,090 samples, 0.20%)</title><rect x="588.7" y="1877" width="2.4" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="591.72" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1221" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1231.5" ></text>
</g>
<g >
<title>_int_free (40,404,040 samples, 0.09%)</title><rect x="1006.4" y="2053" width="1.0" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="1009.36" y="2063.5" ></text>
</g>
<g >
<title>ext4_buffered_write_iter (20,202,020 samples, 0.04%)</title><rect x="22.6" y="1637" width="0.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="25.59" y="1647.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="19.7" y="1797" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="22.71" y="1807.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irq (70,707,070 samples, 0.16%)</title><rect x="1133.6" y="1781" width="1.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1136.60" y="1791.5" ></text>
</g>
<g >
<title>copy_page_from_iter_atomic (20,202,020 samples, 0.04%)</title><rect x="680.3" y="1637" width="0.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="683.28" y="1647.5" ></text>
</g>
<g >
<title>leveldb::Status::OK (10,101,010 samples, 0.02%)</title><rect x="88.7" y="1845" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="91.70" y="1855.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,101,010 samples, 0.02%)</title><rect x="413.7" y="1573" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="416.74" y="1583.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (20,202,020 samples, 0.04%)</title><rect x="185.5" y="1861" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="188.50" y="1871.5" ></text>
</g>
<g >
<title>ondemand_readahead (1,292,929,280 samples, 2.85%)</title><rect x="1132.3" y="1861" width="33.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1135.29" y="1871.5" >on..</text>
</g>
<g >
<title>leveldb::Status::~Status (10,101,010 samples, 0.02%)</title><rect x="701.8" y="1909" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="704.79" y="1919.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (30,303,030 samples, 0.07%)</title><rect x="614.4" y="1781" width="0.8" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="617.43" y="1791.5" ></text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt; const&amp; std::forward&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; const&amp;&gt; (10,101,010 samples, 0.02%)</title><rect x="232.5" y="1797" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="235.46" y="1807.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::Flush (515,151,510 samples, 1.13%)</title><rect x="143.3" y="1845" width="13.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="146.27" y="1855.5" ></text>
</g>
<g >
<title>std::__basic_file&lt;char&gt;::open (30,303,030 samples, 0.07%)</title><rect x="825.1" y="2037" width="0.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="828.09" y="2047.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (10,101,010 samples, 0.02%)</title><rect x="834.0" y="2053" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="837.01" y="2063.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32Ptr (10,101,010 samples, 0.02%)</title><rect x="673.5" y="1797" width="0.2" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="676.45" y="1807.5" ></text>
</g>
<g >
<title>__filemap_fdatawrite_range (121,212,120 samples, 0.27%)</title><rect x="81.9" y="1717" width="3.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="84.88" y="1727.5" ></text>
</g>
<g >
<title>void __gnu_cxx::new_allocator&lt;leveldb::DBImpl::Writer*&gt;::destroy&lt;leveldb::DBImpl::Writer*&gt; (10,101,010 samples, 0.02%)</title><rect x="588.5" y="1877" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="591.46" y="1887.5" ></text>
</g>
<g >
<title>block_write_end (60,606,060 samples, 0.13%)</title><rect x="416.4" y="1653" width="1.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="419.36" y="1663.5" ></text>
</g>
<g >
<title>truncate_inode_pages_final (30,303,030 samples, 0.07%)</title><rect x="11.0" y="1701" width="0.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="14.05" y="1711.5" ></text>
</g>
<g >
<title>release_pages (10,101,010 samples, 0.02%)</title><rect x="11.0" y="1653" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="14.05" y="1663.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::WriteRawBlock (20,202,020 samples, 0.04%)</title><rect x="23.1" y="1781" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="26.12" y="1791.5" ></text>
</g>
<g >
<title>leveldb::BlockBuilder::Add (1,404,040,390 samples, 3.09%)</title><rect x="95.5" y="1845" width="36.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="98.52" y="1855.5" >lev..</text>
</g>
<g >
<title>asm_common_interrupt (20,202,020 samples, 0.04%)</title><rect x="298.8" y="1781" width="0.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="301.84" y="1791.5" ></text>
</g>
<g >
<title>wake_up_q (10,101,010 samples, 0.02%)</title><rect x="699.4" y="1733" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="702.43" y="1743.5" ></text>
</g>
<g >
<title>leveldb::Version::Ref (10,101,010 samples, 0.02%)</title><rect x="656.7" y="1893" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="659.67" y="1903.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="850.5" y="2005" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="853.53" y="2015.5" ></text>
</g>
<g >
<title>__gnu_cxx::new_allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt;::allocate (10,101,010 samples, 0.02%)</title><rect x="241.6" y="1765" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="244.65" y="1775.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ValueLogInserter::Put (191,919,190 samples, 0.42%)</title><rect x="239.5" y="1861" width="5.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="242.55" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1173" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1183.5" ></text>
</g>
<g >
<title>lockref_get_not_zero (20,202,020 samples, 0.04%)</title><rect x="864.2" y="1909" width="0.5" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="867.18" y="1919.5" ></text>
</g>
<g >
<title>std::fpos&lt;__mbstate_t&gt;::fpos (10,101,010 samples, 0.02%)</title><rect x="709.9" y="1909" width="0.3" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="712.92" y="1919.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::WriteLevel0Table (494,949,490 samples, 1.09%)</title><rect x="11.8" y="1861" width="12.9" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="14.84" y="1871.5" ></text>
</g>
<g >
<title>leveldb::ReadBlock (101,010,100 samples, 0.22%)</title><rect x="649.6" y="1797" width="2.6" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="652.58" y="1807.5" ></text>
</g>
<g >
<title>__GI___libc_open (20,202,020 samples, 0.04%)</title><rect x="838.5" y="2053" width="0.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="841.47" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="725" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="735.5" ></text>
</g>
<g >
<title>__x64_sys_futex (10,101,010 samples, 0.02%)</title><rect x="658.0" y="1797" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="660.98" y="1807.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (10,101,010 samples, 0.02%)</title><rect x="694.2" y="1861" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="697.18" y="1871.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (10,101,010 samples, 0.02%)</title><rect x="923.7" y="1749" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="926.73" y="1759.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (20,202,020 samples, 0.04%)</title><rect x="22.6" y="1653" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="25.59" y="1663.5" ></text>
</g>
<g >
<title>std::basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;::init (20,202,020 samples, 0.04%)</title><rect x="832.4" y="2005" width="0.6" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="835.43" y="2015.5" ></text>
</g>
<g >
<title>get_page_from_freelist (525,252,520 samples, 1.16%)</title><rect x="910.3" y="1781" width="13.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="913.35" y="1791.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Lock (30,303,030 samples, 0.07%)</title><rect x="697.1" y="1877" width="0.8" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="700.07" y="1887.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="709.4" y="1845" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="712.40" y="1855.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Lock (10,101,010 samples, 0.02%)</title><rect x="682.6" y="1861" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="685.64" y="1871.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::key (10,101,010 samples, 0.02%)</title><rect x="65.4" y="1797" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="68.35" y="1807.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (30,303,030 samples, 0.07%)</title><rect x="752.9" y="1861" width="0.8" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="755.94" y="1871.5" ></text>
</g>
<g >
<title>ext4_inode_csum_set (10,101,010 samples, 0.02%)</title><rect x="877.6" y="1765" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="880.55" y="1775.5" ></text>
</g>
<g >
<title>rmqueue_bulk (10,101,010 samples, 0.02%)</title><rect x="1138.8" y="1701" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1141.84" y="1711.5" ></text>
</g>
<g >
<title>std::locale::operator= (10,101,010 samples, 0.02%)</title><rect x="722.2" y="2021" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="725.25" y="2031.5" ></text>
</g>
<g >
<title>lockref_get_not_zero (10,101,010 samples, 0.02%)</title><rect x="977.8" y="1925" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="980.77" y="1935.5" ></text>
</g>
<g >
<title>kmem_cache_free (90,909,090 samples, 0.20%)</title><rect x="978.8" y="1941" width="2.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="981.82" y="1951.5" ></text>
</g>
<g >
<title>std::ios_base::_M_init (30,303,030 samples, 0.07%)</title><rect x="1185.8" y="2053" width="0.8" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1188.80" y="2063.5" ></text>
</g>
<g >
<title>x64_sys_call (20,202,020 samples, 0.04%)</title><rect x="584.0" y="1829" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="587.00" y="1839.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Equal (30,303,030 samples, 0.07%)</title><rect x="254.0" y="1813" width="0.8" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="256.98" y="1823.5" ></text>
</g>
<g >
<title>void std::allocator_traits&lt;std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::construct&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="244.0" y="1797" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="247.01" y="1807.5" ></text>
</g>
<g >
<title>do_syscall_64 (242,424,240 samples, 0.53%)</title><rect x="675.3" y="1765" width="6.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="678.29" y="1775.5" ></text>
</g>
<g >
<title>leveldb::GetLengthPrefixedSlice (10,101,010 samples, 0.02%)</title><rect x="254.0" y="1781" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="256.98" y="1791.5" ></text>
</g>
<g >
<title>futex_wait (10,101,010 samples, 0.02%)</title><rect x="808.3" y="1941" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="811.30" y="1951.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::KeyIsAfterNode (3,070,707,040 samples, 6.76%)</title><rect x="259.0" y="1797" width="79.7" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="261.96" y="1807.5" >leveldb::..</text>
</g>
<g >
<title>ext4_file_open (111,111,110 samples, 0.24%)</title><rect x="765.0" y="1861" width="2.9" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="768.01" y="1871.5" ></text>
</g>
<g >
<title>scsi_queue_rq (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1317" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="56.29" y="1327.5" ></text>
</g>
<g >
<title>do_syscall_64 (30,303,030 samples, 0.07%)</title><rect x="619.4" y="1813" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="622.41" y="1823.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode_prepare (10,101,010 samples, 0.02%)</title><rect x="749.3" y="1989" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="752.27" y="1999.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="135.7" y="1797" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="138.66" y="1807.5" ></text>
</g>
<g >
<title>std::mutex::lock (30,303,030 samples, 0.07%)</title><rect x="697.1" y="1861" width="0.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="700.07" y="1871.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32Ptr (10,101,010 samples, 0.02%)</title><rect x="360.0" y="1845" width="0.2" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="362.96" y="1855.5" ></text>
</g>
<g >
<title>aa_path_name (282,828,280 samples, 0.62%)</title><rect x="781.3" y="1797" width="7.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="784.28" y="1807.5" ></text>
</g>
<g >
<title>std::map&lt;unsigned long, unsigned long, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::count (30,303,030 samples, 0.07%)</title><rect x="663.0" y="1813" width="0.7" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="665.96" y="1823.5" ></text>
</g>
<g >
<title>__rcu_read_lock (10,101,010 samples, 0.02%)</title><rect x="880.2" y="1861" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="883.18" y="1871.5" ></text>
</g>
<g >
<title>mptscsih_qcmd (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1365" width="1.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="85.67" y="1375.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node::SetNext (10,101,010 samples, 0.02%)</title><rect x="673.2" y="1781" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="676.19" y="1791.5" ></text>
</g>
<g >
<title>leveldb::Version::Unref (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1893" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="659.93" y="1903.5" ></text>
</g>
<g >
<title>filemap_fault (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1573" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="56.29" y="1583.5" ></text>
</g>
<g >
<title>mark_buffer_dirty (50,505,050 samples, 0.11%)</title><rect x="416.6" y="1621" width="1.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="419.63" y="1631.5" ></text>
</g>
<g >
<title>folio_alloc (10,101,010 samples, 0.02%)</title><rect x="413.7" y="1621" width="0.3" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="416.74" y="1631.5" ></text>
</g>
<g >
<title>leveldb::WriteBatchInternal::Count (20,202,020 samples, 0.04%)</title><rect x="248.5" y="1893" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="251.47" y="1903.5" ></text>
</g>
<g >
<title>ext4_da_write_begin (80,808,080 samples, 0.18%)</title><rect x="146.9" y="1637" width="2.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="149.94" y="1647.5" ></text>
</g>
<g >
<title>__GI___unlink (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1861" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="659.93" y="1871.5" ></text>
</g>
<g >
<title>std::__deque_buf_size (10,101,010 samples, 0.02%)</title><rect x="590.8" y="1813" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="593.82" y="1823.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::Valid (10,101,010 samples, 0.02%)</title><rect x="63.0" y="1765" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="65.99" y="1775.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (20,202,020 samples, 0.04%)</title><rect x="944.7" y="1829" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="947.71" y="1839.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.07%)</title><rect x="619.4" y="1829" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="622.41" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (20,202,020 samples, 0.04%)</title><rect x="21.8" y="1797" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="24.81" y="1807.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32Ptr (10,101,010 samples, 0.02%)</title><rect x="359.4" y="1829" width="0.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="362.44" y="1839.5" ></text>
</g>
<g >
<title>unsigned int&amp; std::vector&lt;unsigned int, std::allocator&lt;unsigned int&gt; &gt;::emplace_back&lt;unsigned int&gt; (10,101,010 samples, 0.02%)</title><rect x="131.7" y="1813" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="134.73" y="1823.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.07%)</title><rect x="428.2" y="1845" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="431.17" y="1855.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (10,101,010 samples, 0.02%)</title><rect x="123.6" y="1717" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="126.59" y="1727.5" ></text>
</g>
<g >
<title>send_to_group (313,131,310 samples, 0.69%)</title><rect x="396.2" y="1685" width="8.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="399.16" y="1695.5" ></text>
</g>
<g >
<title>__x64_sys_write (10,101,010 samples, 0.02%)</title><rect x="145.1" y="1749" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="148.10" y="1759.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (30,303,030 samples, 0.07%)</title><rect x="644.1" y="1797" width="0.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="647.07" y="1807.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="1128.1" y="1829" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1131.09" y="1839.5" ></text>
</g>
<g >
<title>leveldb::PutVarint32 (30,303,030 samples, 0.07%)</title><rect x="215.7" y="1829" width="0.8" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="218.67" y="1839.5" ></text>
</g>
<g >
<title>mem_cgroup_wb_stats (111,111,110 samples, 0.24%)</title><rect x="882.0" y="1829" width="2.9" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="885.01" y="1839.5" ></text>
</g>
<g >
<title>ext4_lookup (10,101,010 samples, 0.02%)</title><rect x="794.4" y="1877" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="797.39" y="1887.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_M_lower_bound (70,707,070 samples, 0.16%)</title><rect x="165.3" y="1813" width="1.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="168.30" y="1823.5" ></text>
</g>
<g >
<title>operator new (10,101,010 samples, 0.02%)</title><rect x="346.1" y="1797" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="349.06" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1637" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1647.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (10,101,010 samples, 0.02%)</title><rect x="439.7" y="1765" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="442.71" y="1775.5" ></text>
</g>
<g >
<title>do_futex (10,101,010 samples, 0.02%)</title><rect x="699.4" y="1765" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="702.43" y="1775.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::_S_relocate (10,101,010 samples, 0.02%)</title><rect x="212.0" y="1797" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="215.00" y="1807.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="22.6" y="1749" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="25.59" y="1759.5" ></text>
</g>
<g >
<title>std::mutex::unlock (393,939,390 samples, 0.87%)</title><rect x="682.9" y="1845" width="10.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="685.90" y="1855.5" ></text>
</g>
<g >
<title>ext4_io_submit (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1621" width="0.6" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="14.84" y="1631.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; const*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;::__normal_iterator (10,101,010 samples, 0.02%)</title><rect x="233.0" y="1829" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="235.99" y="1839.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list.part.0 (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1509" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="14.84" y="1519.5" ></text>
</g>
<g >
<title>memset_orig (60,606,060 samples, 0.13%)</title><rect x="798.9" y="1909" width="1.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="801.85" y="1919.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::end (10,101,010 samples, 0.02%)</title><rect x="233.0" y="1845" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="235.99" y="1855.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wake (70,707,070 samples, 0.16%)</title><rect x="808.6" y="2037" width="1.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="811.56" y="2047.5" ></text>
</g>
<g >
<title>std::__invoke_result&lt;void (27,040,403,770 samples, 59.52%)</title><rect x="10.0" y="1989" width="702.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.00" y="1999.5" >std::__invoke_result&lt;void </text>
</g>
<g >
<title>obj_cgroup_charge (20,202,020 samples, 0.04%)</title><rect x="872.0" y="1845" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="875.05" y="1855.5" ></text>
</g>
<g >
<title>__alloc_pages (10,101,010 samples, 0.02%)</title><rect x="413.7" y="1589" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="416.74" y="1599.5" ></text>
</g>
<g >
<title>__blk_mq_do_dispatch_sched (898,989,890 samples, 1.98%)</title><rect x="1139.4" y="1669" width="23.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1142.37" y="1679.5" >_..</text>
</g>
<g >
<title>leveldb::log::Writer::AddRecord (313,131,310 samples, 0.69%)</title><rect x="674.5" y="1861" width="8.1" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text x="677.50" y="1871.5" ></text>
</g>
<g >
<title>schedule (30,303,030 samples, 0.07%)</title><rect x="705.7" y="1733" width="0.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="708.72" y="1743.5" ></text>
</g>
<g >
<title>fault_in_readable (10,101,010 samples, 0.02%)</title><rect x="952.1" y="1877" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="955.06" y="1887.5" ></text>
</g>
<g >
<title>leveldb::crc32c::(anonymous namespace)::ReadUint32LE (10,101,010 samples, 0.02%)</title><rect x="23.4" y="1733" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="26.38" y="1743.5" ></text>
</g>
<g >
<title>folio_mapping (20,202,020 samples, 0.04%)</title><rect x="414.8" y="1637" width="0.5" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="417.79" y="1647.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (10,101,010 samples, 0.02%)</title><rect x="884.9" y="1829" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="887.90" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (50,505,050 samples, 0.11%)</title><rect x="138.3" y="1845" width="1.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="141.28" y="1855.5" ></text>
</g>
<g >
<title>truncate_inode_pages_final (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1653" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="27.69" y="1663.5" ></text>
</g>
<g >
<title>filemap_read (1,858,585,840 samples, 4.09%)</title><rect x="1119.4" y="1909" width="48.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="1122.43" y="1919.5" >file..</text>
</g>
<g >
<title>ext4_file_read_iter (1,878,787,860 samples, 4.14%)</title><rect x="1119.2" y="1941" width="48.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1122.17" y="1951.5" >ext4..</text>
</g>
<g >
<title>_IO_unsave_markers (30,303,030 samples, 0.07%)</title><rect x="836.9" y="2053" width="0.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="839.89" y="2063.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::Writer*&amp; std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::emplace_back&lt;leveldb::DBImpl::Writer*&gt; (10,101,010 samples, 0.02%)</title><rect x="176.3" y="1893" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="179.32" y="1903.5" ></text>
</g>
<g >
<title>do_filp_open (1,777,777,760 samples, 3.91%)</title><rect x="750.1" y="1941" width="46.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="753.06" y="1951.5" >do_f..</text>
</g>
<g >
<title>__fdget_pos (10,101,010 samples, 0.02%)</title><rect x="860.8" y="1957" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="863.76" y="1967.5" ></text>
</g>
<g >
<title>ext4_da_get_block_prep (30,303,030 samples, 0.07%)</title><rect x="148.3" y="1605" width="0.7" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="151.25" y="1615.5" ></text>
</g>
<g >
<title>std::vector&lt;leveldb::Slice, std::allocator&lt;leveldb::Slice&gt; &gt;::size (30,303,030 samples, 0.07%)</title><rect x="358.6" y="1797" width="0.8" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="361.65" y="1807.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (141,414,140 samples, 0.31%)</title><rect x="945.8" y="1797" width="3.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="948.76" y="1807.5" ></text>
</g>
<g >
<title>futex_q_lock (10,101,010 samples, 0.02%)</title><rect x="730.1" y="1909" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="733.12" y="1919.5" ></text>
</g>
<g >
<title>x64_sys_call (30,303,030 samples, 0.07%)</title><rect x="11.0" y="1797" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="14.05" y="1807.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (171,717,170 samples, 0.38%)</title><rect x="789.4" y="1909" width="4.5" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="792.41" y="1919.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::Valid (10,101,010 samples, 0.02%)</title><rect x="645.4" y="1813" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="648.38" y="1823.5" ></text>
</g>
<g >
<title>__x64_sys_unlink (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1733" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="27.69" y="1743.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::push_back (10,101,010 samples, 0.02%)</title><rect x="220.1" y="1861" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="223.13" y="1871.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="64.0" y="1749" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="67.04" y="1759.5" ></text>
</g>
<g >
<title>leveldb::Block::NumRestarts (10,101,010 samples, 0.02%)</title><rect x="646.4" y="1797" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="649.43" y="1807.5" ></text>
</g>
<g >
<title>leveldb::Status::Status (10,101,010 samples, 0.02%)</title><rect x="88.7" y="1829" width="0.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="91.70" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Benchmark::ThreadBody (16,585,858,420 samples, 36.51%)</title><rect x="168.5" y="1957" width="430.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="171.45" y="1967.5" >leveldb::Benchmark::ThreadBody</text>
</g>
<g >
<title>should_fail_alloc_page (10,101,010 samples, 0.02%)</title><rect x="925.3" y="1797" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="928.30" y="1807.5" ></text>
</g>
<g >
<title>bdev_getblk (10,101,010 samples, 0.02%)</title><rect x="878.1" y="1765" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="881.08" y="1775.5" ></text>
</g>
<g >
<title>__GI___futex_abstimed_wait_cancelable64 (181,818,180 samples, 0.40%)</title><rect x="726.7" y="2037" width="4.7" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="729.71" y="2047.5" ></text>
</g>
<g >
<title>locks_remove_posix (50,505,050 samples, 0.11%)</title><rect x="986.9" y="1957" width="1.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="989.95" y="1967.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock@@GLIBC_2.2.5 (70,707,070 samples, 0.16%)</title><rect x="584.8" y="1861" width="1.8" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="587.78" y="1871.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="658.0" y="1813" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="660.98" y="1823.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::append (10,101,010 samples, 0.02%)</title><rect x="219.6" y="1861" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="222.61" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1941" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1951.5" ></text>
</g>
<g >
<title>asm_common_interrupt (20,202,020 samples, 0.04%)</title><rect x="629.6" y="1797" width="0.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="632.64" y="1807.5" ></text>
</g>
<g >
<title>leveldb::Slice::operator[] (10,101,010 samples, 0.02%)</title><rect x="22.3" y="1813" width="0.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="25.33" y="1823.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::WriteValueLog (30,303,030 samples, 0.07%)</title><rect x="237.4" y="1877" width="0.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="240.45" y="1887.5" ></text>
</g>
<g >
<title>__block_commit_write (242,424,240 samples, 0.53%)</title><rect x="944.2" y="1845" width="6.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="947.19" y="1855.5" ></text>
</g>
<g >
<title>leveldb::crc32c::Extend (10,101,010 samples, 0.02%)</title><rect x="361.8" y="1877" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="364.80" y="1887.5" ></text>
</g>
<g >
<title>current_time (20,202,020 samples, 0.04%)</title><rect x="1166.9" y="1861" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1169.91" y="1871.5" ></text>
</g>
<g >
<title>memset@plt (10,101,010 samples, 0.02%)</title><rect x="1069.3" y="2053" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1072.32" y="2063.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node::Next (20,202,020 samples, 0.04%)</title><rect x="346.3" y="1813" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="349.32" y="1823.5" ></text>
</g>
<g >
<title>get_page_from_freelist (60,606,060 samples, 0.13%)</title><rect x="1137.5" y="1749" width="1.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1140.53" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="229" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="239.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1701" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1711.5" ></text>
</g>
<g >
<title>ext4_get_reserved_space (10,101,010 samples, 0.02%)</title><rect x="937.9" y="1797" width="0.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="940.89" y="1807.5" ></text>
</g>
<g >
<title>leveldb::WriteBatchInternal::InsertInto (282,828,280 samples, 0.62%)</title><rect x="667.2" y="1861" width="7.3" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="670.16" y="1871.5" ></text>
</g>
<g >
<title>leveldb::Slice::compare (20,202,020 samples, 0.04%)</title><rect x="91.8" y="1861" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="94.85" y="1871.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Lock (10,101,010 samples, 0.02%)</title><rect x="648.0" y="1749" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="651.01" y="1759.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::_M_destroy_internal_buffer (20,202,020 samples, 0.04%)</title><rect x="1179.0" y="2053" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1181.98" y="2063.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::Iterate (40,404,040 samples, 0.09%)</title><rect x="666.1" y="1845" width="1.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="669.11" y="1855.5" ></text>
</g>
<g >
<title>___slab_alloc (80,808,080 samples, 0.18%)</title><rect x="930.5" y="1781" width="2.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="933.55" y="1791.5" ></text>
</g>
<g >
<title>leveldb::Arena::Allocate (10,101,010 samples, 0.02%)</title><rect x="252.4" y="1829" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="255.40" y="1839.5" ></text>
</g>
<g >
<title>leveldb::VarintLength (10,101,010 samples, 0.02%)</title><rect x="349.7" y="1829" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="352.73" y="1839.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="787.6" y="1621" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="790.57" y="1631.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (141,414,140 samples, 0.31%)</title><rect x="30.2" y="1861" width="3.7" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="33.20" y="1871.5" ></text>
</g>
<g >
<title>operator new (10,101,010 samples, 0.02%)</title><rect x="131.7" y="1765" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="134.73" y="1775.5" ></text>
</g>
<g >
<title>generic_write_check_limits (10,101,010 samples, 0.02%)</title><rect x="876.0" y="1877" width="0.2" height="15.0" fill="rgb(206,9,2)" rx="2" ry="2" />
<text x="878.98" y="1887.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::~basic_string (30,303,030 samples, 0.07%)</title><rect x="246.6" y="1861" width="0.8" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="249.63" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (20,202,020 samples, 0.04%)</title><rect x="713.1" y="1365" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1375.5" ></text>
</g>
<g >
<title>__GI_____strtoull_l_internal (10,101,010 samples, 0.02%)</title><rect x="837.7" y="2053" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="840.68" y="2063.5" ></text>
</g>
<g >
<title>__vfprintf_internal (121,212,120 samples, 0.27%)</title><rect x="815.6" y="2037" width="3.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="818.64" y="2047.5" ></text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt;&amp;&amp; std::forward&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="244.0" y="1781" width="0.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="247.01" y="1791.5" ></text>
</g>
<g >
<title>copy_from_kernel_nofault_allowed (10,101,010 samples, 0.02%)</title><rect x="787.8" y="1701" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="790.83" y="1711.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1429" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="56.29" y="1439.5" ></text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt;::pair&lt;leveldb::Slice, leveldb::Slice, true&gt; (10,101,010 samples, 0.02%)</title><rect x="239.8" y="1845" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="242.81" y="1855.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1749" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="27.69" y="1759.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wait (30,303,030 samples, 0.07%)</title><rect x="428.2" y="1861" width="0.8" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="431.17" y="1871.5" ></text>
</g>
<g >
<title>__futex_wait (80,808,080 samples, 0.18%)</title><rect x="705.2" y="1765" width="2.1" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="708.20" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (30,303,030 samples, 0.07%)</title><rect x="713.1" y="1397" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1407.5" ></text>
</g>
<g >
<title>__virt_addr_valid (30,303,030 samples, 0.07%)</title><rect x="802.8" y="1845" width="0.8" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="805.79" y="1855.5" ></text>
</g>
<g >
<title>file_modified (10,101,010 samples, 0.02%)</title><rect x="22.6" y="1621" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="25.59" y="1631.5" ></text>
</g>
<g >
<title>__alloc_pages (20,202,020 samples, 0.04%)</title><rect x="908.2" y="1813" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="911.25" y="1823.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_S_relocate (10,101,010 samples, 0.02%)</title><rect x="666.4" y="1765" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="669.37" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1653" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1925" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1935.5" ></text>
</g>
<g >
<title>__filemap_get_folio (70,707,070 samples, 0.16%)</title><rect x="413.5" y="1653" width="1.8" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="416.48" y="1663.5" ></text>
</g>
<g >
<title>copy_from_kernel_nofault (50,505,050 samples, 0.11%)</title><rect x="786.5" y="1701" width="1.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="789.52" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="309" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="319.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Insert (222,222,220 samples, 0.49%)</title><rect x="667.7" y="1797" width="5.8" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="670.68" y="1807.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixWritableFile::Sync (121,212,120 samples, 0.27%)</title><rect x="81.9" y="1845" width="3.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="84.88" y="1855.5" ></text>
</g>
<g >
<title>mem_cgroup_commit_charge (70,707,070 samples, 0.16%)</title><rect x="896.7" y="1797" width="1.8" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="899.71" y="1807.5" ></text>
</g>
<g >
<title>std::mutex::unlock (30,303,030 samples, 0.07%)</title><rect x="708.1" y="1893" width="0.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="711.08" y="1903.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::RandomGenerator::Generate (20,202,020 samples, 0.04%)</title><rect x="170.3" y="1909" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="173.29" y="1919.5" ></text>
</g>
<g >
<title>leveldb::VersionSet::LastSequence (10,101,010 samples, 0.02%)</title><rect x="661.4" y="1861" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="664.39" y="1871.5" ></text>
</g>
<g >
<title>balance_dirty_pages (111,111,110 samples, 0.24%)</title><rect x="882.0" y="1845" width="2.9" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="885.01" y="1855.5" ></text>
</g>
<g >
<title>__ext4_journal_start_sb (10,101,010 samples, 0.02%)</title><rect x="877.3" y="1829" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="880.29" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Slice::compare (10,101,010 samples, 0.02%)</title><rect x="334.8" y="1749" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="337.78" y="1759.5" ></text>
</g>
<g >
<title>std::basic_fstream&lt;char, std::char_traits&lt;char&gt; &gt;::close (10,101,010 samples, 0.02%)</title><rect x="664.8" y="1829" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="667.80" y="1839.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::_S_max_size (30,303,030 samples, 0.07%)</title><rect x="211.0" y="1765" width="0.7" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="213.95" y="1775.5" ></text>
</g>
<g >
<title>__memset_evex_unaligned_erms (30,303,030 samples, 0.07%)</title><rect x="1004.3" y="2053" width="0.8" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1007.26" y="2063.5" ></text>
</g>
<g >
<title>filemap_get_entry (30,303,030 samples, 0.07%)</title><rect x="414.0" y="1637" width="0.8" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="417.00" y="1647.5" ></text>
</g>
<g >
<title>leveldb::Status::operator= (10,101,010 samples, 0.02%)</title><rect x="701.5" y="1909" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="704.53" y="1919.5" ></text>
</g>
<g >
<title>mptscsih_qcmd (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1317" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="87.77" y="1327.5" ></text>
</g>
<g >
<title>std::condition_variable::notify_all (10,101,010 samples, 0.02%)</title><rect x="709.7" y="1909" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="712.66" y="1919.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="660.6" y="1797" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="663.60" y="1807.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Iterator::Seek (727,272,720 samples, 1.60%)</title><rect x="600.5" y="1877" width="18.9" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="603.52" y="1887.5" ></text>
</g>
<g >
<title>file_modified (70,707,070 samples, 0.16%)</title><rect x="877.0" y="1893" width="1.9" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="880.03" y="1903.5" ></text>
</g>
<g >
<title>std::basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;::_M_cache_locale (10,101,010 samples, 0.02%)</title><rect x="827.7" y="2005" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="830.71" y="2015.5" ></text>
</g>
<g >
<title>std::pair&lt;unsigned long, unsigned long&gt;&amp; std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::emplace_back&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="663.7" y="1797" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="666.75" y="1807.5" ></text>
</g>
<g >
<title>do_syscall_64 (70,707,070 samples, 0.16%)</title><rect x="808.6" y="2005" width="1.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="811.56" y="2015.5" ></text>
</g>
<g >
<title>process_output_block (10,101,010 samples, 0.02%)</title><rect x="807.5" y="1877" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="810.51" y="1887.5" ></text>
</g>
<g >
<title>std::num_get&lt;char, std::istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt; const&amp; std::use_facet&lt;std::num_get&lt;char, std::istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt; &gt; (20,202,020 samples, 0.04%)</title><rect x="722.5" y="2021" width="0.5" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="725.51" y="2031.5" ></text>
</g>
<g >
<title>std::map&lt;unsigned long, unsigned long, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::lower_bound (10,101,010 samples, 0.02%)</title><rect x="198.1" y="1845" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="201.10" y="1855.5" ></text>
</g>
<g >
<title>wake_up_q (10,101,010 samples, 0.02%)</title><rect x="620.5" y="1733" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="623.46" y="1743.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::SeekToFirst (20,202,020 samples, 0.04%)</title><rect x="53.8" y="1749" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="56.81" y="1759.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::vector (10,101,010 samples, 0.02%)</title><rect x="213.8" y="1845" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="216.84" y="1855.5" ></text>
</g>
<g >
<title>path_get (20,202,020 samples, 0.04%)</title><rect x="769.2" y="1861" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="772.21" y="1871.5" ></text>
</g>
<g >
<title>__fsnotify_parent (40,404,040 samples, 0.09%)</title><rect x="770.8" y="1845" width="1.0" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="773.78" y="1855.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="694.2" y="1781" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="697.18" y="1791.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::BuildBatchGroup (40,404,040 samples, 0.09%)</title><rect x="173.4" y="1893" width="1.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="176.44" y="1903.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::data (10,101,010 samples, 0.02%)</title><rect x="217.2" y="1845" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="220.25" y="1855.5" ></text>
</g>
<g >
<title>__dd_dispatch_request (10,101,010 samples, 0.02%)</title><rect x="1162.5" y="1637" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1165.45" y="1647.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::begin (10,101,010 samples, 0.02%)</title><rect x="586.6" y="1893" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="589.62" y="1903.5" ></text>
</g>
<g >
<title>std::vector&lt;leveldb::FileMetaData*, std::allocator&lt;leveldb::FileMetaData*&gt; &gt;::reserve (10,101,010 samples, 0.02%)</title><rect x="655.6" y="1861" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="658.62" y="1871.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="692.6" y="1605" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="695.61" y="1615.5" ></text>
</g>
<g >
<title>futex_wake_mark (60,606,060 samples, 0.13%)</title><rect x="441.3" y="1749" width="1.6" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="444.29" y="1759.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (20,202,020 samples, 0.04%)</title><rect x="250.0" y="1877" width="0.6" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="253.04" y="1887.5" ></text>
</g>
<g >
<title>__x64_sys_fdatasync (30,303,030 samples, 0.07%)</title><rect x="11.8" y="1749" width="0.8" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="14.84" y="1759.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (20,202,020 samples, 0.04%)</title><rect x="402.5" y="1589" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="405.46" y="1599.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::open (30,303,030 samples, 0.07%)</title><rect x="826.1" y="2037" width="0.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="829.14" y="2047.5" ></text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (707,070,700 samples, 1.56%)</title><rect x="319.6" y="1765" width="18.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="322.56" y="1775.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixWritableFile::Flush (2,272,727,250 samples, 5.00%)</title><rect x="363.1" y="1861" width="59.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="366.11" y="1871.5" >leveld..</text>
</g>
<g >
<title>leveldb::Block::Iter::NextEntryOffset (10,101,010 samples, 0.02%)</title><rect x="59.1" y="1733" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="62.06" y="1743.5" ></text>
</g>
<g >
<title>leveldb::Random::OneIn (30,303,030 samples, 0.07%)</title><rect x="348.7" y="1797" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="351.68" y="1807.5" ></text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (191,919,190 samples, 0.42%)</title><rect x="105.5" y="1829" width="5.0" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="108.49" y="1839.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::Iterate (171,717,170 samples, 0.38%)</title><rect x="356.3" y="1877" width="4.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="359.29" y="1887.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="730.4" y="1893" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="733.38" y="1903.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.02%)</title><rect x="931.1" y="1749" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="934.07" y="1759.5" ></text>
</g>
<g >
<title>evict (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1717" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="13.79" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1253" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1263.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="677" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="687.5" ></text>
</g>
<g >
<title>leveldb::Status::operator= (10,101,010 samples, 0.02%)</title><rect x="625.2" y="1845" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="628.18" y="1855.5" ></text>
</g>
<g >
<title>copy_page_from_iter_atomic (10,101,010 samples, 0.02%)</title><rect x="22.9" y="1605" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="25.85" y="1615.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.02%)</title><rect x="909.3" y="1717" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="912.30" y="1727.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ShardedLRUCache::Lookup (80,808,080 samples, 0.18%)</title><rect x="653.3" y="1813" width="2.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="656.25" y="1823.5" ></text>
</g>
<g >
<title>__filemap_get_folio (10,101,010 samples, 0.02%)</title><rect x="879.9" y="1877" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="882.92" y="1887.5" ></text>
</g>
<g >
<title>down_write (10,101,010 samples, 0.02%)</title><rect x="404.8" y="1701" width="0.3" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="407.82" y="1711.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::RandomGenerator::Generate (10,101,010 samples, 0.02%)</title><rect x="168.5" y="1925" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="171.45" y="1935.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_S_key (10,101,010 samples, 0.02%)</title><rect x="196.5" y="1797" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="199.52" y="1807.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::Valid (10,101,010 samples, 0.02%)</title><rect x="77.4" y="1765" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="80.42" y="1775.5" ></text>
</g>
<g >
<title>blk_add_rq_to_plug (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1493" width="0.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="87.77" y="1503.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixWritableFile::WriteUnbuffered (10,101,010 samples, 0.02%)</title><rect x="421.9" y="1829" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="424.87" y="1839.5" ></text>
</g>
<g >
<title>fault_in_iov_iter_readable (20,202,020 samples, 0.04%)</title><rect x="681.1" y="1637" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="684.06" y="1647.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irq (202,020,200 samples, 0.44%)</title><rect x="898.5" y="1813" width="5.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="901.54" y="1823.5" ></text>
</g>
<g >
<title>leveldb::Slice::compare (10,101,010 samples, 0.02%)</title><rect x="615.2" y="1781" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="618.22" y="1791.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1525" width="0.8" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="84.88" y="1535.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="808.3" y="1989" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="811.30" y="1999.5" ></text>
</g>
<g >
<title>folio_mark_accessed (10,101,010 samples, 0.02%)</title><rect x="1166.1" y="1893" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1169.13" y="1903.5" ></text>
</g>
<g >
<title>mnt_put_write_access (20,202,020 samples, 0.04%)</title><rect x="983.8" y="1957" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="986.80" y="1967.5" ></text>
</g>
<g >
<title>_IO_link_in (10,101,010 samples, 0.02%)</title><rect x="836.4" y="2053" width="0.2" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="839.37" y="2063.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::MemTableInserter::Put (3,818,181,780 samples, 8.40%)</title><rect x="251.4" y="1861" width="99.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="254.35" y="1871.5" >leveldb::(an..</text>
</g>
<g >
<title>alloc_pages_mpol (70,707,070 samples, 0.16%)</title><rect x="1137.3" y="1781" width="1.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1140.27" y="1791.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list.part.0 (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1589" width="0.8" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="84.88" y="1599.5" ></text>
</g>
<g >
<title>file_write_and_wait_range (30,303,030 samples, 0.07%)</title><rect x="11.8" y="1717" width="0.8" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="14.84" y="1727.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wait (40,404,040 samples, 0.09%)</title><rect x="657.2" y="1861" width="1.0" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="660.19" y="1871.5" ></text>
</g>
<g >
<title>wake_up_q (1,070,707,060 samples, 2.36%)</title><rect x="1076.9" y="1941" width="27.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1079.93" y="1951.5" >w..</text>
</g>
<g >
<title>__cond_resched (20,202,020 samples, 0.04%)</title><rect x="875.2" y="1893" width="0.5" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="878.19" y="1903.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::~basic_string (10,101,010 samples, 0.02%)</title><rect x="695.2" y="1877" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="698.23" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="713.1" y="1477" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1487.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::empty (10,101,010 samples, 0.02%)</title><rect x="623.9" y="1845" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="626.87" y="1855.5" ></text>
</g>
<g >
<title>inode_update_timestamps (10,101,010 samples, 0.02%)</title><rect x="409.3" y="1669" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="412.28" y="1679.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Unlock (393,939,390 samples, 0.87%)</title><rect x="682.9" y="1861" width="10.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="685.90" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="549" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="559.5" ></text>
</g>
<g >
<title>elv_rqhash_del (10,101,010 samples, 0.02%)</title><rect x="1162.5" y="1621" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1165.45" y="1631.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::SeekToRestartPoint (20,202,020 samples, 0.04%)</title><rect x="53.8" y="1733" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="56.81" y="1743.5" ></text>
</g>
<g >
<title>__GI___pthread_enable_asynccancel (10,101,010 samples, 0.02%)</title><rect x="681.6" y="1797" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="684.59" y="1807.5" ></text>
</g>
<g >
<title>prepend (70,707,070 samples, 0.16%)</title><rect x="786.3" y="1733" width="1.8" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="789.26" y="1743.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::~vector (10,101,010 samples, 0.02%)</title><rect x="665.3" y="1829" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="668.32" y="1839.5" ></text>
</g>
<g >
<title>inotify_free_event (10,101,010 samples, 0.02%)</title><rect x="872.6" y="1845" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="875.57" y="1855.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_replace_aux (20,202,020 samples, 0.04%)</title><rect x="596.9" y="1909" width="0.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="599.85" y="1919.5" ></text>
</g>
<g >
<title>futex_hash (10,101,010 samples, 0.02%)</title><rect x="730.9" y="1893" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="733.91" y="1903.5" ></text>
</g>
<g >
<title>fdatasync (121,212,120 samples, 0.27%)</title><rect x="81.9" y="1829" width="3.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="84.88" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="334.5" y="1749" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="337.51" y="1759.5" ></text>
</g>
<g >
<title>__x64_sys_fdatasync (121,212,120 samples, 0.27%)</title><rect x="81.9" y="1765" width="3.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="84.88" y="1775.5" ></text>
</g>
<g >
<title>_IO_default_finish (20,202,020 samples, 0.04%)</title><rect x="723.6" y="2037" width="0.5" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="726.56" y="2047.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="682.6" y="1781" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="685.64" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1781" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1791.5" ></text>
</g>
<g >
<title>_raw_read_unlock (10,101,010 samples, 0.02%)</title><rect x="936.3" y="1813" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="939.32" y="1823.5" ></text>
</g>
<g >
<title>walk_component (50,505,050 samples, 0.11%)</title><rect x="792.6" y="1893" width="1.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="795.56" y="1903.5" ></text>
</g>
<g >
<title>_IO_file_close (10,101,010 samples, 0.02%)</title><rect x="834.3" y="2053" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="837.27" y="2063.5" ></text>
</g>
<g >
<title>memcmp@plt (10,101,010 samples, 0.02%)</title><rect x="331.4" y="1733" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="334.37" y="1743.5" ></text>
</g>
<g >
<title>std::mutex::lock (20,202,020 samples, 0.04%)</title><rect x="660.3" y="1829" width="0.6" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="663.34" y="1839.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::Finish (10,101,010 samples, 0.02%)</title><rect x="85.0" y="1845" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="88.03" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="341" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="351.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="334.0" y="1733" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="336.99" y="1743.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;leveldb::FileMetaData*, std::allocator&lt;leveldb::FileMetaData*&gt; &gt;::_Vector_base (20,202,020 samples, 0.04%)</title><rect x="655.9" y="1845" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="658.88" y="1855.5" ></text>
</g>
<g >
<title>__ext4_journal_get_write_access (10,101,010 samples, 0.02%)</title><rect x="146.4" y="1557" width="0.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="149.42" y="1567.5" ></text>
</g>
<g >
<title>aa_file_perm (10,101,010 samples, 0.02%)</title><rect x="1170.1" y="1893" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="1173.06" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="85" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="95.5" ></text>
</g>
<g >
<title>leveldb::Slice::compare (10,101,010 samples, 0.02%)</title><rect x="42.5" y="1797" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="45.53" y="1807.5" ></text>
</g>
<g >
<title>bool std::has_facet&lt;std::ctype&lt;char&gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="830.1" y="2005" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="833.07" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (363,636,360 samples, 0.80%)</title><rect x="683.4" y="1797" width="9.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="686.42" y="1807.5" ></text>
</g>
<g >
<title>std::_Deque_iterator&lt;leveldb::DBImpl::Writer*, leveldb::DBImpl::Writer*&amp;, leveldb::DBImpl::Writer**&gt;::_Deque_iterator (20,202,020 samples, 0.04%)</title><rect x="587.4" y="1877" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="590.41" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1781" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="27.69" y="1791.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="660.6" y="1765" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="663.60" y="1775.5" ></text>
</g>
<g >
<title>leveldb::crc32c::(anonymous namespace)::ReadUint32LE (10,101,010 samples, 0.02%)</title><rect x="150.1" y="1781" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="153.09" y="1791.5" ></text>
</g>
<g >
<title>leveldb::WriteBatchInternal::Contents (10,101,010 samples, 0.02%)</title><rect x="661.6" y="1861" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="664.65" y="1871.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;leveldb::Slice, std::allocator&lt;leveldb::Slice&gt; &gt;::_M_allocate (50,505,050 samples, 0.11%)</title><rect x="357.1" y="1813" width="1.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="360.07" y="1823.5" ></text>
</g>
<g >
<title>leveldb::VarintLength (10,101,010 samples, 0.02%)</title><rect x="350.3" y="1845" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="353.25" y="1855.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::max_size (10,101,010 samples, 0.02%)</title><rect x="241.9" y="1781" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="244.91" y="1791.5" ></text>
</g>
<g >
<title>handle_mm_fault (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1669" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="56.29" y="1679.5" ></text>
</g>
<g >
<title>ext4_es_insert_delayed_block (50,505,050 samples, 0.11%)</title><rect x="938.2" y="1813" width="1.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="941.15" y="1823.5" ></text>
</g>
<g >
<title>std::mutex::unlock (20,202,020 samples, 0.04%)</title><rect x="660.9" y="1829" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="663.86" y="1839.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.02%)</title><rect x="86.3" y="1781" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="89.34" y="1791.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_append (10,101,010 samples, 0.02%)</title><rect x="595.3" y="1893" width="0.2" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="598.28" y="1903.5" ></text>
</g>
<g >
<title>mptspi_qcmd (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1365" width="0.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="14.84" y="1375.5" ></text>
</g>
<g >
<title>leveldb::ParseFakeValueForValuelog (50,505,050 samples, 0.11%)</title><rect x="87.7" y="1861" width="1.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="90.65" y="1871.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (10,101,010 samples, 0.02%)</title><rect x="656.1" y="1797" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="659.14" y="1807.5" ></text>
</g>
<g >
<title>folio_alloc_buffers (222,222,220 samples, 0.49%)</title><rect x="928.7" y="1829" width="5.8" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="931.71" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="741" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="751.5" ></text>
</g>
<g >
<title>xas_load (10,101,010 samples, 0.02%)</title><rect x="794.4" y="1733" width="0.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="797.39" y="1743.5" ></text>
</g>
<g >
<title>copy_from_kernel_nofault_allowed (20,202,020 samples, 0.04%)</title><rect x="787.3" y="1685" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="790.31" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="713.1" y="1493" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1503.5" ></text>
</g>
<g >
<title>filemap_add_folio (10,101,010 samples, 0.02%)</title><rect x="146.9" y="1605" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="149.94" y="1615.5" ></text>
</g>
<g >
<title>crypto_shash_update (10,101,010 samples, 0.02%)</title><rect x="877.6" y="1749" width="0.2" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="880.55" y="1759.5" ></text>
</g>
<g >
<title>__x64_sys_futex (20,202,020 samples, 0.04%)</title><rect x="619.7" y="1781" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="622.68" y="1791.5" ></text>
</g>
<g >
<title>d_absolute_path (232,323,230 samples, 0.51%)</title><rect x="782.1" y="1765" width="6.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="785.06" y="1775.5" ></text>
</g>
<g >
<title>find_lock_entries (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1621" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="27.69" y="1631.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::Handler::~Handler (10,101,010 samples, 0.02%)</title><rect x="250.6" y="1877" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="253.56" y="1887.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::close (10,101,010 samples, 0.02%)</title><rect x="664.5" y="1829" width="0.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="667.54" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::~Iter (30,303,030 samples, 0.07%)</title><rect x="645.6" y="1797" width="0.8" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="648.65" y="1807.5" ></text>
</g>
<g >
<title>leveldb::Version::Unref (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1829" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="27.69" y="1839.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (10,101,010 samples, 0.02%)</title><rect x="656.1" y="1813" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="659.14" y="1823.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (30,303,030 samples, 0.07%)</title><rect x="1135.4" y="1781" width="0.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1138.43" y="1791.5" ></text>
</g>
<g >
<title>leveldb::EncodeVarint32 (20,202,020 samples, 0.04%)</title><rect x="105.0" y="1829" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="107.97" y="1839.5" ></text>
</g>
<g >
<title>__GI___libc_write (2,232,323,210 samples, 4.91%)</title><rect x="363.6" y="1829" width="58.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="366.63" y="1839.5" >__GI__..</text>
</g>
<g >
<title>obj_cgroup_charge (10,101,010 samples, 0.02%)</title><rect x="934.0" y="1781" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="936.96" y="1791.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="699.4" y="1797" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="702.43" y="1807.5" ></text>
</g>
<g >
<title>leveldb::DecodeEntry (60,606,060 samples, 0.13%)</title><rect x="59.3" y="1733" width="1.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="62.32" y="1743.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="692.6" y="1653" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="695.61" y="1663.5" ></text>
</g>
<g >
<title>futex_q_lock (10,101,010 samples, 0.02%)</title><rect x="660.6" y="1669" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="663.60" y="1679.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1829" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="659.93" y="1839.5" ></text>
</g>
<g >
<title>fault_in_readable (40,404,040 samples, 0.09%)</title><rect x="951.0" y="1861" width="1.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="954.01" y="1871.5" ></text>
</g>
<g >
<title>__fsnotify_parent (30,303,030 samples, 0.07%)</title><rect x="145.6" y="1685" width="0.8" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="148.63" y="1695.5" ></text>
</g>
<g >
<title>leveldb::BlockHandle::DecodeFrom (10,101,010 samples, 0.02%)</title><rect x="649.3" y="1797" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="652.32" y="1807.5" ></text>
</g>
<g >
<title>vfs_write (20,202,020 samples, 0.04%)</title><rect x="807.2" y="1941" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="810.25" y="1951.5" ></text>
</g>
<g >
<title>x64_sys_call (60,606,060 samples, 0.13%)</title><rect x="808.8" y="1989" width="1.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="811.82" y="1999.5" ></text>
</g>
<g >
<title>submit_bio_noacct (80,808,080 samples, 0.18%)</title><rect x="1163.5" y="1749" width="2.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1166.50" y="1759.5" ></text>
</g>
<g >
<title>ext4_fill_raw_inode (10,101,010 samples, 0.02%)</title><rect x="877.6" y="1781" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="880.55" y="1791.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_M_lower_bound (10,101,010 samples, 0.02%)</title><rect x="663.2" y="1781" width="0.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="666.22" y="1791.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::_M_pop_front_aux (10,101,010 samples, 0.02%)</title><rect x="588.2" y="1877" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="591.19" y="1887.5" ></text>
</g>
<g >
<title>__find_get_block (10,101,010 samples, 0.02%)</title><rect x="794.4" y="1797" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="797.39" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="713.1" y="1541" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1551.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Valid (20,202,020 samples, 0.04%)</title><rect x="68.2" y="1749" width="0.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="71.24" y="1759.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Next (727,272,720 samples, 1.60%)</title><rect x="50.7" y="1813" width="18.9" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="53.66" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="828.2" y="2021" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="831.23" y="2031.5" ></text>
</g>
<g >
<title>__GI___fileno (20,202,020 samples, 0.04%)</title><rect x="837.9" y="2053" width="0.6" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="840.94" y="2063.5" ></text>
</g>
<g >
<title>fsnotify_handle_inode_event.isra.0 (252,525,250 samples, 0.56%)</title><rect x="397.5" y="1669" width="6.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="400.47" y="1679.5" ></text>
</g>
<g >
<title>std::_Deque_iterator&lt;leveldb::DBImpl::Writer*, leveldb::DBImpl::Writer*&amp;, leveldb::DBImpl::Writer**&gt;::_Deque_iterator (10,101,010 samples, 0.02%)</title><rect x="589.8" y="1829" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="592.77" y="1839.5" ></text>
</g>
<g >
<title>mpt_put_msg_frame (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1349" width="1.5" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="85.67" y="1359.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::BGWorkGC (4,353,535,310 samples, 9.58%)</title><rect x="599.2" y="1957" width="113.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="602.21" y="1967.5" >leveldb::DBIm..</text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_M_get_Tp_allocator (10,101,010 samples, 0.02%)</title><rect x="240.3" y="1813" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="243.33" y="1823.5" ></text>
</g>
<g >
<title>std::allocator_traits&lt;std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::deallocate (30,303,030 samples, 0.07%)</title><rect x="236.7" y="1813" width="0.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="239.66" y="1823.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="1109.7" y="2037" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1112.72" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="693" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="703.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::_S_do_relocate (10,101,010 samples, 0.02%)</title><rect x="212.0" y="1781" width="0.3" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="215.00" y="1791.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::key (10,101,010 samples, 0.02%)</title><rect x="47.5" y="1829" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="50.51" y="1839.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1685" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1168.86" y="1695.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::_M_get_Tp_allocator (10,101,010 samples, 0.02%)</title><rect x="208.9" y="1813" width="0.2" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="211.85" y="1823.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::GetRestartPoint (20,202,020 samples, 0.04%)</title><rect x="636.7" y="1797" width="0.6" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="639.73" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1205" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1215.5" ></text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt;* std::__niter_base&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*&gt; (10,101,010 samples, 0.02%)</title><rect x="666.4" y="1717" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="669.37" y="1727.5" ></text>
</g>
<g >
<title>__x64_sys_futex (80,808,080 samples, 0.18%)</title><rect x="705.2" y="1813" width="2.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="708.20" y="1823.5" ></text>
</g>
<g >
<title>lookup_open.isra.0 (20,202,020 samples, 0.04%)</title><rect x="794.1" y="1893" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="797.13" y="1903.5" ></text>
</g>
<g >
<title>leveldb::EncodeFixed32 (10,101,010 samples, 0.02%)</title><rect x="360.7" y="1877" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="363.75" y="1887.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::end (40,404,040 samples, 0.09%)</title><rect x="199.4" y="1813" width="1.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="202.41" y="1823.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="709.4" y="1829" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="712.40" y="1839.5" ></text>
</g>
<g >
<title>__d_lookup_rcu (30,303,030 samples, 0.07%)</title><rect x="793.1" y="1861" width="0.8" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="796.08" y="1871.5" ></text>
</g>
<g >
<title>__rcu_read_lock (10,101,010 samples, 0.02%)</title><rect x="402.2" y="1589" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="405.20" y="1599.5" ></text>
</g>
<g >
<title>leveldb::operator== (60,606,060 samples, 0.13%)</title><rect x="127.8" y="1829" width="1.6" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="130.79" y="1839.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Iterator::Iterator (10,101,010 samples, 0.02%)</title><rect x="620.7" y="1893" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="623.72" y="1903.5" ></text>
</g>
<g >
<title>lockref_put_return (10,101,010 samples, 0.02%)</title><rect x="404.6" y="1701" width="0.2" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="407.56" y="1711.5" ></text>
</g>
<g >
<title>std::map&lt;unsigned long, unsigned long, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::count (262,626,260 samples, 0.58%)</title><rect x="191.0" y="1845" width="6.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="194.01" y="1855.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::value (121,212,120 samples, 0.27%)</title><rect x="75.3" y="1829" width="3.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="78.32" y="1839.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.02%)</title><rect x="656.1" y="1765" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="659.14" y="1775.5" ></text>
</g>
<g >
<title>page_cache_ra_unbounded (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1829" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1168.86" y="1839.5" ></text>
</g>
<g >
<title>mptspi_qcmd (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1445" width="0.8" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="84.88" y="1455.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list.part.0 (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1525" width="1.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="85.67" y="1535.5" ></text>
</g>
<g >
<title>std::enable_if&lt;std::__and_&lt;std::__not_&lt;std::__is_tuple_like&lt;char const*&gt; &gt;, std::is_move_constructible&lt;char const*&gt;, std::is_move_assignable&lt;char const*&gt; &gt;::value, void&gt;::type std::swap&lt;char const*&gt; (30,303,030 samples, 0.07%)</title><rect x="179.7" y="1877" width="0.8" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="182.73" y="1887.5" ></text>
</g>
<g >
<title>alloc_empty_file (161,616,160 samples, 0.36%)</title><rect x="751.6" y="1909" width="4.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="754.63" y="1919.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_M_deallocate (10,101,010 samples, 0.02%)</title><rect x="665.3" y="1797" width="0.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="668.32" y="1807.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="17.3" y="1829" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="20.35" y="1839.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::end (20,202,020 samples, 0.04%)</title><rect x="207.3" y="1845" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="210.28" y="1855.5" ></text>
</g>
<g >
<title>std::less&lt;unsigned long&gt;::operator (40,404,040 samples, 0.09%)</title><rect x="166.1" y="1797" width="1.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="169.09" y="1807.5" ></text>
</g>
<g >
<title>dget_parent (20,202,020 samples, 0.04%)</title><rect x="1168.8" y="1909" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1171.75" y="1919.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (10,101,010 samples, 0.02%)</title><rect x="146.9" y="1589" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="149.94" y="1599.5" ></text>
</g>
<g >
<title>ext4_block_write_begin (555,555,550 samples, 1.22%)</title><rect x="927.9" y="1861" width="14.5" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="930.92" y="1871.5" ></text>
</g>
<g >
<title>leveldb::Version::Get (1,191,919,180 samples, 2.62%)</title><rect x="624.4" y="1861" width="31.0" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="627.40" y="1871.5" >le..</text>
</g>
<g >
<title>__memcmp_evex_movbe (10,101,010 samples, 0.02%)</title><rect x="622.3" y="1845" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="625.30" y="1855.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="808.0" y="2005" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="811.03" y="2015.5" ></text>
</g>
<g >
<title>__fdget_pos (90,909,090 samples, 0.20%)</title><rect x="1060.7" y="1957" width="2.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1063.67" y="1967.5" ></text>
</g>
<g >
<title>ext4_fill_raw_inode (10,101,010 samples, 0.02%)</title><rect x="679.0" y="1541" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="681.96" y="1551.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="661" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="671.5" ></text>
</g>
<g >
<title>ext4_buffered_write_iter (111,111,110 samples, 0.24%)</title><rect x="678.7" y="1669" width="2.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="681.70" y="1679.5" ></text>
</g>
<g >
<title>__fsnotify_parent (434,343,430 samples, 0.96%)</title><rect x="863.1" y="1941" width="11.3" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="866.13" y="1951.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::~Iter (30,303,030 samples, 0.07%)</title><rect x="645.6" y="1813" width="0.8" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="648.65" y="1823.5" ></text>
</g>
<g >
<title>std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::operator (10,101,010 samples, 0.02%)</title><rect x="165.8" y="1781" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="168.83" y="1791.5" ></text>
</g>
<g >
<title>leveldb::MutexLock::~MutexLock (20,202,020 samples, 0.04%)</title><rect x="660.9" y="1861" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="663.86" y="1871.5" ></text>
</g>
<g >
<title>dput (10,101,010 samples, 0.02%)</title><rect x="977.5" y="1925" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="980.51" y="1935.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (90,909,090 samples, 0.20%)</title><rect x="921.4" y="1717" width="2.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="924.37" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1861" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1871.5" ></text>
</g>
<g >
<title>leveldb::ExtractUserKey (20,202,020 samples, 0.04%)</title><rect x="38.9" y="1829" width="0.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="41.86" y="1839.5" ></text>
</g>
<g >
<title>__x64_sys_write (151,515,150 samples, 0.33%)</title><rect x="145.4" y="1733" width="3.9" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="148.37" y="1743.5" ></text>
</g>
<g >
<title>__gnu_cxx::new_allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt;::_M_max_size (10,101,010 samples, 0.02%)</title><rect x="211.0" y="1733" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="213.95" y="1743.5" ></text>
</g>
<g >
<title>_raw_spin_lock (30,303,030 samples, 0.07%)</title><rect x="985.4" y="1973" width="0.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="988.38" y="1983.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wait (30,303,030 samples, 0.07%)</title><rect x="807.8" y="2037" width="0.8" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="810.77" y="2047.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::size (20,202,020 samples, 0.04%)</title><rect x="130.9" y="1829" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="133.94" y="1839.5" ></text>
</g>
<g >
<title>get_partial_node.part.0 (10,101,010 samples, 0.02%)</title><rect x="931.1" y="1765" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="934.07" y="1775.5" ></text>
</g>
<g >
<title>_int_malloc (10,101,010 samples, 0.02%)</title><rect x="821.2" y="2037" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="824.15" y="2047.5" ></text>
</g>
<g >
<title>shuffle_freelist (10,101,010 samples, 0.02%)</title><rect x="932.4" y="1733" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="935.38" y="1743.5" ></text>
</g>
<g >
<title>mptspi_qcmd (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1285" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="56.29" y="1295.5" ></text>
</g>
<g >
<title>std::__basic_file&lt;char&gt;::xsputn_2 (50,505,050 samples, 0.11%)</title><rect x="1171.9" y="2053" width="1.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1174.90" y="2063.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (30,303,030 samples, 0.07%)</title><rect x="337.9" y="1765" width="0.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="340.92" y="1775.5" ></text>
</g>
<g >
<title>terminate_walk (40,404,040 samples, 0.09%)</title><rect x="795.2" y="1909" width="1.0" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="798.18" y="1919.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="648.5" y="1781" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="651.53" y="1791.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::NumEntries (10,101,010 samples, 0.02%)</title><rect x="161.4" y="1861" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="164.37" y="1871.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::GetMaxHeight (10,101,010 samples, 0.02%)</title><rect x="258.7" y="1797" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="261.70" y="1807.5" ></text>
</g>
<g >
<title>common_interrupt (20,202,020 samples, 0.04%)</title><rect x="629.6" y="1781" width="0.6" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="632.64" y="1791.5" ></text>
</g>
<g >
<title>iput (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1701" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="27.69" y="1711.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (898,989,890 samples, 1.98%)</title><rect x="1139.4" y="1717" width="23.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1142.37" y="1727.5" >b..</text>
</g>
<g >
<title>leveldb::DecodeFixed32 (101,010,100 samples, 0.22%)</title><rect x="425.3" y="1829" width="2.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="428.28" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="149" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="159.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::find (20,202,020 samples, 0.04%)</title><rect x="663.2" y="1797" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="666.22" y="1807.5" ></text>
</g>
<g >
<title>__strstr_sse2 (70,707,070 samples, 0.16%)</title><rect x="813.8" y="2037" width="1.8" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="816.81" y="2047.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::Valid (10,101,010 samples, 0.02%)</title><rect x="63.5" y="1749" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="66.52" y="1759.5" ></text>
</g>
<g >
<title>_int_malloc (10,101,010 samples, 0.02%)</title><rect x="714.9" y="1989" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="717.90" y="1999.5" ></text>
</g>
<g >
<title>_IO_file_finish@@GLIBC_2.2.5 (20,202,020 samples, 0.04%)</title><rect x="725.1" y="2037" width="0.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="728.14" y="2047.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (10,101,010 samples, 0.02%)</title><rect x="924.3" y="1797" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="927.25" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="713.1" y="1461" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1471.5" ></text>
</g>
<g >
<title>std::locale::locale (10,101,010 samples, 0.02%)</title><rect x="722.0" y="2021" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="724.99" y="2031.5" ></text>
</g>
<g >
<title>open_last_lookups (30,303,030 samples, 0.07%)</title><rect x="793.9" y="1909" width="0.8" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="796.87" y="1919.5" ></text>
</g>
<g >
<title>ext4_reserve_inode_write (20,202,020 samples, 0.04%)</title><rect x="679.2" y="1573" width="0.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="682.23" y="1583.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::begin (20,202,020 samples, 0.04%)</title><rect x="700.5" y="1877" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="703.48" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="620.2" y="1813" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="623.20" y="1823.5" ></text>
</g>
<g >
<title>x64_sys_call (121,212,120 samples, 0.27%)</title><rect x="81.9" y="1781" width="3.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="84.88" y="1791.5" ></text>
</g>
<g >
<title>leveldb::ExtractUserKey (10,101,010 samples, 0.02%)</title><rect x="80.6" y="1829" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="83.57" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="713.1" y="1429" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1439.5" ></text>
</g>
<g >
<title>std::mutex::unlock (90,909,090 samples, 0.20%)</title><rect x="697.9" y="1861" width="2.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="700.85" y="1871.5" ></text>
</g>
<g >
<title>path_name (282,828,280 samples, 0.62%)</title><rect x="781.3" y="1813" width="7.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="784.28" y="1823.5" ></text>
</g>
<g >
<title>read_pages (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1493" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="56.29" y="1503.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.02%)</title><rect x="677.9" y="1589" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="680.91" y="1599.5" ></text>
</g>
<g >
<title>security_file_open (727,272,720 samples, 1.60%)</title><rect x="769.7" y="1861" width="18.9" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="772.73" y="1871.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (10,101,010 samples, 0.02%)</title><rect x="146.4" y="1621" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="149.42" y="1631.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::RemoveObsoleteFiles (30,303,030 samples, 0.07%)</title><rect x="11.0" y="1861" width="0.8" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="14.05" y="1871.5" ></text>
</g>
<g >
<title>x64_sys_call (30,303,030 samples, 0.07%)</title><rect x="11.8" y="1765" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="14.84" y="1775.5" ></text>
</g>
<g >
<title>__x64_sys_write (1,272,727,260 samples, 2.80%)</title><rect x="388.3" y="1765" width="33.0" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="391.29" y="1775.5" >__..</text>
</g>
<g >
<title>std::atomic&lt;leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node*&gt;::store (10,101,010 samples, 0.02%)</title><rect x="347.9" y="1797" width="0.3" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="350.89" y="1807.5" ></text>
</g>
<g >
<title>__GI___unlink (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1797" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="27.69" y="1807.5" ></text>
</g>
<g >
<title>lockref_put_return (10,101,010 samples, 0.02%)</title><rect x="795.2" y="1893" width="0.2" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="798.18" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1765" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="826.9" y="2021" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="829.92" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1813" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1823.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wait (30,303,030 samples, 0.07%)</title><rect x="619.4" y="1845" width="0.8" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="622.41" y="1855.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::LRUCache::LRU_Append (10,101,010 samples, 0.02%)</title><rect x="626.0" y="1797" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="628.97" y="1807.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::_M_allocate_internal_buffer (10,101,010 samples, 0.02%)</title><rect x="825.9" y="2037" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="828.87" y="2047.5" ></text>
</g>
<g >
<title>__ext4_find_entry (10,101,010 samples, 0.02%)</title><rect x="794.4" y="1861" width="0.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="797.39" y="1871.5" ></text>
</g>
<g >
<title>ext4_readahead (111,111,110 samples, 0.24%)</title><rect x="1163.0" y="1797" width="2.9" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1165.98" y="1807.5" ></text>
</g>
<g >
<title>__cond_resched (10,101,010 samples, 0.02%)</title><rect x="868.4" y="1861" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="871.37" y="1871.5" ></text>
</g>
<g >
<title>std::operator- (10,101,010 samples, 0.02%)</title><rect x="590.8" y="1829" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="593.82" y="1839.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="1128.1" y="1861" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1131.09" y="1871.5" ></text>
</g>
<g >
<title>leveldb::operator== (10,101,010 samples, 0.02%)</title><rect x="158.5" y="1845" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="161.48" y="1855.5" ></text>
</g>
<g >
<title>ksys_lseek (151,515,150 samples, 0.33%)</title><rect x="1060.4" y="1973" width="3.9" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1063.40" y="1983.5" ></text>
</g>
<g >
<title>unlink_chunk.constprop.0 (20,202,020 samples, 0.04%)</title><rect x="1189.5" y="2053" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1192.48" y="2063.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::~WriteBatch (10,101,010 samples, 0.02%)</title><rect x="236.1" y="1861" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="239.14" y="1871.5" ></text>
</g>
<g >
<title>std::_Deque_iterator&lt;leveldb::DBImpl::Writer*, leveldb::DBImpl::Writer*&amp;, leveldb::DBImpl::Writer**&gt;::_M_set_node (10,101,010 samples, 0.02%)</title><rect x="590.6" y="1845" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="593.56" y="1855.5" ></text>
</g>
<g >
<title>std::ios_base::_M_dispose_callbacks (20,202,020 samples, 0.04%)</title><rect x="226.2" y="1861" width="0.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="229.17" y="1871.5" ></text>
</g>
<g >
<title>ksys_write (202,020,200 samples, 0.44%)</title><rect x="676.3" y="1717" width="5.3" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="679.34" y="1727.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::xsputn (10,101,010 samples, 0.02%)</title><rect x="1183.4" y="2053" width="0.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="1186.44" y="2063.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixWritableFile::FlushBuffer (2,262,626,240 samples, 4.98%)</title><rect x="363.4" y="1845" width="58.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="366.37" y="1855.5" >leveld..</text>
</g>
<g >
<title>__GI___lll_lock_wait (20,202,020 samples, 0.04%)</title><rect x="660.3" y="1813" width="0.6" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="663.34" y="1823.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::_M_terminate_output (30,303,030 samples, 0.07%)</title><rect x="1180.3" y="2053" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1183.29" y="2063.5" ></text>
</g>
<g >
<title>std::ios_base::~ios_base (50,505,050 samples, 0.11%)</title><rect x="828.2" y="2037" width="1.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="831.23" y="2047.5" ></text>
</g>
<g >
<title>__ext4_journal_stop (10,101,010 samples, 0.02%)</title><rect x="678.7" y="1589" width="0.3" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="681.70" y="1599.5" ></text>
</g>
<g >
<title>futex_wake_mark (10,101,010 samples, 0.02%)</title><rect x="1076.4" y="1941" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="1079.41" y="1951.5" ></text>
</g>
<g >
<title>__memmove_evex_unaligned_erms (90,909,090 samples, 0.20%)</title><rect x="183.1" y="1861" width="2.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="186.14" y="1871.5" ></text>
</g>
<g >
<title>leveldb::EncodeVarint32 (10,101,010 samples, 0.02%)</title><rect x="593.2" y="1877" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="596.18" y="1887.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::Iterate (3,969,696,930 samples, 8.74%)</title><rect x="250.8" y="1877" width="103.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="253.83" y="1887.5" >leveldb::Wri..</text>
</g>
<g >
<title>__mark_inode_dirty (40,404,040 samples, 0.09%)</title><rect x="678.7" y="1621" width="1.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="681.70" y="1631.5" ></text>
</g>
<g >
<title>inode_permission (10,101,010 samples, 0.02%)</title><rect x="760.3" y="1877" width="0.3" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="763.29" y="1887.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (20,202,020 samples, 0.04%)</title><rect x="19.2" y="1797" width="0.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="22.18" y="1807.5" ></text>
</g>
<g >
<title>__find_get_block (10,101,010 samples, 0.02%)</title><rect x="878.1" y="1749" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="881.08" y="1759.5" ></text>
</g>
<g >
<title>__submit_bio (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1557" width="0.6" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="14.84" y="1567.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (20,202,020 samples, 0.04%)</title><rect x="399.6" y="1621" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="402.57" y="1631.5" ></text>
</g>
<g >
<title>consume_obj_stock (10,101,010 samples, 0.02%)</title><rect x="871.8" y="1845" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="874.78" y="1855.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_append (10,101,010 samples, 0.02%)</title><rect x="219.3" y="1861" width="0.3" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="222.35" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="133" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="143.5" ></text>
</g>
<g >
<title>__legitimize_mnt (10,101,010 samples, 0.02%)</title><rect x="757.7" y="1845" width="0.2" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="760.67" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1797" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1807.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::pop_front (30,303,030 samples, 0.07%)</title><rect x="587.9" y="1893" width="0.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="590.93" y="1903.5" ></text>
</g>
<g >
<title>std::mutex::lock (212,121,210 samples, 0.47%)</title><rect x="702.6" y="1893" width="5.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="705.57" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (80,808,080 samples, 0.18%)</title><rect x="713.1" y="2005" width="2.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="2015.5" ></text>
</g>
<g >
<title>strlen (10,101,010 samples, 0.02%)</title><rect x="873.9" y="1877" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="876.88" y="1887.5" ></text>
</g>
<g >
<title>std::_Rb_tree_node&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_valptr (10,101,010 samples, 0.02%)</title><rect x="165.6" y="1781" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="168.57" y="1791.5" ></text>
</g>
<g >
<title>n_tty_write (10,101,010 samples, 0.02%)</title><rect x="807.2" y="1877" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="810.25" y="1887.5" ></text>
</g>
<g >
<title>_raw_spin_lock (20,202,020 samples, 0.04%)</title><rect x="863.7" y="1925" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="866.65" y="1935.5" ></text>
</g>
<g >
<title>ext4_da_write_begin (20,202,020 samples, 0.04%)</title><rect x="406.4" y="1685" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="409.39" y="1695.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::WriteValueLog (1,080,808,070 samples, 2.38%)</title><rect x="186.0" y="1861" width="28.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="189.03" y="1871.5" >l..</text>
</g>
<g >
<title>dput (10,101,010 samples, 0.02%)</title><rect x="953.4" y="1941" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="956.37" y="1951.5" ></text>
</g>
<g >
<title>_IO_old_init (20,202,020 samples, 0.04%)</title><rect x="725.9" y="2037" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="728.92" y="2047.5" ></text>
</g>
<g >
<title>__memmove_evex_unaligned_erms (10,101,010 samples, 0.02%)</title><rect x="662.2" y="1829" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="665.17" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Table::InternalGet (10,101,010 samples, 0.02%)</title><rect x="625.4" y="1845" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="628.45" y="1855.5" ></text>
</g>
<g >
<title>ext4_journal_check_start (10,101,010 samples, 0.02%)</title><rect x="877.3" y="1813" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="880.29" y="1823.5" ></text>
</g>
<g >
<title>get_futex_key (20,202,020 samples, 0.04%)</title><rect x="442.9" y="1749" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="445.86" y="1759.5" ></text>
</g>
<g >
<title>leveldb::MutexLock::MutexLock (30,303,030 samples, 0.07%)</title><rect x="177.4" y="1893" width="0.8" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="180.37" y="1903.5" ></text>
</g>
<g >
<title>operator delete (10,101,010 samples, 0.02%)</title><rect x="694.7" y="1877" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="697.70" y="1887.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_S_key (20,202,020 samples, 0.04%)</title><rect x="165.6" y="1797" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="168.57" y="1807.5" ></text>
</g>
<g >
<title>leveldb::GetLengthPrefixedSlice (10,101,010 samples, 0.02%)</title><rect x="355.8" y="1877" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="358.76" y="1887.5" ></text>
</g>
<g >
<title>common_interrupt (20,202,020 samples, 0.04%)</title><rect x="298.8" y="1765" width="0.6" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="301.84" y="1775.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="400.9" y="1637" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="403.88" y="1647.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::_M_get_Tp_allocator (10,101,010 samples, 0.02%)</title><rect x="210.2" y="1797" width="0.2" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="213.16" y="1807.5" ></text>
</g>
<g >
<title>mptscsih_qcmd (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1349" width="0.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="14.84" y="1359.5" ></text>
</g>
<g >
<title>wake_up_q (10,101,010 samples, 0.02%)</title><rect x="178.7" y="1733" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="181.68" y="1743.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::Valid (10,101,010 samples, 0.02%)</title><rect x="53.5" y="1749" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="56.55" y="1759.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="787.6" y="1637" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="790.57" y="1647.5" ></text>
</g>
<g >
<title>ext4_bio_write_folio (30,303,030 samples, 0.07%)</title><rect x="84.2" y="1589" width="0.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="87.24" y="1599.5" ></text>
</g>
<g >
<title>inotify_handle_inode_event (10,101,010 samples, 0.02%)</title><rect x="404.0" y="1669" width="0.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="407.03" y="1679.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (10,101,010 samples, 0.02%)</title><rect x="85.0" y="1829" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="88.03" y="1839.5" ></text>
</g>
<g >
<title>current_obj_cgroup (10,101,010 samples, 0.02%)</title><rect x="929.8" y="1797" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="932.76" y="1807.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;::__normal_iterator (10,101,010 samples, 0.02%)</title><rect x="240.1" y="1813" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="243.07" y="1823.5" ></text>
</g>
<g >
<title>leveldb::MemTable::KeyComparator::operator (313,131,310 samples, 0.69%)</title><rect x="609.7" y="1829" width="8.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="612.71" y="1839.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Lock (212,121,210 samples, 0.47%)</title><rect x="702.6" y="1909" width="5.5" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="705.57" y="1919.5" ></text>
</g>
<g >
<title>std::allocator_traits&lt;std::allocator&lt;leveldb::Slice&gt; &gt;::allocate (50,505,050 samples, 0.11%)</title><rect x="357.1" y="1797" width="1.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="360.07" y="1807.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::KeyIsAfterNode (646,464,640 samples, 1.42%)</title><rect x="601.0" y="1845" width="16.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="604.05" y="1855.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_append (20,202,020 samples, 0.04%)</title><rect x="158.7" y="1845" width="0.6" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="161.75" y="1855.5" ></text>
</g>
<g >
<title>__folio_start_writeback (20,202,020 samples, 0.04%)</title><rect x="84.2" y="1573" width="0.6" height="15.0" fill="rgb(209,20,5)" rx="2" ry="2" />
<text x="87.24" y="1583.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="682.6" y="1797" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="685.64" y="1807.5" ></text>
</g>
<g >
<title>do_open (1,292,929,280 samples, 2.85%)</title><rect x="755.8" y="1909" width="33.6" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="758.83" y="1919.5" >do..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.02%)</title><rect x="1139.9" y="1573" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1142.89" y="1583.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="672.1" y="1717" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="675.14" y="1727.5" ></text>
</g>
<g >
<title>leveldb::VersionSet::NumLevelFiles (30,303,030 samples, 0.07%)</title><rect x="175.3" y="1877" width="0.8" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="178.27" y="1887.5" ></text>
</g>
<g >
<title>alloc_buffer_head (10,101,010 samples, 0.02%)</title><rect x="148.0" y="1573" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="150.99" y="1583.5" ></text>
</g>
<g >
<title>mpt_put_msg_frame (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1333" width="0.6" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="14.84" y="1343.5" ></text>
</g>
<g >
<title>irq_exit_rcu (20,202,020 samples, 0.04%)</title><rect x="629.6" y="1765" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="632.64" y="1775.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (10,101,010 samples, 0.02%)</title><rect x="666.9" y="1829" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="669.90" y="1839.5" ></text>
</g>
<g >
<title>generic_update_time (50,505,050 samples, 0.11%)</title><rect x="877.0" y="1877" width="1.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="880.03" y="1887.5" ></text>
</g>
<g >
<title>page_cache_async_ra (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1557" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="56.29" y="1567.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Update (10,101,010 samples, 0.02%)</title><rect x="50.4" y="1797" width="0.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="53.40" y="1807.5" ></text>
</g>
<g >
<title>leveldb::crc32c::Extend (30,303,030 samples, 0.07%)</title><rect x="681.8" y="1829" width="0.8" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="684.85" y="1839.5" ></text>
</g>
<g >
<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.02%)</title><rect x="405.9" y="1685" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="408.87" y="1695.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Update (10,101,010 samples, 0.02%)</title><rect x="64.3" y="1781" width="0.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="67.30" y="1791.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="54.1" y="1637" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="57.07" y="1647.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (20,202,020 samples, 0.04%)</title><rect x="248.5" y="1877" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="251.47" y="1887.5" ></text>
</g>
<g >
<title>leveldb::Table::BlockReader (20,202,020 samples, 0.04%)</title><rect x="53.0" y="1749" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="56.02" y="1759.5" ></text>
</g>
<g >
<title>scsi_queue_rq (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1637" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1168.86" y="1647.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_append (30,303,030 samples, 0.07%)</title><rect x="129.4" y="1829" width="0.8" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="132.36" y="1839.5" ></text>
</g>
<g >
<title>__srcu_read_lock (10,101,010 samples, 0.02%)</title><rect x="393.5" y="1701" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="396.54" y="1711.5" ></text>
</g>
<g >
<title>__x64_sys_futex (10,101,010 samples, 0.02%)</title><rect x="682.6" y="1765" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="685.64" y="1775.5" ></text>
</g>
<g >
<title>__aa_path_perm (161,616,160 samples, 0.36%)</title><rect x="773.4" y="1813" width="4.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="776.41" y="1823.5" ></text>
</g>
<g >
<title>leveldb::VersionSet::AppendVersion (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1845" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="27.69" y="1855.5" ></text>
</g>
<g >
<title>std::__basic_file&lt;char&gt;::is_open (20,202,020 samples, 0.04%)</title><rect x="218.3" y="1861" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="221.30" y="1871.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="135.7" y="1781" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="138.66" y="1791.5" ></text>
</g>
<g >
<title>leveldb::Status::Status (10,101,010 samples, 0.02%)</title><rect x="646.7" y="1797" width="0.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="649.70" y="1807.5" ></text>
</g>
<g >
<title>std::operator&amp; (10,101,010 samples, 0.02%)</title><rect x="258.7" y="1781" width="0.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="261.70" y="1791.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,101,010 samples, 0.02%)</title><rect x="805.4" y="1941" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="808.41" y="1951.5" ></text>
</g>
<g >
<title>std::vector&lt;leveldb::FileMetaData*, std::allocator&lt;leveldb::FileMetaData*&gt; &gt;::begin (10,101,010 samples, 0.02%)</title><rect x="655.4" y="1845" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="658.35" y="1855.5" ></text>
</g>
<g >
<title>exc_page_fault (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1701" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="56.29" y="1711.5" ></text>
</g>
<g >
<title>leveldb::Iterator::CleanupNode::Run (30,303,030 samples, 0.07%)</title><rect x="645.6" y="1765" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="648.65" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1621" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1631.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (10,101,010 samples, 0.02%)</title><rect x="646.4" y="1781" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="649.43" y="1791.5" ></text>
</g>
<g >
<title>vfs_read (2,040,404,020 samples, 4.49%)</title><rect x="1117.9" y="1957" width="52.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1120.86" y="1967.5" >vfs_r..</text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::append (10,101,010 samples, 0.02%)</title><rect x="190.5" y="1813" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="193.49" y="1823.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::data (10,101,010 samples, 0.02%)</title><rect x="624.1" y="1845" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="627.14" y="1855.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="648.5" y="1717" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="651.53" y="1727.5" ></text>
</g>
<g >
<title>try_to_free_buffers (10,101,010 samples, 0.02%)</title><rect x="11.6" y="1573" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="14.57" y="1583.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1717" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="56.29" y="1727.5" ></text>
</g>
<g >
<title>strlen (10,101,010 samples, 0.02%)</title><rect x="403.8" y="1653" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="406.77" y="1663.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_M_allocate (20,202,020 samples, 0.04%)</title><rect x="230.9" y="1813" width="0.5" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="233.89" y="1823.5" ></text>
</g>
<g >
<title>ksys_write (20,202,020 samples, 0.04%)</title><rect x="22.6" y="1685" width="0.5" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="25.59" y="1695.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1621" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="1168.86" y="1631.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::LRUCache::Ref (10,101,010 samples, 0.02%)</title><rect x="654.8" y="1797" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="657.83" y="1807.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Unlock (20,202,020 samples, 0.04%)</title><rect x="620.2" y="1877" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="623.20" y="1887.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::size (20,202,020 samples, 0.04%)</title><rect x="207.8" y="1845" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="210.80" y="1855.5" ></text>
</g>
<g >
<title>blk_add_rq_to_plug (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1525" width="0.6" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="14.84" y="1535.5" ></text>
</g>
<g >
<title>__gnu_cxx::__aligned_membuf&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_addr (20,202,020 samples, 0.04%)</title><rect x="193.4" y="1749" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="196.37" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="629" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="639.5" ></text>
</g>
<g >
<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.02%)</title><rect x="679.0" y="1557" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="681.96" y="1567.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="1128.1" y="1845" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1131.09" y="1855.5" ></text>
</g>
<g >
<title>_itoa_word (10,101,010 samples, 0.02%)</title><rect x="821.4" y="2037" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="824.41" y="2047.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::close (60,606,060 samples, 0.13%)</title><rect x="221.7" y="1861" width="1.6" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="224.71" y="1871.5" ></text>
</g>
<g >
<title>__GI___libc_write (20,202,020 samples, 0.04%)</title><rect x="22.6" y="1765" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="25.59" y="1775.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ShardedLRUCache::Lookup (20,202,020 samples, 0.04%)</title><rect x="648.0" y="1797" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="651.01" y="1807.5" ></text>
</g>
<g >
<title>__submit_bio (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1573" width="1.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="85.67" y="1583.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1365" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="56.29" y="1375.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_S_key (121,212,120 samples, 0.27%)</title><rect x="202.0" y="1781" width="3.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="205.03" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="713.1" y="1605" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1615.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (20,202,020 samples, 0.04%)</title><rect x="46.2" y="1813" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="49.20" y="1823.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixWritableFile::Flush (272,727,270 samples, 0.60%)</title><rect x="674.8" y="1829" width="7.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="677.77" y="1839.5" ></text>
</g>
<g >
<title>aa_path_perm (606,060,600 samples, 1.33%)</title><rect x="772.9" y="1829" width="15.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="775.88" y="1839.5" ></text>
</g>
<g >
<title>copy_page_to_iter (292,929,290 samples, 0.64%)</title><rect x="1120.2" y="1893" width="7.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1123.22" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="597" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="607.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::~_Vector_base (40,404,040 samples, 0.09%)</title><rect x="236.4" y="1845" width="1.0" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="239.40" y="1855.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (10,101,010 samples, 0.02%)</title><rect x="11.6" y="1525" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="14.57" y="1535.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::CompactionState::current_output (30,303,030 samples, 0.07%)</title><rect x="81.1" y="1861" width="0.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="84.09" y="1871.5" ></text>
</g>
<g >
<title>consume_stock (10,101,010 samples, 0.02%)</title><rect x="895.1" y="1797" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="898.13" y="1807.5" ></text>
</g>
<g >
<title>do_user_addr_fault (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1685" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="56.29" y="1695.5" ></text>
</g>
<g >
<title>dquot_file_open (10,101,010 samples, 0.02%)</title><rect x="764.7" y="1861" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="767.75" y="1871.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::~vector (30,303,030 samples, 0.07%)</title><rect x="233.3" y="1861" width="0.7" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="236.25" y="1871.5" ></text>
</g>
<g >
<title>submit_bio_noacct_nocheck (80,808,080 samples, 0.18%)</title><rect x="1163.5" y="1733" width="2.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1166.50" y="1743.5" ></text>
</g>
<g >
<title>leveldb::ReadBlock (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1733" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="56.29" y="1743.5" ></text>
</g>
<g >
<title>mpage_submit_folio (30,303,030 samples, 0.07%)</title><rect x="84.2" y="1605" width="0.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="87.24" y="1615.5" ></text>
</g>
<g >
<title>radix_tree_lookup (10,101,010 samples, 0.02%)</title><rect x="884.9" y="1845" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="887.90" y="1855.5" ></text>
</g>
<g >
<title>std::_Rb_tree_const_iterator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_Rb_tree_const_iterator (10,101,010 samples, 0.02%)</title><rect x="197.3" y="1829" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="200.31" y="1839.5" ></text>
</g>
<g >
<title>std::vector&lt;leveldb::FileMetaData*, std::allocator&lt;leveldb::FileMetaData*&gt; &gt;::max_size (10,101,010 samples, 0.02%)</title><rect x="655.6" y="1845" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="658.62" y="1855.5" ></text>
</g>
<g >
<title>do_syscall_64 (30,303,030 samples, 0.07%)</title><rect x="428.2" y="1829" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="431.17" y="1839.5" ></text>
</g>
<g >
<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1669" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1168.86" y="1679.5" ></text>
</g>
<g >
<title>do_syscall_64 (30,303,030 samples, 0.07%)</title><rect x="11.8" y="1781" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="14.84" y="1791.5" ></text>
</g>
<g >
<title>ext4_get_inode_loc (10,101,010 samples, 0.02%)</title><rect x="408.0" y="1589" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="410.97" y="1599.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="15.2" y="1797" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="18.25" y="1807.5" ></text>
</g>
<g >
<title>strncpy_from_user (161,616,160 samples, 0.36%)</title><rect x="800.4" y="1909" width="4.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="803.43" y="1919.5" ></text>
</g>
<g >
<title>ext4_sync_file (121,212,120 samples, 0.27%)</title><rect x="81.9" y="1749" width="3.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="84.88" y="1759.5" ></text>
</g>
<g >
<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1349" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="56.29" y="1359.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (10,101,010 samples, 0.02%)</title><rect x="217.0" y="1829" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="219.99" y="1839.5" ></text>
</g>
<g >
<title>__blk_mq_do_dispatch_sched (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1429" width="0.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="14.84" y="1439.5" ></text>
</g>
<g >
<title>mpage_submit_folio (10,101,010 samples, 0.02%)</title><rect x="12.4" y="1589" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="15.36" y="1599.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::back (10,101,010 samples, 0.02%)</title><rect x="209.1" y="1813" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="212.12" y="1823.5" ></text>
</g>
<g >
<title>kmem_cache_free (40,404,040 samples, 0.09%)</title><rect x="982.2" y="1925" width="1.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="985.23" y="1935.5" ></text>
</g>
<g >
<title>ext4_inode_csum (10,101,010 samples, 0.02%)</title><rect x="679.0" y="1509" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="681.96" y="1519.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="697.3" y="1797" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="700.33" y="1807.5" ></text>
</g>
<g >
<title>__rcu_read_lock (10,101,010 samples, 0.02%)</title><rect x="766.3" y="1813" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="769.32" y="1823.5" ></text>
</g>
<g >
<title>vfs_write (20,202,020 samples, 0.04%)</title><rect x="22.6" y="1669" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="25.59" y="1679.5" ></text>
</g>
<g >
<title>__x64_sys_read (2,070,707,050 samples, 4.56%)</title><rect x="1117.1" y="1989" width="53.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1120.07" y="1999.5" >__x64..</text>
</g>
<g >
<title>leveldb::ExtractUserKey (50,505,050 samples, 0.11%)</title><rect x="615.5" y="1797" width="1.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="618.48" y="1807.5" ></text>
</g>
<g >
<title>ksys_write (20,202,020 samples, 0.04%)</title><rect x="807.2" y="1957" width="0.6" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="810.25" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="805" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="815.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (111,111,110 samples, 0.24%)</title><rect x="124.9" y="1829" width="2.9" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="127.90" y="1839.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (10,101,010 samples, 0.02%)</title><rect x="237.2" y="1797" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="240.19" y="1807.5" ></text>
</g>
<g >
<title>is_vmalloc_addr (30,303,030 samples, 0.07%)</title><rect x="803.6" y="1861" width="0.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="806.57" y="1871.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,575,757,550 samples, 5.67%)</title><rect x="740.4" y="2021" width="66.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="743.35" y="2031.5" >entry_S..</text>
</g>
<g >
<title>bool std::has_facet&lt;std::ctype&lt;char&gt; &gt; (20,202,020 samples, 0.04%)</title><rect x="717.8" y="2021" width="0.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="720.79" y="2031.5" ></text>
</g>
<g >
<title>lockref_get (10,101,010 samples, 0.02%)</title><rect x="768.7" y="1861" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="771.68" y="1871.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (20,202,020 samples, 0.04%)</title><rect x="113.6" y="1829" width="0.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="116.62" y="1839.5" ></text>
</g>
<g >
<title>do_dentry_open (10,101,010 samples, 0.02%)</title><rect x="757.9" y="1893" width="0.3" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="760.93" y="1903.5" ></text>
</g>
<g >
<title>memcpy@plt (10,101,010 samples, 0.02%)</title><rect x="217.5" y="1861" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="220.51" y="1871.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::~basic_string (20,202,020 samples, 0.04%)</title><rect x="220.7" y="1861" width="0.5" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="223.66" y="1871.5" ></text>
</g>
<g >
<title>kfree (10,101,010 samples, 0.02%)</title><rect x="872.6" y="1829" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="875.57" y="1839.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::NewNode (60,606,060 samples, 0.13%)</title><rect x="344.7" y="1813" width="1.6" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="347.74" y="1823.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::resize (20,202,020 samples, 0.04%)</title><rect x="597.6" y="1909" width="0.6" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="600.64" y="1919.5" ></text>
</g>
<g >
<title>__futex_wait (10,101,010 samples, 0.02%)</title><rect x="682.6" y="1717" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="685.64" y="1727.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (30,303,030 samples, 0.07%)</title><rect x="400.1" y="1637" width="0.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="403.10" y="1647.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::LRUCache::Ref (10,101,010 samples, 0.02%)</title><rect x="653.8" y="1781" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="656.78" y="1791.5" ></text>
</g>
<g >
<title>inotify_handle_inode_event (252,525,250 samples, 0.56%)</title><rect x="867.3" y="1877" width="6.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="870.32" y="1887.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (10,101,010 samples, 0.02%)</title><rect x="955.2" y="2021" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="958.21" y="2031.5" ></text>
</g>
<g >
<title>ext4_reserve_inode_write (10,101,010 samples, 0.02%)</title><rect x="878.1" y="1813" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="881.08" y="1823.5" ></text>
</g>
<g >
<title>do_syscall_64 (30,303,030 samples, 0.07%)</title><rect x="11.0" y="1813" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="14.05" y="1823.5" ></text>
</g>
<g >
<title>leveldb::EncodeVarint32 (20,202,020 samples, 0.04%)</title><rect x="253.2" y="1829" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="256.19" y="1839.5" ></text>
</g>
<g >
<title>__legitimize_path (10,101,010 samples, 0.02%)</title><rect x="757.7" y="1861" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="760.67" y="1871.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;leveldb::FileMetaData*, std::allocator&lt;leveldb::FileMetaData*&gt; &gt;::_Vector_impl_data::_Vector_impl_data (10,101,010 samples, 0.02%)</title><rect x="656.1" y="1829" width="0.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="659.14" y="1839.5" ></text>
</g>
<g >
<title>std::thread::_Invoker&lt;std::tuple&lt;void (27,040,403,770 samples, 59.52%)</title><rect x="10.0" y="2021" width="702.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="13.00" y="2031.5" >std::thread::_Invoker&lt;std::tuple&lt;void </text>
</g>
<g >
<title>up_write (20,202,020 samples, 0.04%)</title><rect x="940.5" y="1813" width="0.5" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="943.52" y="1823.5" ></text>
</g>
<g >
<title>d_absolute_path (10,101,010 samples, 0.02%)</title><rect x="781.3" y="1781" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="784.28" y="1791.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="44.9" y="1813" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="47.89" y="1823.5" ></text>
</g>
<g >
<title>xas_start (20,202,020 samples, 0.04%)</title><rect x="927.1" y="1813" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="930.14" y="1823.5" ></text>
</g>
<g >
<title>std::ios_base::_M_dispose_callbacks (10,101,010 samples, 0.02%)</title><rect x="665.1" y="1829" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="668.06" y="1839.5" ></text>
</g>
<g >
<title>leveldb::BlockHandle::DecodeFrom (10,101,010 samples, 0.02%)</title><rect x="52.8" y="1749" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="55.76" y="1759.5" ></text>
</g>
<g >
<title>__x64_sys_futex (60,606,060 samples, 0.13%)</title><rect x="808.8" y="1973" width="1.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="811.82" y="1983.5" ></text>
</g>
<g >
<title>process_echoes (10,101,010 samples, 0.02%)</title><rect x="807.2" y="1861" width="0.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="810.25" y="1871.5" ></text>
</g>
<g >
<title>__gnu_cxx::__aligned_membuf&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_addr (10,101,010 samples, 0.02%)</title><rect x="199.1" y="1797" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="202.15" y="1807.5" ></text>
</g>
<g >
<title>__find_get_block_slow (10,101,010 samples, 0.02%)</title><rect x="794.4" y="1781" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="797.39" y="1791.5" ></text>
</g>
<g >
<title>x64_sys_call (5,575,757,520 samples, 12.27%)</title><rect x="439.2" y="1813" width="144.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="442.19" y="1823.5" >x64_sys_call</text>
</g>
<g >
<title>std::__basic_file&lt;char&gt;::fd (10,101,010 samples, 0.02%)</title><rect x="1170.8" y="2053" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1173.85" y="2063.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (20,202,020 samples, 0.04%)</title><rect x="128.8" y="1813" width="0.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="131.84" y="1823.5" ></text>
</g>
<g >
<title>__strlen_evex (10,101,010 samples, 0.02%)</title><rect x="813.5" y="2037" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="816.54" y="2047.5" ></text>
</g>
<g >
<title>std::basic_fstream&lt;char, std::char_traits&lt;char&gt; &gt;::~basic_fstream (30,303,030 samples, 0.07%)</title><rect x="224.6" y="1861" width="0.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="227.59" y="1871.5" ></text>
</g>
<g >
<title>ext4_inode_csum_set (10,101,010 samples, 0.02%)</title><rect x="679.0" y="1525" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="681.96" y="1535.5" ></text>
</g>
<g >
<title>__alloc_pages (40,404,040 samples, 0.09%)</title><rect x="931.3" y="1733" width="1.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="934.33" y="1743.5" ></text>
</g>
<g >
<title>x64_sys_call (2,222,222,200 samples, 4.89%)</title><rect x="749.5" y="1989" width="57.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="752.53" y="1999.5" >x64_sy..</text>
</g>
<g >
<title>folio_alloc_buffers (10,101,010 samples, 0.02%)</title><rect x="148.0" y="1589" width="0.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="150.99" y="1599.5" ></text>
</g>
<g >
<title>__memmove_evex_unaligned_erms (20,202,020 samples, 0.04%)</title><rect x="251.6" y="1845" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="254.61" y="1855.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::status (10,101,010 samples, 0.02%)</title><rect x="626.8" y="1829" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="629.76" y="1839.5" ></text>
</g>
<g >
<title>folio_unlock (30,303,030 samples, 0.07%)</title><rect x="418.5" y="1669" width="0.7" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="421.46" y="1679.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixWritableFile::Append (20,202,020 samples, 0.04%)</title><rect x="362.6" y="1861" width="0.5" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="365.58" y="1871.5" ></text>
</g>
<g >
<title>ktime_get_coarse_real_ts64 (10,101,010 samples, 0.02%)</title><rect x="408.8" y="1653" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="411.76" y="1663.5" ></text>
</g>
<g >
<title>__dynamic_cast (30,303,030 samples, 0.07%)</title><rect x="811.4" y="2005" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="814.45" y="2015.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Next (959,595,950 samples, 2.11%)</title><rect x="48.0" y="1845" width="25.0" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="51.04" y="1855.5" >l..</text>
</g>
<g >
<title>__memcmp_evex_movbe (10,101,010 samples, 0.02%)</title><rect x="354.5" y="1861" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="357.45" y="1871.5" ></text>
</g>
<g >
<title>__fsnotify_parent (50,505,050 samples, 0.11%)</title><rect x="977.2" y="1941" width="1.4" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="980.24" y="1951.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1797" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="13.79" y="1807.5" ></text>
</g>
<g >
<title>unsigned long const&amp; std::min&lt;unsigned long&gt; (10,101,010 samples, 0.02%)</title><rect x="211.5" y="1749" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="214.48" y="1759.5" ></text>
</g>
<g >
<title>leveldb::ExtractUserKey (60,606,060 samples, 0.13%)</title><rect x="634.4" y="1765" width="1.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="637.37" y="1775.5" ></text>
</g>
<g >
<title>mptscsih_qcmd (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1269" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="56.29" y="1279.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1493" width="1.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="85.67" y="1503.5" ></text>
</g>
<g >
<title>__filemap_add_folio (111,111,110 samples, 0.24%)</title><rect x="1132.5" y="1797" width="2.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1135.55" y="1807.5" ></text>
</g>
<g >
<title>leveldb::MemTableIterator::Valid (10,101,010 samples, 0.02%)</title><rect x="12.6" y="1829" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="15.62" y="1839.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="808.3" y="1877" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="811.30" y="1887.5" ></text>
</g>
<g >
<title>__srcu_read_lock (20,202,020 samples, 0.04%)</title><rect x="395.4" y="1685" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="398.38" y="1695.5" ></text>
</g>
<g >
<title>ksys_write (10,101,010 samples, 0.02%)</title><rect x="421.3" y="1765" width="0.3" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="424.35" y="1775.5" ></text>
</g>
<g >
<title>create_empty_buffers (232,323,230 samples, 0.51%)</title><rect x="928.4" y="1845" width="6.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="931.45" y="1855.5" ></text>
</g>
<g >
<title>aa_str_perms (10,101,010 samples, 0.02%)</title><rect x="781.0" y="1813" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="784.01" y="1823.5" ></text>
</g>
<g >
<title>import_iovec (10,101,010 samples, 0.02%)</title><rect x="954.4" y="1941" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="957.42" y="1951.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::seekoff (50,505,050 samples, 0.11%)</title><rect x="1181.1" y="2053" width="1.3" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="1184.08" y="2063.5" ></text>
</g>
<g >
<title>x64_sys_call (545,454,540 samples, 1.20%)</title><rect x="974.1" y="2005" width="14.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="977.10" y="2015.5" ></text>
</g>
<g >
<title>leveldb::MutexLock::MutexLock (20,202,020 samples, 0.04%)</title><rect x="660.3" y="1861" width="0.6" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="663.34" y="1871.5" ></text>
</g>
<g >
<title>truncate_inode_pages_final (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1717" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="659.93" y="1727.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="170.0" y="1893" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="173.03" y="1903.5" ></text>
</g>
<g >
<title>std::condition_variable::~condition_variable (10,101,010 samples, 0.02%)</title><rect x="177.1" y="1877" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="180.11" y="1887.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::empty (10,101,010 samples, 0.02%)</title><rect x="159.8" y="1845" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="162.80" y="1855.5" ></text>
</g>
<g >
<title>futex_wake (40,404,040 samples, 0.09%)</title><rect x="809.3" y="1941" width="1.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="812.35" y="1951.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::empty (10,101,010 samples, 0.02%)</title><rect x="598.4" y="1909" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="601.43" y="1919.5" ></text>
</g>
<g >
<title>__submit_bio (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1525" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="87.77" y="1535.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1445" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="56.29" y="1455.5" ></text>
</g>
<g >
<title>ext4_fill_raw_inode (10,101,010 samples, 0.02%)</title><rect x="407.4" y="1573" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="410.44" y="1583.5" ></text>
</g>
<g >
<title>do_unlinkat (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1717" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="27.69" y="1727.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::xsgetn (20,202,020 samples, 0.04%)</title><rect x="1182.9" y="2053" width="0.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1185.92" y="2063.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::max_size (30,303,030 samples, 0.07%)</title><rect x="211.0" y="1781" width="0.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="213.95" y="1791.5" ></text>
</g>
<g >
<title>leveldb::MutexLock::MutexLock (10,101,010 samples, 0.02%)</title><rect x="654.0" y="1781" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="657.04" y="1791.5" ></text>
</g>
<g >
<title>generic_write_checks (10,101,010 samples, 0.02%)</title><rect x="952.3" y="1893" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="955.32" y="1903.5" ></text>
</g>
<g >
<title>pthread_cond_destroy@plt (10,101,010 samples, 0.02%)</title><rect x="176.8" y="1877" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="179.85" y="1887.5" ></text>
</g>
<g >
<title>x64_sys_call (80,808,080 samples, 0.18%)</title><rect x="705.2" y="1829" width="2.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="708.20" y="1839.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::RandomHeight (50,505,050 samples, 0.11%)</title><rect x="348.2" y="1813" width="1.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="351.15" y="1823.5" ></text>
</g>
<g >
<title>leveldb::Version::ForEachOverlapping (1,323,232,310 samples, 2.91%)</title><rect x="622.3" y="1877" width="34.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="625.30" y="1887.5" >le..</text>
</g>
<g >
<title>filemap_alloc_folio (20,202,020 samples, 0.04%)</title><rect x="147.2" y="1605" width="0.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="150.20" y="1615.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (30,303,030 samples, 0.07%)</title><rect x="60.9" y="1733" width="0.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="63.89" y="1743.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="238.5" y="1877" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="241.50" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="708.3" y="1861" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="711.35" y="1871.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (40,404,040 samples, 0.09%)</title><rect x="45.2" y="1813" width="1.0" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="48.15" y="1823.5" ></text>
</g>
<g >
<title>leveldb::BlockBuilder::CurrentSizeEstimate (20,202,020 samples, 0.04%)</title><rect x="132.0" y="1845" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="134.99" y="1855.5" ></text>
</g>
<g >
<title>__handle_mm_fault (30,303,030 samples, 0.07%)</title><rect x="651.2" y="1717" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="654.16" y="1727.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Valid (10,101,010 samples, 0.02%)</title><rect x="67.7" y="1765" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="70.71" y="1775.5" ></text>
</g>
<g >
<title>void std::allocator_traits&lt;std::allocator&lt;unsigned int&gt; &gt;::construct&lt;unsigned int, unsigned int&gt; (10,101,010 samples, 0.02%)</title><rect x="131.7" y="1797" width="0.3" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="134.73" y="1807.5" ></text>
</g>
<g >
<title>void std::allocator_traits&lt;std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::construct&lt;leveldb::DBImpl::Writer*, leveldb::DBImpl::Writer*&gt; (10,101,010 samples, 0.02%)</title><rect x="590.3" y="1861" width="0.3" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="593.29" y="1871.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::data (10,101,010 samples, 0.02%)</title><rect x="664.3" y="1829" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="667.27" y="1839.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ShardedLRUCache::Release (20,202,020 samples, 0.04%)</title><rect x="626.0" y="1829" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="628.97" y="1839.5" ></text>
</g>
<g >
<title>std::vector&lt;leveldb::Slice, std::allocator&lt;leveldb::Slice&gt; &gt;::_M_check_len (40,404,040 samples, 0.09%)</title><rect x="358.4" y="1813" width="1.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="361.39" y="1823.5" ></text>
</g>
<g >
<title>page_cache_ra_unbounded (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1509" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="56.29" y="1519.5" ></text>
</g>
<g >
<title>std::condition_variable::condition_variable (10,101,010 samples, 0.02%)</title><rect x="696.8" y="1877" width="0.3" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="699.80" y="1887.5" ></text>
</g>
<g >
<title>void std::_Destroy&lt;leveldb::Slice*, leveldb::Slice&gt; (10,101,010 samples, 0.02%)</title><rect x="355.5" y="1845" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="358.50" y="1855.5" ></text>
</g>
<g >
<title>std::_Rb_tree_node&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_valptr (40,404,040 samples, 0.09%)</title><rect x="203.6" y="1765" width="1.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="206.61" y="1775.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::WriteValueLog (60,606,060 samples, 0.13%)</title><rect x="662.4" y="1829" width="1.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="665.44" y="1839.5" ></text>
</g>
<g >
<title>folio_add_lru (30,303,030 samples, 0.07%)</title><rect x="1135.4" y="1797" width="0.8" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1138.43" y="1807.5" ></text>
</g>
<g >
<title>__dynamic_cast (20,202,020 samples, 0.04%)</title><rect x="715.7" y="2021" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="718.69" y="2031.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::_Vector_base (10,101,010 samples, 0.02%)</title><rect x="213.8" y="1829" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="216.84" y="1839.5" ></text>
</g>
<g >
<title>__blk_flush_plug (919,191,910 samples, 2.02%)</title><rect x="1139.1" y="1781" width="23.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1142.11" y="1791.5" >_..</text>
</g>
<g >
<title>leveldb::InternalKeyComparator::user_comparator (10,101,010 samples, 0.02%)</title><rect x="86.6" y="1861" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="89.60" y="1871.5" ></text>
</g>
<g >
<title>alloc_buffer_head (202,020,200 samples, 0.44%)</title><rect x="929.2" y="1813" width="5.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="932.24" y="1823.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock@@GLIBC_2.2.5 (20,202,020 samples, 0.04%)</title><rect x="699.7" y="1845" width="0.5" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="702.69" y="1855.5" ></text>
</g>
<g >
<title>leveldb::ExtractUserKey (20,202,020 samples, 0.04%)</title><rect x="302.8" y="1765" width="0.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="305.77" y="1775.5" ></text>
</g>
<g >
<title>__blk_flush_plug (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1461" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="56.29" y="1471.5" ></text>
</g>
<g >
<title>std::basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;::_M_cache_locale (10,101,010 samples, 0.02%)</title><rect x="719.4" y="2021" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="722.36" y="2031.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::key (30,303,030 samples, 0.07%)</title><rect x="68.0" y="1765" width="0.8" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="70.98" y="1775.5" ></text>
</g>
<g >
<title>mpage_map_and_submit_extent (30,303,030 samples, 0.07%)</title><rect x="84.2" y="1637" width="0.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="87.24" y="1647.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="92.9" y="1861" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="95.90" y="1871.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Unlock (20,202,020 samples, 0.04%)</title><rect x="660.9" y="1845" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="663.86" y="1855.5" ></text>
</g>
<g >
<title>plist_del (10,101,010 samples, 0.02%)</title><rect x="442.6" y="1733" width="0.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="445.60" y="1743.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="54.1" y="1669" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="57.07" y="1679.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock@@GLIBC_2.2.5 (20,202,020 samples, 0.04%)</title><rect x="178.9" y="1845" width="0.6" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="181.95" y="1855.5" ></text>
</g>
<g >
<title>__check_object_size (10,101,010 samples, 0.02%)</title><rect x="797.3" y="1909" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="800.28" y="1919.5" ></text>
</g>
<g >
<title>copy_page_from_iter_atomic (191,919,190 samples, 0.42%)</title><rect x="885.9" y="1877" width="5.0" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="888.95" y="1887.5" ></text>
</g>
<g >
<title>__gthread_mutex_lock (10,101,010 samples, 0.02%)</title><rect x="429.0" y="1861" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="431.96" y="1871.5" ></text>
</g>
<g >
<title>unsigned long const&amp; std::max&lt;unsigned long&gt; (10,101,010 samples, 0.02%)</title><rect x="211.7" y="1781" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="214.74" y="1791.5" ></text>
</g>
<g >
<title>do_dentry_open (1,070,707,060 samples, 2.36%)</title><rect x="760.8" y="1877" width="27.8" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="763.81" y="1887.5" >d..</text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_M_lower_bound (181,818,180 samples, 0.40%)</title><rect x="191.5" y="1813" width="4.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="194.54" y="1823.5" ></text>
</g>
<g >
<title>leveldb::Status::operator= (10,101,010 samples, 0.02%)</title><rect x="422.1" y="1861" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="425.13" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1141" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1151.5" ></text>
</g>
<g >
<title>futex_wait_setup (30,303,030 samples, 0.07%)</title><rect x="706.5" y="1749" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="709.51" y="1759.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_replace (40,404,040 samples, 0.09%)</title><rect x="1177.4" y="2053" width="1.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1180.41" y="2063.5" ></text>
</g>
<g >
<title>try_charge_memcg (10,101,010 samples, 0.02%)</title><rect x="872.3" y="1829" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="875.31" y="1839.5" ></text>
</g>
<g >
<title>mntget (10,101,010 samples, 0.02%)</title><rect x="768.9" y="1861" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="771.95" y="1871.5" ></text>
</g>
<g >
<title>__cond_resched (10,101,010 samples, 0.02%)</title><rect x="797.5" y="1909" width="0.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="800.54" y="1919.5" ></text>
</g>
<g >
<title>memcpy@plt (30,303,030 samples, 0.07%)</title><rect x="1068.5" y="2053" width="0.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1071.54" y="2063.5" ></text>
</g>
<g >
<title>generic_perform_write (90,909,090 samples, 0.20%)</title><rect x="146.7" y="1653" width="2.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="149.68" y="1663.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::_M_seek (30,303,030 samples, 0.07%)</title><rect x="1179.5" y="2053" width="0.8" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1182.51" y="2063.5" ></text>
</g>
<g >
<title>leveldb::Benchmark::DoWrite (16,575,757,410 samples, 36.48%)</title><rect x="168.7" y="1925" width="430.5" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="171.71" y="1935.5" >leveldb::Benchmark::DoWrite</text>
</g>
<g >
<title>std::iterator_traits&lt;char const*&gt;::difference_type std::distance&lt;char const*&gt; (10,101,010 samples, 0.02%)</title><rect x="711.2" y="1909" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="714.23" y="1919.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="648.5" y="1749" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="651.53" y="1759.5" ></text>
</g>
<g >
<title>leveldb::Status::~Status (20,202,020 samples, 0.04%)</title><rect x="157.2" y="1829" width="0.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="160.17" y="1839.5" ></text>
</g>
<g >
<title>futex_wake (10,101,010 samples, 0.02%)</title><rect x="620.5" y="1749" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="623.46" y="1759.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1493" width="0.8" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="84.88" y="1503.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::Add (2,606,060,580 samples, 5.74%)</title><rect x="93.2" y="1861" width="67.6" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="96.16" y="1871.5" >leveldb..</text>
</g>
<g >
<title>read_pages (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1813" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1168.86" y="1823.5" ></text>
</g>
<g >
<title>vfs_open (1,101,010,090 samples, 2.42%)</title><rect x="760.8" y="1893" width="28.6" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="763.81" y="1903.5" >vf..</text>
</g>
<g >
<title>std::atomic&lt;leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node*&gt;::load (20,202,020 samples, 0.04%)</title><rect x="343.4" y="1797" width="0.6" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="346.43" y="1807.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (70,707,070 samples, 0.16%)</title><rect x="335.0" y="1749" width="1.9" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="338.04" y="1759.5" ></text>
</g>
<g >
<title>inotify_merge (20,202,020 samples, 0.04%)</title><rect x="873.1" y="1861" width="0.5" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="876.09" y="1871.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="333.7" y="1733" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="336.73" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1845" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1855.5" ></text>
</g>
<g >
<title>vfs_writev (3,606,060,570 samples, 7.94%)</title><rect x="861.6" y="1957" width="93.6" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="864.55" y="1967.5" >vfs_writev</text>
</g>
<g >
<title>__x64_sys_lseek (10,101,010 samples, 0.02%)</title><rect x="1058.6" y="2005" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="1061.57" y="2015.5" ></text>
</g>
<g >
<title>unlink_chunk.constprop.0 (10,101,010 samples, 0.02%)</title><rect x="829.8" y="2037" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="832.81" y="2047.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (90,909,090 samples, 0.20%)</title><rect x="106.3" y="1813" width="2.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="109.28" y="1823.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::empty (10,101,010 samples, 0.02%)</title><rect x="659.8" y="1845" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="662.81" y="1855.5" ></text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (10,101,010 samples, 0.02%)</title><rect x="643.8" y="1797" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="646.81" y="1807.5" ></text>
</g>
<g >
<title>do_syscall_64 (40,404,040 samples, 0.09%)</title><rect x="698.6" y="1813" width="1.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="701.64" y="1823.5" ></text>
</g>
<g >
<title>do_unlinkat (30,303,030 samples, 0.07%)</title><rect x="11.0" y="1765" width="0.8" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="14.05" y="1775.5" ></text>
</g>
<g >
<title>truncate_inode_pages_range (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1701" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="659.93" y="1711.5" ></text>
</g>
<g >
<title>scsi_queue_rq (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1397" width="0.6" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="14.84" y="1407.5" ></text>
</g>
<g >
<title>page_cache_ra_order (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1845" width="0.2" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="1168.86" y="1855.5" ></text>
</g>
<g >
<title>__GI___libc_write (232,323,230 samples, 0.51%)</title><rect x="143.3" y="1797" width="6.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="146.27" y="1807.5" ></text>
</g>
<g >
<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.02%)</title><rect x="407.4" y="1605" width="0.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="410.44" y="1615.5" ></text>
</g>
<g >
<title>__dquot_initialize (10,101,010 samples, 0.02%)</title><rect x="765.3" y="1829" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="768.27" y="1839.5" ></text>
</g>
<g >
<title>aa_lookup_condperms (10,101,010 samples, 0.02%)</title><rect x="777.3" y="1781" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="780.34" y="1791.5" ></text>
</g>
<g >
<title>getname_flags.part.0 (282,828,280 samples, 0.62%)</title><rect x="797.3" y="1925" width="7.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="800.28" y="1935.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_M_lower_bound (181,818,180 samples, 0.40%)</title><rect x="201.2" y="1797" width="4.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="204.24" y="1807.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (20,202,020 samples, 0.04%)</title><rect x="247.7" y="1877" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="250.68" y="1887.5" ></text>
</g>
<g >
<title>std::vector&lt;leveldb::Slice, std::allocator&lt;leveldb::Slice&gt; &gt;::_S_relocate (10,101,010 samples, 0.02%)</title><rect x="356.8" y="1829" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="359.81" y="1839.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::~_Vector_base (10,101,010 samples, 0.02%)</title><rect x="233.3" y="1845" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="236.25" y="1855.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="352.4" y="1829" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="355.35" y="1839.5" ></text>
</g>
<g >
<title>_copy_to_iter (282,828,280 samples, 0.62%)</title><rect x="1120.5" y="1877" width="7.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1123.48" y="1887.5" ></text>
</g>
<g >
<title>release_pages (10,101,010 samples, 0.02%)</title><rect x="907.7" y="1813" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="910.72" y="1823.5" ></text>
</g>
<g >
<title>__GI___libc_write (20,202,020 samples, 0.04%)</title><rect x="807.2" y="2037" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="810.25" y="2047.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::Clear (10,101,010 samples, 0.02%)</title><rect x="693.9" y="1877" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="696.92" y="1887.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ValueLogInserter::~ValueLogInserter (60,606,060 samples, 0.13%)</title><rect x="235.9" y="1877" width="1.5" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="238.87" y="1887.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (20,202,020 samples, 0.04%)</title><rect x="629.6" y="1749" width="0.6" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="632.64" y="1759.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1749" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1168.86" y="1759.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::BackgroundGarbageCollect (4,353,535,310 samples, 9.58%)</title><rect x="599.2" y="1941" width="113.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="602.21" y="1951.5" >leveldb::DBIm..</text>
</g>
<g >
<title>__rcu_read_lock (30,303,030 samples, 0.07%)</title><rect x="392.8" y="1701" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="395.75" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="165" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="175.5" ></text>
</g>
<g >
<title>leveldb::TableCache::FindTable (90,909,090 samples, 0.20%)</title><rect x="653.0" y="1829" width="2.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="655.99" y="1839.5" ></text>
</g>
<g >
<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.02%)</title><rect x="407.4" y="1589" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="410.44" y="1599.5" ></text>
</g>
<g >
<title>std::atomic&lt;leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node*&gt;::load (181,818,180 samples, 0.40%)</title><rect x="338.7" y="1781" width="4.7" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="341.71" y="1791.5" ></text>
</g>
<g >
<title>leveldb::Status::operator= (30,303,030 samples, 0.07%)</title><rect x="361.0" y="1877" width="0.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="364.01" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1893" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1903.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::Write (1,343,434,330 samples, 2.96%)</title><rect x="658.8" y="1877" width="34.9" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="661.76" y="1887.5" >le..</text>
</g>
<g >
<title>futex_wait_queue (10,101,010 samples, 0.02%)</title><rect x="730.4" y="1909" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="733.38" y="1919.5" ></text>
</g>
<g >
<title>_int_free (10,101,010 samples, 0.02%)</title><rect x="716.5" y="2021" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="719.48" y="2031.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.02%)</title><rect x="609.2" y="1781" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="612.18" y="1791.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="1109.7" y="1973" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1112.72" y="1983.5" ></text>
</g>
<g >
<title>lockref_get_not_zero (10,101,010 samples, 0.02%)</title><rect x="1118.4" y="1909" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="1121.38" y="1919.5" ></text>
</g>
<g >
<title>do_user_addr_fault (30,303,030 samples, 0.07%)</title><rect x="651.2" y="1749" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="654.16" y="1759.5" ></text>
</g>
<g >
<title>leveldb::crc32c::(anonymous namespace)::ReadUint32LE (90,909,090 samples, 0.20%)</title><rect x="154.3" y="1765" width="2.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="157.29" y="1775.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.02%)</title><rect x="178.7" y="1701" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="181.68" y="1711.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (20,202,020 samples, 0.04%)</title><rect x="1138.6" y="1717" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1141.58" y="1727.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ValueLogInserter::batch_insert (2,070,707,050 samples, 4.56%)</title><rect x="182.1" y="1877" width="53.8" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="185.09" y="1887.5" >level..</text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt;* std::__relocate_a_1&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="243.0" y="1749" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="245.96" y="1759.5" ></text>
</g>
<g >
<title>__find_get_block (10,101,010 samples, 0.02%)</title><rect x="408.0" y="1541" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="410.97" y="1551.5" ></text>
</g>
<g >
<title>x64_sys_call (343,434,340 samples, 0.76%)</title><rect x="683.9" y="1781" width="9.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="686.95" y="1791.5" ></text>
</g>
<g >
<title>std::atomic&lt;leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node*&gt;::store (10,101,010 samples, 0.02%)</title><rect x="673.2" y="1765" width="0.3" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="676.19" y="1775.5" ></text>
</g>
<g >
<title>mutex_lock (10,101,010 samples, 0.02%)</title><rect x="1062.8" y="1941" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1065.77" y="1951.5" ></text>
</g>
<g >
<title>__fsnotify_parent (40,404,040 samples, 0.09%)</title><rect x="1118.1" y="1941" width="1.1" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="1121.12" y="1951.5" ></text>
</g>
<g >
<title>fault_in_iov_iter_readable (10,101,010 samples, 0.02%)</title><rect x="417.9" y="1669" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="420.94" y="1679.5" ></text>
</g>
<g >
<title>inode_needs_update_time (10,101,010 samples, 0.02%)</title><rect x="679.8" y="1637" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="682.75" y="1647.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::vector (10,101,010 samples, 0.02%)</title><rect x="234.3" y="1861" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="237.30" y="1871.5" ></text>
</g>
<g >
<title>rb_next (10,101,010 samples, 0.02%)</title><rect x="939.2" y="1797" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="942.20" y="1807.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; const*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;::operator++ (10,101,010 samples, 0.02%)</title><rect x="232.2" y="1797" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="235.20" y="1807.5" ></text>
</g>
<g >
<title>__x64_sys_openat (2,222,222,200 samples, 4.89%)</title><rect x="749.5" y="1973" width="57.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="752.53" y="1983.5" >__x64_..</text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="1128.1" y="1877" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1131.09" y="1887.5" ></text>
</g>
<g >
<title>file_modified (50,505,050 samples, 0.11%)</title><rect x="678.7" y="1653" width="1.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="681.70" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="213" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="223.5" ></text>
</g>
<g >
<title>std::allocator_traits&lt;std::allocator&lt;leveldb::Slice&gt; &gt;::deallocate (10,101,010 samples, 0.02%)</title><rect x="355.0" y="1813" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="357.98" y="1823.5" ></text>
</g>
<g >
<title>__blk_flush_plug (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1621" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="84.88" y="1631.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="808.3" y="1893" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="811.30" y="1903.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (10,101,010 samples, 0.02%)</title><rect x="146.4" y="1605" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="149.42" y="1615.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="583.5" y="1669" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="586.47" y="1679.5" ></text>
</g>
<g >
<title>get_futex_key (10,101,010 samples, 0.02%)</title><rect x="583.7" y="1765" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="586.73" y="1775.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32PtrFallback (10,101,010 samples, 0.02%)</title><rect x="359.4" y="1813" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="362.44" y="1823.5" ></text>
</g>
<g >
<title>__dquot_alloc_space (10,101,010 samples, 0.02%)</title><rect x="148.5" y="1557" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="151.51" y="1567.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="135.7" y="1813" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="138.66" y="1823.5" ></text>
</g>
<g >
<title>aa_get_buffer (10,101,010 samples, 0.02%)</title><rect x="780.5" y="1813" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="783.49" y="1823.5" ></text>
</g>
<g >
<title>fsnotify_insert_event (40,404,040 samples, 0.09%)</title><rect x="402.5" y="1637" width="1.0" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="405.46" y="1647.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1029" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1039.5" ></text>
</g>
<g >
<title>xa_load (10,101,010 samples, 0.02%)</title><rect x="1165.6" y="1765" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1168.60" y="1775.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::GetMaxHeight (20,202,020 samples, 0.04%)</title><rect x="344.0" y="1813" width="0.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="346.96" y="1823.5" ></text>
</g>
<g >
<title>do_futex (60,606,060 samples, 0.13%)</title><rect x="808.8" y="1957" width="1.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="811.82" y="1967.5" ></text>
</g>
<g >
<title>ext4_journal_check_start (10,101,010 samples, 0.02%)</title><rect x="407.2" y="1605" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="410.18" y="1615.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="917" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="927.5" ></text>
</g>
<g >
<title>pthread_mutex_lock@@GLIBC_2.2.5 (10,101,010 samples, 0.02%)</title><rect x="648.0" y="1717" width="0.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="651.01" y="1727.5" ></text>
</g>
<g >
<title>leveldb::Slice::compare (10,101,010 samples, 0.02%)</title><rect x="134.6" y="1813" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="137.61" y="1823.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixWritableFile::Flush (242,424,240 samples, 0.53%)</title><rect x="143.3" y="1829" width="6.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="146.27" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="949" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="959.5" ></text>
</g>
<g >
<title>std::operator!= (10,101,010 samples, 0.02%)</title><rect x="174.2" y="1877" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="177.22" y="1887.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_plug_list (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1509" width="1.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="85.67" y="1519.5" ></text>
</g>
<g >
<title>leveldb::SaveValue (20,202,020 samples, 0.04%)</title><rect x="647.2" y="1813" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="650.22" y="1823.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::end (10,101,010 samples, 0.02%)</title><rect x="663.0" y="1797" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="665.96" y="1807.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="1175.6" y="1973" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1178.57" y="1983.5" ></text>
</g>
<g >
<title>std::condition_variable::~condition_variable (10,101,010 samples, 0.02%)</title><rect x="660.1" y="1845" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="663.08" y="1855.5" ></text>
</g>
<g >
<title>file_modified (111,111,110 samples, 0.24%)</title><rect x="407.2" y="1685" width="2.9" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="410.18" y="1695.5" ></text>
</g>
<g >
<title>ext4_es_lookup_extent (20,202,020 samples, 0.04%)</title><rect x="939.5" y="1813" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="942.47" y="1823.5" ></text>
</g>
<g >
<title>file_modified (10,101,010 samples, 0.02%)</title><rect x="146.4" y="1653" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="149.42" y="1663.5" ></text>
</g>
<g >
<title>ext4_da_map_blocks.constprop.0 (30,303,030 samples, 0.07%)</title><rect x="148.3" y="1589" width="0.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="151.25" y="1599.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,212,121,200 samples, 2.67%)</title><rect x="1073.3" y="2021" width="31.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1076.26" y="2031.5" >do..</text>
</g>
<g >
<title>leveldb::IteratorWrapper::Update (121,212,120 samples, 0.27%)</title><rect x="69.8" y="1829" width="3.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="72.81" y="1839.5" ></text>
</g>
<g >
<title>operator new (40,404,040 samples, 0.09%)</title><rect x="1070.1" y="2053" width="1.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1073.11" y="2063.5" ></text>
</g>
<g >
<title>__blk_mq_do_dispatch_sched (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1445" width="1.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="85.67" y="1455.5" ></text>
</g>
<g >
<title>ext4_bio_write_folio (10,101,010 samples, 0.02%)</title><rect x="12.4" y="1573" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="15.36" y="1583.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="469" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="479.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (10,101,010 samples, 0.02%)</title><rect x="755.6" y="1893" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="758.57" y="1903.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.04%)</title><rect x="84.2" y="1557" width="0.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="87.24" y="1567.5" ></text>
</g>
<g >
<title>do_futex (50,505,050 samples, 0.11%)</title><rect x="730.1" y="1957" width="1.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="733.12" y="1967.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::basic_filebuf (20,202,020 samples, 0.04%)</title><rect x="718.8" y="2021" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="721.84" y="2031.5" ></text>
</g>
<g >
<title>leveldb::MemTable::Add (3,757,575,720 samples, 8.27%)</title><rect x="252.4" y="1845" width="97.6" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="255.40" y="1855.5" >leveldb::Me..</text>
</g>
<g >
<title>std::mutex::unlock (50,505,050 samples, 0.11%)</title><rect x="178.2" y="1861" width="1.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="181.16" y="1871.5" ></text>
</g>
<g >
<title>leveldb::MaxGrandParentOverlapBytes (10,101,010 samples, 0.02%)</title><rect x="80.8" y="1845" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="83.83" y="1855.5" ></text>
</g>
<g >
<title>std::num_get&lt;char, std::istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt; const&amp; std::use_facet&lt;std::num_get&lt;char, std::istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="833.2" y="2005" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="836.22" y="2015.5" ></text>
</g>
<g >
<title>do_fault (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1621" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="56.29" y="1631.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="651.9" y="1781" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="654.94" y="1791.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::push_back (171,717,170 samples, 0.38%)</title><rect x="240.1" y="1845" width="4.4" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="243.07" y="1855.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::resize (10,101,010 samples, 0.02%)</title><rect x="645.1" y="1797" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="648.12" y="1807.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1557" width="0.8" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="84.88" y="1567.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="639.4" y="1781" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="642.35" y="1791.5" ></text>
</g>
<g >
<title>do_sys_openat2 (2,181,818,160 samples, 4.80%)</title><rect x="749.8" y="1957" width="56.7" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="752.80" y="1967.5" >do_sys..</text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::find (222,222,220 samples, 0.49%)</title><rect x="191.5" y="1829" width="5.8" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="194.54" y="1839.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::Handler::Handler (10,101,010 samples, 0.02%)</title><rect x="356.0" y="1877" width="0.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="359.02" y="1887.5" ></text>
</g>
<g >
<title>generic_write_checks (10,101,010 samples, 0.02%)</title><rect x="876.2" y="1877" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="879.24" y="1887.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="216.5" y="1829" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="219.46" y="1839.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::front (20,202,020 samples, 0.04%)</title><rect x="700.5" y="1893" width="0.5" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="703.48" y="1903.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="708.6" y="1829" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="711.61" y="1839.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="708.3" y="1845" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="711.35" y="1855.5" ></text>
</g>
<g >
<title>__blk_mq_get_tag (10,101,010 samples, 0.02%)</title><rect x="1163.5" y="1653" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1166.50" y="1663.5" ></text>
</g>
<g >
<title>__x64_sys_openat (20,202,020 samples, 0.04%)</title><rect x="748.7" y="1989" width="0.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="751.75" y="1999.5" ></text>
</g>
<g >
<title>_int_malloc (20,202,020 samples, 0.04%)</title><rect x="713.9" y="1413" width="0.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="716.86" y="1423.5" ></text>
</g>
<g >
<title>void std::_Destroy&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*&gt; (10,101,010 samples, 0.02%)</title><rect x="233.8" y="1845" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="236.78" y="1855.5" ></text>
</g>
<g >
<title>send_to_group (292,929,290 samples, 0.64%)</title><rect x="866.5" y="1909" width="7.6" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="869.54" y="1919.5" ></text>
</g>
<g >
<title>handle_softirqs (20,202,020 samples, 0.04%)</title><rect x="298.8" y="1717" width="0.6" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="301.84" y="1727.5" ></text>
</g>
<g >
<title>leveldb::GetLengthPrefixedSlice (141,414,140 samples, 0.31%)</title><rect x="610.0" y="1813" width="3.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="612.97" y="1823.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::Write (212,121,210 samples, 0.47%)</title><rect x="696.0" y="1909" width="5.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="699.02" y="1919.5" ></text>
</g>
<g >
<title>locks_remove_file (10,101,010 samples, 0.02%)</title><rect x="981.2" y="1941" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="984.18" y="1951.5" ></text>
</g>
<g >
<title>leveldb::BlockBuilder::Add (131,313,130 samples, 0.29%)</title><rect x="18.1" y="1813" width="3.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="21.13" y="1823.5" ></text>
</g>
<g >
<title>filemap_get_pages (1,474,747,460 samples, 3.25%)</title><rect x="1127.8" y="1893" width="38.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1130.83" y="1903.5" >fil..</text>
</g>
<g >
<title>do_futex (10,101,010 samples, 0.02%)</title><rect x="682.6" y="1749" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="685.64" y="1759.5" ></text>
</g>
<g >
<title>mutex_lock (10,101,010 samples, 0.02%)</title><rect x="676.6" y="1685" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="679.60" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (20,202,020 samples, 0.04%)</title><rect x="713.1" y="1301" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1311.5" ></text>
</g>
<g >
<title>lockref_get_not_zero (20,202,020 samples, 0.04%)</title><rect x="1168.8" y="1893" width="0.5" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="1171.75" y="1903.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="787.6" y="1669" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="790.57" y="1679.5" ></text>
</g>
<g >
<title>leveldb::Arena::Allocate (10,101,010 samples, 0.02%)</title><rect x="667.2" y="1797" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="670.16" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="421" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="431.5" ></text>
</g>
<g >
<title>__gthread_mutex_unlock (10,101,010 samples, 0.02%)</title><rect x="692.9" y="1829" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="695.87" y="1839.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (10,101,010 samples, 0.02%)</title><rect x="95.3" y="1845" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="98.26" y="1855.5" ></text>
</g>
<g >
<title>__x64_sys_futex (10,101,010 samples, 0.02%)</title><rect x="178.7" y="1781" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="181.68" y="1791.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (10,101,010 samples, 0.02%)</title><rect x="821.7" y="2037" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="824.68" y="2047.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (20,202,020 samples, 0.04%)</title><rect x="806.5" y="1957" width="0.5" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="809.46" y="1967.5" ></text>
</g>
<g >
<title>__filemap_get_folio (1,404,040,390 samples, 3.09%)</title><rect x="891.5" y="1861" width="36.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="894.46" y="1871.5" >__f..</text>
</g>
<g >
<title>std::map&lt;unsigned long, unsigned long, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::end (40,404,040 samples, 0.09%)</title><rect x="199.4" y="1829" width="1.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="202.41" y="1839.5" ></text>
</g>
<g >
<title>__x64_sys_lseek (212,121,210 samples, 0.47%)</title><rect x="1058.8" y="1989" width="5.5" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="1061.83" y="1999.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1813" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="659.93" y="1823.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::resize (10,101,010 samples, 0.02%)</title><rect x="61.9" y="1749" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="64.94" y="1759.5" ></text>
</g>
<g >
<title>__GI___pthread_enable_asynccancel (10,101,010 samples, 0.02%)</title><rect x="421.6" y="1829" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="424.61" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Hash (10,101,010 samples, 0.02%)</title><rect x="655.1" y="1797" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="658.09" y="1807.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="596.6" y="1813" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="599.59" y="1823.5" ></text>
</g>
<g >
<title>find_lock_entries (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1653" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="13.79" y="1663.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_M_create_storage (20,202,020 samples, 0.04%)</title><rect x="230.9" y="1829" width="0.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="233.89" y="1839.5" ></text>
</g>
<g >
<title>___slab_alloc (30,303,030 samples, 0.07%)</title><rect x="869.7" y="1845" width="0.8" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="872.68" y="1855.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (111,111,110 samples, 0.24%)</title><rect x="146.4" y="1685" width="2.9" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="149.42" y="1695.5" ></text>
</g>
<g >
<title>std::_Rb_tree_iterator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::operator* (10,101,010 samples, 0.02%)</title><rect x="190.8" y="1845" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="193.75" y="1855.5" ></text>
</g>
<g >
<title>ext4_release_file (10,101,010 samples, 0.02%)</title><rect x="983.3" y="1957" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="986.28" y="1967.5" ></text>
</g>
<g >
<title>std::condition_variable::notify_one (10,101,010 samples, 0.02%)</title><rect x="693.4" y="1861" width="0.3" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="696.39" y="1871.5" ></text>
</g>
<g >
<title>truncate_cleanup_folio (20,202,020 samples, 0.04%)</title><rect x="11.3" y="1669" width="0.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="14.31" y="1679.5" ></text>
</g>
<g >
<title>leveldb::Benchmark::WriteRandom (16,585,858,420 samples, 36.51%)</title><rect x="168.5" y="1941" width="430.7" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="171.45" y="1951.5" >leveldb::Benchmark::WriteRandom</text>
</g>
<g >
<title>mod_lruvec_state (30,303,030 samples, 0.07%)</title><rect x="1136.5" y="1765" width="0.8" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1139.48" y="1775.5" ></text>
</g>
<g >
<title>filemap_add_folio (10,101,010 samples, 0.02%)</title><rect x="942.6" y="1861" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="945.61" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1989" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1999.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="649.1" y="1781" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="652.06" y="1791.5" ></text>
</g>
<g >
<title>do_syscall_64 (151,515,150 samples, 0.33%)</title><rect x="703.4" y="1845" width="3.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="706.36" y="1855.5" ></text>
</g>
<g >
<title>mutex_unlock (10,101,010 samples, 0.02%)</title><rect x="391.2" y="1733" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="394.18" y="1743.5" ></text>
</g>
<g >
<title>jbd2_journal_get_write_access (10,101,010 samples, 0.02%)</title><rect x="679.5" y="1557" width="0.3" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="682.49" y="1567.5" ></text>
</g>
<g >
<title>__futex_wait (10,101,010 samples, 0.02%)</title><rect x="808.3" y="1925" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="811.30" y="1935.5" ></text>
</g>
<g >
<title>hook_file_open (10,101,010 samples, 0.02%)</title><rect x="768.4" y="1861" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="771.42" y="1871.5" ></text>
</g>
<g >
<title>std::mutex::unlock (6,030,302,970 samples, 13.27%)</title><rect x="430.0" y="1877" width="156.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="433.00" y="1887.5" >std::mutex::unlock</text>
</g>
<g >
<title>x64_sys_call (2,070,707,050 samples, 4.56%)</title><rect x="1117.1" y="2005" width="53.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1120.07" y="2015.5" >x64_s..</text>
</g>
<g >
<title>leveldb::IteratorWrapper::Next (10,101,010 samples, 0.02%)</title><rect x="53.5" y="1765" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="56.55" y="1775.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (20,202,020 samples, 0.04%)</title><rect x="245.8" y="1861" width="0.6" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="248.84" y="1871.5" ></text>
</g>
<g >
<title>leveldb::WriteBatchInternal::Count (10,101,010 samples, 0.02%)</title><rect x="217.0" y="1845" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="219.99" y="1855.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::lower_bound (80,808,080 samples, 0.18%)</title><rect x="165.3" y="1829" width="2.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="168.30" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="616.5" y="1781" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="619.53" y="1791.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::ok (10,101,010 samples, 0.02%)</title><rect x="23.6" y="1813" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="26.64" y="1823.5" ></text>
</g>
<g >
<title>leveldb::InternalKey::DecodeFrom (40,404,040 samples, 0.09%)</title><rect x="85.6" y="1861" width="1.0" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="88.55" y="1871.5" ></text>
</g>
<g >
<title>std::_Rb_tree_node&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_valptr (10,101,010 samples, 0.02%)</title><rect x="205.7" y="1781" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="208.70" y="1791.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (10,101,010 samples, 0.02%)</title><rect x="932.1" y="1685" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="935.12" y="1695.5" ></text>
</g>
<g >
<title>pthread_mutex_lock@@GLIBC_2.2.5 (20,202,020 samples, 0.04%)</title><rect x="429.2" y="1861" width="0.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="432.22" y="1871.5" ></text>
</g>
<g >
<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.02%)</title><rect x="146.4" y="1589" width="0.3" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="149.42" y="1599.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::BackgroundCompaction (6,101,010,040 samples, 13.43%)</title><rect x="10.0" y="1893" width="158.5" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="13.00" y="1903.5" >leveldb::DBImpl::Bac..</text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ValueLogInserter::Put (20,202,020 samples, 0.04%)</title><rect x="666.1" y="1829" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="669.11" y="1839.5" ></text>
</g>
<g >
<title>__gnu_cxx::__aligned_membuf&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_addr (10,101,010 samples, 0.02%)</title><rect x="204.4" y="1733" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="207.39" y="1743.5" ></text>
</g>
<g >
<title>std::allocator_traits&lt;std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::select_on_container_copy_construction (10,101,010 samples, 0.02%)</title><rect x="230.4" y="1829" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="233.36" y="1839.5" ></text>
</g>
<g >
<title>void std::__invoke_impl&lt;void, void (27,040,403,770 samples, 59.52%)</title><rect x="10.0" y="1973" width="702.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="13.00" y="1983.5" >void std::__invoke_impl&lt;void, void </text>
</g>
<g >
<title>__memcmp_evex_movbe (60,606,060 samples, 0.13%)</title><rect x="632.8" y="1749" width="1.6" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="635.79" y="1759.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (20,202,020 samples, 0.04%)</title><rect x="1133.1" y="1781" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1136.07" y="1791.5" ></text>
</g>
<g >
<title>leveldb::BlockHandle::BlockHandle (10,101,010 samples, 0.02%)</title><rect x="627.3" y="1829" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="630.28" y="1839.5" ></text>
</g>
<g >
<title>std::basic_fstream&lt;char, std::char_traits&lt;char&gt; &gt;::basic_fstream (60,606,060 samples, 0.13%)</title><rect x="830.6" y="2005" width="1.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="833.60" y="2015.5" ></text>
</g>
<g >
<title>ext4_da_write_end (282,828,280 samples, 0.62%)</title><rect x="943.1" y="1877" width="7.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="946.14" y="1887.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (151,515,150 samples, 0.33%)</title><rect x="894.6" y="1813" width="3.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="897.61" y="1823.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::back (10,101,010 samples, 0.02%)</title><rect x="213.6" y="1829" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="216.57" y="1839.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::Valid (10,101,010 samples, 0.02%)</title><rect x="67.5" y="1765" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="70.45" y="1775.5" ></text>
</g>
<g >
<title>update_io_ticks (70,707,070 samples, 0.16%)</title><rect x="1163.8" y="1669" width="1.8" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1166.77" y="1679.5" ></text>
</g>
<g >
<title>iterate_tty_write (20,202,020 samples, 0.04%)</title><rect x="807.2" y="1893" width="0.6" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="810.25" y="1903.5" ></text>
</g>
<g >
<title>__x64_sys_write (20,202,020 samples, 0.04%)</title><rect x="807.2" y="1973" width="0.6" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="810.25" y="1983.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::Next (484,848,480 samples, 1.07%)</title><rect x="52.0" y="1797" width="12.6" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="54.97" y="1807.5" ></text>
</g>
<g >
<title>__d_lookup_rcu (10,101,010 samples, 0.02%)</title><rect x="793.9" y="1877" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="796.87" y="1887.5" ></text>
</g>
<g >
<title>leveldb::Status::~Status (20,202,020 samples, 0.04%)</title><rect x="180.5" y="1893" width="0.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="183.52" y="1903.5" ></text>
</g>
<g >
<title>__gnu_cxx::new_allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt;::new_allocator (10,101,010 samples, 0.02%)</title><rect x="230.4" y="1813" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="233.36" y="1823.5" ></text>
</g>
<g >
<title>our_mnt (20,202,020 samples, 0.04%)</title><rect x="788.1" y="1781" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="791.10" y="1791.5" ></text>
</g>
<g >
<title>std::_Deque_iterator&lt;leveldb::DBImpl::Writer*, leveldb::DBImpl::Writer*&amp;, leveldb::DBImpl::Writer**&gt;::operator* (10,101,010 samples, 0.02%)</title><rect x="589.5" y="1861" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="592.51" y="1871.5" ></text>
</g>
<g >
<title>node_dirty_ok (10,101,010 samples, 0.02%)</title><rect x="413.7" y="1557" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="416.74" y="1567.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (10,101,010 samples, 0.02%)</title><rect x="912.2" y="1765" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="915.18" y="1775.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,323,232,310 samples, 2.91%)</title><rect x="1030.2" y="2037" width="34.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1033.24" y="2047.5" >en..</text>
</g>
<g >
<title>getname (323,232,320 samples, 0.71%)</title><rect x="797.0" y="1941" width="8.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="800.02" y="1951.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_S_right (20,202,020 samples, 0.04%)</title><rect x="205.2" y="1781" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="208.18" y="1791.5" ></text>
</g>
<g >
<title>inode_to_bdi (10,101,010 samples, 0.02%)</title><rect x="885.2" y="1861" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="888.16" y="1871.5" ></text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (30,303,030 samples, 0.07%)</title><rect x="623.1" y="1845" width="0.8" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="626.09" y="1855.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::Valid (10,101,010 samples, 0.02%)</title><rect x="71.9" y="1797" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="74.91" y="1807.5" ></text>
</g>
<g >
<title>mntput (10,101,010 samples, 0.02%)</title><rect x="984.3" y="1957" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="987.33" y="1967.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (121,212,120 samples, 0.27%)</title><rect x="920.6" y="1749" width="3.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="923.58" y="1759.5" ></text>
</g>
<g >
<title>schedule_debug.constprop.0 (10,101,010 samples, 0.02%)</title><rect x="706.2" y="1701" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="709.25" y="1711.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (40,404,040 samples, 0.09%)</title><rect x="139.6" y="1845" width="1.0" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="142.60" y="1855.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="61.7" y="1733" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="64.68" y="1743.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1813" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="13.79" y="1823.5" ></text>
</g>
<g >
<title>kmem_cache_free (30,303,030 samples, 0.07%)</title><rect x="805.7" y="1925" width="0.8" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="808.67" y="1935.5" ></text>
</g>
<g >
<title>generic_perform_write (60,606,060 samples, 0.13%)</title><rect x="680.0" y="1653" width="1.6" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="683.01" y="1663.5" ></text>
</g>
<g >
<title>_IO_setb (10,101,010 samples, 0.02%)</title><rect x="836.6" y="2053" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="839.63" y="2063.5" ></text>
</g>
<g >
<title>std::basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;::init (20,202,020 samples, 0.04%)</title><rect x="1184.5" y="2053" width="0.5" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1187.49" y="2063.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::value (10,101,010 samples, 0.02%)</title><rect x="75.6" y="1813" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="78.58" y="1823.5" ></text>
</g>
<g >
<title>ext4_da_map_blocks.constprop.0 (252,525,250 samples, 0.56%)</title><rect x="934.5" y="1829" width="6.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="937.48" y="1839.5" ></text>
</g>
<g >
<title>exc_page_fault (30,303,030 samples, 0.07%)</title><rect x="651.2" y="1765" width="0.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="654.16" y="1775.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,575,757,550 samples, 5.67%)</title><rect x="740.4" y="2005" width="66.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="743.35" y="2015.5" >do_sysc..</text>
</g>
<g >
<title>obj_cgroup_uncharge (10,101,010 samples, 0.02%)</title><rect x="980.1" y="1909" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="983.13" y="1919.5" ></text>
</g>
<g >
<title>fault_in_iov_iter_readable (60,606,060 samples, 0.13%)</title><rect x="950.5" y="1877" width="1.6" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="953.48" y="1887.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Iterator::Valid (10,101,010 samples, 0.02%)</title><rect x="621.2" y="1893" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="624.25" y="1903.5" ></text>
</g>
<g >
<title>leveldb::Status::operator= (10,101,010 samples, 0.02%)</title><rect x="621.8" y="1893" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="624.77" y="1903.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::append (30,303,030 samples, 0.07%)</title><rect x="130.2" y="1829" width="0.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="133.15" y="1839.5" ></text>
</g>
<g >
<title>node_dirty_ok (90,909,090 samples, 0.20%)</title><rect x="918.2" y="1765" width="2.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="921.22" y="1775.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::FindGreaterOrEqual (696,969,690 samples, 1.53%)</title><rect x="600.5" y="1861" width="18.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="603.52" y="1871.5" ></text>
</g>
<g >
<title>leveldb::Slice::compare (20,202,020 samples, 0.04%)</title><rect x="136.7" y="1829" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="139.71" y="1839.5" ></text>
</g>
<g >
<title>security_file_permission (20,202,020 samples, 0.04%)</title><rect x="1170.3" y="1941" width="0.5" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="1173.32" y="1951.5" ></text>
</g>
<g >
<title>__get_user_nocheck_4 (10,101,010 samples, 0.02%)</title><rect x="682.6" y="1685" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="685.64" y="1695.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (898,989,890 samples, 1.98%)</title><rect x="1139.4" y="1701" width="23.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1142.37" y="1711.5" >b..</text>
</g>
<g >
<title>leveldb::Version::~Version (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1813" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="27.69" y="1823.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::empty (10,101,010 samples, 0.02%)</title><rect x="695.5" y="1877" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="698.49" y="1887.5" ></text>
</g>
<g >
<title>futex_wait (10,101,010 samples, 0.02%)</title><rect x="658.0" y="1765" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="660.98" y="1775.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (3,040,404,010 samples, 6.69%)</title><rect x="874.4" y="1941" width="79.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="877.41" y="1951.5" >do_iter_r..</text>
</g>
<g >
<title>std::basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;::good (20,202,020 samples, 0.04%)</title><rect x="225.4" y="1861" width="0.5" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="228.38" y="1871.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.04%)</title><rect x="417.4" y="1589" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="420.41" y="1599.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (40,404,040 samples, 0.09%)</title><rect x="123.9" y="1813" width="1.0" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="126.86" y="1823.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1381" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="87.77" y="1391.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::empty (10,101,010 samples, 0.02%)</title><rect x="162.7" y="1861" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="165.68" y="1871.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="215.4" y="1861" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="218.41" y="1871.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::resize (20,202,020 samples, 0.04%)</title><rect x="160.1" y="1845" width="0.5" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="163.06" y="1855.5" ></text>
</g>
<g >
<title>__fsnotify_parent (474,747,470 samples, 1.04%)</title><rect x="392.5" y="1717" width="12.3" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="395.49" y="1727.5" ></text>
</g>
<g >
<title>x64_sys_call (20,202,020 samples, 0.04%)</title><rect x="807.2" y="1989" width="0.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="810.25" y="1999.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;leveldb::Slice, std::allocator&lt;leveldb::Slice&gt; &gt;::~_Vector_base (20,202,020 samples, 0.04%)</title><rect x="355.0" y="1845" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="357.98" y="1855.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (111,111,110 samples, 0.24%)</title><rect x="678.7" y="1685" width="2.9" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="681.70" y="1695.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (40,404,040 samples, 0.09%)</title><rect x="336.9" y="1749" width="1.0" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="339.87" y="1759.5" ></text>
</g>
<g >
<title>try_to_wake_up (10,101,010 samples, 0.02%)</title><rect x="620.5" y="1717" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="623.46" y="1727.5" ></text>
</g>
<g >
<title>_int_free (90,909,090 samples, 0.20%)</title><rect x="818.8" y="2037" width="2.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="821.79" y="2047.5" ></text>
</g>
<g >
<title>leveldb::Block::Block (10,101,010 samples, 0.02%)</title><rect x="648.5" y="1797" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="651.53" y="1807.5" ></text>
</g>
<g >
<title>leveldb::MemTable::KeyComparator::operator (1,474,747,460 samples, 3.25%)</title><rect x="300.4" y="1781" width="38.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="303.41" y="1791.5" >lev..</text>
</g>
<g >
<title>__rcu_read_lock (10,101,010 samples, 0.02%)</title><rect x="766.6" y="1813" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="769.59" y="1823.5" ></text>
</g>
<g >
<title>ext4_do_writepages (30,303,030 samples, 0.07%)</title><rect x="11.8" y="1637" width="0.8" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="14.84" y="1647.5" ></text>
</g>
<g >
<title>iput (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1765" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="659.93" y="1775.5" ></text>
</g>
<g >
<title>xas_start (10,101,010 samples, 0.02%)</title><rect x="1165.6" y="1749" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1168.60" y="1759.5" ></text>
</g>
<g >
<title>leveldb::ParseInternalKey (111,111,110 samples, 0.24%)</title><rect x="89.0" y="1861" width="2.8" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="91.96" y="1871.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1765" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="27.69" y="1775.5" ></text>
</g>
<g >
<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1541" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="87.77" y="1551.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; const*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;::__normal_iterator (10,101,010 samples, 0.02%)</title><rect x="230.6" y="1845" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="233.63" y="1855.5" ></text>
</g>
<g >
<title>ext4_block_write_begin (40,404,040 samples, 0.09%)</title><rect x="415.3" y="1653" width="1.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="418.31" y="1663.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32 (10,101,010 samples, 0.02%)</title><rect x="673.5" y="1813" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="676.45" y="1823.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_M_deallocate (40,404,040 samples, 0.09%)</title><rect x="236.4" y="1829" width="1.0" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="239.40" y="1839.5" ></text>
</g>
<g >
<title>operator new (10,101,010 samples, 0.02%)</title><rect x="652.5" y="1813" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="655.47" y="1823.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;unsigned long, unsigned long&gt;*, std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt; &gt;::operator* (20,202,020 samples, 0.04%)</title><rect x="208.3" y="1813" width="0.6" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="211.33" y="1823.5" ></text>
</g>
<g >
<title>folio_alloc (686,868,680 samples, 1.51%)</title><rect x="908.0" y="1829" width="17.8" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="910.99" y="1839.5" ></text>
</g>
<g >
<title>mod_objcg_state (20,202,020 samples, 0.04%)</title><rect x="871.3" y="1829" width="0.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="874.26" y="1839.5" ></text>
</g>
<g >
<title>ima_file_free (10,101,010 samples, 0.02%)</title><rect x="978.6" y="1941" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="981.55" y="1951.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_replace_aux (10,101,010 samples, 0.02%)</title><rect x="181.6" y="1845" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="184.57" y="1855.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::LRUCache::Lookup (10,101,010 samples, 0.02%)</title><rect x="653.0" y="1813" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="655.99" y="1823.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Lock (30,303,030 samples, 0.07%)</title><rect x="619.4" y="1877" width="0.8" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="622.41" y="1887.5" ></text>
</g>
<g >
<title>__x64_sys_futex (10,101,010 samples, 0.02%)</title><rect x="438.9" y="1813" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="441.92" y="1823.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1333" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="56.29" y="1343.5" ></text>
</g>
<g >
<title>leveldb::Block::NewIterator (20,202,020 samples, 0.04%)</title><rect x="646.4" y="1813" width="0.6" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="649.43" y="1823.5" ></text>
</g>
<g >
<title>make_vfsuid (10,101,010 samples, 0.02%)</title><rect x="791.8" y="1877" width="0.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="794.77" y="1887.5" ></text>
</g>
<g >
<title>xas_start (10,101,010 samples, 0.02%)</title><rect x="414.5" y="1621" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="417.53" y="1631.5" ></text>
</g>
<g >
<title>std::mutex::lock (70,707,070 samples, 0.16%)</title><rect x="428.2" y="1877" width="1.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="431.17" y="1887.5" ></text>
</g>
<g >
<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.02%)</title><rect x="679.0" y="1573" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="681.96" y="1583.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;leveldb::Slice, std::allocator&lt;leveldb::Slice&gt; &gt;::_M_get_Tp_allocator (10,101,010 samples, 0.02%)</title><rect x="356.5" y="1829" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="359.55" y="1839.5" ></text>
</g>
<g >
<title>std::vector&lt;leveldb::FileMetaData*, std::allocator&lt;leveldb::FileMetaData*&gt; &gt;::_S_max_size (10,101,010 samples, 0.02%)</title><rect x="655.6" y="1829" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="658.62" y="1839.5" ></text>
</g>
<g >
<title>filemap_map_pages (20,202,020 samples, 0.04%)</title><rect x="651.4" y="1653" width="0.5" height="15.0" fill="rgb(229,112,27)" rx="2" ry="2" />
<text x="654.42" y="1663.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::back (10,101,010 samples, 0.02%)</title><rect x="589.8" y="1861" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="592.77" y="1871.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="216.7" y="1845" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="219.72" y="1855.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="1175.6" y="2005" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1178.57" y="2015.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1,070,707,060 samples, 2.36%)</title><rect x="1076.9" y="1909" width="27.8" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1079.93" y="1919.5" >_..</text>
</g>
<g >
<title>balance_dirty_pages_ratelimited_flags (70,707,070 samples, 0.16%)</title><rect x="410.6" y="1653" width="1.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="413.59" y="1663.5" ></text>
</g>
<g >
<title>__fsnotify_parent (10,101,010 samples, 0.02%)</title><rect x="145.4" y="1701" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="148.37" y="1711.5" ></text>
</g>
<g >
<title>_IO_str_init_static_internal (10,101,010 samples, 0.02%)</title><rect x="1006.1" y="2037" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1009.10" y="2047.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wake (30,303,030 samples, 0.07%)</title><rect x="708.1" y="1877" width="0.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="711.08" y="1887.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::data (10,101,010 samples, 0.02%)</title><rect x="219.9" y="1861" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="222.87" y="1871.5" ></text>
</g>
<g >
<title>xas_descend (30,303,030 samples, 0.07%)</title><rect x="926.3" y="1813" width="0.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="929.35" y="1823.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (60,606,060 samples, 0.13%)</title><rect x="41.0" y="1797" width="1.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="43.96" y="1807.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node::Next (30,303,030 samples, 0.07%)</title><rect x="617.8" y="1845" width="0.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="620.84" y="1855.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.09%)</title><rect x="657.2" y="1845" width="1.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="660.19" y="1855.5" ></text>
</g>
<g >
<title>allocate_slab (50,505,050 samples, 0.11%)</title><rect x="931.3" y="1749" width="1.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="934.33" y="1759.5" ></text>
</g>
<g >
<title>leveldb::Block::~Block (10,101,010 samples, 0.02%)</title><rect x="645.6" y="1733" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="648.65" y="1743.5" ></text>
</g>
<g >
<title>leveldb::DecodeEntry (161,616,160 samples, 0.36%)</title><rect x="639.6" y="1797" width="4.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="642.61" y="1807.5" ></text>
</g>
<g >
<title>fscrypt_file_open (60,606,060 samples, 0.13%)</title><rect x="766.3" y="1845" width="1.6" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="769.32" y="1855.5" ></text>
</g>
<g >
<title>fdatasync (30,303,030 samples, 0.07%)</title><rect x="11.8" y="1813" width="0.8" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="14.84" y="1823.5" ></text>
</g>
<g >
<title>do_futex (343,434,340 samples, 0.76%)</title><rect x="683.9" y="1749" width="9.0" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="686.95" y="1759.5" ></text>
</g>
<g >
<title>mptscsih_qcmd (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1429" width="0.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="84.88" y="1439.5" ></text>
</g>
<g >
<title>aa_label_is_subset (10,101,010 samples, 0.02%)</title><rect x="421.1" y="1669" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="424.08" y="1679.5" ></text>
</g>
<g >
<title>rw_verify_area (60,606,060 samples, 0.13%)</title><rect x="419.8" y="1717" width="1.5" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="422.77" y="1727.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_assign (10,101,010 samples, 0.02%)</title><rect x="247.4" y="1877" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="250.42" y="1887.5" ></text>
</g>
<g >
<title>std::_Rb_tree_iterator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::operator* (10,101,010 samples, 0.02%)</title><rect x="662.7" y="1813" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="665.70" y="1823.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="787.6" y="1605" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="790.57" y="1615.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="694.2" y="1813" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="697.18" y="1823.5" ></text>
</g>
<g >
<title>get_page_from_freelist (40,404,040 samples, 0.09%)</title><rect x="931.3" y="1717" width="1.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="934.33" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="261" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="271.5" ></text>
</g>
<g >
<title>[unknown] (151,515,150 samples, 0.33%)</title><rect x="830.1" y="2021" width="3.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="833.07" y="2031.5" ></text>
</g>
<g >
<title>lookup_fast (30,303,030 samples, 0.07%)</title><rect x="793.1" y="1877" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="796.08" y="1887.5" ></text>
</g>
<g >
<title>leveldb::MutexLock::~MutexLock (20,202,020 samples, 0.04%)</title><rect x="654.3" y="1781" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="657.30" y="1791.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::append (20,202,020 samples, 0.04%)</title><rect x="159.3" y="1845" width="0.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="162.27" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="713.1" y="1509" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1519.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_S_relocate (20,202,020 samples, 0.04%)</title><rect x="242.7" y="1797" width="0.5" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="245.69" y="1807.5" ></text>
</g>
<g >
<title>void std::vector&lt;leveldb::Slice, std::allocator&lt;leveldb::Slice&gt; &gt;::_M_realloc_insert&lt;leveldb::Slice const&amp;&gt; (90,909,090 samples, 0.20%)</title><rect x="357.1" y="1829" width="2.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="360.07" y="1839.5" ></text>
</g>
<g >
<title>x64_sys_call (20,202,020 samples, 0.04%)</title><rect x="619.7" y="1797" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="622.68" y="1807.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="617.8" y="1829" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="620.84" y="1839.5" ></text>
</g>
<g >
<title>leveldb::crc32c::Extend (242,424,240 samples, 0.53%)</title><rect x="150.4" y="1781" width="6.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="153.35" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="517" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="527.5" ></text>
</g>
<g >
<title>__futex_wait (20,202,020 samples, 0.04%)</title><rect x="619.7" y="1733" width="0.5" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="622.68" y="1743.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (10,101,010 samples, 0.02%)</title><rect x="937.6" y="1781" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="940.63" y="1791.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node::Next (10,101,010 samples, 0.02%)</title><rect x="619.2" y="1861" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="622.15" y="1871.5" ></text>
</g>
<g >
<title>leveldb::MemTable::Add (242,424,240 samples, 0.53%)</title><rect x="667.2" y="1813" width="6.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="670.16" y="1823.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::Next (777,777,770 samples, 1.71%)</title><rect x="49.6" y="1829" width="20.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="52.61" y="1839.5" ></text>
</g>
<g >
<title>x64_sys_call (1,131,313,120 samples, 2.49%)</title><rect x="1075.4" y="2005" width="29.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1078.36" y="2015.5" >x6..</text>
</g>
<g >
<title>__rcu_read_lock (10,101,010 samples, 0.02%)</title><rect x="420.3" y="1669" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="423.30" y="1679.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_Vector_base (20,202,020 samples, 0.04%)</title><rect x="230.9" y="1845" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="233.89" y="1855.5" ></text>
</g>
<g >
<title>init_file (60,606,060 samples, 0.13%)</title><rect x="752.2" y="1893" width="1.5" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="755.16" y="1903.5" ></text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt; const&amp; std::forward&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; const&amp;&gt; (10,101,010 samples, 0.02%)</title><rect x="232.7" y="1781" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="235.73" y="1791.5" ></text>
</g>
<g >
<title>__ext4_get_inode_loc (10,101,010 samples, 0.02%)</title><rect x="878.1" y="1781" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="881.08" y="1791.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (202,020,200 samples, 0.44%)</title><rect x="144.1" y="1781" width="5.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="147.06" y="1791.5" ></text>
</g>
<g >
<title>futex_wait_queue (40,404,040 samples, 0.09%)</title><rect x="705.5" y="1749" width="1.0" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="708.46" y="1759.5" ></text>
</g>
<g >
<title>x64_sys_call (3,646,464,610 samples, 8.03%)</title><rect x="860.5" y="2005" width="94.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="863.50" y="2015.5" >x64_sys_call</text>
</g>
<g >
<title>leveldb::Random::Next (10,101,010 samples, 0.02%)</title><rect x="592.1" y="1893" width="0.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="595.13" y="1903.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1477" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="87.77" y="1487.5" ></text>
</g>
<g >
<title>consume_obj_stock (10,101,010 samples, 0.02%)</title><rect x="754.8" y="1877" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="757.78" y="1887.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixWritableFile::Flush (20,202,020 samples, 0.04%)</title><rect x="22.6" y="1797" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="25.59" y="1807.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::SeekToFirst (20,202,020 samples, 0.04%)</title><rect x="53.8" y="1765" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="56.81" y="1775.5" ></text>
</g>
<g >
<title>leveldb::Version::Unref (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1861" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="13.79" y="1871.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.04%)</title><rect x="403.0" y="1605" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="405.98" y="1615.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="617.1" y="1797" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="620.05" y="1807.5" ></text>
</g>
<g >
<title>aa_put_buffer (10,101,010 samples, 0.02%)</title><rect x="780.8" y="1813" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="783.75" y="1823.5" ></text>
</g>
<g >
<title>mpt_put_msg_frame (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1301" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="87.77" y="1311.5" ></text>
</g>
<g >
<title>create_empty_buffers (10,101,010 samples, 0.02%)</title><rect x="148.0" y="1605" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="150.99" y="1615.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="583.5" y="1701" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="586.47" y="1711.5" ></text>
</g>
<g >
<title>__strchr_evex (40,404,040 samples, 0.09%)</title><rect x="1005.1" y="2053" width="1.0" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1008.05" y="2063.5" ></text>
</g>
<g >
<title>x64_sys_call (222,222,220 samples, 0.49%)</title><rect x="675.8" y="1749" width="5.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="678.82" y="1759.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="583.5" y="1653" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="586.47" y="1663.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="596.6" y="1845" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="599.59" y="1855.5" ></text>
</g>
<g >
<title>rmqueue (131,313,130 samples, 0.29%)</title><rect x="920.6" y="1765" width="3.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="923.58" y="1775.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::operator[] (10,101,010 samples, 0.02%)</title><rect x="248.2" y="1877" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="251.20" y="1887.5" ></text>
</g>
<g >
<title>dput (10,101,010 samples, 0.02%)</title><rect x="1118.6" y="1925" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1121.64" y="1935.5" ></text>
</g>
<g >
<title>void std::allocator_traits&lt;std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::construct&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::pair&lt;unsigned long, unsigned long&gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="212.8" y="1797" width="0.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="215.79" y="1807.5" ></text>
</g>
<g >
<title>folio_alloc (70,707,070 samples, 0.16%)</title><rect x="1137.3" y="1797" width="1.8" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="1140.27" y="1807.5" ></text>
</g>
<g >
<title>leveldb::EncodeFixed64 (20,202,020 samples, 0.04%)</title><rect x="252.7" y="1829" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="255.66" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="277" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="287.5" ></text>
</g>
<g >
<title>__alloc_pages (10,101,010 samples, 0.02%)</title><rect x="399.0" y="1573" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="402.05" y="1583.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;leveldb::FileMetaData*, std::allocator&lt;leveldb::FileMetaData*&gt; &gt;::_Vector_impl::~_Vector_impl (10,101,010 samples, 0.02%)</title><rect x="656.4" y="1845" width="0.3" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="659.40" y="1855.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::AssertHeld (10,101,010 samples, 0.02%)</title><rect x="427.9" y="1893" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="430.91" y="1903.5" ></text>
</g>
<g >
<title>read (2,535,353,510 samples, 5.58%)</title><rect x="1105.0" y="2053" width="65.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1108.00" y="2063.5" >read</text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;unsigned long, unsigned long&gt;*, std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt; &gt;::operator- (10,101,010 samples, 0.02%)</title><rect x="209.1" y="1797" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="212.12" y="1807.5" ></text>
</g>
<g >
<title>xas_start (20,202,020 samples, 0.04%)</title><rect x="1131.8" y="1845" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1134.76" y="1855.5" ></text>
</g>
<g >
<title>jbd2_journal_stop (10,101,010 samples, 0.02%)</title><rect x="678.7" y="1573" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="681.70" y="1583.5" ></text>
</g>
<g >
<title>dget_parent (20,202,020 samples, 0.04%)</title><rect x="864.2" y="1925" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="867.18" y="1935.5" ></text>
</g>
<g >
<title>__fsnotify_parent (60,606,060 samples, 0.13%)</title><rect x="676.9" y="1685" width="1.5" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="679.87" y="1695.5" ></text>
</g>
<g >
<title>filp_flush (60,606,060 samples, 0.13%)</title><rect x="986.7" y="1973" width="1.6" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="989.69" y="1983.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1301" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="56.29" y="1311.5" ></text>
</g>
<g >
<title>ext4_da_reserve_space (50,505,050 samples, 0.11%)</title><rect x="936.8" y="1813" width="1.4" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="939.84" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="709" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="719.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32 (10,101,010 samples, 0.02%)</title><rect x="350.8" y="1845" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="353.78" y="1855.5" ></text>
</g>
<g >
<title>mntput_no_expire (10,101,010 samples, 0.02%)</title><rect x="796.0" y="1893" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="798.97" y="1903.5" ></text>
</g>
<g >
<title>std::map&lt;unsigned long, unsigned long, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::lower_bound (242,424,240 samples, 0.53%)</title><rect x="200.5" y="1829" width="6.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="203.46" y="1839.5" ></text>
</g>
<g >
<title>leveldb::MemTable::ApproximateMemoryUsage (10,101,010 samples, 0.02%)</title><rect x="175.0" y="1877" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="178.01" y="1887.5" ></text>
</g>
<g >
<title>ext4_buffered_write_iter (555,555,550 samples, 1.22%)</title><rect x="405.1" y="1701" width="14.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="408.08" y="1711.5" ></text>
</g>
<g >
<title>leveldb::GetLengthPrefixedSlice (626,262,620 samples, 1.38%)</title><rect x="303.3" y="1765" width="16.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="306.29" y="1775.5" ></text>
</g>
<g >
<title>std::ios_base::ios_base (20,202,020 samples, 0.04%)</title><rect x="828.8" y="2005" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="831.76" y="2015.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (40,404,040 samples, 0.09%)</title><rect x="106.5" y="1797" width="1.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="109.54" y="1807.5" ></text>
</g>
<g >
<title>pthread_mutex_lock@plt (10,101,010 samples, 0.02%)</title><rect x="654.0" y="1733" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="657.04" y="1743.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Unlock (30,303,030 samples, 0.07%)</title><rect x="708.1" y="1909" width="0.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="711.08" y="1919.5" ></text>
</g>
<g >
<title>ext4_generic_write_checks (30,303,030 samples, 0.07%)</title><rect x="875.7" y="1893" width="0.8" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="878.72" y="1903.5" ></text>
</g>
<g >
<title>fsnotify_handle_inode_event.isra.0 (262,626,260 samples, 0.58%)</title><rect x="867.3" y="1893" width="6.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="870.32" y="1903.5" ></text>
</g>
<g >
<title>mptspi_qcmd (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1333" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="87.77" y="1343.5" ></text>
</g>
<g >
<title>try_module_get (20,202,020 samples, 0.04%)</title><rect x="788.9" y="1877" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="791.88" y="1887.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::size (20,202,020 samples, 0.04%)</title><rect x="243.5" y="1797" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="246.48" y="1807.5" ></text>
</g>
<g >
<title>x64_sys_call (1,292,929,280 samples, 2.85%)</title><rect x="388.0" y="1781" width="33.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="391.03" y="1791.5" >x6..</text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="117" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="127.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::MergingIterator::key (10,101,010 samples, 0.02%)</title><rect x="10.5" y="1877" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="13.52" y="1887.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (10,101,010 samples, 0.02%)</title><rect x="808.3" y="1861" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="811.30" y="1871.5" ></text>
</g>
<g >
<title>leveldb::log::Writer::EmitPhysicalRecord (2,535,353,510 samples, 5.58%)</title><rect x="362.1" y="1877" width="65.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="365.06" y="1887.5" >leveldb..</text>
</g>
<g >
<title>bool __gnu_cxx::operator!=&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="189.2" y="1845" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="192.18" y="1855.5" ></text>
</g>
<g >
<title>leveldb::Slice::operator[] (353,535,350 samples, 0.78%)</title><rect x="115.7" y="1829" width="9.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="118.72" y="1839.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="178.7" y="1797" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="181.68" y="1807.5" ></text>
</g>
<g >
<title>filemap_fdatawrite_wbc (30,303,030 samples, 0.07%)</title><rect x="11.8" y="1685" width="0.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="14.84" y="1695.5" ></text>
</g>
<g >
<title>leveldb::TableCache::Get (1,141,414,130 samples, 2.51%)</title><rect x="625.7" y="1845" width="29.7" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="628.71" y="1855.5" >le..</text>
</g>
<g >
<title>std::__basic_file&lt;char&gt;::~__basic_file (20,202,020 samples, 0.04%)</title><rect x="218.8" y="1861" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="221.82" y="1871.5" ></text>
</g>
<g >
<title>mptspi_qcmd (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1605" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1168.86" y="1615.5" ></text>
</g>
<g >
<title>blk_account_io_start (70,707,070 samples, 0.16%)</title><rect x="1163.8" y="1685" width="1.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1166.77" y="1695.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="936.6" y="1813" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="939.58" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="581" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="591.5" ></text>
</g>
<g >
<title>__filemap_fdatawrite_range (30,303,030 samples, 0.07%)</title><rect x="11.8" y="1701" width="0.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="14.84" y="1711.5" ></text>
</g>
<g >
<title>free_unref_page_prepare (10,101,010 samples, 0.02%)</title><rect x="11.0" y="1621" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="14.05" y="1631.5" ></text>
</g>
<g >
<title>timestamp_truncate (10,101,010 samples, 0.02%)</title><rect x="409.0" y="1653" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="412.02" y="1663.5" ></text>
</g>
<g >
<title>leveldb::Slice::compare (10,101,010 samples, 0.02%)</title><rect x="109.7" y="1813" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="112.69" y="1823.5" ></text>
</g>
<g >
<title>operator new (10,101,010 samples, 0.02%)</title><rect x="231.2" y="1781" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="234.15" y="1791.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,101,010 samples, 0.02%)</title><rect x="147.2" y="1541" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="150.20" y="1551.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="709.4" y="1893" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="712.40" y="1903.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_S_key (10,101,010 samples, 0.02%)</title><rect x="206.0" y="1797" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="208.97" y="1807.5" ></text>
</g>
<g >
<title>std::fpos&lt;__mbstate_t&gt;::fpos (20,202,020 samples, 0.04%)</title><rect x="711.8" y="1925" width="0.5" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="714.76" y="1935.5" ></text>
</g>
<g >
<title>std::istream::sentry::sentry (10,101,010 samples, 0.02%)</title><rect x="829.5" y="2037" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="832.55" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (10,101,010 samples, 0.02%)</title><rect x="86.3" y="1829" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="89.34" y="1839.5" ></text>
</g>
<g >
<title>operator new[] (10,101,010 samples, 0.02%)</title><rect x="218.0" y="1861" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="221.03" y="1871.5" ></text>
</g>
<g >
<title>refill_obj_stock (20,202,020 samples, 0.04%)</title><rect x="980.4" y="1909" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="983.39" y="1919.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="123.6" y="1733" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="126.59" y="1743.5" ></text>
</g>
<g >
<title>__x64_sys_futex (10,101,010 samples, 0.02%)</title><rect x="699.4" y="1781" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="702.43" y="1791.5" ></text>
</g>
<g >
<title>putname (30,303,030 samples, 0.07%)</title><rect x="805.7" y="1941" width="0.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="808.67" y="1951.5" ></text>
</g>
<g >
<title>may_open (30,303,030 samples, 0.07%)</title><rect x="759.8" y="1893" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="762.76" y="1903.5" ></text>
</g>
<g >
<title>mutex_unlock (30,303,030 samples, 0.07%)</title><rect x="1063.6" y="1957" width="0.7" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1066.55" y="1967.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixWritableFile::FlushBuffer (262,626,260 samples, 0.58%)</title><rect x="675.0" y="1813" width="6.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="678.03" y="1823.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="660.6" y="1781" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="663.60" y="1791.5" ></text>
</g>
<g >
<title>lru_gen_refault (40,404,040 samples, 0.09%)</title><rect x="1136.2" y="1781" width="1.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1139.22" y="1791.5" ></text>
</g>
<g >
<title>leveldb::Slice::operator[] (80,808,080 samples, 0.18%)</title><rect x="140.6" y="1845" width="2.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="143.64" y="1855.5" ></text>
</g>
<g >
<title>_IO_file_open (50,505,050 samples, 0.11%)</title><rect x="835.1" y="2053" width="1.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="838.06" y="2063.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::key (10,101,010 samples, 0.02%)</title><rect x="63.8" y="1749" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="66.78" y="1759.5" ></text>
</g>
<g >
<title>filemap_add_folio (585,858,580 samples, 1.29%)</title><rect x="892.8" y="1845" width="15.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="895.77" y="1855.5" ></text>
</g>
<g >
<title>ext4_da_write_begin (131,313,130 samples, 0.29%)</title><rect x="413.0" y="1669" width="3.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="415.95" y="1679.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="1175.6" y="1989" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1178.57" y="1999.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="692.6" y="1669" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="695.61" y="1679.5" ></text>
</g>
<g >
<title>mptscsih_qcmd (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1589" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1168.86" y="1599.5" ></text>
</g>
<g >
<title>post_alloc_hook (10,101,010 samples, 0.02%)</title><rect x="931.9" y="1701" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="934.86" y="1711.5" ></text>
</g>
<g >
<title>prepend_copy (60,606,060 samples, 0.13%)</title><rect x="786.5" y="1717" width="1.6" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="789.52" y="1727.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="694.2" y="1797" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="697.18" y="1807.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="583.5" y="1637" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="586.47" y="1647.5" ></text>
</g>
<g >
<title>leveldb::MutexLock::MutexLock (10,101,010 samples, 0.02%)</title><rect x="648.0" y="1765" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="651.01" y="1775.5" ></text>
</g>
<g >
<title>std::mutex::lock (30,303,030 samples, 0.07%)</title><rect x="177.4" y="1861" width="0.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="180.37" y="1871.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::end (10,101,010 samples, 0.02%)</title><rect x="590.0" y="1861" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="593.03" y="1871.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;::__normal_iterator (10,101,010 samples, 0.02%)</title><rect x="243.2" y="1781" width="0.3" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="246.22" y="1791.5" ></text>
</g>
<g >
<title>fopen@@GLIBC_2.2.5 (30,303,030 samples, 0.07%)</title><rect x="823.5" y="2037" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="826.51" y="2047.5" ></text>
</g>
<g >
<title>ext4_release_folio (10,101,010 samples, 0.02%)</title><rect x="11.6" y="1605" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="14.57" y="1615.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (40,404,040 samples, 0.09%)</title><rect x="153.2" y="1765" width="1.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="156.24" y="1775.5" ></text>
</g>
<g >
<title>crc32c_pcl_intel_update (10,101,010 samples, 0.02%)</title><rect x="679.0" y="1477" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="681.96" y="1487.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::end (10,101,010 samples, 0.02%)</title><rect x="589.8" y="1845" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="592.77" y="1855.5" ></text>
</g>
<g >
<title>__rcu_read_lock (10,101,010 samples, 0.02%)</title><rect x="411.6" y="1637" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="414.64" y="1647.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;unsigned long, unsigned long&gt;*, std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt; &gt;::base (10,101,010 samples, 0.02%)</title><rect x="209.9" y="1797" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="212.90" y="1807.5" ></text>
</g>
<g >
<title>submit_bio_noacct_nocheck (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1573" width="0.6" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="14.84" y="1583.5" ></text>
</g>
<g >
<title>std::mutex::lock (10,101,010 samples, 0.02%)</title><rect x="591.1" y="1893" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="594.08" y="1903.5" ></text>
</g>
<g >
<title>__srcu_read_unlock (10,101,010 samples, 0.02%)</title><rect x="863.4" y="1925" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="866.39" y="1935.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (10,101,010 samples, 0.02%)</title><rect x="123.6" y="1797" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="126.59" y="1807.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (40,404,040 samples, 0.09%)</title><rect x="809.3" y="1893" width="1.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="812.35" y="1903.5" ></text>
</g>
<g >
<title>__folio_mark_dirty (141,414,140 samples, 0.31%)</title><rect x="945.8" y="1813" width="3.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="948.76" y="1823.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::FindGreaterOrEqual (10,101,010 samples, 0.02%)</title><rect x="600.3" y="1877" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="603.26" y="1887.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (10,101,010 samples, 0.02%)</title><rect x="22.6" y="1589" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="25.59" y="1599.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="533" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="543.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::_M_deallocate (10,101,010 samples, 0.02%)</title><rect x="235.3" y="1829" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="238.35" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (20,202,020 samples, 0.04%)</title><rect x="713.1" y="1285" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1295.5" ></text>
</g>
<g >
<title>sbitmap_get (10,101,010 samples, 0.02%)</title><rect x="1163.5" y="1637" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1166.50" y="1647.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_M_allocate (10,101,010 samples, 0.02%)</title><rect x="241.6" y="1797" width="0.3" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="244.65" y="1807.5" ></text>
</g>
<g >
<title>filemap_add_folio (181,818,180 samples, 0.40%)</title><rect x="1132.5" y="1813" width="4.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1135.55" y="1823.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="245.6" y="1845" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="248.58" y="1855.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (20,202,020 samples, 0.04%)</title><rect x="636.7" y="1781" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="639.73" y="1791.5" ></text>
</g>
<g >
<title>ext4_claim_free_clusters (10,101,010 samples, 0.02%)</title><rect x="937.6" y="1797" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="940.63" y="1807.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (50,505,050 samples, 0.11%)</title><rect x="877.0" y="1861" width="1.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="880.03" y="1871.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (10,101,010 samples, 0.02%)</title><rect x="881.8" y="1845" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="884.75" y="1855.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Lock (30,303,030 samples, 0.07%)</title><rect x="177.4" y="1877" width="0.8" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="180.37" y="1887.5" ></text>
</g>
<g >
<title>std::ostream::sentry::sentry (10,101,010 samples, 0.02%)</title><rect x="1187.9" y="2053" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1190.90" y="2063.5" ></text>
</g>
<g >
<title>lockref_put_return (40,404,040 samples, 0.09%)</title><rect x="766.8" y="1829" width="1.1" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="769.85" y="1839.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="331.1" y="1685" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="334.10" y="1695.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (323,232,320 samples, 0.71%)</title><rect x="323.2" y="1749" width="8.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="326.23" y="1759.5" ></text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt;* std::__uninitialized_copy&lt;false&gt;::__uninit_copy&lt;__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; const*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;, std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*&gt; (40,404,040 samples, 0.09%)</title><rect x="231.9" y="1813" width="1.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="234.94" y="1823.5" ></text>
</g>
<g >
<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1397" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="87.77" y="1407.5" ></text>
</g>
<g >
<title>rmqueue_bulk (90,909,090 samples, 0.20%)</title><rect x="921.4" y="1733" width="2.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="924.37" y="1743.5" ></text>
</g>
<g >
<title>__vsnprintf_internal (10,101,010 samples, 0.02%)</title><rect x="169.8" y="1909" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="172.76" y="1919.5" ></text>
</g>
<g >
<title>security_inode_permission (10,101,010 samples, 0.02%)</title><rect x="792.0" y="1877" width="0.3" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="795.03" y="1887.5" ></text>
</g>
<g >
<title>__gnu_cxx::new_allocator&lt;leveldb::Slice&gt;::allocate (10,101,010 samples, 0.02%)</title><rect x="357.3" y="1781" width="0.3" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="360.34" y="1791.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (10,101,010 samples, 0.02%)</title><rect x="1127.8" y="1877" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1130.83" y="1887.5" ></text>
</g>
<g >
<title>submit_bio (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1605" width="0.6" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="14.84" y="1615.5" ></text>
</g>
<g >
<title>folio_add_lru (161,616,160 samples, 0.36%)</title><rect x="903.8" y="1829" width="4.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="906.79" y="1839.5" ></text>
</g>
<g >
<title>void __gnu_cxx::new_allocator&lt;leveldb::DBImpl::Writer*&gt;::construct&lt;leveldb::DBImpl::Writer*, leveldb::DBImpl::Writer*&gt; (10,101,010 samples, 0.02%)</title><rect x="590.3" y="1845" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="593.29" y="1855.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="850.5" y="2021" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="853.53" y="2031.5" ></text>
</g>
<g >
<title>setup_object (10,101,010 samples, 0.02%)</title><rect x="932.4" y="1717" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="935.38" y="1727.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,101,010 samples, 0.02%)</title><rect x="11.6" y="1541" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="14.57" y="1551.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (10,101,010 samples, 0.02%)</title><rect x="755.0" y="1877" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="758.04" y="1887.5" ></text>
</g>
<g >
<title>rmqueue (10,101,010 samples, 0.02%)</title><rect x="147.2" y="1525" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="150.20" y="1535.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixEnv::BackgroundThreadEntryPoint (6,101,010,040 samples, 13.43%)</title><rect x="10.0" y="1957" width="158.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="13.00" y="1967.5" >leveldb::(anonymous ..</text>
</g>
<g >
<title>std::_Rb_tree_iterator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::operator* (30,303,030 samples, 0.07%)</title><rect x="198.6" y="1829" width="0.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="201.62" y="1839.5" ></text>
</g>
<g >
<title>leveldb::operator== (10,101,010 samples, 0.02%)</title><rect x="21.3" y="1797" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="24.28" y="1807.5" ></text>
</g>
<g >
<title>__ext4_journal_start_sb (10,101,010 samples, 0.02%)</title><rect x="407.2" y="1621" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="410.18" y="1631.5" ></text>
</g>
<g >
<title>filemap_alloc_folio (70,707,070 samples, 0.16%)</title><rect x="1137.3" y="1813" width="1.8" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="1140.27" y="1823.5" ></text>
</g>
<g >
<title>std::allocator_traits&lt;std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::deallocate (10,101,010 samples, 0.02%)</title><rect x="665.3" y="1781" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="668.32" y="1791.5" ></text>
</g>
<g >
<title>__GI___pthread_enable_asynccancel (10,101,010 samples, 0.02%)</title><rect x="810.4" y="2037" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="813.40" y="2047.5" ></text>
</g>
<g >
<title>folio_memcg_lock (20,202,020 samples, 0.04%)</title><rect x="950.0" y="1813" width="0.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="952.96" y="1823.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_S_right (20,202,020 samples, 0.04%)</title><rect x="206.2" y="1797" width="0.6" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="209.23" y="1807.5" ></text>
</g>
<g >
<title>std::enable_if&lt;std::__and_&lt;std::__not_&lt;std::__is_tuple_like&lt;char const*&gt; &gt;, std::is_move_constructible&lt;char const*&gt;, std::is_move_assignable&lt;char const*&gt; &gt;::value, void&gt;::type std::swap&lt;char const*&gt; (10,101,010 samples, 0.02%)</title><rect x="592.7" y="1893" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="595.65" y="1903.5" ></text>
</g>
<g >
<title>__blk_mq_do_dispatch_sched (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1509" width="0.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="84.88" y="1519.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="885" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="895.5" ></text>
</g>
<g >
<title>std::basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;::_M_cache_locale (10,101,010 samples, 0.02%)</title><rect x="832.2" y="2005" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="835.17" y="2015.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="334.3" y="1733" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="337.25" y="1743.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.24%)</title><rect x="728.5" y="2021" width="2.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="731.55" y="2031.5" ></text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt;* std::__uninitialized_copy_a&lt;__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; const*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;, std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="229.6" y="1861" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="232.58" y="1871.5" ></text>
</g>
<g >
<title>std::vector&lt;leveldb::FileMetaData*, std::allocator&lt;leveldb::FileMetaData*&gt; &gt;::vector (20,202,020 samples, 0.04%)</title><rect x="655.9" y="1861" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="658.88" y="1871.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::push_back (10,101,010 samples, 0.02%)</title><rect x="1178.7" y="2053" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1181.72" y="2063.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="110.2" y="1813" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="113.21" y="1823.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (20,202,020 samples, 0.04%)</title><rect x="390.7" y="1733" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="393.65" y="1743.5" ></text>
</g>
<g >
<title>leveldb::GetLengthPrefixedSlice (20,202,020 samples, 0.04%)</title><rect x="673.5" y="1829" width="0.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="676.45" y="1839.5" ></text>
</g>
<g >
<title>__x64_sys_close (10,101,010 samples, 0.02%)</title><rect x="973.8" y="2005" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="976.83" y="2015.5" ></text>
</g>
<g >
<title>__gnu_cxx::__aligned_membuf&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_addr (10,101,010 samples, 0.02%)</title><rect x="165.6" y="1749" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="168.57" y="1759.5" ></text>
</g>
<g >
<title>truncate_inode_pages_range (30,303,030 samples, 0.07%)</title><rect x="11.0" y="1685" width="0.8" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="14.05" y="1695.5" ></text>
</g>
<g >
<title>irqentry_exit (10,101,010 samples, 0.02%)</title><rect x="40.4" y="1781" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="43.43" y="1791.5" ></text>
</g>
<g >
<title>rmqueue (10,101,010 samples, 0.02%)</title><rect x="924.0" y="1781" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="926.99" y="1791.5" ></text>
</g>
<g >
<title>__alloc_pages_slowpath.constprop.0 (10,101,010 samples, 0.02%)</title><rect x="909.3" y="1781" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="912.30" y="1791.5" ></text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt;&amp; std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::emplace_back&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; (20,202,020 samples, 0.04%)</title><rect x="666.1" y="1797" width="0.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="669.11" y="1807.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_replace (10,101,010 samples, 0.02%)</title><rect x="162.2" y="1861" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="165.16" y="1871.5" ></text>
</g>
<g >
<title>futex_wake (10,101,010 samples, 0.02%)</title><rect x="178.7" y="1749" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="181.68" y="1759.5" ></text>
</g>
<g >
<title>std::operator&amp; (20,202,020 samples, 0.04%)</title><rect x="342.9" y="1765" width="0.5" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="345.91" y="1775.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Valid (30,303,030 samples, 0.07%)</title><rect x="46.7" y="1829" width="0.8" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="49.73" y="1839.5" ></text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt;* std::__uninitialized_copy_a&lt;__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; const*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;, std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; (60,606,060 samples, 0.13%)</title><rect x="231.4" y="1845" width="1.6" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="234.41" y="1855.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Valid (10,101,010 samples, 0.02%)</title><rect x="67.5" y="1749" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="70.45" y="1759.5" ></text>
</g>
<g >
<title>std::_Rb_tree_const_iterator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_Rb_tree_const_iterator (10,101,010 samples, 0.02%)</title><rect x="191.3" y="1813" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="194.28" y="1823.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_create (30,303,030 samples, 0.07%)</title><rect x="1175.8" y="2053" width="0.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1178.83" y="2063.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::LRUCache::LRU_Append (10,101,010 samples, 0.02%)</title><rect x="653.8" y="1765" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="656.78" y="1775.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="331.1" y="1717" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="334.10" y="1727.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (40,404,040 samples, 0.09%)</title><rect x="407.2" y="1637" width="1.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="410.18" y="1647.5" ></text>
</g>
<g >
<title>leveldb::WriteBatchInternal::Contents (10,101,010 samples, 0.02%)</title><rect x="694.4" y="1877" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="697.44" y="1887.5" ></text>
</g>
<g >
<title>ksys_write (151,515,150 samples, 0.33%)</title><rect x="145.4" y="1717" width="3.9" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="148.37" y="1727.5" ></text>
</g>
<g >
<title>truncate_inode_pages_final (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1685" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="13.79" y="1695.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="54.1" y="1621" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="57.07" y="1631.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="136.4" y="1829" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="139.45" y="1839.5" ></text>
</g>
<g >
<title>std::_Rb_tree_node&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_valptr (10,101,010 samples, 0.02%)</title><rect x="199.1" y="1813" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="202.15" y="1823.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::LRUCache::LRU_Append (10,101,010 samples, 0.02%)</title><rect x="626.2" y="1781" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="629.23" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1669" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1679.5" ></text>
</g>
<g >
<title>std::basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;::_M_cache_locale (20,202,020 samples, 0.04%)</title><rect x="1183.7" y="2053" width="0.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1186.70" y="2063.5" ></text>
</g>
<g >
<title>std::map&lt;unsigned long, unsigned long, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::end (10,101,010 samples, 0.02%)</title><rect x="197.8" y="1845" width="0.3" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="200.83" y="1855.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::value (10,101,010 samples, 0.02%)</title><rect x="78.2" y="1797" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="81.21" y="1807.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;::operator* (10,101,010 samples, 0.02%)</title><rect x="662.4" y="1813" width="0.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="665.44" y="1823.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (10,101,010 samples, 0.02%)</title><rect x="706.0" y="1701" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="708.98" y="1711.5" ></text>
</g>
<g >
<title>try_to_unlazy (40,404,040 samples, 0.09%)</title><rect x="756.9" y="1877" width="1.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="759.88" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1957" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1967.5" ></text>
</g>
<g >
<title>leveldb::port::CondVar::SignalAll (10,101,010 samples, 0.02%)</title><rect x="710.7" y="1925" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="713.71" y="1935.5" ></text>
</g>
<g >
<title>allocate_slab (20,202,020 samples, 0.04%)</title><rect x="399.0" y="1589" width="0.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="402.05" y="1599.5" ></text>
</g>
<g >
<title>void std::_Destroy_aux&lt;true&gt;::__destroy&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*&gt; (10,101,010 samples, 0.02%)</title><rect x="233.5" y="1829" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="236.51" y="1839.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1541" width="0.8" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="84.88" y="1551.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;::operator++ (10,101,010 samples, 0.02%)</title><rect x="188.9" y="1845" width="0.3" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="191.92" y="1855.5" ></text>
</g>
<g >
<title>memset_orig (10,101,010 samples, 0.02%)</title><rect x="755.3" y="1893" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="758.30" y="1903.5" ></text>
</g>
<g >
<title>_int_malloc (70,707,070 samples, 0.16%)</title><rect x="1007.4" y="2053" width="1.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1010.41" y="2063.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::size (20,202,020 samples, 0.04%)</title><rect x="242.2" y="1781" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="245.17" y="1791.5" ></text>
</g>
<g >
<title>ext4_invalidate_folio (20,202,020 samples, 0.04%)</title><rect x="11.3" y="1653" width="0.5" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="14.31" y="1663.5" ></text>
</g>
<g >
<title>submit_bio_noacct (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1557" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="87.77" y="1567.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (20,202,020 samples, 0.04%)</title><rect x="137.2" y="1829" width="0.6" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="140.23" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="88.4" y="1845" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="91.44" y="1855.5" ></text>
</g>
<g >
<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.02%)</title><rect x="12.4" y="1605" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="15.36" y="1615.5" ></text>
</g>
<g >
<title>__ext4_get_inode_loc (10,101,010 samples, 0.02%)</title><rect x="408.0" y="1573" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="410.97" y="1583.5" ></text>
</g>
<g >
<title>leveldb::GetLengthPrefixedSlice (30,303,030 samples, 0.07%)</title><rect x="359.4" y="1861" width="0.8" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="362.44" y="1871.5" ></text>
</g>
<g >
<title>mutex_lock (20,202,020 samples, 0.04%)</title><rect x="390.1" y="1717" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="393.13" y="1727.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wake (20,202,020 samples, 0.04%)</title><rect x="620.2" y="1845" width="0.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="623.20" y="1855.5" ></text>
</g>
<g >
<title>aa_dfa_match (111,111,110 samples, 0.24%)</title><rect x="774.5" y="1781" width="2.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="777.46" y="1791.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (70,707,070 samples, 0.16%)</title><rect x="30.7" y="1845" width="1.9" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="33.72" y="1855.5" ></text>
</g>
<g >
<title>ima_file_free (10,101,010 samples, 0.02%)</title><rect x="983.5" y="1957" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="986.54" y="1967.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::Iter (10,101,010 samples, 0.02%)</title><rect x="648.8" y="1781" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="651.80" y="1791.5" ></text>
</g>
<g >
<title>__futex_wait (50,505,050 samples, 0.11%)</title><rect x="730.1" y="1925" width="1.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="733.12" y="1935.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (10,101,010 samples, 0.02%)</title><rect x="58.8" y="1717" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="61.80" y="1727.5" ></text>
</g>
<g >
<title>leveldb::Status::ok (10,101,010 samples, 0.02%)</title><rect x="652.2" y="1797" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="655.21" y="1807.5" ></text>
</g>
<g >
<title>__srcu_read_lock (10,101,010 samples, 0.02%)</title><rect x="865.7" y="1909" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="868.75" y="1919.5" ></text>
</g>
<g >
<title>leveldb::Version::~Version (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1845" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="13.79" y="1855.5" ></text>
</g>
<g >
<title>leveldb::log::Writer::AddRecord (2,585,858,560 samples, 5.69%)</title><rect x="360.7" y="1893" width="67.2" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text x="363.75" y="1903.5" >leveldb..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="620.2" y="1829" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="623.20" y="1839.5" ></text>
</g>
<g >
<title>operator new (10,101,010 samples, 0.02%)</title><rect x="590.3" y="1829" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="593.29" y="1839.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (60,606,060 samples, 0.13%)</title><rect x="133.3" y="1829" width="1.6" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="136.30" y="1839.5" ></text>
</g>
<g >
<title>alloc_pages_mpol (10,101,010 samples, 0.02%)</title><rect x="413.7" y="1605" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="416.74" y="1615.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ShardedLRUCache::Lookup (10,101,010 samples, 0.02%)</title><rect x="53.0" y="1733" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="56.02" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1909" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1919.5" ></text>
</g>
<g >
<title>__file_remove_privs (10,101,010 samples, 0.02%)</title><rect x="405.6" y="1685" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="408.61" y="1695.5" ></text>
</g>
<g >
<title>do_futex (10,101,010 samples, 0.02%)</title><rect x="660.9" y="1733" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="663.86" y="1743.5" ></text>
</g>
<g >
<title>__block_commit_write (60,606,060 samples, 0.13%)</title><rect x="416.4" y="1637" width="1.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="419.36" y="1647.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="108.9" y="1797" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="111.90" y="1807.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::Put (151,515,150 samples, 0.33%)</title><rect x="592.9" y="1909" width="4.0" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="595.92" y="1919.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Iterator::Valid (10,101,010 samples, 0.02%)</title><rect x="12.6" y="1813" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="15.62" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1877" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1887.5" ></text>
</g>
<g >
<title>leveldb::WriteBatchInternal::ConverToValueLog (202,020,200 samples, 0.44%)</title><rect x="661.9" y="1861" width="5.3" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="664.91" y="1871.5" ></text>
</g>
<g >
<title>copy_page_from_iter_atomic (20,202,020 samples, 0.04%)</title><rect x="412.4" y="1669" width="0.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="415.43" y="1679.5" ></text>
</g>
<g >
<title>ext4_llseek (20,202,020 samples, 0.04%)</title><rect x="1063.0" y="1957" width="0.6" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1066.03" y="1967.5" ></text>
</g>
<g >
<title>submit_bio (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1573" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="87.77" y="1583.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (40,404,040 samples, 0.09%)</title><rect x="133.6" y="1813" width="1.0" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="136.56" y="1823.5" ></text>
</g>
<g >
<title>[libstdc++.so.6.0.30] (10,101,010 samples, 0.02%)</title><rect x="828.2" y="2005" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="831.23" y="2015.5" ></text>
</g>
<g >
<title>map_id_up (10,101,010 samples, 0.02%)</title><rect x="407.4" y="1557" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="410.44" y="1567.5" ></text>
</g>
<g >
<title>__gnu_cxx::__aligned_membuf&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_ptr (30,303,030 samples, 0.07%)</title><rect x="193.1" y="1765" width="0.8" height="15.0" fill="rgb(230,117,27)" rx="2" ry="2" />
<text x="196.11" y="1775.5" ></text>
</g>
<g >
<title>__schedule (20,202,020 samples, 0.04%)</title><rect x="619.7" y="1685" width="0.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="622.68" y="1695.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Lock (70,707,070 samples, 0.16%)</title><rect x="428.2" y="1893" width="1.8" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="431.17" y="1903.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (10,101,010 samples, 0.02%)</title><rect x="23.4" y="1717" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="26.38" y="1727.5" ></text>
</g>
<g >
<title>ext4_get_inode_loc (10,101,010 samples, 0.02%)</title><rect x="878.1" y="1797" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="881.08" y="1807.5" ></text>
</g>
<g >
<title>apparmor_file_permission (60,606,060 samples, 0.13%)</title><rect x="419.8" y="1685" width="1.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="422.77" y="1695.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::push_back (10,101,010 samples, 0.02%)</title><rect x="663.7" y="1813" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="666.75" y="1823.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="697.1" y="1829" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="700.07" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Table::BlockReader (181,818,180 samples, 0.40%)</title><rect x="647.7" y="1813" width="4.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="650.75" y="1823.5" ></text>
</g>
<g >
<title>futex_hash (20,202,020 samples, 0.04%)</title><rect x="440.0" y="1765" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="442.97" y="1775.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (5,363,636,310 samples, 11.81%)</title><rect x="444.4" y="1717" width="139.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="447.43" y="1727.5" >_raw_spin_unlock_..</text>
</g>
<g >
<title>copy_page_from_iter_atomic (10,101,010 samples, 0.02%)</title><rect x="146.7" y="1637" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="149.68" y="1647.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1429" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="87.77" y="1439.5" ></text>
</g>
<g >
<title>__gnu_cxx::__aligned_membuf&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_ptr (30,303,030 samples, 0.07%)</title><rect x="203.9" y="1749" width="0.8" height="15.0" fill="rgb(230,117,27)" rx="2" ry="2" />
<text x="206.87" y="1759.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="808.0" y="2021" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="811.03" y="2031.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="136.2" y="1813" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="139.18" y="1823.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::MemTableInserter::~MemTableInserter (20,202,020 samples, 0.04%)</title><rect x="249.3" y="1877" width="0.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="252.25" y="1887.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::SkipEmptyDataBlocksForward (10,101,010 samples, 0.02%)</title><rect x="64.6" y="1797" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="67.57" y="1807.5" ></text>
</g>
<g >
<title>wake_up_q (40,404,040 samples, 0.09%)</title><rect x="809.3" y="1925" width="1.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="812.35" y="1935.5" ></text>
</g>
<g >
<title>leveldb::GetLengthPrefixedSlice (50,505,050 samples, 0.11%)</title><rect x="244.5" y="1861" width="1.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="247.53" y="1871.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_append (10,101,010 samples, 0.02%)</title><rect x="23.9" y="1813" width="0.3" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="26.90" y="1823.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="648.5" y="1701" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="651.53" y="1711.5" ></text>
</g>
<g >
<title>file_write_and_wait_range (121,212,120 samples, 0.27%)</title><rect x="81.9" y="1733" width="3.1" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="84.88" y="1743.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.07%)</title><rect x="11.8" y="1797" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="14.84" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="933" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="943.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock@@GLIBC_2.2.5 (10,101,010 samples, 0.02%)</title><rect x="654.3" y="1733" width="0.3" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="657.30" y="1743.5" ></text>
</g>
<g >
<title>send_to_group (50,505,050 samples, 0.11%)</title><rect x="677.1" y="1653" width="1.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="680.13" y="1663.5" ></text>
</g>
<g >
<title>bool std::has_facet&lt;std::num_get&lt;char, std::istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="830.3" y="2005" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="833.33" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="613" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="623.5" ></text>
</g>
<g >
<title>leveldb::PackSequenceAndType (10,101,010 samples, 0.02%)</title><rect x="600.0" y="1877" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="603.00" y="1887.5" ></text>
</g>
<g >
<title>std::operator== (10,101,010 samples, 0.02%)</title><rect x="663.5" y="1781" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="666.49" y="1791.5" ></text>
</g>
<g >
<title>mpage_map_and_submit_extent (10,101,010 samples, 0.02%)</title><rect x="12.4" y="1621" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="15.36" y="1631.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::_S_max_size (10,101,010 samples, 0.02%)</title><rect x="210.7" y="1781" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="213.69" y="1791.5" ></text>
</g>
<g >
<title>iput (30,303,030 samples, 0.07%)</title><rect x="11.0" y="1749" width="0.8" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="14.05" y="1759.5" ></text>
</g>
<g >
<title>lookup_fast (10,101,010 samples, 0.02%)</title><rect x="793.9" y="1893" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="796.87" y="1903.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="609.2" y="1829" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="612.18" y="1839.5" ></text>
</g>
<g >
<title>xas_descend (30,303,030 samples, 0.07%)</title><rect x="1131.0" y="1845" width="0.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1133.97" y="1855.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="15.2" y="1781" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="18.25" y="1791.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::Saver::Saver (10,101,010 samples, 0.02%)</title><rect x="622.0" y="1877" width="0.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="625.04" y="1887.5" ></text>
</g>
<g >
<title>handle_softirqs (20,202,020 samples, 0.04%)</title><rect x="629.6" y="1733" width="0.6" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="632.64" y="1743.5" ></text>
</g>
<g >
<title>touch_atime (50,505,050 samples, 0.11%)</title><rect x="1166.4" y="1893" width="1.3" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="1169.39" y="1903.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.04%)</title><rect x="869.9" y="1813" width="0.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="872.95" y="1823.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node::Next (20,202,020 samples, 0.04%)</title><rect x="672.7" y="1765" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="675.67" y="1775.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (10,101,010 samples, 0.02%)</title><rect x="873.6" y="1861" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="876.62" y="1871.5" ></text>
</g>
<g >
<title>__srcu_read_unlock (10,101,010 samples, 0.02%)</title><rect x="676.9" y="1653" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="679.87" y="1663.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="359.7" y="1829" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="362.70" y="1839.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::data (20,202,020 samples, 0.04%)</title><rect x="596.3" y="1893" width="0.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="599.33" y="1903.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::MergingIterator::FindSmallest (484,848,480 samples, 1.07%)</title><rect x="35.2" y="1845" width="12.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="38.18" y="1855.5" ></text>
</g>
<g >
<title>futex_wake_mark (10,101,010 samples, 0.02%)</title><rect x="660.9" y="1717" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="663.86" y="1727.5" ></text>
</g>
<g >
<title>ext4_get_inode_loc (10,101,010 samples, 0.02%)</title><rect x="679.2" y="1557" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="682.23" y="1567.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::WriteBatch (10,101,010 samples, 0.02%)</title><rect x="695.8" y="1893" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="698.75" y="1903.5" ></text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (20,202,020 samples, 0.04%)</title><rect x="254.2" y="1781" width="0.6" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="257.24" y="1791.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::WriteBlock (20,202,020 samples, 0.04%)</title><rect x="23.1" y="1797" width="0.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="26.12" y="1807.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wait (10,101,010 samples, 0.02%)</title><rect x="177.4" y="1845" width="0.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="180.37" y="1855.5" ></text>
</g>
<g >
<title>leveldb::Arena::MemoryUsage (10,101,010 samples, 0.02%)</title><rect x="174.7" y="1877" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="177.75" y="1887.5" ></text>
</g>
<g >
<title>_int_malloc (10,101,010 samples, 0.02%)</title><rect x="714.4" y="1605" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="717.38" y="1615.5" ></text>
</g>
<g >
<title>mutex_lock (10,101,010 samples, 0.02%)</title><rect x="861.0" y="1957" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="864.03" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (80,808,080 samples, 0.18%)</title><rect x="713.1" y="2021" width="2.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="2031.5" ></text>
</g>
<g >
<title>void std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::_M_realloc_insert&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="663.7" y="1781" width="0.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="666.75" y="1791.5" ></text>
</g>
<g >
<title>leveldb::InternalKey::user_key (10,101,010 samples, 0.02%)</title><rect x="624.1" y="1861" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="627.14" y="1871.5" ></text>
</g>
<g >
<title>wake_up_q (5,393,939,340 samples, 11.87%)</title><rect x="443.6" y="1749" width="140.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="446.65" y="1759.5" >wake_up_q</text>
</g>
<g >
<title>do_futex (80,808,080 samples, 0.18%)</title><rect x="705.2" y="1797" width="2.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="708.20" y="1807.5" ></text>
</g>
<g >
<title>pthread_mutex_lock@@GLIBC_2.2.5 (20,202,020 samples, 0.04%)</title><rect x="177.6" y="1845" width="0.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="180.63" y="1855.5" ></text>
</g>
<g >
<title>copy_page_from_iter_atomic (10,101,010 samples, 0.02%)</title><rect x="406.1" y="1685" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="409.13" y="1695.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (80,808,080 samples, 0.18%)</title><rect x="802.3" y="1877" width="2.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="805.26" y="1887.5" ></text>
</g>
<g >
<title>leveldb::WriteBatchInternal::ConverToValueLog (2,595,959,570 samples, 5.71%)</title><rect x="181.0" y="1893" width="67.5" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="184.04" y="1903.5" >leveldb..</text>
</g>
<g >
<title>leveldb::WriteBatchInternal::Count (10,101,010 samples, 0.02%)</title><rect x="666.6" y="1829" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="669.63" y="1839.5" ></text>
</g>
<g >
<title>___slab_alloc (10,101,010 samples, 0.02%)</title><rect x="868.1" y="1861" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="871.11" y="1871.5" ></text>
</g>
<g >
<title>_int_malloc (10,101,010 samples, 0.02%)</title><rect x="713.6" y="1365" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="716.59" y="1375.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (10,101,010 samples, 0.02%)</title><rect x="980.9" y="1925" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="983.92" y="1935.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::size (10,101,010 samples, 0.02%)</title><rect x="590.8" y="1845" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="593.82" y="1855.5" ></text>
</g>
<g >
<title>should_failslab.constprop.0 (10,101,010 samples, 0.02%)</title><rect x="403.5" y="1637" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="406.51" y="1647.5" ></text>
</g>
<g >
<title>void std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_M_realloc_insert&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; (20,202,020 samples, 0.04%)</title><rect x="666.1" y="1781" width="0.5" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="669.11" y="1791.5" ></text>
</g>
<g >
<title>leveldb::Block::NewIterator (10,101,010 samples, 0.02%)</title><rect x="648.8" y="1797" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="651.80" y="1807.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="1075.9" y="1957" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1078.88" y="1967.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::push_back (90,909,090 samples, 0.20%)</title><rect x="588.7" y="1893" width="2.4" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="591.72" y="1903.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ValueLogChecker::Put (111,111,110 samples, 0.24%)</title><rect x="356.5" y="1861" width="2.9" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="359.55" y="1871.5" ></text>
</g>
<g >
<title>___slab_alloc (20,202,020 samples, 0.04%)</title><rect x="399.0" y="1621" width="0.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="402.05" y="1631.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (80,808,080 samples, 0.18%)</title><rect x="40.7" y="1813" width="2.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="43.69" y="1823.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Valid (10,101,010 samples, 0.02%)</title><rect x="77.9" y="1765" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="80.95" y="1775.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::FindGreaterOrEqual (212,121,210 samples, 0.47%)</title><rect x="667.7" y="1781" width="5.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="670.68" y="1791.5" ></text>
</g>
<g >
<title>operator delete (10,101,010 samples, 0.02%)</title><rect x="355.0" y="1797" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="357.98" y="1807.5" ></text>
</g>
<g >
<title>balance_dirty_pages_ratelimited (70,707,070 samples, 0.16%)</title><rect x="410.6" y="1669" width="1.8" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="413.59" y="1679.5" ></text>
</g>
<g >
<title>leveldb::Slice::compare (20,202,020 samples, 0.04%)</title><rect x="107.6" y="1797" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="110.59" y="1807.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32Ptr (121,212,120 samples, 0.27%)</title><rect x="610.5" y="1797" width="3.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="613.49" y="1807.5" ></text>
</g>
<g >
<title>mpt_put_msg_frame (848,484,840 samples, 1.87%)</title><rect x="1140.2" y="1573" width="22.0" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="1143.16" y="1583.5" >m..</text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1189" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1199.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1445" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="87.77" y="1455.5" ></text>
</g>
<g >
<title>futex_wake (10,101,010 samples, 0.02%)</title><rect x="699.4" y="1749" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="702.43" y="1759.5" ></text>
</g>
<g >
<title>generic_file_read_iter (1,878,787,860 samples, 4.14%)</title><rect x="1119.2" y="1925" width="48.8" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1122.17" y="1935.5" >gene..</text>
</g>
<g >
<title>leveldb::(anonymous namespace)::MergingIterator::Next (1,515,151,500 samples, 3.33%)</title><rect x="33.9" y="1861" width="39.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="36.87" y="1871.5" >lev..</text>
</g>
<g >
<title>xas_load (70,707,070 samples, 0.16%)</title><rect x="925.8" y="1829" width="1.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="928.82" y="1839.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (20,202,020 samples, 0.04%)</title><rect x="622.3" y="1861" width="0.5" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="625.30" y="1871.5" ></text>
</g>
<g >
<title>std::basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;::clear (10,101,010 samples, 0.02%)</title><rect x="1184.2" y="2053" width="0.3" height="15.0" fill="rgb(220,71,16)" rx="2" ry="2" />
<text x="1187.23" y="2063.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1461" width="1.5" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="85.67" y="1471.5" ></text>
</g>
<g >
<title>std::unique_lock&lt;std::mutex&gt;::unique_lock (10,101,010 samples, 0.02%)</title><rect x="701.3" y="1893" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="704.26" y="1903.5" ></text>
</g>
<g >
<title>do_writev (3,646,464,610 samples, 8.03%)</title><rect x="860.5" y="1973" width="94.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="863.50" y="1983.5" >do_writev</text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::size (10,101,010 samples, 0.02%)</title><rect x="229.8" y="1861" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="232.84" y="1871.5" ></text>
</g>
<g >
<title>__get_user_nocheck_4 (10,101,010 samples, 0.02%)</title><rect x="730.6" y="1893" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="733.64" y="1903.5" ></text>
</g>
<g >
<title>leveldb::DeleteBlock (10,101,010 samples, 0.02%)</title><rect x="645.6" y="1749" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="648.65" y="1759.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.33%)</title><rect x="703.4" y="1861" width="3.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="706.36" y="1871.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (878,787,870 samples, 1.93%)</title><rect x="1139.6" y="1653" width="22.9" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1142.63" y="1663.5" >b..</text>
</g>
<g >
<title>___slab_alloc (30,303,030 samples, 0.07%)</title><rect x="765.5" y="1813" width="0.8" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="768.54" y="1823.5" ></text>
</g>
<g >
<title>security_file_permission (60,606,060 samples, 0.13%)</title><rect x="419.8" y="1701" width="1.5" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="422.77" y="1711.5" ></text>
</g>
<g >
<title>__GI___pthread_enable_asynccancel (20,202,020 samples, 0.04%)</title><rect x="840.0" y="2053" width="0.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="843.04" y="2063.5" ></text>
</g>
<g >
<title>std::istream::seekg (10,101,010 samples, 0.02%)</title><rect x="226.7" y="1861" width="0.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="229.69" y="1871.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (20,202,020 samples, 0.04%)</title><rect x="38.3" y="1829" width="0.6" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="41.33" y="1839.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::key (10,101,010 samples, 0.02%)</title><rect x="73.0" y="1845" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="75.96" y="1855.5" ></text>
</g>
<g >
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (30,303,030 samples, 0.07%)</title><rect x="708.9" y="1909" width="0.8" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="711.87" y="1919.5" ></text>
</g>
<g >
<title>current_obj_cgroup (10,101,010 samples, 0.02%)</title><rect x="416.1" y="1589" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="419.10" y="1599.5" ></text>
</g>
<g >
<title>__srcu_read_unlock (10,101,010 samples, 0.02%)</title><rect x="395.9" y="1685" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="398.90" y="1695.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed64 (30,303,030 samples, 0.07%)</title><rect x="90.8" y="1845" width="0.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="93.80" y="1855.5" ></text>
</g>
<g >
<title>std::mutex::lock (30,303,030 samples, 0.07%)</title><rect x="619.4" y="1861" width="0.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="622.41" y="1871.5" ></text>
</g>
<g >
<title>complete_walk (40,404,040 samples, 0.09%)</title><rect x="756.9" y="1893" width="1.0" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="759.88" y="1903.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1381" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="56.29" y="1391.5" ></text>
</g>
<g >
<title>std::atomic&lt;leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node*&gt;::load (10,101,010 samples, 0.02%)</title><rect x="618.1" y="1829" width="0.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="621.10" y="1839.5" ></text>
</g>
<g >
<title>xas_load (60,606,060 samples, 0.13%)</title><rect x="1130.7" y="1861" width="1.6" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1133.71" y="1871.5" ></text>
</g>
<g >
<title>atime_needs_update (50,505,050 samples, 0.11%)</title><rect x="1166.4" y="1877" width="1.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1169.39" y="1887.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="1104.7" y="2021" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1107.74" y="2031.5" ></text>
</g>
<g >
<title>leveldb::Random::Next (30,303,030 samples, 0.07%)</title><rect x="348.7" y="1781" width="0.8" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="351.68" y="1791.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.02%)</title><rect x="699.4" y="1701" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="702.43" y="1711.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32PtrFallback (10,101,010 samples, 0.02%)</title><rect x="244.8" y="1813" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="247.79" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (4,686,868,640 samples, 10.32%)</title><rect x="712.3" y="2053" width="121.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="715.28" y="2063.5" >[unknown]</text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_assign (10,101,010 samples, 0.02%)</title><rect x="718.6" y="2021" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="721.58" y="2031.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::InitDataBlock (30,303,030 samples, 0.07%)</title><rect x="52.8" y="1765" width="0.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="55.76" y="1775.5" ></text>
</g>
<g >
<title>std::basic_fstream&lt;char, std::char_traits&lt;char&gt; &gt;::basic_fstream (10,101,010 samples, 0.02%)</title><rect x="223.3" y="1861" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="226.28" y="1871.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1701" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1168.86" y="1711.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="636.5" y="1765" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="639.47" y="1775.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="621.5" y="1893" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="624.51" y="1903.5" ></text>
</g>
<g >
<title>balance_dirty_pages_ratelimited (202,020,200 samples, 0.44%)</title><rect x="880.2" y="1877" width="5.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="883.18" y="1887.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::key (30,303,030 samples, 0.07%)</title><rect x="72.2" y="1797" width="0.8" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="75.17" y="1807.5" ></text>
</g>
<g >
<title>cgroup_rstat_flush (101,010,100 samples, 0.22%)</title><rect x="882.3" y="1797" width="2.6" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="885.28" y="1807.5" ></text>
</g>
<g >
<title>fscrypt_file_open (10,101,010 samples, 0.02%)</title><rect x="768.2" y="1861" width="0.2" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="771.16" y="1871.5" ></text>
</g>
<g >
<title>ext4_getblk (10,101,010 samples, 0.02%)</title><rect x="794.4" y="1829" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="797.39" y="1839.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::Put (70,707,070 samples, 0.16%)</title><rect x="215.7" y="1861" width="1.8" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="218.67" y="1871.5" ></text>
</g>
<g >
<title>std::atomic&lt;leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node*&gt;::store (20,202,020 samples, 0.04%)</title><rect x="346.8" y="1797" width="0.6" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="349.84" y="1807.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::~_Vector_base (10,101,010 samples, 0.02%)</title><rect x="665.3" y="1813" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="668.32" y="1823.5" ></text>
</g>
<g >
<title>leveldb::Status::Status (10,101,010 samples, 0.02%)</title><rect x="627.8" y="1829" width="0.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="630.81" y="1839.5" ></text>
</g>
<g >
<title>block_write_end (262,626,260 samples, 0.58%)</title><rect x="943.7" y="1861" width="6.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="946.66" y="1871.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::~vector (40,404,040 samples, 0.09%)</title><rect x="236.4" y="1861" width="1.0" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="239.40" y="1871.5" ></text>
</g>
<g >
<title>d_lookup (10,101,010 samples, 0.02%)</title><rect x="794.1" y="1877" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="797.13" y="1887.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.02%)</title><rect x="123.6" y="1765" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="126.59" y="1775.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="660.9" y="1781" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="663.86" y="1791.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::BackgroundCall (6,101,010,040 samples, 13.43%)</title><rect x="10.0" y="1909" width="158.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="13.00" y="1919.5" >leveldb::DBImpl::Bac..</text>
</g>
<g >
<title>ksys_lseek (10,101,010 samples, 0.02%)</title><rect x="1064.3" y="1989" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1067.34" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="22.6" y="1733" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="25.59" y="1743.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_mutate (30,303,030 samples, 0.07%)</title><rect x="1176.6" y="2053" width="0.8" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1179.62" y="2063.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_append (10,101,010 samples, 0.02%)</title><rect x="190.2" y="1813" width="0.3" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="193.23" y="1823.5" ></text>
</g>
<g >
<title>mntput (20,202,020 samples, 0.04%)</title><rect x="795.4" y="1893" width="0.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="798.44" y="1903.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="692.6" y="1621" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="695.61" y="1631.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::BGWork (6,101,010,040 samples, 13.43%)</title><rect x="10.0" y="1925" width="158.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="13.00" y="1935.5" >leveldb::DBImpl::BGW..</text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="565" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="575.5" ></text>
</g>
<g >
<title>std::less&lt;unsigned long&gt;::operator (70,707,070 samples, 0.16%)</title><rect x="194.4" y="1797" width="1.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="197.42" y="1807.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::MakeRoomForWrite (70,707,070 samples, 0.16%)</title><rect x="174.5" y="1893" width="1.8" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="177.49" y="1903.5" ></text>
</g>
<g >
<title>rmqueue (20,202,020 samples, 0.04%)</title><rect x="1138.6" y="1733" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1141.58" y="1743.5" ></text>
</g>
<g >
<title>std::pair&lt;unsigned long, unsigned long&gt;&amp; std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::emplace_back&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; (181,818,180 samples, 0.40%)</title><rect x="208.3" y="1829" width="4.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="211.33" y="1839.5" ></text>
</g>
<g >
<title>ext4_evict_inode (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1701" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="13.79" y="1711.5" ></text>
</g>
<g >
<title>ext4_buffered_write_iter (2,999,999,970 samples, 6.60%)</title><rect x="874.9" y="1909" width="77.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="877.93" y="1919.5" >ext4_buff..</text>
</g>
<g >
<title>blk_mq_flush_plug_list.part.0 (919,191,910 samples, 2.02%)</title><rect x="1139.1" y="1749" width="23.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1142.11" y="1759.5" >b..</text>
</g>
<g >
<title>clear_page_erms (20,202,020 samples, 0.04%)</title><rect x="931.3" y="1701" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="934.33" y="1711.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::MergingIterator::value (191,919,190 samples, 0.42%)</title><rect x="74.0" y="1861" width="5.0" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="77.01" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="981" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="991.5" ></text>
</g>
<g >
<title>alloc_buffer_head (10,101,010 samples, 0.02%)</title><rect x="416.1" y="1605" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="419.10" y="1615.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixWritableFile::Sync (30,303,030 samples, 0.07%)</title><rect x="11.8" y="1829" width="0.8" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="14.84" y="1839.5" ></text>
</g>
<g >
<title>__memcpy (10,101,010 samples, 0.02%)</title><rect x="677.4" y="1621" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="680.39" y="1631.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32Ptr (60,606,060 samples, 0.13%)</title><rect x="15.5" y="1797" width="1.6" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="18.51" y="1807.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::MergingIterator::Valid (20,202,020 samples, 0.04%)</title><rect x="10.0" y="1877" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="13.00" y="1887.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_S_max_size (10,101,010 samples, 0.02%)</title><rect x="241.9" y="1765" width="0.3" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="244.91" y="1775.5" ></text>
</g>
<g >
<title>operator delete (10,101,010 samples, 0.02%)</title><rect x="217.8" y="1861" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="220.77" y="1871.5" ></text>
</g>
<g >
<title>leveldb::SaveValue (10,101,010 samples, 0.02%)</title><rect x="627.5" y="1829" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="630.55" y="1839.5" ></text>
</g>
<g >
<title>leveldb::EncodeVarint64 (10,101,010 samples, 0.02%)</title><rect x="214.1" y="1861" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="217.10" y="1871.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::end (10,101,010 samples, 0.02%)</title><rect x="209.4" y="1813" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="212.38" y="1823.5" ></text>
</g>
<g >
<title>std::map&lt;unsigned long, unsigned long, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::lower_bound (10,101,010 samples, 0.02%)</title><rect x="164.3" y="1861" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="167.26" y="1871.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::Writer::~Writer (10,101,010 samples, 0.02%)</title><rect x="660.1" y="1861" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="663.08" y="1871.5" ></text>
</g>
<g >
<title>mod_memcg_state (10,101,010 samples, 0.02%)</title><rect x="872.0" y="1829" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="875.05" y="1839.5" ></text>
</g>
<g >
<title>file_modified (10,101,010 samples, 0.02%)</title><rect x="952.8" y="1909" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="955.85" y="1919.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1477" width="0.6" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="14.84" y="1487.5" ></text>
</g>
<g >
<title>leveldb::WriteBatchInternal::SetCount (20,202,020 samples, 0.04%)</title><rect x="594.8" y="1893" width="0.5" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="597.75" y="1903.5" ></text>
</g>
<g >
<title>memcmp@plt (10,101,010 samples, 0.02%)</title><rect x="622.6" y="1845" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="625.56" y="1855.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="54.1" y="1685" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="57.07" y="1695.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (10,101,010 samples, 0.02%)</title><rect x="1118.1" y="1925" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1121.12" y="1935.5" ></text>
</g>
<g >
<title>std::mutex::lock (10,101,010 samples, 0.02%)</title><rect x="682.6" y="1845" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="685.64" y="1855.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="617.8" y="1765" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="620.84" y="1775.5" ></text>
</g>
<g >
<title>up_write (10,101,010 samples, 0.02%)</title><rect x="419.2" y="1685" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="422.25" y="1695.5" ></text>
</g>
<g >
<title>ktime_get_coarse_real_ts64 (10,101,010 samples, 0.02%)</title><rect x="878.6" y="1877" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="881.60" y="1887.5" ></text>
</g>
<g >
<title>std::mutex::lock (10,101,010 samples, 0.02%)</title><rect x="648.0" y="1733" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="651.01" y="1743.5" ></text>
</g>
<g >
<title>operator new (20,202,020 samples, 0.04%)</title><rect x="357.9" y="1781" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="360.86" y="1791.5" ></text>
</g>
<g >
<title>generic_update_time (10,101,010 samples, 0.02%)</title><rect x="22.6" y="1605" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="25.59" y="1615.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::Writer*&amp; std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::emplace_back&lt;leveldb::DBImpl::Writer*&gt; (10,101,010 samples, 0.02%)</title><rect x="701.0" y="1877" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="704.00" y="1887.5" ></text>
</g>
<g >
<title>page_cache_ra_unbounded (1,292,929,280 samples, 2.85%)</title><rect x="1132.3" y="1829" width="33.6" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1135.29" y="1839.5" >pa..</text>
</g>
<g >
<title>bdev_getblk (10,101,010 samples, 0.02%)</title><rect x="408.0" y="1557" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="410.97" y="1567.5" ></text>
</g>
<g >
<title>void std::_Destroy&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="233.5" y="1845" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="236.51" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="853" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="863.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::push_back (10,101,010 samples, 0.02%)</title><rect x="701.0" y="1893" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="704.00" y="1903.5" ></text>
</g>
<g >
<title>__x64_sys_unlink (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1797" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="659.93" y="1807.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="351.6" y="1845" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="354.57" y="1855.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="692.6" y="1637" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="695.61" y="1647.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixWritableFile::FlushBuffer (242,424,240 samples, 0.53%)</title><rect x="143.3" y="1813" width="6.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="146.27" y="1823.5" ></text>
</g>
<g >
<title>__xas_next (10,101,010 samples, 0.02%)</title><rect x="1130.4" y="1861" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1133.45" y="1871.5" ></text>
</g>
<g >
<title>ext4_mpage_readpages (111,111,110 samples, 0.24%)</title><rect x="1163.0" y="1781" width="2.9" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="1165.98" y="1791.5" ></text>
</g>
<g >
<title>__ext4_get_inode_loc (10,101,010 samples, 0.02%)</title><rect x="407.7" y="1589" width="0.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="410.71" y="1599.5" ></text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (50,505,050 samples, 0.11%)</title><rect x="870.5" y="1845" width="1.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="873.47" y="1855.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::WriteBlock (262,626,260 samples, 0.58%)</title><rect x="149.8" y="1829" width="6.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="152.83" y="1839.5" ></text>
</g>
<g >
<title>leveldb::ExtractUserKey (111,111,110 samples, 0.24%)</title><rect x="331.6" y="1749" width="2.9" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="334.63" y="1759.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (20,202,020 samples, 0.04%)</title><rect x="245.1" y="1829" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="248.06" y="1839.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (575,757,570 samples, 1.27%)</title><rect x="404.8" y="1717" width="15.0" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="407.82" y="1727.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.07%)</title><rect x="11.0" y="1829" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="14.05" y="1839.5" ></text>
</g>
<g >
<title>try_to_wake_up (343,434,340 samples, 0.76%)</title><rect x="683.9" y="1701" width="9.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="686.95" y="1711.5" ></text>
</g>
<g >
<title>page_cache_ra_order (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1525" width="0.2" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="56.29" y="1535.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::lower_bound (242,424,240 samples, 0.53%)</title><rect x="200.5" y="1813" width="6.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="203.46" y="1823.5" ></text>
</g>
<g >
<title>_IO_file_close_it@@GLIBC_2.2.5 (20,202,020 samples, 0.04%)</title><rect x="834.5" y="2053" width="0.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="837.53" y="2063.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::DoCompactionWork (5,484,848,430 samples, 12.07%)</title><rect x="25.0" y="1877" width="142.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="27.95" y="1887.5" >leveldb::DBImpl::D..</text>
</g>
<g >
<title>do_syscall_64 (202,020,200 samples, 0.44%)</title><rect x="144.1" y="1765" width="5.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="147.06" y="1775.5" ></text>
</g>
<g >
<title>leveldb::Iterator::~Iterator (30,303,030 samples, 0.07%)</title><rect x="645.6" y="1781" width="0.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="648.65" y="1791.5" ></text>
</g>
<g >
<title>folio_add_file_rmap_ptes (10,101,010 samples, 0.02%)</title><rect x="651.7" y="1637" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="654.68" y="1647.5" ></text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt;&amp; std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::emplace_back&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; (161,616,160 samples, 0.36%)</title><rect x="240.1" y="1829" width="4.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="243.07" y="1839.5" ></text>
</g>
<g >
<title>up_write (10,101,010 samples, 0.02%)</title><rect x="953.1" y="1909" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="956.11" y="1919.5" ></text>
</g>
<g >
<title>leveldb::ParseInternalKey (20,202,020 samples, 0.04%)</title><rect x="647.2" y="1797" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="650.22" y="1807.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (40,404,040 samples, 0.09%)</title><rect x="797.8" y="1909" width="1.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="800.80" y="1919.5" ></text>
</g>
<g >
<title>__x64_sys_futex (50,505,050 samples, 0.11%)</title><rect x="730.1" y="1973" width="1.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="733.12" y="1983.5" ></text>
</g>
<g >
<title>ksys_read (2,070,707,050 samples, 4.56%)</title><rect x="1117.1" y="1973" width="53.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1120.07" y="1983.5" >ksys_..</text>
</g>
<g >
<title>create_empty_buffers (10,101,010 samples, 0.02%)</title><rect x="416.1" y="1637" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="419.10" y="1647.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="617.8" y="1797" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="620.84" y="1807.5" ></text>
</g>
<g >
<title>__x64_sys_write (202,020,200 samples, 0.44%)</title><rect x="676.3" y="1733" width="5.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="679.34" y="1743.5" ></text>
</g>
<g >
<title>__gnu_cxx::new_allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt;::new_allocator (10,101,010 samples, 0.02%)</title><rect x="213.8" y="1797" width="0.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="216.84" y="1807.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1477" width="1.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="85.67" y="1487.5" ></text>
</g>
<g >
<title>mem_cgroup_flush_stats.part.0 (101,010,100 samples, 0.22%)</title><rect x="882.3" y="1813" width="2.6" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="885.28" y="1823.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="710.2" y="1925" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="713.18" y="1935.5" ></text>
</g>
<g >
<title>memset_orig (50,505,050 samples, 0.11%)</title><rect x="941.0" y="1845" width="1.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="944.04" y="1855.5" ></text>
</g>
<g >
<title>std::_Deque_iterator&lt;leveldb::DBImpl::Writer*, leveldb::DBImpl::Writer*&amp;, leveldb::DBImpl::Writer**&gt;::_Deque_iterator (20,202,020 samples, 0.04%)</title><rect x="700.5" y="1861" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="703.48" y="1871.5" ></text>
</g>
<g >
<title>do_futex (10,101,010 samples, 0.02%)</title><rect x="660.6" y="1733" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="663.60" y="1743.5" ></text>
</g>
<g >
<title>check_heap_object (40,404,040 samples, 0.09%)</title><rect x="802.5" y="1861" width="1.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="805.53" y="1871.5" ></text>
</g>
<g >
<title>timestamp_truncate (20,202,020 samples, 0.04%)</title><rect x="409.5" y="1669" width="0.6" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="412.54" y="1679.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="43.8" y="1797" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="46.84" y="1807.5" ></text>
</g>
<g >
<title>leveldb::crc32c::Value (252,525,250 samples, 0.56%)</title><rect x="150.1" y="1797" width="6.5" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="153.09" y="1807.5" ></text>
</g>
<g >
<title>lockref_put_return (20,202,020 samples, 0.04%)</title><rect x="978.0" y="1925" width="0.6" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="981.03" y="1935.5" ></text>
</g>
<g >
<title>virtual thunk to std::basic_fstream&lt;char, std::char_traits&lt;char&gt; &gt;::~basic_fstream (151,515,150 samples, 0.33%)</title><rect x="830.1" y="2037" width="3.9" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="833.07" y="2047.5" ></text>
</g>
<g >
<title>inotify_free_event (20,202,020 samples, 0.04%)</title><rect x="401.9" y="1621" width="0.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="404.93" y="1631.5" ></text>
</g>
<g >
<title>dd_insert_requests (10,101,010 samples, 0.02%)</title><rect x="1162.7" y="1717" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="1165.72" y="1727.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="353.7" y="1845" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="356.66" y="1855.5" ></text>
</g>
<g >
<title>__fdget_pos (20,202,020 samples, 0.04%)</title><rect x="1058.8" y="1973" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1061.83" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="901" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="911.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::begin (10,101,010 samples, 0.02%)</title><rect x="207.0" y="1845" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="210.02" y="1855.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="1175.6" y="2021" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1178.57" y="2031.5" ></text>
</g>
<g >
<title>std::istream::tellg (20,202,020 samples, 0.04%)</title><rect x="227.2" y="1861" width="0.5" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="230.22" y="1871.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::Compare (252,525,250 samples, 0.56%)</title><rect x="630.2" y="1797" width="6.5" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="633.17" y="1807.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (121,212,120 samples, 0.27%)</title><rect x="904.1" y="1797" width="3.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="907.05" y="1807.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (10,101,010 samples, 0.02%)</title><rect x="928.2" y="1845" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="931.19" y="1855.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::value (60,606,060 samples, 0.13%)</title><rect x="76.6" y="1781" width="1.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="79.63" y="1791.5" ></text>
</g>
<g >
<title>inode_to_bdi (10,101,010 samples, 0.02%)</title><rect x="680.0" y="1621" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="683.01" y="1631.5" ></text>
</g>
<g >
<title>leveldb::Version::~Version (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1877" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="659.93" y="1887.5" ></text>
</g>
<g >
<title>__gnu_cxx::new_allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt;::deallocate (10,101,010 samples, 0.02%)</title><rect x="233.3" y="1797" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="236.25" y="1807.5" ></text>
</g>
<g >
<title>ext4_nonda_switch (10,101,010 samples, 0.02%)</title><rect x="680.8" y="1621" width="0.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="683.80" y="1631.5" ></text>
</g>
<g >
<title>leveldb::MemTable::Get (737,373,730 samples, 1.62%)</title><rect x="600.3" y="1893" width="19.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="603.26" y="1903.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::user_comparator (10,101,010 samples, 0.02%)</title><rect x="85.3" y="1861" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="88.29" y="1871.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wait (20,202,020 samples, 0.04%)</title><rect x="697.1" y="1845" width="0.5" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="700.07" y="1855.5" ></text>
</g>
<g >
<title>leveldb::GetLengthPrefixedSlice (10,101,010 samples, 0.02%)</title><rect x="609.4" y="1829" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="612.44" y="1839.5" ></text>
</g>
<g >
<title>do_writepages (30,303,030 samples, 0.07%)</title><rect x="11.8" y="1669" width="0.8" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="14.84" y="1679.5" ></text>
</g>
<g >
<title>scsi_queue_rq (878,787,870 samples, 1.93%)</title><rect x="1139.6" y="1637" width="22.9" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1142.63" y="1647.5" >s..</text>
</g>
<g >
<title>leveldb::Arena::MemoryUsage (10,101,010 samples, 0.02%)</title><rect x="175.0" y="1861" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="178.01" y="1871.5" ></text>
</g>
<g >
<title>folio_alloc_buffers (10,101,010 samples, 0.02%)</title><rect x="416.1" y="1621" width="0.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="419.10" y="1631.5" ></text>
</g>
<g >
<title>[unknown] (20,202,020 samples, 0.04%)</title><rect x="713.1" y="1349" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1359.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::FileSize (20,202,020 samples, 0.04%)</title><rect x="160.8" y="1861" width="0.6" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="163.84" y="1871.5" ></text>
</g>
<g >
<title>ext4_io_submit (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1637" width="1.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="85.67" y="1647.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (343,434,340 samples, 0.76%)</title><rect x="683.9" y="1685" width="9.0" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="686.95" y="1695.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ValueLogInserter::batch_insert (141,414,140 samples, 0.31%)</title><rect x="661.9" y="1845" width="3.7" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="664.91" y="1855.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::begin (10,101,010 samples, 0.02%)</title><rect x="212.3" y="1797" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="215.26" y="1807.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (40,404,040 samples, 0.09%)</title><rect x="103.9" y="1829" width="1.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="106.92" y="1839.5" ></text>
</g>
<g >
<title>kfree (20,202,020 samples, 0.04%)</title><rect x="401.9" y="1605" width="0.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="404.93" y="1615.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,020,201,980 samples, 8.85%)</title><rect x="850.8" y="2021" width="104.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="853.80" y="2031.5" >do_syscall_64</text>
</g>
<g >
<title>std::ostream::write (20,202,020 samples, 0.04%)</title><rect x="833.5" y="2005" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="836.48" y="2015.5" ></text>
</g>
<g >
<title>std::__basic_file&lt;char&gt;::seekoff (20,202,020 samples, 0.04%)</title><rect x="1171.4" y="2053" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1174.37" y="2063.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (30,303,030 samples, 0.07%)</title><rect x="752.2" y="1877" width="0.7" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="755.16" y="1887.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (30,303,030 samples, 0.07%)</title><rect x="765.5" y="1829" width="0.8" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="768.54" y="1839.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1733" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1168.86" y="1743.5" ></text>
</g>
<g >
<title>leveldb::MutexLock::~MutexLock (50,505,050 samples, 0.11%)</title><rect x="178.2" y="1893" width="1.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="181.16" y="1903.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::push_back (10,101,010 samples, 0.02%)</title><rect x="234.0" y="1861" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="237.04" y="1871.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1653" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1168.86" y="1663.5" ></text>
</g>
<g >
<title>memcmp@plt (20,202,020 samples, 0.04%)</title><rect x="108.1" y="1797" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="111.11" y="1807.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="360.2" y="1861" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="363.22" y="1871.5" ></text>
</g>
<g >
<title>fclose@@GLIBC_2.2.5 (20,202,020 samples, 0.04%)</title><rect x="1010.0" y="2053" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1013.04" y="2063.5" ></text>
</g>
<g >
<title>clear_page_erms (222,222,220 samples, 0.49%)</title><rect x="912.4" y="1765" width="5.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="915.45" y="1775.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wake (30,303,030 samples, 0.07%)</title><rect x="178.2" y="1845" width="0.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="181.16" y="1855.5" ></text>
</g>
<g >
<title>leveldb::PutLengthPrefixedSlice (40,404,040 samples, 0.09%)</title><rect x="593.2" y="1893" width="1.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="596.18" y="1903.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::front (10,101,010 samples, 0.02%)</title><rect x="598.7" y="1909" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="601.69" y="1919.5" ></text>
</g>
<g >
<title>apparmor_current_getlsmblob_subj (10,101,010 samples, 0.02%)</title><rect x="758.2" y="1877" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="761.19" y="1887.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::MakeRoomForWrite (10,101,010 samples, 0.02%)</title><rect x="659.8" y="1861" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="662.81" y="1871.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock@@GLIBC_2.2.5 (10,101,010 samples, 0.02%)</title><rect x="661.1" y="1813" width="0.3" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="664.12" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1125" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1135.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (30,303,030 samples, 0.07%)</title><rect x="1009.2" y="2053" width="0.8" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1012.25" y="2063.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (20,202,020 samples, 0.04%)</title><rect x="20.8" y="1781" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="23.76" y="1791.5" ></text>
</g>
<g >
<title>__kmalloc (70,707,070 samples, 0.16%)</title><rect x="398.3" y="1637" width="1.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="401.26" y="1647.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wake (383,838,380 samples, 0.84%)</title><rect x="682.9" y="1829" width="10.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="685.90" y="1839.5" ></text>
</g>
<g >
<title>getname (10,101,010 samples, 0.02%)</title><rect x="807.0" y="1957" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="809.99" y="1967.5" ></text>
</g>
<g >
<title>lookup_fast (10,101,010 samples, 0.02%)</title><rect x="792.3" y="1893" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="795.29" y="1903.5" ></text>
</g>
<g >
<title>__get_user_nocheck_4 (10,101,010 samples, 0.02%)</title><rect x="706.8" y="1733" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="709.77" y="1743.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Lock (50,505,050 samples, 0.11%)</title><rect x="657.2" y="1893" width="1.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="660.19" y="1903.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Valid (10,101,010 samples, 0.02%)</title><rect x="69.6" y="1813" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="72.55" y="1823.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (20,202,020 samples, 0.04%)</title><rect x="763.4" y="1845" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="766.44" y="1855.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1429" width="1.5" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="85.67" y="1439.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::push_back (212,121,210 samples, 0.47%)</title><rect x="208.3" y="1845" width="5.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="211.33" y="1855.5" ></text>
</g>
<g >
<title>lookup_bh_lru (10,101,010 samples, 0.02%)</title><rect x="878.1" y="1733" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="881.08" y="1743.5" ></text>
</g>
<g >
<title>do_syscall_64 (40,404,040 samples, 0.09%)</title><rect x="657.2" y="1829" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="660.19" y="1839.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;::base (10,101,010 samples, 0.02%)</title><rect x="241.4" y="1797" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="244.38" y="1807.5" ></text>
</g>
<g >
<title>std::pair&lt;unsigned long, unsigned long&gt;&amp;&amp; std::forward&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; (20,202,020 samples, 0.04%)</title><rect x="213.1" y="1829" width="0.5" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="216.05" y="1839.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1381" width="0.6" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="14.84" y="1391.5" ></text>
</g>
<g >
<title>ext4_file_open (10,101,010 samples, 0.02%)</title><rect x="788.6" y="1877" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="791.62" y="1887.5" ></text>
</g>
<g >
<title>mptspi_qcmd (858,585,850 samples, 1.89%)</title><rect x="1139.9" y="1605" width="22.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1142.89" y="1615.5" >m..</text>
</g>
<g >
<title>do_syscall_64 (121,212,120 samples, 0.27%)</title><rect x="81.9" y="1797" width="3.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="84.88" y="1807.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="40.4" y="1813" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="43.43" y="1823.5" ></text>
</g>
<g >
<title>std::__basic_file&lt;char&gt;::is_open (20,202,020 samples, 0.04%)</title><rect x="824.6" y="2037" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="827.56" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="837" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="847.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1413" width="0.6" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="14.84" y="1423.5" ></text>
</g>
<g >
<title>filemap_get_pages (10,101,010 samples, 0.02%)</title><rect x="1119.2" y="1909" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1122.17" y="1919.5" ></text>
</g>
<g >
<title>futex_wake (343,434,340 samples, 0.76%)</title><rect x="683.9" y="1733" width="9.0" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="686.95" y="1743.5" ></text>
</g>
<g >
<title>pthread_mutex_lock@@GLIBC_2.2.5 (30,303,030 samples, 0.07%)</title><rect x="707.3" y="1877" width="0.8" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="710.30" y="1887.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::~basic_filebuf (50,505,050 samples, 0.11%)</title><rect x="826.9" y="2037" width="1.3" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="829.92" y="2047.5" ></text>
</g>
<g >
<title>std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::operator (20,202,020 samples, 0.04%)</title><rect x="204.7" y="1765" width="0.5" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="207.66" y="1775.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="135.7" y="1765" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="138.66" y="1775.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (10,101,010 samples, 0.02%)</title><rect x="22.6" y="1573" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="25.59" y="1583.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (20,202,020 samples, 0.04%)</title><rect x="298.8" y="1733" width="0.6" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="301.84" y="1743.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="178.4" y="1813" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="181.42" y="1823.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,343,434,320 samples, 5.16%)</title><rect x="1110.0" y="2021" width="60.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1112.99" y="2031.5" >do_sys..</text>
</g>
<g >
<title>__gnu_cxx::new_allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt;::max_size (10,101,010 samples, 0.02%)</title><rect x="211.2" y="1733" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="214.21" y="1743.5" ></text>
</g>
<g >
<title>dput (10,101,010 samples, 0.02%)</title><rect x="766.6" y="1829" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="769.59" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::NextEntryOffset (10,101,010 samples, 0.02%)</title><rect x="637.3" y="1797" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="640.25" y="1807.5" ></text>
</g>
<g >
<title>__srcu_read_unlock (20,202,020 samples, 0.04%)</title><rect x="393.8" y="1701" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="396.80" y="1711.5" ></text>
</g>
<g >
<title>std::mutex::unlock (20,202,020 samples, 0.04%)</title><rect x="654.3" y="1749" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="657.30" y="1759.5" ></text>
</g>
<g >
<title>leveldb::GetLengthPrefixedSlice (20,202,020 samples, 0.04%)</title><rect x="299.4" y="1781" width="0.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="302.36" y="1791.5" ></text>
</g>
<g >
<title>do_futex (10,101,010 samples, 0.02%)</title><rect x="620.5" y="1765" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="623.46" y="1775.5" ></text>
</g>
<g >
<title>dput (10,101,010 samples, 0.02%)</title><rect x="678.4" y="1685" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="681.44" y="1695.5" ></text>
</g>
<g >
<title>__gthread_mutex_unlock (10,101,010 samples, 0.02%)</title><rect x="584.5" y="1861" width="0.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="587.52" y="1871.5" ></text>
</g>
<g >
<title>try_to_wake_up (5,363,636,310 samples, 11.81%)</title><rect x="444.4" y="1733" width="139.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="447.43" y="1743.5" >try_to_wake_up</text>
</g>
<g >
<title>rw_verify_area (20,202,020 samples, 0.04%)</title><rect x="954.7" y="1941" width="0.5" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="957.68" y="1951.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::data (10,101,010 samples, 0.02%)</title><rect x="162.4" y="1861" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="165.42" y="1871.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock@plt (10,101,010 samples, 0.02%)</title><rect x="654.6" y="1733" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="657.57" y="1743.5" ></text>
</g>
<g >
<title>__check_heap_object (10,101,010 samples, 0.02%)</title><rect x="802.5" y="1845" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="805.53" y="1855.5" ></text>
</g>
<g >
<title>__memcg_slab_free_hook (10,101,010 samples, 0.02%)</title><rect x="401.9" y="1589" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="404.93" y="1599.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1269" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1279.5" ></text>
</g>
<g >
<title>fsnotify (60,606,060 samples, 0.13%)</title><rect x="676.9" y="1669" width="1.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="679.87" y="1679.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::ok (60,606,060 samples, 0.13%)</title><rect x="156.6" y="1845" width="1.6" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="159.65" y="1855.5" ></text>
</g>
<g >
<title>leveldb::PutLengthPrefixedSlice (40,404,040 samples, 0.09%)</title><rect x="215.7" y="1845" width="1.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="218.67" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1237" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1247.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1461" width="0.8" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="84.88" y="1471.5" ></text>
</g>
<g >
<title>xas_load (20,202,020 samples, 0.04%)</title><rect x="414.0" y="1621" width="0.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="417.00" y="1631.5" ></text>
</g>
<g >
<title>__fdget_pos (10,101,010 samples, 0.02%)</title><rect x="1117.3" y="1957" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1120.33" y="1967.5" ></text>
</g>
<g >
<title>std::_Rb_tree_iterator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::operator* (20,202,020 samples, 0.04%)</title><rect x="161.6" y="1861" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="164.63" y="1871.5" ></text>
</g>
<g >
<title>__dquot_alloc_space (30,303,030 samples, 0.07%)</title><rect x="936.8" y="1797" width="0.8" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="939.84" y="1807.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1461" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="87.77" y="1471.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1845" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="659.93" y="1855.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::Put (10,101,010 samples, 0.02%)</title><rect x="694.2" y="1877" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="697.18" y="1887.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::KeyIsAfterNode (20,202,020 samples, 0.04%)</title><rect x="618.6" y="1861" width="0.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="621.63" y="1871.5" ></text>
</g>
<g >
<title>lockref_get_not_zero (20,202,020 samples, 0.04%)</title><rect x="145.9" y="1653" width="0.5" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="148.89" y="1663.5" ></text>
</g>
<g >
<title>mem_cgroup_commit_charge (10,101,010 samples, 0.02%)</title><rect x="1133.3" y="1765" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="1136.33" y="1775.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="17.1" y="1829" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="20.08" y="1839.5" ></text>
</g>
<g >
<title>__x64_sys_futex (10,101,010 samples, 0.02%)</title><rect x="660.9" y="1749" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="663.86" y="1759.5" ></text>
</g>
<g >
<title>dget_parent (10,101,010 samples, 0.02%)</title><rect x="766.3" y="1829" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="769.32" y="1839.5" ></text>
</g>
<g >
<title>futex_wake (1,101,010,090 samples, 2.42%)</title><rect x="1076.1" y="1957" width="28.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1079.14" y="1967.5" >fu..</text>
</g>
<g >
<title>leveldb::EncodeVarint64 (40,404,040 samples, 0.09%)</title><rect x="214.4" y="1845" width="1.0" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="217.36" y="1855.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,222,222,210 samples, 2.69%)</title><rect x="1073.3" y="2037" width="31.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1076.26" y="2047.5" >en..</text>
</g>
<g >
<title>__d_lookup_rcu (10,101,010 samples, 0.02%)</title><rect x="792.8" y="1877" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="795.82" y="1887.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="15.2" y="1813" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="18.25" y="1823.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::data (20,202,020 samples, 0.04%)</title><rect x="674.0" y="1845" width="0.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="676.98" y="1855.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::_M_terminate_output (20,202,020 samples, 0.04%)</title><rect x="221.2" y="1861" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="224.18" y="1871.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (141,414,140 samples, 0.31%)</title><rect x="904.1" y="1813" width="3.6" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="907.05" y="1823.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32Ptr (10,101,010 samples, 0.02%)</title><rect x="613.6" y="1813" width="0.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="616.64" y="1823.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1397" width="1.5" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="85.67" y="1407.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,101,010 samples, 0.02%)</title><rect x="399.0" y="1557" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="402.05" y="1567.5" ></text>
</g>
<g >
<title>__cxxabiv1::__si_class_type_info::~__si_class_type_info (60,606,060 samples, 0.13%)</title><rect x="810.7" y="2037" width="1.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="813.66" y="2047.5" ></text>
</g>
<g >
<title>module_put (20,202,020 samples, 0.04%)</title><rect x="984.6" y="1957" width="0.5" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="987.59" y="1967.5" ></text>
</g>
<g >
<title>x64_sys_call (222,222,220 samples, 0.49%)</title><rect x="1058.8" y="2005" width="5.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1061.83" y="2015.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::Seek (626,262,620 samples, 1.38%)</title><rect x="629.1" y="1813" width="16.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="632.12" y="1823.5" ></text>
</g>
<g >
<title>std::basic_streambuf&lt;char, std::char_traits&lt;char&gt; &gt;::xsgetn (10,101,010 samples, 0.02%)</title><rect x="828.0" y="2005" width="0.2" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="830.97" y="2015.5" ></text>
</g>
<g >
<title>__futex_queue (10,101,010 samples, 0.02%)</title><rect x="705.5" y="1733" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="708.46" y="1743.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;::__normal_iterator (10,101,010 samples, 0.02%)</title><rect x="188.7" y="1845" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="191.65" y="1855.5" ></text>
</g>
<g >
<title>do_futex (10,101,010 samples, 0.02%)</title><rect x="697.3" y="1765" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="700.33" y="1775.5" ></text>
</g>
<g >
<title>all (45,434,342,980 samples, 100%)</title><rect x="10.0" y="2085" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="2095.5" ></text>
</g>
<g >
<title>fault_in_iov_iter_readable (10,101,010 samples, 0.02%)</title><rect x="406.9" y="1685" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="409.92" y="1695.5" ></text>
</g>
<g >
<title>void std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_M_realloc_insert&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; (131,313,130 samples, 0.29%)</title><rect x="240.9" y="1813" width="3.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="243.86" y="1823.5" ></text>
</g>
<g >
<title>alloc_pages_mpol (646,464,640 samples, 1.42%)</title><rect x="908.8" y="1813" width="16.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="911.77" y="1823.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1461" width="0.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="14.84" y="1471.5" ></text>
</g>
<g >
<title>scsi_complete (10,101,010 samples, 0.02%)</title><rect x="135.7" y="1701" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="138.66" y="1711.5" ></text>
</g>
<g >
<title>void std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::_M_push_back_aux&lt;leveldb::DBImpl::Writer*&gt; (20,202,020 samples, 0.04%)</title><rect x="590.6" y="1861" width="0.5" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="593.56" y="1871.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node::Next (181,818,180 samples, 0.40%)</title><rect x="338.7" y="1797" width="4.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="341.71" y="1807.5" ></text>
</g>
<g >
<title>std::map&lt;unsigned long, unsigned long, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::operator[] (323,232,320 samples, 0.71%)</title><rect x="198.4" y="1845" width="8.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="201.36" y="1855.5" ></text>
</g>
<g >
<title>ext4_block_write_begin (50,505,050 samples, 0.11%)</title><rect x="147.7" y="1621" width="1.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="150.73" y="1631.5" ></text>
</g>
<g >
<title>std::atomic&lt;bool&gt;::load (50,505,050 samples, 0.11%)</title><rect x="162.9" y="1861" width="1.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="165.94" y="1871.5" ></text>
</g>
<g >
<title>std::ios_base::_M_call_callbacks (10,101,010 samples, 0.02%)</title><rect x="225.9" y="1861" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="228.90" y="1871.5" ></text>
</g>
<g >
<title>__futex_unqueue (10,101,010 samples, 0.02%)</title><rect x="442.3" y="1733" width="0.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="445.33" y="1743.5" ></text>
</g>
<g >
<title>ext4_get_inode_loc (10,101,010 samples, 0.02%)</title><rect x="22.6" y="1541" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="25.59" y="1551.5" ></text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (20,202,020 samples, 0.04%)</title><rect x="299.9" y="1781" width="0.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="302.88" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="453" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="463.5" ></text>
</g>
<g >
<title>blk_mq_submit_bio (80,808,080 samples, 0.18%)</title><rect x="1163.5" y="1701" width="2.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1166.50" y="1711.5" ></text>
</g>
<g >
<title>leveldb::PutVarint32 (121,212,120 samples, 0.27%)</title><rect x="110.5" y="1829" width="3.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="113.48" y="1839.5" ></text>
</g>
<g >
<title>__x64_sys_futex (343,434,340 samples, 0.76%)</title><rect x="683.9" y="1765" width="9.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="686.95" y="1775.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;leveldb::FileMetaData* const*, std::vector&lt;leveldb::FileMetaData*, std::allocator&lt;leveldb::FileMetaData*&gt; &gt; &gt;::__normal_iterator (10,101,010 samples, 0.02%)</title><rect x="655.4" y="1829" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="658.35" y="1839.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (40,404,040 samples, 0.09%)</title><rect x="877.3" y="1845" width="1.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="880.29" y="1855.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::LRUCache::Release (20,202,020 samples, 0.04%)</title><rect x="626.0" y="1813" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="628.97" y="1823.5" ></text>
</g>
<g >
<title>__x64_sys_futex (5,565,656,510 samples, 12.25%)</title><rect x="439.4" y="1797" width="144.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="442.45" y="1807.5" >__x64_sys_futex</text>
</g>
<g >
<title>wake_up_q (343,434,340 samples, 0.76%)</title><rect x="683.9" y="1717" width="9.0" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="686.95" y="1727.5" ></text>
</g>
<g >
<title>leveldb::MutexLock::~MutexLock (10,101,010 samples, 0.02%)</title><rect x="648.3" y="1781" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="651.27" y="1791.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="331.1" y="1669" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="334.10" y="1679.5" ></text>
</g>
<g >
<title>bool std::has_facet&lt;std::num_get&lt;char, std::istreambuf_iterator&lt;char, std::char_traits&lt;char&gt; &gt; &gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="718.3" y="2021" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="721.31" y="2031.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="583.5" y="1685" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="586.47" y="1695.5" ></text>
</g>
<g >
<title>std::operator&amp; (10,101,010 samples, 0.02%)</title><rect x="618.4" y="1829" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="621.36" y="1839.5" ></text>
</g>
<g >
<title>workingset_refault (40,404,040 samples, 0.09%)</title><rect x="1136.2" y="1797" width="1.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1139.22" y="1807.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1605" width="0.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="84.88" y="1615.5" ></text>
</g>
<g >
<title>__gnu_cxx::__aligned_membuf&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_ptr (20,202,020 samples, 0.04%)</title><rect x="203.1" y="1765" width="0.5" height="15.0" fill="rgb(230,117,27)" rx="2" ry="2" />
<text x="206.08" y="1775.5" ></text>
</g>
<g >
<title>d_namespace_path.constprop.0 (252,525,250 samples, 0.56%)</title><rect x="781.5" y="1781" width="6.6" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="784.54" y="1791.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ValueLogChecker::CheckValid (10,101,010 samples, 0.02%)</title><rect x="354.5" y="1877" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="357.45" y="1887.5" ></text>
</g>
<g >
<title>try_to_wake_up (10,101,010 samples, 0.02%)</title><rect x="699.4" y="1717" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="702.43" y="1727.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::key (10,101,010 samples, 0.02%)</title><rect x="65.1" y="1797" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="68.09" y="1807.5" ></text>
</g>
<g >
<title>leveldb::EncodeFixed32 (20,202,020 samples, 0.04%)</title><rect x="594.8" y="1877" width="0.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="597.75" y="1887.5" ></text>
</g>
<g >
<title>std::pair&lt;unsigned long, unsigned long&gt;::pair&lt;unsigned long&amp;, unsigned long, true&gt; (10,101,010 samples, 0.02%)</title><rect x="206.8" y="1845" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="209.75" y="1855.5" ></text>
</g>
<g >
<title>std::allocator_traits&lt;std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::deallocate (10,101,010 samples, 0.02%)</title><rect x="233.3" y="1813" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="236.25" y="1823.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="594.2" y="1893" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="597.23" y="1903.5" ></text>
</g>
<g >
<title>wake_q_add_safe (10,101,010 samples, 0.02%)</title><rect x="1076.7" y="1941" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1079.67" y="1951.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::value (181,818,180 samples, 0.40%)</title><rect x="74.3" y="1845" width="4.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="77.27" y="1855.5" ></text>
</g>
<g >
<title>do_writepages (121,212,120 samples, 0.27%)</title><rect x="81.9" y="1685" width="3.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="84.88" y="1695.5" ></text>
</g>
<g >
<title>leveldb::WriteBatchInternal::Count (10,101,010 samples, 0.02%)</title><rect x="594.5" y="1893" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="597.49" y="1903.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="15.2" y="1765" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="18.25" y="1775.5" ></text>
</g>
<g >
<title>__kmalloc (20,202,020 samples, 0.04%)</title><rect x="677.7" y="1605" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="680.65" y="1615.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (30,303,030 samples, 0.07%)</title><rect x="651.2" y="1781" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="654.16" y="1791.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Next (20,202,020 samples, 0.04%)</title><rect x="86.9" y="1861" width="0.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="89.87" y="1871.5" ></text>
</g>
<g >
<title>page_cache_sync_ra (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1877" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1168.86" y="1887.5" ></text>
</g>
<g >
<title>mark_buffer_dirty (202,020,200 samples, 0.44%)</title><rect x="945.2" y="1829" width="5.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="948.24" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::ParseNextKey (10,101,010 samples, 0.02%)</title><rect x="62.7" y="1765" width="0.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="65.73" y="1775.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="596.6" y="1861" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="599.59" y="1871.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Lock (10,101,010 samples, 0.02%)</title><rect x="654.0" y="1765" width="0.3" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="657.04" y="1775.5" ></text>
</g>
<g >
<title>pthread_mutex_lock@@GLIBC_2.2.5 (10,101,010 samples, 0.02%)</title><rect x="658.2" y="1861" width="0.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="661.24" y="1871.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32 (40,404,040 samples, 0.09%)</title><rect x="244.5" y="1845" width="1.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="247.53" y="1855.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1413" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="87.77" y="1423.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (10,101,010 samples, 0.02%)</title><rect x="1133.1" y="1765" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="1136.07" y="1775.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (40,404,040 samples, 0.09%)</title><rect x="724.1" y="2037" width="1.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="727.09" y="2047.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ValueLogChecker::~ValueLogChecker (40,404,040 samples, 0.09%)</title><rect x="354.7" y="1877" width="1.1" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="357.71" y="1887.5" ></text>
</g>
<g >
<title>shuffle_freelist (10,101,010 samples, 0.02%)</title><rect x="399.3" y="1573" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="402.31" y="1583.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32Ptr (50,505,050 samples, 0.11%)</title><rect x="670.3" y="1717" width="1.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="673.31" y="1727.5" ></text>
</g>
<g >
<title>__folio_mark_dirty (20,202,020 samples, 0.04%)</title><rect x="417.4" y="1605" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="420.41" y="1615.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (20,202,020 samples, 0.04%)</title><rect x="635.9" y="1765" width="0.6" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="638.94" y="1775.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::key (10,101,010 samples, 0.02%)</title><rect x="69.3" y="1781" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="72.29" y="1791.5" ></text>
</g>
<g >
<title>std::_Rb_tree_node&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_valptr (40,404,040 samples, 0.09%)</title><rect x="192.9" y="1781" width="1.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="195.85" y="1791.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.27%)</title><rect x="81.9" y="1813" width="3.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="84.88" y="1823.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_M_deallocate (10,101,010 samples, 0.02%)</title><rect x="233.3" y="1829" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="236.25" y="1839.5" ></text>
</g>
<g >
<title>do_futex (10,101,010 samples, 0.02%)</title><rect x="658.0" y="1781" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="660.98" y="1791.5" ></text>
</g>
<g >
<title>leveldb::GetLengthPrefixedSlice (50,505,050 samples, 0.11%)</title><rect x="670.3" y="1733" width="1.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="673.31" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="181" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="191.5" ></text>
</g>
<g >
<title>std::allocator_traits&lt;std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::allocate (20,202,020 samples, 0.04%)</title><rect x="230.9" y="1797" width="0.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="233.89" y="1807.5" ></text>
</g>
<g >
<title>blk_done_softirq (10,101,010 samples, 0.02%)</title><rect x="135.7" y="1733" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="138.66" y="1743.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32Ptr (10,101,010 samples, 0.02%)</title><rect x="351.0" y="1845" width="0.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="354.04" y="1855.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::~_Vector_base (10,101,010 samples, 0.02%)</title><rect x="664.0" y="1829" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="667.01" y="1839.5" ></text>
</g>
<g >
<title>futex_wait (10,101,010 samples, 0.02%)</title><rect x="660.6" y="1717" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="663.60" y="1727.5" ></text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt;* std::__relocate_a&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="243.0" y="1765" width="0.2" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="245.96" y="1775.5" ></text>
</g>
<g >
<title>do_futex (1,111,111,100 samples, 2.45%)</title><rect x="1075.9" y="1973" width="28.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1078.88" y="1983.5" >do..</text>
</g>
<g >
<title>balance_dirty_pages_ratelimited_flags (171,717,170 samples, 0.38%)</title><rect x="880.7" y="1861" width="4.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="883.70" y="1871.5" ></text>
</g>
<g >
<title>blk_finish_plug (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1637" width="0.8" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="84.88" y="1647.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (20,202,020 samples, 0.04%)</title><rect x="940.0" y="1813" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="942.99" y="1823.5" ></text>
</g>
<g >
<title>generic_perform_write (2,828,282,800 samples, 6.22%)</title><rect x="878.9" y="1893" width="73.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="881.87" y="1903.5" >generic_..</text>
</g>
<g >
<title>do_syscall_64 (999,999,990 samples, 2.20%)</title><rect x="962.3" y="2021" width="26.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="965.29" y="2031.5" >d..</text>
</g>
<g >
<title>blk_mq_dispatch_plug_list (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1573" width="0.8" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="84.88" y="1583.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::NextEntryOffset (10,101,010 samples, 0.02%)</title><rect x="638.3" y="1781" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="641.30" y="1791.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::data (10,101,010 samples, 0.02%)</title><rect x="659.6" y="1845" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="662.55" y="1855.5" ></text>
</g>
<g >
<title>do_futex (10,101,010 samples, 0.02%)</title><rect x="808.3" y="1957" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="811.30" y="1967.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::PosixWritableFile::WriteUnbuffered (10,101,010 samples, 0.02%)</title><rect x="149.3" y="1797" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="152.30" y="1807.5" ></text>
</g>
<g >
<title>leveldb::PutLengthPrefixedSlice (10,101,010 samples, 0.02%)</title><rect x="591.9" y="1909" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="594.87" y="1919.5" ></text>
</g>
<g >
<title>futex_q_lock (10,101,010 samples, 0.02%)</title><rect x="705.2" y="1749" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="708.20" y="1759.5" ></text>
</g>
<g >
<title>alloc_pages_mpol (20,202,020 samples, 0.04%)</title><rect x="147.2" y="1573" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="150.20" y="1583.5" ></text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt;* std::__relocate_a&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; (10,101,010 samples, 0.02%)</title><rect x="666.4" y="1733" width="0.2" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="669.37" y="1743.5" ></text>
</g>
<g >
<title>futex_wait_queue (10,101,010 samples, 0.02%)</title><rect x="697.3" y="1717" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="700.33" y="1727.5" ></text>
</g>
<g >
<title>blk_mq_submit_bio (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1557" width="1.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="85.67" y="1567.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::LRUCache::Lookup (10,101,010 samples, 0.02%)</title><rect x="648.0" y="1781" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="651.01" y="1791.5" ></text>
</g>
<g >
<title>db_bench (45,434,342,980 samples, 100.00%)</title><rect x="10.0" y="2069" width="1180.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="13.00" y="2079.5" >db_bench</text>
</g>
<g >
<title>std::thread::_State_impl&lt;std::thread::_Invoker&lt;std::tuple&lt;void (27,040,403,770 samples, 59.52%)</title><rect x="10.0" y="2037" width="702.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="13.00" y="2047.5" >std::thread::_State_impl&lt;std::thread::_Invoker&lt;std::tuple&lt;void </text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="331.1" y="1653" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="334.10" y="1663.5" ></text>
</g>
<g >
<title>handle_pte_fault (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1637" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="56.29" y="1647.5" ></text>
</g>
<g >
<title>leveldb::EncodeFixed64 (10,101,010 samples, 0.02%)</title><rect x="252.1" y="1845" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="255.14" y="1855.5" ></text>
</g>
<g >
<title>__cxxabiv1::__si_class_type_info::__do_dyncast (30,303,030 samples, 0.07%)</title><rect x="810.7" y="2005" width="0.7" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="813.66" y="2015.5" ></text>
</g>
<g >
<title>std::__basic_file&lt;char&gt;::is_open (10,101,010 samples, 0.02%)</title><rect x="1171.1" y="2053" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="1174.11" y="2063.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="809.1" y="1941" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="812.08" y="1951.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode_prepare (10,101,010 samples, 0.02%)</title><rect x="860.2" y="2005" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="863.24" y="2015.5" ></text>
</g>
<g >
<title>__cond_resched (20,202,020 samples, 0.04%)</title><rect x="974.4" y="1957" width="0.5" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="977.36" y="1967.5" ></text>
</g>
<g >
<title>do_futex (10,101,010 samples, 0.02%)</title><rect x="178.7" y="1765" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="181.68" y="1775.5" ></text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (10,101,010 samples, 0.02%)</title><rect x="47.8" y="1845" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="50.78" y="1855.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;leveldb::FileMetaData*, std::allocator&lt;leveldb::FileMetaData*&gt; &gt;::_Vector_impl::_Vector_impl (10,101,010 samples, 0.02%)</title><rect x="655.9" y="1829" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="658.88" y="1839.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (40,404,040 samples, 0.09%)</title><rect x="301.7" y="1765" width="1.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="304.72" y="1775.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="807.2" y="2005" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="810.25" y="2015.5" ></text>
</g>
<g >
<title>generic_update_time (10,101,010 samples, 0.02%)</title><rect x="149.0" y="1653" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="152.04" y="1663.5" ></text>
</g>
<g >
<title>__wake_up (40,404,040 samples, 0.09%)</title><rect x="402.5" y="1621" width="1.0" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="405.46" y="1631.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::key (60,606,060 samples, 0.13%)</title><rect x="67.2" y="1781" width="1.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="70.19" y="1791.5" ></text>
</g>
<g >
<title>std::allocator_traits&lt;std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::deallocate (10,101,010 samples, 0.02%)</title><rect x="235.3" y="1813" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="238.35" y="1823.5" ></text>
</g>
<g >
<title>leveldb::port::CondVar::SignalAll (10,101,010 samples, 0.02%)</title><rect x="702.3" y="1909" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="705.31" y="1919.5" ></text>
</g>
<g >
<title>__cond_resched (10,101,010 samples, 0.02%)</title><rect x="1062.5" y="1941" width="0.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="1065.50" y="1951.5" ></text>
</g>
<g >
<title>ext4_sync_file (30,303,030 samples, 0.07%)</title><rect x="11.8" y="1733" width="0.8" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="14.84" y="1743.5" ></text>
</g>
<g >
<title>leveldb::BuildTable (494,949,490 samples, 1.09%)</title><rect x="11.8" y="1845" width="12.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="14.84" y="1855.5" ></text>
</g>
<g >
<title>ext4_da_reserve_space (20,202,020 samples, 0.04%)</title><rect x="148.5" y="1573" width="0.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="151.51" y="1583.5" ></text>
</g>
<g >
<title>std::pair&lt;leveldb::Slice, leveldb::Slice&gt;* std::uninitialized_copy&lt;__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; const*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;, std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*&gt; (50,505,050 samples, 0.11%)</title><rect x="231.7" y="1829" width="1.3" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="234.68" y="1839.5" ></text>
</g>
<g >
<title>node_page_state (50,505,050 samples, 0.11%)</title><rect x="919.3" y="1749" width="1.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="922.27" y="1759.5" ></text>
</g>
<g >
<title>rw_verify_area (10,101,010 samples, 0.02%)</title><rect x="861.3" y="1957" width="0.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="864.29" y="1967.5" ></text>
</g>
<g >
<title>fsnotify_destroy_event (20,202,020 samples, 0.04%)</title><rect x="401.9" y="1637" width="0.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="404.93" y="1647.5" ></text>
</g>
<g >
<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.07%)</title><rect x="407.4" y="1621" width="0.8" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="410.44" y="1631.5" ></text>
</g>
<g >
<title>strncpy_from_user (30,303,030 samples, 0.07%)</title><rect x="804.6" y="1925" width="0.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="807.62" y="1935.5" ></text>
</g>
<g >
<title>blk_add_rq_to_plug (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1541" width="1.5" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="85.67" y="1551.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="821" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="831.5" ></text>
</g>
<g >
<title>fsnotify (20,202,020 samples, 0.04%)</title><rect x="764.2" y="1845" width="0.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="767.22" y="1855.5" ></text>
</g>
<g >
<title>submit_bio_noacct (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1605" width="1.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="85.67" y="1615.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1413" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="56.29" y="1423.5" ></text>
</g>
<g >
<title>leveldb::MemTable::KeyComparator::operator (30,303,030 samples, 0.07%)</title><rect x="254.0" y="1797" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="256.98" y="1807.5" ></text>
</g>
<g >
<title>__es_insert_extent (10,101,010 samples, 0.02%)</title><rect x="938.9" y="1797" width="0.3" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="941.94" y="1807.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (10,101,010 samples, 0.02%)</title><rect x="949.4" y="1813" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="952.44" y="1823.5" ></text>
</g>
<g >
<title>fclose@@GLIBC_2.2.5 (60,606,060 samples, 0.13%)</title><rect x="821.9" y="2037" width="1.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="824.94" y="2047.5" ></text>
</g>
<g >
<title>leveldb::VersionSet::LogAndApply (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1861" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="27.69" y="1871.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::LRUCache::Unref (10,101,010 samples, 0.02%)</title><rect x="626.2" y="1797" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="629.23" y="1807.5" ></text>
</g>
<g >
<title>dd_dispatch_request (10,101,010 samples, 0.02%)</title><rect x="1162.5" y="1653" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="1165.45" y="1663.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_replace_aux (10,101,010 samples, 0.02%)</title><rect x="1178.5" y="2053" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1181.46" y="2063.5" ></text>
</g>
<g >
<title>mpt_put_msg_frame (30,303,030 samples, 0.07%)</title><rect x="81.9" y="1413" width="0.8" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="84.88" y="1423.5" ></text>
</g>
<g >
<title>leveldb::MutexLock::~MutexLock (90,909,090 samples, 0.20%)</title><rect x="697.9" y="1893" width="2.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="700.85" y="1903.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_replace (10,101,010 samples, 0.02%)</title><rect x="24.4" y="1829" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="27.43" y="1839.5" ></text>
</g>
<g >
<title>generic_update_time (40,404,040 samples, 0.09%)</title><rect x="678.7" y="1637" width="1.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="681.70" y="1647.5" ></text>
</g>
<g >
<title>irq_exit_rcu (20,202,020 samples, 0.04%)</title><rect x="298.8" y="1749" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="301.84" y="1759.5" ></text>
</g>
<g >
<title>__blk_mq_alloc_requests (10,101,010 samples, 0.02%)</title><rect x="1163.5" y="1685" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1166.50" y="1695.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::_M_deallocate (10,101,010 samples, 0.02%)</title><rect x="234.8" y="1845" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="237.82" y="1855.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; const*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;::operator* (10,101,010 samples, 0.02%)</title><rect x="231.7" y="1813" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="234.68" y="1823.5" ></text>
</g>
<g >
<title>std::operator== (10,101,010 samples, 0.02%)</title><rect x="659.8" y="1829" width="0.3" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="662.81" y="1839.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Unlock (6,030,302,970 samples, 13.27%)</title><rect x="430.0" y="1893" width="156.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="433.00" y="1903.5" >leveldb::port::Mutex..</text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="1109.7" y="2005" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1112.72" y="2015.5" ></text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (222,222,220 samples, 0.49%)</title><rect x="132.5" y="1845" width="5.8" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="135.51" y="1855.5" ></text>
</g>
<g >
<title>std::map&lt;unsigned long, unsigned long, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::operator[] (111,111,110 samples, 0.24%)</title><rect x="164.5" y="1861" width="2.9" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="167.52" y="1871.5" ></text>
</g>
<g >
<title>leveldb::LookupKey::LookupKey (10,101,010 samples, 0.02%)</title><rect x="600.0" y="1893" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="603.00" y="1903.5" ></text>
</g>
<g >
<title>std::codecvt&lt;char, char, __mbstate_t&gt;::do_always_noconv (20,202,020 samples, 0.04%)</title><rect x="1185.0" y="2053" width="0.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1188.02" y="2063.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="135.9" y="1813" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="138.92" y="1823.5" ></text>
</g>
<g >
<title>leveldb::crc32c::Extend (212,121,210 samples, 0.47%)</title><rect x="422.4" y="1861" width="5.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="425.40" y="1871.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::Writer::Writer (10,101,010 samples, 0.02%)</title><rect x="176.6" y="1893" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="179.59" y="1903.5" ></text>
</g>
<g >
<title>__futex_wait (10,101,010 samples, 0.02%)</title><rect x="660.6" y="1701" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="663.60" y="1711.5" ></text>
</g>
<g >
<title>std::ostream::write (50,505,050 samples, 0.11%)</title><rect x="1188.2" y="2053" width="1.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1191.16" y="2063.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::resize (10,101,010 samples, 0.02%)</title><rect x="24.2" y="1813" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="27.17" y="1823.5" ></text>
</g>
<g >
<title>vfs_write (181,818,180 samples, 0.40%)</title><rect x="676.9" y="1701" width="4.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="679.87" y="1711.5" ></text>
</g>
<g >
<title>futex_wait (50,505,050 samples, 0.11%)</title><rect x="730.1" y="1941" width="1.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="733.12" y="1951.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::Writer::Writer (20,202,020 samples, 0.04%)</title><rect x="696.5" y="1893" width="0.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="699.54" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1013" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1023.5" ></text>
</g>
<g >
<title>__GI__IO_un_link.part.0 (20,202,020 samples, 0.04%)</title><rect x="715.2" y="2021" width="0.5" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="718.17" y="2031.5" ></text>
</g>
<g >
<title>wake_all_kswapds (10,101,010 samples, 0.02%)</title><rect x="909.3" y="1765" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="912.30" y="1775.5" ></text>
</g>
<g >
<title>_int_malloc (10,101,010 samples, 0.02%)</title><rect x="713.3" y="1269" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="716.33" y="1279.5" ></text>
</g>
<g >
<title>do_syscall_64 (111,111,110 samples, 0.24%)</title><rect x="728.5" y="2005" width="2.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="731.55" y="2015.5" ></text>
</g>
<g >
<title>free_buffer_head (10,101,010 samples, 0.02%)</title><rect x="11.6" y="1557" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="14.57" y="1567.5" ></text>
</g>
<g >
<title>mptspi_qcmd (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1381" width="1.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="85.67" y="1391.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="730.4" y="1877" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="733.38" y="1887.5" ></text>
</g>
<g >
<title>__memmove_evex_unaligned_erms (10,101,010 samples, 0.02%)</title><rect x="599.7" y="1893" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="602.74" y="1903.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::FinishCompactionOutputFile (131,313,130 samples, 0.29%)</title><rect x="81.9" y="1861" width="3.4" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="84.88" y="1871.5" ></text>
</g>
<g >
<title>irqentry_exit (10,101,010 samples, 0.02%)</title><rect x="609.2" y="1797" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="612.18" y="1807.5" ></text>
</g>
<g >
<title>leveldb::MutexLock::MutexLock (30,303,030 samples, 0.07%)</title><rect x="619.4" y="1893" width="0.8" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="622.41" y="1903.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Update (151,515,150 samples, 0.33%)</title><rect x="65.6" y="1797" width="4.0" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="68.62" y="1807.5" ></text>
</g>
<g >
<title>std::basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;::good (10,101,010 samples, 0.02%)</title><rect x="711.5" y="1925" width="0.3" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="714.49" y="1935.5" ></text>
</g>
<g >
<title>ext4_writepages (121,212,120 samples, 0.27%)</title><rect x="81.9" y="1669" width="3.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="84.88" y="1679.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (10,101,010 samples, 0.02%)</title><rect x="638.0" y="1765" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="641.04" y="1775.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="593.4" y="1877" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="596.44" y="1887.5" ></text>
</g>
<g >
<title>leveldb::Iterator::RegisterCleanup (10,101,010 samples, 0.02%)</title><rect x="647.0" y="1813" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="649.96" y="1823.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="91.6" y="1845" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="94.59" y="1855.5" ></text>
</g>
<g >
<title>__folio_batch_release (10,101,010 samples, 0.02%)</title><rect x="11.0" y="1669" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="14.05" y="1679.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (90,909,090 samples, 0.20%)</title><rect x="154.3" y="1749" width="2.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="157.29" y="1759.5" ></text>
</g>
<g >
<title>check_heap_object (10,101,010 samples, 0.02%)</title><rect x="804.4" y="1877" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="807.36" y="1887.5" ></text>
</g>
<g >
<title>should_failslab.constprop.0 (10,101,010 samples, 0.02%)</title><rect x="934.2" y="1797" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="937.22" y="1807.5" ></text>
</g>
<g >
<title>vfs_write (141,414,140 samples, 0.31%)</title><rect x="145.6" y="1701" width="3.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="148.63" y="1711.5" ></text>
</g>
<g >
<title>refill_obj_stock (10,101,010 samples, 0.02%)</title><rect x="980.1" y="1893" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="983.13" y="1903.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::push_back (10,101,010 samples, 0.02%)</title><rect x="599.0" y="1909" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="601.95" y="1919.5" ></text>
</g>
<g >
<title>leveldb::Slice::remove_prefix (10,101,010 samples, 0.02%)</title><rect x="92.6" y="1861" width="0.3" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="95.64" y="1871.5" ></text>
</g>
<g >
<title>__fsnotify_parent (60,606,060 samples, 0.13%)</title><rect x="763.2" y="1861" width="1.5" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="766.17" y="1871.5" ></text>
</g>
<g >
<title>generic_permission (10,101,010 samples, 0.02%)</title><rect x="791.5" y="1877" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="794.51" y="1887.5" ></text>
</g>
<g >
<title>futex_wait_setup (10,101,010 samples, 0.02%)</title><rect x="660.6" y="1685" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="663.60" y="1695.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Update (40,404,040 samples, 0.09%)</title><rect x="63.3" y="1765" width="1.0" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="66.25" y="1775.5" ></text>
</g>
<g >
<title>page_cache_async_ra (1,292,929,280 samples, 2.85%)</title><rect x="1132.3" y="1877" width="33.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1135.29" y="1887.5" >pa..</text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="86.3" y="1845" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="89.34" y="1855.5" ></text>
</g>
<g >
<title>std::_Deque_base&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::_M_get_Tp_allocator (10,101,010 samples, 0.02%)</title><rect x="700.2" y="1893" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="703.21" y="1903.5" ></text>
</g>
<g >
<title>__GI___writev (4,424,242,380 samples, 9.74%)</title><rect x="840.6" y="2053" width="114.9" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="843.56" y="2063.5" >__GI___writev</text>
</g>
<g >
<title>__fput (323,232,320 samples, 0.71%)</title><rect x="974.9" y="1957" width="8.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="977.88" y="1967.5" ></text>
</g>
<g >
<title>leveldb::FindFile (50,505,050 samples, 0.11%)</title><rect x="622.8" y="1861" width="1.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="625.82" y="1871.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_S_key (70,707,070 samples, 0.16%)</title><rect x="192.1" y="1797" width="1.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="195.06" y="1807.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::size (10,101,010 samples, 0.02%)</title><rect x="220.4" y="1861" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="223.40" y="1871.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::clear (10,101,010 samples, 0.02%)</title><rect x="597.4" y="1909" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="600.38" y="1919.5" ></text>
</g>
<g >
<title>leveldb::EncodeFixed64 (10,101,010 samples, 0.02%)</title><rect x="667.4" y="1797" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="670.42" y="1807.5" ></text>
</g>
<g >
<title>std::mutex::lock (50,505,050 samples, 0.11%)</title><rect x="657.2" y="1877" width="1.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="660.19" y="1887.5" ></text>
</g>
<g >
<title>leveldb::EncodeVarint32 (40,404,040 samples, 0.09%)</title><rect x="112.6" y="1813" width="1.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="115.57" y="1823.5" ></text>
</g>
<g >
<title>__strchrnul_evex (50,505,050 samples, 0.11%)</title><rect x="812.2" y="2037" width="1.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="815.23" y="2047.5" ></text>
</g>
<g >
<title>inode_permission (70,707,070 samples, 0.16%)</title><rect x="790.5" y="1893" width="1.8" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="793.46" y="1903.5" ></text>
</g>
<g >
<title>mpt_put_msg_frame (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1253" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="56.29" y="1263.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,070,707,060 samples, 2.36%)</title><rect x="1076.9" y="1925" width="27.8" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1079.93" y="1935.5" >t..</text>
</g>
<g >
<title>ext4_reserve_inode_write (20,202,020 samples, 0.04%)</title><rect x="407.7" y="1605" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="410.71" y="1615.5" ></text>
</g>
<g >
<title>ktime_get_coarse_real_ts64 (10,101,010 samples, 0.02%)</title><rect x="1167.2" y="1845" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1170.18" y="1855.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (10,101,010 samples, 0.02%)</title><rect x="53.0" y="1701" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="56.02" y="1711.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1781" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="13.79" y="1791.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32 (20,202,020 samples, 0.04%)</title><rect x="359.4" y="1845" width="0.6" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="362.44" y="1855.5" ></text>
</g>
<g >
<title>leveldb::Arena::AllocateAligned (20,202,020 samples, 0.04%)</title><rect x="345.0" y="1797" width="0.5" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="348.01" y="1807.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::value (20,202,020 samples, 0.04%)</title><rect x="78.5" y="1829" width="0.5" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="81.47" y="1839.5" ></text>
</g>
<g >
<title>wakeup_kswapd (10,101,010 samples, 0.02%)</title><rect x="909.3" y="1749" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="912.30" y="1759.5" ></text>
</g>
<g >
<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.07%)</title><rect x="679.0" y="1589" width="0.8" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="681.96" y="1599.5" ></text>
</g>
<g >
<title>futex_wait_setup (30,303,030 samples, 0.07%)</title><rect x="730.6" y="1909" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="733.64" y="1919.5" ></text>
</g>
<g >
<title>irqentry_exit (10,101,010 samples, 0.02%)</title><rect x="123.6" y="1781" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="126.59" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="405" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="415.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;leveldb::Slice, std::allocator&lt;leveldb::Slice&gt; &gt;::_M_deallocate (10,101,010 samples, 0.02%)</title><rect x="355.0" y="1829" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="357.98" y="1839.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::status (10,101,010 samples, 0.02%)</title><rect x="158.2" y="1845" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="161.22" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1061" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1071.5" ></text>
</g>
<g >
<title>leveldb::GetLengthPrefixedSlice (60,606,060 samples, 0.13%)</title><rect x="15.5" y="1813" width="1.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="18.51" y="1823.5" ></text>
</g>
<g >
<title>idr_find (10,101,010 samples, 0.02%)</title><rect x="1136.2" y="1765" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1139.22" y="1775.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (20,202,020 samples, 0.04%)</title><rect x="109.2" y="1813" width="0.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="112.16" y="1823.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (20,202,020 samples, 0.04%)</title><rect x="254.2" y="1749" width="0.6" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="257.24" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="437" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="447.5" ></text>
</g>
<g >
<title>leveldb::ExtractUserKey (60,606,060 samples, 0.13%)</title><rect x="134.9" y="1829" width="1.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="137.87" y="1839.5" ></text>
</g>
<g >
<title>__gnu_cxx::new_allocator&lt;leveldb::Slice&gt;::_M_max_size (10,101,010 samples, 0.02%)</title><rect x="357.1" y="1781" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="360.07" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="965" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="975.5" ></text>
</g>
<g >
<title>filemap_alloc_folio (10,101,010 samples, 0.02%)</title><rect x="942.9" y="1861" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="945.88" y="1871.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (10,101,010 samples, 0.02%)</title><rect x="21.5" y="1781" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="24.54" y="1791.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (20,202,020 samples, 0.04%)</title><rect x="142.7" y="1845" width="0.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="145.74" y="1855.5" ></text>
</g>
<g >
<title>std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::operator (10,101,010 samples, 0.02%)</title><rect x="194.2" y="1797" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="197.16" y="1807.5" ></text>
</g>
<g >
<title>apparmor_current_getlsmblob_subj (10,101,010 samples, 0.02%)</title><rect x="759.5" y="1861" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="762.50" y="1871.5" ></text>
</g>
<g >
<title>dget_parent (10,101,010 samples, 0.02%)</title><rect x="1118.4" y="1925" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1121.38" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,030,302,990 samples, 8.87%)</title><rect x="850.8" y="2037" width="104.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="853.80" y="2047.5" >entry_SYSCAL..</text>
</g>
<g >
<title>std::less&lt;unsigned long&gt;::operator (10,101,010 samples, 0.02%)</title><rect x="164.8" y="1845" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="167.78" y="1855.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="238.8" y="1877" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="241.76" y="1887.5" ></text>
</g>
<g >
<title>file_close_fd_locked (20,202,020 samples, 0.04%)</title><rect x="986.2" y="1957" width="0.5" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="989.16" y="1967.5" ></text>
</g>
<g >
<title>x64_sys_call (151,515,150 samples, 0.33%)</title><rect x="145.4" y="1749" width="3.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="148.37" y="1759.5" ></text>
</g>
<g >
<title>xas_descend (20,202,020 samples, 0.04%)</title><rect x="414.0" y="1605" width="0.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="417.00" y="1615.5" ></text>
</g>
<g >
<title>leveldb::crc32c::Value (20,202,020 samples, 0.04%)</title><rect x="23.1" y="1765" width="0.5" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="26.12" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="197" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="207.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="850.5" y="2037" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="853.53" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="682.6" y="1813" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="685.64" y="1823.5" ></text>
</g>
<g >
<title>generic_update_time (40,404,040 samples, 0.09%)</title><rect x="407.2" y="1669" width="1.0" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="410.18" y="1679.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="110.0" y="1813" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="112.95" y="1823.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::GetRestartPoint (20,202,020 samples, 0.04%)</title><rect x="58.5" y="1733" width="0.6" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="61.53" y="1743.5" ></text>
</g>
<g >
<title>std::allocator_traits&lt;std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::allocate (10,101,010 samples, 0.02%)</title><rect x="241.6" y="1781" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="244.65" y="1791.5" ></text>
</g>
<g >
<title>apparmor_file_permission (30,303,030 samples, 0.07%)</title><rect x="1169.5" y="1909" width="0.8" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1172.54" y="1919.5" ></text>
</g>
<g >
<title>void std::thread::_Invoker&lt;std::tuple&lt;void (27,040,403,770 samples, 59.52%)</title><rect x="10.0" y="2005" width="702.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="13.00" y="2015.5" >void std::thread::_Invoker&lt;std::tuple&lt;void </text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_replace (20,202,020 samples, 0.04%)</title><rect x="167.7" y="1877" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="170.67" y="1887.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::MemTableInserter::Put (242,424,240 samples, 0.53%)</title><rect x="667.2" y="1829" width="6.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="670.16" y="1839.5" ></text>
</g>
<g >
<title>std::allocator_traits&lt;std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::max_size (20,202,020 samples, 0.04%)</title><rect x="211.0" y="1749" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="213.95" y="1759.5" ></text>
</g>
<g >
<title>leveldb::WriteBatchInternal::checkValueLog (262,626,260 samples, 0.58%)</title><rect x="353.9" y="1893" width="6.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="356.93" y="1903.5" ></text>
</g>
<g >
<title>leveldb::GetVarint64 (10,101,010 samples, 0.02%)</title><rect x="649.3" y="1781" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="652.32" y="1791.5" ></text>
</g>
<g >
<title>aa_audit_file (10,101,010 samples, 0.02%)</title><rect x="774.2" y="1797" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="777.19" y="1807.5" ></text>
</g>
<g >
<title>evict (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1685" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="27.69" y="1695.5" ></text>
</g>
<g >
<title>do_fault (30,303,030 samples, 0.07%)</title><rect x="651.2" y="1685" width="0.7" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="654.16" y="1695.5" ></text>
</g>
<g >
<title>folio_lruvec_lock_irqsave (20,202,020 samples, 0.04%)</title><rect x="907.2" y="1797" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="910.20" y="1807.5" ></text>
</g>
<g >
<title>ext4_evict_inode (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1669" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="27.69" y="1679.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ValueLogInserter::ValueLogInserter (20,202,020 samples, 0.04%)</title><rect x="181.6" y="1877" width="0.5" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="184.57" y="1887.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="648.5" y="1733" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="651.53" y="1743.5" ></text>
</g>
<g >
<title>ext4_evict_inode (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1733" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="659.93" y="1743.5" ></text>
</g>
<g >
<title>std::map&lt;unsigned long, unsigned long, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::lower_bound (90,909,090 samples, 0.20%)</title><rect x="165.0" y="1845" width="2.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="168.04" y="1855.5" ></text>
</g>
<g >
<title>leveldb::MutexLock::~MutexLock (20,202,020 samples, 0.04%)</title><rect x="620.2" y="1893" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="623.20" y="1903.5" ></text>
</g>
<g >
<title>leveldb::Slice::compare (101,010,100 samples, 0.22%)</title><rect x="328.7" y="1733" width="2.7" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="331.74" y="1743.5" ></text>
</g>
<g >
<title>__do_fault (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1589" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="56.29" y="1599.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (20,202,020 samples, 0.04%)</title><rect x="137.8" y="1829" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="140.76" y="1839.5" ></text>
</g>
<g >
<title>__alloc_pages (585,858,580 samples, 1.29%)</title><rect x="909.0" y="1797" width="15.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="912.04" y="1807.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32Ptr (565,656,560 samples, 1.24%)</title><rect x="304.9" y="1749" width="14.7" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="307.87" y="1759.5" ></text>
</g>
<g >
<title>llseek@GLIBC_2.2.5 (2,080,808,060 samples, 4.58%)</title><rect x="1010.6" y="2053" width="54.0" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1013.56" y="2063.5" >llsee..</text>
</g>
<g >
<title>std::locale::locale (10,101,010 samples, 0.02%)</title><rect x="829.3" y="2005" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="832.28" y="2015.5" ></text>
</g>
<g >
<title>__GI___pthread_disable_asynccancel (40,404,040 samples, 0.09%)</title><rect x="839.0" y="2053" width="1.0" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="841.99" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (30,303,030 samples, 0.07%)</title><rect x="713.1" y="1413" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1423.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="389" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="399.5" ></text>
</g>
<g >
<title>leveldb::Compaction::ShouldStopBefore (70,707,070 samples, 0.16%)</title><rect x="79.3" y="1861" width="1.8" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="82.26" y="1871.5" ></text>
</g>
<g >
<title>__x64_sys_writev (10,101,010 samples, 0.02%)</title><rect x="860.0" y="2005" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="862.98" y="2015.5" ></text>
</g>
<g >
<title>leveldb::MutexLock::~MutexLock (20,202,020 samples, 0.04%)</title><rect x="591.3" y="1909" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="594.34" y="1919.5" ></text>
</g>
<g >
<title>blk_finish_plug (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1477" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="56.29" y="1487.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::value (101,010,100 samples, 0.22%)</title><rect x="75.8" y="1813" width="2.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="78.85" y="1823.5" ></text>
</g>
<g >
<title>futex_wait_queue (20,202,020 samples, 0.04%)</title><rect x="619.7" y="1717" width="0.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="622.68" y="1727.5" ></text>
</g>
<g >
<title>apparmor_file_open (646,464,640 samples, 1.42%)</title><rect x="771.8" y="1845" width="16.8" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="774.83" y="1855.5" ></text>
</g>
<g >
<title>fsnotify (10,101,010 samples, 0.02%)</title><rect x="954.2" y="1941" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="957.16" y="1951.5" ></text>
</g>
<g >
<title>__x64_sys_futex (10,101,010 samples, 0.02%)</title><rect x="808.3" y="1973" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="811.30" y="1983.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="709.4" y="1877" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="712.40" y="1887.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (30,303,030 samples, 0.07%)</title><rect x="44.1" y="1797" width="0.8" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="47.10" y="1807.5" ></text>
</g>
<g >
<title>fsnotify (383,838,380 samples, 0.84%)</title><rect x="394.3" y="1701" width="10.0" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="397.33" y="1711.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (60,606,060 samples, 0.13%)</title><rect x="753.7" y="1893" width="1.6" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="756.73" y="1903.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::KeyIsAfterNode (171,717,170 samples, 0.38%)</title><rect x="668.2" y="1765" width="4.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="671.21" y="1775.5" ></text>
</g>
<g >
<title>__rcu_read_lock (10,101,010 samples, 0.02%)</title><rect x="934.0" y="1765" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="936.96" y="1775.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node::Node (20,202,020 samples, 0.04%)</title><rect x="345.5" y="1797" width="0.6" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="348.53" y="1807.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (20,202,020 samples, 0.04%)</title><rect x="254.2" y="1765" width="0.6" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="257.24" y="1775.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="21.3" y="1781" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="24.28" y="1791.5" ></text>
</g>
<g >
<title>ondemand_readahead (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1861" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1168.86" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="245" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="255.5" ></text>
</g>
<g >
<title>x64_sys_call (20,202,020 samples, 0.04%)</title><rect x="22.6" y="1717" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="25.59" y="1727.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,101,010 samples, 0.02%)</title><rect x="925.0" y="1797" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="928.04" y="1807.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.02%)</title><rect x="620.5" y="1701" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="623.46" y="1711.5" ></text>
</g>
<g >
<title>leveldb::Version::Ref (10,101,010 samples, 0.02%)</title><rect x="702.0" y="1909" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="705.05" y="1919.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::Next (20,202,020 samples, 0.04%)</title><rect x="54.3" y="1781" width="0.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="57.34" y="1791.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_M_check_len (10,101,010 samples, 0.02%)</title><rect x="666.1" y="1765" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="669.11" y="1775.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="635.7" y="1749" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="638.68" y="1759.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (10,101,010 samples, 0.02%)</title><rect x="189.4" y="1845" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="192.44" y="1855.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::key (10,101,010 samples, 0.02%)</title><rect x="87.4" y="1861" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="90.39" y="1871.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::Valid (10,101,010 samples, 0.02%)</title><rect x="64.8" y="1797" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="67.83" y="1807.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (40,404,040 samples, 0.09%)</title><rect x="678.7" y="1605" width="1.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="681.70" y="1615.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (20,202,020 samples, 0.04%)</title><rect x="953.6" y="1941" width="0.6" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="956.63" y="1951.5" ></text>
</g>
<g >
<title>unsigned long const&amp; std::min&lt;unsigned long&gt; (10,101,010 samples, 0.02%)</title><rect x="241.9" y="1749" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="244.91" y="1759.5" ></text>
</g>
<g >
<title>leveldb::Slice::operator[] (50,505,050 samples, 0.11%)</title><rect x="20.0" y="1797" width="1.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="22.97" y="1807.5" ></text>
</g>
<g >
<title>__filemap_get_folio (10,101,010 samples, 0.02%)</title><rect x="794.4" y="1765" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="797.39" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="997" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1007.5" ></text>
</g>
<g >
<title>__gnu_cxx::new_allocator&lt;leveldb::FileMetaData*&gt;::max_size (10,101,010 samples, 0.02%)</title><rect x="655.6" y="1813" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="658.62" y="1823.5" ></text>
</g>
<g >
<title>apparmor_file_permission (20,202,020 samples, 0.04%)</title><rect x="954.7" y="1909" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="957.68" y="1919.5" ></text>
</g>
<g >
<title>generic_perform_write (353,535,350 samples, 0.78%)</title><rect x="410.1" y="1685" width="9.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="413.07" y="1695.5" ></text>
</g>
<g >
<title>bio_associate_blkg (10,101,010 samples, 0.02%)</title><rect x="12.4" y="1557" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="15.36" y="1567.5" ></text>
</g>
<g >
<title>leveldb::MemTable::KeyComparator::operator (20,202,020 samples, 0.04%)</title><rect x="258.2" y="1797" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="261.17" y="1807.5" ></text>
</g>
<g >
<title>std::remove_reference&lt;char const*&amp;&gt;::type&amp;&amp; std::move&lt;char const*&amp;&gt; (10,101,010 samples, 0.02%)</title><rect x="592.7" y="1877" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="595.65" y="1887.5" ></text>
</g>
<g >
<title>fsnotify (10,101,010 samples, 0.02%)</title><rect x="1118.9" y="1925" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="1121.91" y="1935.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (10,101,010 samples, 0.02%)</title><rect x="824.3" y="2037" width="0.3" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="827.30" y="2047.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (20,202,020 samples, 0.04%)</title><rect x="939.5" y="1797" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="942.47" y="1807.5" ></text>
</g>
<g >
<title>blk_mq_submit_bio (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1509" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="87.77" y="1519.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::BuildBatchGroup (10,101,010 samples, 0.02%)</title><rect x="659.6" y="1861" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="662.55" y="1871.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::Valid (20,202,020 samples, 0.04%)</title><rect x="71.1" y="1813" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="74.12" y="1823.5" ></text>
</g>
<g >
<title>__gnu_cxx::new_allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt;::allocate (10,101,010 samples, 0.02%)</title><rect x="230.9" y="1781" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="233.89" y="1791.5" ></text>
</g>
<g >
<title>leveldb::Slice::size (20,202,020 samples, 0.04%)</title><rect x="617.3" y="1797" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="620.31" y="1807.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::Writer::~Writer (20,202,020 samples, 0.04%)</title><rect x="176.8" y="1893" width="0.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="179.85" y="1903.5" ></text>
</g>
<g >
<title>dget_parent (20,202,020 samples, 0.04%)</title><rect x="145.9" y="1669" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="148.89" y="1679.5" ></text>
</g>
<g >
<title>tty_write (20,202,020 samples, 0.04%)</title><rect x="807.2" y="1925" width="0.6" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="810.25" y="1935.5" ></text>
</g>
<g >
<title>leveldb::Slice::remove_prefix (20,202,020 samples, 0.04%)</title><rect x="665.6" y="1845" width="0.5" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="668.58" y="1855.5" ></text>
</g>
<g >
<title>leveldb::Slice::empty (10,101,010 samples, 0.02%)</title><rect x="246.4" y="1861" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="249.37" y="1871.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::value (60,606,060 samples, 0.13%)</title><rect x="76.6" y="1797" width="1.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="79.63" y="1807.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::~vector (40,404,040 samples, 0.09%)</title><rect x="234.6" y="1861" width="1.0" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="237.56" y="1871.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::KeyBuffer::slice (10,101,010 samples, 0.02%)</title><rect x="170.0" y="1909" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="173.03" y="1919.5" ></text>
</g>
<g >
<title>fsnotify_insert_event (10,101,010 samples, 0.02%)</title><rect x="872.8" y="1861" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="875.83" y="1871.5" ></text>
</g>
<g >
<title>leveldb::GetVarint32Ptr (20,202,020 samples, 0.04%)</title><rect x="244.5" y="1829" width="0.6" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="247.53" y="1839.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="672.4" y="1717" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="675.41" y="1727.5" ></text>
</g>
<g >
<title>page_cache_ra_order (1,292,929,280 samples, 2.85%)</title><rect x="1132.3" y="1845" width="33.6" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="1135.29" y="1855.5" >pa..</text>
</g>
<g >
<title>__gthread_active_p (10,101,010 samples, 0.02%)</title><rect x="429.0" y="1845" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="431.96" y="1855.5" ></text>
</g>
<g >
<title>std::deque&lt;leveldb::DBImpl::Writer*, std::allocator&lt;leveldb::DBImpl::Writer*&gt; &gt;::empty (10,101,010 samples, 0.02%)</title><rect x="176.1" y="1877" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="179.06" y="1887.5" ></text>
</g>
<g >
<title>security_file_permission (20,202,020 samples, 0.04%)</title><rect x="954.7" y="1925" width="0.5" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="957.68" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,767,676,750 samples, 3.89%)</title><rect x="375.7" y="1813" width="45.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="378.70" y="1823.5" >entr..</text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="757" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="767.5" ></text>
</g>
<g >
<title>std::remove_reference&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;&amp;&gt;::type&amp;&amp; std::move&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;&amp;&gt; (10,101,010 samples, 0.02%)</title><rect x="244.3" y="1829" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="247.27" y="1839.5" ></text>
</g>
<g >
<title>from_kuid (10,101,010 samples, 0.02%)</title><rect x="877.8" y="1781" width="0.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="880.82" y="1791.5" ></text>
</g>
<g >
<title>std::locale::~locale (50,505,050 samples, 0.11%)</title><rect x="227.7" y="1861" width="1.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="230.74" y="1871.5" ></text>
</g>
<g >
<title>clear_page_erms (40,404,040 samples, 0.09%)</title><rect x="1137.5" y="1733" width="1.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1140.53" y="1743.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="660.9" y="1797" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="663.86" y="1807.5" ></text>
</g>
<g >
<title>prepend_path (222,222,220 samples, 0.49%)</title><rect x="782.3" y="1749" width="5.8" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="785.33" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="789" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="799.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1765" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1168.86" y="1775.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.16%)</title><rect x="808.6" y="2021" width="1.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="811.56" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="178.4" y="1829" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="181.42" y="1839.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::assign (10,101,010 samples, 0.02%)</title><rect x="168.2" y="1877" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="171.19" y="1887.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (898,989,890 samples, 1.98%)</title><rect x="1139.4" y="1685" width="23.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1142.37" y="1695.5" >_..</text>
</g>
<g >
<title>leveldb::(anonymous namespace)::HandleTable::FindPointer (20,202,020 samples, 0.04%)</title><rect x="653.3" y="1765" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="656.25" y="1775.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="1175.6" y="2037" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1178.57" y="2047.5" ></text>
</g>
<g >
<title>__kmalloc (151,515,150 samples, 0.33%)</title><rect x="868.6" y="1861" width="4.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="871.63" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="293" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="303.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (30,303,030 samples, 0.07%)</title><rect x="981.4" y="1925" width="0.8" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="984.44" y="1935.5" ></text>
</g>
<g >
<title>dget_parent (10,101,010 samples, 0.02%)</title><rect x="764.0" y="1845" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="766.96" y="1855.5" ></text>
</g>
<g >
<title>__x64_sys_unlink (30,303,030 samples, 0.07%)</title><rect x="11.0" y="1781" width="0.8" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="14.05" y="1791.5" ></text>
</g>
<g >
<title>leveldb::GetVarint64Ptr (20,202,020 samples, 0.04%)</title><rect x="87.9" y="1829" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="90.91" y="1839.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="596.6" y="1877" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="599.59" y="1887.5" ></text>
</g>
<g >
<title>__gnu_cxx::new_allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt;::deallocate (20,202,020 samples, 0.04%)</title><rect x="236.7" y="1797" width="0.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="239.66" y="1807.5" ></text>
</g>
<g >
<title>leveldb::operator== (10,101,010 samples, 0.02%)</title><rect x="653.5" y="1749" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="656.52" y="1759.5" ></text>
</g>
<g >
<title>std::operator&amp; (10,101,010 samples, 0.02%)</title><rect x="672.9" y="1733" width="0.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="675.93" y="1743.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wait (171,717,170 samples, 0.38%)</title><rect x="702.8" y="1877" width="4.5" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="705.84" y="1887.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (20,202,020 samples, 0.04%)</title><rect x="128.3" y="1813" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="131.31" y="1823.5" ></text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (30,303,030 samples, 0.07%)</title><rect x="21.5" y="1813" width="0.8" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="24.54" y="1823.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="596.6" y="1829" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="599.59" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="373" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="383.5" ></text>
</g>
<g >
<title>wake_q_add_safe (10,101,010 samples, 0.02%)</title><rect x="443.4" y="1749" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="446.38" y="1759.5" ></text>
</g>
<g >
<title>file_tty_write.constprop.0 (20,202,020 samples, 0.04%)</title><rect x="807.2" y="1909" width="0.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="810.25" y="1919.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node::NoBarrier_SetNext (20,202,020 samples, 0.04%)</title><rect x="346.8" y="1813" width="0.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="349.84" y="1823.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="54.1" y="1653" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="57.07" y="1663.5" ></text>
</g>
<g >
<title>fault_in_iov_iter_readable (20,202,020 samples, 0.04%)</title><rect x="876.5" y="1893" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="879.51" y="1903.5" ></text>
</g>
<g >
<title>std::_Vector_base&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::_Vector_impl::_Vector_impl (10,101,010 samples, 0.02%)</title><rect x="213.8" y="1813" width="0.3" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="216.84" y="1823.5" ></text>
</g>
<g >
<title>mpage_map_and_submit_buffers (30,303,030 samples, 0.07%)</title><rect x="84.2" y="1621" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="87.24" y="1631.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::Next (363,636,360 samples, 0.80%)</title><rect x="54.9" y="1781" width="9.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="57.86" y="1791.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::ParseNextKey (80,808,080 samples, 0.18%)</title><rect x="637.5" y="1797" width="2.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="640.51" y="1807.5" ></text>
</g>
<g >
<title>leveldb::Status::ok (10,101,010 samples, 0.02%)</title><rect x="628.1" y="1829" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="631.07" y="1839.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="147.7" y="1605" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="150.73" y="1615.5" ></text>
</g>
<g >
<title>truncate_inode_pages_range (10,101,010 samples, 0.02%)</title><rect x="10.8" y="1669" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="13.79" y="1679.5" ></text>
</g>
<g >
<title>__x64_sys_futex (1,131,313,120 samples, 2.49%)</title><rect x="1075.4" y="1989" width="29.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1078.36" y="1999.5" >__..</text>
</g>
<g >
<title>__fdget_pos (20,202,020 samples, 0.04%)</title><rect x="676.3" y="1701" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="679.34" y="1711.5" ></text>
</g>
<g >
<title>std::istream::sentry::sentry (10,101,010 samples, 0.02%)</title><rect x="227.0" y="1861" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="229.95" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="69" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="79.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (10,101,010 samples, 0.02%)</title><rect x="92.4" y="1861" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="95.37" y="1871.5" ></text>
</g>
<g >
<title>filemap_fdatawrite_wbc (121,212,120 samples, 0.27%)</title><rect x="81.9" y="1701" width="3.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="84.88" y="1711.5" ></text>
</g>
<g >
<title>leveldb::WriteBatchInternal::InsertInto (4,040,404,000 samples, 8.89%)</title><rect x="249.0" y="1893" width="104.9" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="251.99" y="1903.5" >leveldb::Wri..</text>
</g>
<g >
<title>blk_complete_reqs (10,101,010 samples, 0.02%)</title><rect x="135.7" y="1717" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="138.66" y="1727.5" ></text>
</g>
<g >
<title>leveldb::Slice::remove_prefix (20,202,020 samples, 0.04%)</title><rect x="353.4" y="1861" width="0.5" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="356.40" y="1871.5" ></text>
</g>
<g >
<title>ext4_da_get_block_prep (252,525,250 samples, 0.56%)</title><rect x="934.5" y="1845" width="6.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="937.48" y="1855.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::Put (1,444,444,430 samples, 3.18%)</title><rect x="658.5" y="1909" width="37.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="661.50" y="1919.5" >lev..</text>
</g>
<g >
<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.07%)</title><rect x="877.6" y="1829" width="0.7" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="880.55" y="1839.5" ></text>
</g>
<g >
<title>get_futex_key (10,101,010 samples, 0.02%)</title><rect x="731.2" y="1893" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="734.17" y="1903.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="351.3" y="1845" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="354.30" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="645" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="655.5" ></text>
</g>
<g >
<title>futex_wait (20,202,020 samples, 0.04%)</title><rect x="619.7" y="1749" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="622.68" y="1759.5" ></text>
</g>
<g >
<title>lockref_get_not_zero (10,101,010 samples, 0.02%)</title><rect x="404.3" y="1701" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="407.30" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="713.1" y="1557" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1567.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::ShardedLRUCache::Value (10,101,010 samples, 0.02%)</title><rect x="626.5" y="1829" width="0.3" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="629.50" y="1839.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="709.4" y="1861" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="712.40" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="713.1" y="1589" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1599.5" ></text>
</g>
<g >
<title>std::allocator&lt;leveldb::Slice&gt;::~allocator (10,101,010 samples, 0.02%)</title><rect x="355.2" y="1829" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="358.24" y="1839.5" ></text>
</g>
<g >
<title>submit_bio_noacct (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1589" width="0.6" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="14.84" y="1599.5" ></text>
</g>
<g >
<title>leveldb::BlockBuilder::Add (10,101,010 samples, 0.02%)</title><rect x="79.0" y="1861" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="82.00" y="1871.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.07%)</title><rect x="1135.4" y="1765" width="0.8" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1138.43" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="101" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="111.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::key (50,505,050 samples, 0.11%)</title><rect x="71.6" y="1813" width="1.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="74.65" y="1823.5" ></text>
</g>
<g >
<title>pthread_mutex_lock@plt (10,101,010 samples, 0.02%)</title><rect x="429.7" y="1861" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="432.74" y="1871.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::end (10,101,010 samples, 0.02%)</title><rect x="191.3" y="1829" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="194.28" y="1839.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="787.6" y="1653" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="790.57" y="1663.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::FindGreaterOrEqual (3,434,343,400 samples, 7.56%)</title><rect x="254.8" y="1813" width="89.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="257.76" y="1823.5" >leveldb::S..</text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::push_back (20,202,020 samples, 0.04%)</title><rect x="666.1" y="1813" width="0.5" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="669.11" y="1823.5" ></text>
</g>
<g >
<title>mod_objcg_state (20,202,020 samples, 0.04%)</title><rect x="979.6" y="1909" width="0.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="982.60" y="1919.5" ></text>
</g>
<g >
<title>x64_sys_call (50,505,050 samples, 0.11%)</title><rect x="730.1" y="1989" width="1.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="733.12" y="1999.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::vector (121,212,120 samples, 0.27%)</title><rect x="230.1" y="1861" width="3.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="233.10" y="1871.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::GarbageCollect (4,272,727,230 samples, 9.40%)</title><rect x="599.2" y="1925" width="111.0" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="602.21" y="1935.5" >leveldb::DBIm..</text>
</g>
<g >
<title>ktime_get_coarse_real_ts64 (10,101,010 samples, 0.02%)</title><rect x="679.8" y="1621" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="682.75" y="1631.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (242,424,240 samples, 0.53%)</title><rect x="675.3" y="1781" width="6.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="678.29" y="1791.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node::SetNext (10,101,010 samples, 0.02%)</title><rect x="347.9" y="1813" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="350.89" y="1823.5" ></text>
</g>
<g >
<title>leveldb::ExtractUserKey (20,202,020 samples, 0.04%)</title><rect x="108.6" y="1813" width="0.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="111.64" y="1823.5" ></text>
</g>
<g >
<title>leveldb::DecodeFixed32 (10,101,010 samples, 0.02%)</title><rect x="594.5" y="1877" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="597.49" y="1887.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::CompactMemTable (535,353,530 samples, 1.18%)</title><rect x="11.0" y="1877" width="14.0" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="14.05" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,737,373,680 samples, 12.63%)</title><rect x="435.0" y="1829" width="149.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="437.99" y="1839.5" >do_syscall_64</text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (151,515,150 samples, 0.33%)</title><rect x="613.9" y="1813" width="3.9" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="616.90" y="1823.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::push_back (10,101,010 samples, 0.02%)</title><rect x="695.0" y="1877" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="697.97" y="1887.5" ></text>
</g>
<g >
<title>inotify_handle_inode_event (242,424,240 samples, 0.53%)</title><rect x="397.5" y="1653" width="6.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="400.47" y="1663.5" ></text>
</g>
<g >
<title>fsnotify (363,636,360 samples, 0.80%)</title><rect x="864.7" y="1925" width="9.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="867.70" y="1935.5" ></text>
</g>
<g >
<title>_find_next_zero_bit (20,202,020 samples, 0.04%)</title><rect x="796.2" y="1925" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="799.23" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.09%)</title><rect x="698.6" y="1829" width="1.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="701.64" y="1839.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_S_do_relocate (10,101,010 samples, 0.02%)</title><rect x="666.4" y="1749" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="669.37" y="1759.5" ></text>
</g>
<g >
<title>truncate_inode_pages_range (10,101,010 samples, 0.02%)</title><rect x="24.7" y="1637" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="27.69" y="1647.5" ></text>
</g>
<g >
<title>handle_pte_fault (30,303,030 samples, 0.07%)</title><rect x="651.2" y="1701" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="654.16" y="1711.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::begin (10,101,010 samples, 0.02%)</title><rect x="243.2" y="1797" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="246.22" y="1807.5" ></text>
</g>
<g >
<title>__blk_flush_plug (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1781" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1168.86" y="1791.5" ></text>
</g>
<g >
<title>_IO_link_in (10,101,010 samples, 0.02%)</title><rect x="713.1" y="37" width="0.2" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="716.07" y="47.5" ></text>
</g>
<g >
<title>__futex_wait (10,101,010 samples, 0.02%)</title><rect x="697.3" y="1733" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="700.33" y="1743.5" ></text>
</g>
<g >
<title>security_file_free (10,101,010 samples, 0.02%)</title><rect x="985.1" y="1957" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="988.11" y="1967.5" ></text>
</g>
<g >
<title>__x64_sys_close (535,353,530 samples, 1.18%)</title><rect x="974.4" y="1989" width="13.9" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="977.36" y="1999.5" ></text>
</g>
<g >
<title>__x64_sys_writev (3,646,464,610 samples, 8.03%)</title><rect x="860.5" y="1989" width="94.7" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="863.50" y="1999.5" >__x64_sys_w..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,757,575,700 samples, 12.67%)</title><rect x="435.0" y="1845" width="149.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="437.99" y="1855.5" >entry_SYSCALL_64_af..</text>
</g>
<g >
<title>__filemap_add_folio (10,101,010 samples, 0.02%)</title><rect x="1132.3" y="1813" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1135.29" y="1823.5" ></text>
</g>
<g >
<title>leveldb::ExtractUserKey (20,202,020 samples, 0.04%)</title><rect x="623.3" y="1829" width="0.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="626.35" y="1839.5" ></text>
</g>
<g >
<title>operator delete (20,202,020 samples, 0.04%)</title><rect x="1069.6" y="2053" width="0.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="1072.59" y="2063.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1717" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1168.86" y="1727.5" ></text>
</g>
<g >
<title>handle_mm_fault (30,303,030 samples, 0.07%)</title><rect x="651.2" y="1733" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="654.16" y="1743.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,101,010 samples, 0.02%)</title><rect x="678.7" y="1557" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="681.70" y="1567.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::Writer*&amp;&amp; std::forward&lt;leveldb::DBImpl::Writer*&gt; (10,101,010 samples, 0.02%)</title><rect x="589.2" y="1861" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="592.24" y="1871.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Iterator::Seek (10,101,010 samples, 0.02%)</title><rect x="621.0" y="1893" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="623.99" y="1903.5" ></text>
</g>
<g >
<title>security_file_alloc (30,303,030 samples, 0.07%)</title><rect x="752.9" y="1877" width="0.8" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="755.94" y="1887.5" ></text>
</g>
<g >
<title>__GI___unlink (30,303,030 samples, 0.07%)</title><rect x="11.0" y="1845" width="0.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="14.05" y="1855.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (10,101,010 samples, 0.02%)</title><rect x="794.9" y="1909" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="797.92" y="1919.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Node::Node (20,202,020 samples, 0.04%)</title><rect x="347.4" y="1813" width="0.5" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="350.37" y="1823.5" ></text>
</g>
<g >
<title>void std::_Construct&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::pair&lt;leveldb::Slice, leveldb::Slice&gt; const&amp;&gt; (10,101,010 samples, 0.02%)</title><rect x="232.7" y="1797" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="235.73" y="1807.5" ></text>
</g>
<g >
<title>__f_unlock_pos (10,101,010 samples, 0.02%)</title><rect x="388.6" y="1749" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="391.55" y="1759.5" ></text>
</g>
<g >
<title>leveldb::Table::InternalGet (949,494,940 samples, 2.09%)</title><rect x="628.3" y="1829" width="24.7" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="631.33" y="1839.5" >l..</text>
</g>
<g >
<title>read_pages (1,030,303,020 samples, 2.27%)</title><rect x="1139.1" y="1813" width="26.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1142.11" y="1823.5" >r..</text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::basic_string (10,101,010 samples, 0.02%)</title><rect x="181.8" y="1861" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="184.83" y="1871.5" ></text>
</g>
<g >
<title>_find_first_bit (20,202,020 samples, 0.04%)</title><rect x="924.5" y="1797" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="927.51" y="1807.5" ></text>
</g>
<g >
<title>__memmove_evex_unaligned_erms (30,303,030 samples, 0.07%)</title><rect x="826.9" y="2005" width="0.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="829.92" y="2015.5" ></text>
</g>
<g >
<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.02%)</title><rect x="11.6" y="1589" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="14.57" y="1599.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (111,111,110 samples, 0.24%)</title><rect x="777.6" y="1813" width="2.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="780.60" y="1823.5" ></text>
</g>
<g >
<title>std::vector&lt;leveldb::Slice, std::allocator&lt;leveldb::Slice&gt; &gt;::~vector (30,303,030 samples, 0.07%)</title><rect x="355.0" y="1861" width="0.8" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="357.98" y="1871.5" ></text>
</g>
<g >
<title>try_to_wake_up (10,101,010 samples, 0.02%)</title><rect x="178.7" y="1717" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="181.68" y="1727.5" ></text>
</g>
<g >
<title>__srcu_read_unlock (20,202,020 samples, 0.04%)</title><rect x="866.0" y="1909" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="869.01" y="1919.5" ></text>
</g>
<g >
<title>new_slab (20,202,020 samples, 0.04%)</title><rect x="399.0" y="1605" width="0.6" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="402.05" y="1615.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.02%)</title><rect x="1138.8" y="1685" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1141.84" y="1695.5" ></text>
</g>
<g >
<title>security_current_getlsmblob_subj (30,303,030 samples, 0.07%)</title><rect x="759.0" y="1877" width="0.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="761.98" y="1887.5" ></text>
</g>
<g >
<title>std::vector&lt;leveldb::FileMetaData*, std::allocator&lt;leveldb::FileMetaData*&gt; &gt;::~vector (10,101,010 samples, 0.02%)</title><rect x="656.4" y="1861" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="659.40" y="1871.5" ></text>
</g>
<g >
<title>__GI__IO_un_link.part.0 (10,101,010 samples, 0.02%)</title><rect x="726.4" y="2037" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="729.45" y="2047.5" ></text>
</g>
<g >
<title>std::vector&lt;leveldb::FileMetaData*, std::allocator&lt;leveldb::FileMetaData*&gt; &gt;::empty (10,101,010 samples, 0.02%)</title><rect x="655.4" y="1861" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="658.35" y="1871.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (10,101,010 samples, 0.02%)</title><rect x="880.4" y="1861" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="883.44" y="1871.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::TwoLevelIterator::SkipEmptyDataBlocksForward (10,101,010 samples, 0.02%)</title><rect x="50.4" y="1813" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="53.40" y="1823.5" ></text>
</g>
<g >
<title>pthread_once@GLIBC_2.2.5 (10,101,010 samples, 0.02%)</title><rect x="828.5" y="2005" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="831.50" y="2015.5" ></text>
</g>
<g >
<title>filemap_release_folio (10,101,010 samples, 0.02%)</title><rect x="11.6" y="1621" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="14.57" y="1631.5" ></text>
</g>
<g >
<title>irqentry_exit (10,101,010 samples, 0.02%)</title><rect x="656.1" y="1781" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="659.14" y="1791.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (181,818,180 samples, 0.40%)</title><rect x="324.0" y="1733" width="4.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="327.02" y="1743.5" ></text>
</g>
<g >
<title>leveldb::Slice::remove_prefix (10,101,010 samples, 0.02%)</title><rect x="360.5" y="1861" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="363.48" y="1871.5" ></text>
</g>
<g >
<title>x64_sys_call (10,101,010 samples, 0.02%)</title><rect x="620.5" y="1797" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="623.46" y="1807.5" ></text>
</g>
<g >
<title>leveldb::SkipList&lt;char const*, leveldb::MemTable::KeyComparator&gt;::Insert (3,686,868,650 samples, 8.11%)</title><rect x="253.7" y="1829" width="95.8" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="256.71" y="1839.5" >leveldb::Sk..</text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="501" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="511.5" ></text>
</g>
<g >
<title>__alloc_pages (60,606,060 samples, 0.13%)</title><rect x="1137.5" y="1765" width="1.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1140.53" y="1775.5" ></text>
</g>
<g >
<title>std::enable_if&lt;std::__and_&lt;std::__not_&lt;std::__is_tuple_like&lt;char const*&gt; &gt;, std::is_move_constructible&lt;char const*&gt;, std::is_move_assignable&lt;char const*&gt; &gt;::value, void&gt;::type std::swap&lt;char const*&gt; (10,101,010 samples, 0.02%)</title><rect x="625.2" y="1829" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="628.18" y="1839.5" ></text>
</g>
<g >
<title>leveldb::BlockContents::BlockContents (10,101,010 samples, 0.02%)</title><rect x="649.1" y="1797" width="0.2" height="15.0" fill="rgb(249,204,49)" rx="2" ry="2" />
<text x="652.06" y="1807.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Lock (20,202,020 samples, 0.04%)</title><rect x="660.3" y="1845" width="0.6" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="663.34" y="1855.5" ></text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (282,828,280 samples, 0.62%)</title><rect x="39.4" y="1829" width="7.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="42.38" y="1839.5" ></text>
</g>
<g >
<title>ima_file_check (60,606,060 samples, 0.13%)</title><rect x="758.2" y="1893" width="1.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="761.19" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.11%)</title><rect x="713.1" y="1445" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1455.5" ></text>
</g>
<g >
<title>ext4_has_free_clusters (10,101,010 samples, 0.02%)</title><rect x="148.8" y="1557" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="151.78" y="1567.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1045" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1055.5" ></text>
</g>
<g >
<title>__fput_sync (424,242,420 samples, 0.93%)</title><rect x="974.4" y="1973" width="11.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="977.36" y="1983.5" ></text>
</g>
<g >
<title>std::mutex::unlock (20,202,020 samples, 0.04%)</title><rect x="620.2" y="1861" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="623.20" y="1871.5" ></text>
</g>
<g >
<title>void std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::_M_realloc_insert&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; (131,313,130 samples, 0.29%)</title><rect x="209.6" y="1813" width="3.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="212.64" y="1823.5" ></text>
</g>
<g >
<title>make_vfsgid (10,101,010 samples, 0.02%)</title><rect x="1167.4" y="1861" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1170.44" y="1871.5" ></text>
</g>
<g >
<title>up_write (10,101,010 samples, 0.02%)</title><rect x="419.5" y="1701" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="422.51" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1717" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1727.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,323,232,310 samples, 2.91%)</title><rect x="1030.2" y="2021" width="34.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1033.24" y="2031.5" >do..</text>
</g>
<g >
<title>get_mem_cgroup_from_mm (50,505,050 samples, 0.11%)</title><rect x="895.4" y="1797" width="1.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="898.39" y="1807.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::LRUCache::Lookup (60,606,060 samples, 0.13%)</title><rect x="653.3" y="1797" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="656.25" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1749" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1759.5" ></text>
</g>
<g >
<title>leveldb::Status::operator= (10,101,010 samples, 0.02%)</title><rect x="149.6" y="1829" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="152.56" y="1839.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="15.2" y="1749" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="18.25" y="1759.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::BytewiseComparatorImpl::Compare (10,101,010 samples, 0.02%)</title><rect x="670.0" y="1733" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="673.04" y="1743.5" ></text>
</g>
<g >
<title>submit_bio_noacct_nocheck (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1589" width="1.5" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="85.67" y="1599.5" ></text>
</g>
<g >
<title>scsi_queue_rq (10,101,010 samples, 0.02%)</title><rect x="84.8" y="1365" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="87.77" y="1375.5" ></text>
</g>
<g >
<title>block_invalidate_folio (20,202,020 samples, 0.04%)</title><rect x="11.3" y="1637" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="14.31" y="1647.5" ></text>
</g>
<g >
<title>inotify_merge (10,101,010 samples, 0.02%)</title><rect x="678.2" y="1605" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="681.18" y="1615.5" ></text>
</g>
<g >
<title>fault_in_readable (10,101,010 samples, 0.02%)</title><rect x="418.2" y="1669" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="421.20" y="1679.5" ></text>
</g>
<g >
<title>__x64_sys_futex (10,101,010 samples, 0.02%)</title><rect x="697.3" y="1781" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="700.33" y="1791.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="694.2" y="1829" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="697.18" y="1839.5" ></text>
</g>
<g >
<title>copy_iovec_from_user (10,101,010 samples, 0.02%)</title><rect x="954.4" y="1909" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="957.42" y="1919.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Unlock (50,505,050 samples, 0.11%)</title><rect x="178.2" y="1877" width="1.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="181.16" y="1887.5" ></text>
</g>
<g >
<title>malloc (141,414,140 samples, 0.31%)</title><rect x="1064.9" y="2053" width="3.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1067.86" y="2063.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (20,202,020 samples, 0.04%)</title><rect x="411.9" y="1621" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="414.90" y="1631.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wake (5,949,494,890 samples, 13.09%)</title><rect x="430.0" y="1861" width="154.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="433.00" y="1871.5" >__GI___lll_lock_wake</text>
</g>
<g >
<title>leveldb::Block::Iter::GetRestartPoint (10,101,010 samples, 0.02%)</title><rect x="638.0" y="1781" width="0.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="641.04" y="1791.5" ></text>
</g>
<g >
<title>leveldb::IteratorWrapper::key (10,101,010 samples, 0.02%)</title><rect x="73.7" y="1845" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="76.75" y="1855.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (10,101,010 samples, 0.02%)</title><rect x="235.9" y="1861" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="238.87" y="1871.5" ></text>
</g>
<g >
<title>blk_finish_plug (10,101,010 samples, 0.02%)</title><rect x="1165.9" y="1797" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1168.86" y="1807.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::GetRestartPoint (20,202,020 samples, 0.04%)</title><rect x="53.8" y="1717" width="0.5" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="56.81" y="1727.5" ></text>
</g>
<g >
<title>security_file_free (70,707,070 samples, 0.16%)</title><rect x="981.4" y="1941" width="1.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="984.44" y="1951.5" ></text>
</g>
<g >
<title>leveldb::PutVarint64 (10,101,010 samples, 0.02%)</title><rect x="238.2" y="1877" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="241.23" y="1887.5" ></text>
</g>
<g >
<title>fsnotify_destroy_event (10,101,010 samples, 0.02%)</title><rect x="872.6" y="1861" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="875.57" y="1871.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;unsigned long, std::pair&lt;unsigned long const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;, std::less&lt;unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt; &gt;::_S_right (10,101,010 samples, 0.02%)</title><rect x="167.1" y="1813" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="170.14" y="1823.5" ></text>
</g>
<g >
<title>filemap_get_entry (10,101,010 samples, 0.02%)</title><rect x="794.4" y="1749" width="0.3" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="797.39" y="1759.5" ></text>
</g>
<g >
<title>common_interrupt (10,101,010 samples, 0.02%)</title><rect x="1109.7" y="2021" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1112.72" y="2031.5" ></text>
</g>
<g >
<title>__x64_sys_read (30,303,030 samples, 0.07%)</title><rect x="1116.3" y="2005" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1119.28" y="2015.5" ></text>
</g>
<g >
<title>leveldb::(anonymous namespace)::MergingIterator::key (30,303,030 samples, 0.07%)</title><rect x="73.2" y="1861" width="0.8" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="76.22" y="1871.5" ></text>
</g>
<g >
<title>__GI___libc_open (2,919,191,890 samples, 6.43%)</title><rect x="731.4" y="2037" width="75.8" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="734.43" y="2047.5" >__GI___l..</text>
</g>
<g >
<title>rmqueue (10,101,010 samples, 0.02%)</title><rect x="932.1" y="1701" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="935.12" y="1711.5" ></text>
</g>
<g >
<title>build_open_flags (10,101,010 samples, 0.02%)</title><rect x="749.5" y="1957" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="752.53" y="1967.5" ></text>
</g>
<g >
<title>std::mutex::lock (10,101,010 samples, 0.02%)</title><rect x="654.0" y="1749" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="657.04" y="1759.5" ></text>
</g>
<g >
<title>std::_Rb_tree_node&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_valptr (10,101,010 samples, 0.02%)</title><rect x="193.9" y="1797" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="196.90" y="1807.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list (919,191,910 samples, 2.02%)</title><rect x="1139.1" y="1765" width="23.9" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1142.11" y="1775.5" >b..</text>
</g>
<g >
<title>leveldb::DecodeFixed32 (20,202,020 samples, 0.04%)</title><rect x="53.8" y="1701" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="56.81" y="1711.5" ></text>
</g>
<g >
<title>try_to_wake_up (40,404,040 samples, 0.09%)</title><rect x="809.3" y="1909" width="1.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="812.35" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (30,303,030 samples, 0.07%)</title><rect x="713.1" y="1381" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1391.5" ></text>
</g>
<g >
<title>std::vector&lt;leveldb::Slice, std::allocator&lt;leveldb::Slice&gt; &gt;::push_back (111,111,110 samples, 0.24%)</title><rect x="356.5" y="1845" width="2.9" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="359.55" y="1855.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,767,676,750 samples, 3.89%)</title><rect x="375.7" y="1797" width="45.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="378.70" y="1807.5" >do_s..</text>
</g>
<g >
<title>__alloc_pages (10,101,010 samples, 0.02%)</title><rect x="147.2" y="1557" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="150.20" y="1567.5" ></text>
</g>
<g >
<title>schedule_debug.constprop.0 (10,101,010 samples, 0.02%)</title><rect x="730.4" y="1861" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="733.38" y="1871.5" ></text>
</g>
<g >
<title>leveldb::GetVarint64 (20,202,020 samples, 0.04%)</title><rect x="87.9" y="1845" width="0.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="90.91" y="1855.5" ></text>
</g>
<g >
<title>ext4_buffered_write_iter (111,111,110 samples, 0.24%)</title><rect x="146.4" y="1669" width="2.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="149.42" y="1679.5" ></text>
</g>
<g >
<title>__GI___lll_lock_wake (70,707,070 samples, 0.16%)</title><rect x="697.9" y="1845" width="1.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="700.85" y="1855.5" ></text>
</g>
<g >
<title>ext4_reserve_inode_write (10,101,010 samples, 0.02%)</title><rect x="146.4" y="1573" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="149.42" y="1583.5" ></text>
</g>
<g >
<title>blk_finish_plug (919,191,910 samples, 2.02%)</title><rect x="1139.1" y="1797" width="23.9" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1142.11" y="1807.5" >b..</text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::_M_check_len (60,606,060 samples, 0.13%)</title><rect x="210.4" y="1797" width="1.6" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="213.43" y="1807.5" ></text>
</g>
<g >
<title>leveldb::Slice::data (60,606,060 samples, 0.13%)</title><rect x="114.1" y="1829" width="1.6" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="117.15" y="1839.5" ></text>
</g>
<g >
<title>filemap_alloc_folio (10,101,010 samples, 0.02%)</title><rect x="413.7" y="1637" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="416.74" y="1647.5" ></text>
</g>
<g >
<title>leveldb::MemTable::KeyComparator::operator (101,010,100 samples, 0.22%)</title><rect x="670.0" y="1749" width="2.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="673.04" y="1759.5" ></text>
</g>
<g >
<title>leveldb::Status::Status (10,101,010 samples, 0.02%)</title><rect x="421.9" y="1813" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="424.87" y="1823.5" ></text>
</g>
<g >
<title>leveldb::Version::Get (1,333,333,320 samples, 2.93%)</title><rect x="622.0" y="1893" width="34.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="625.04" y="1903.5" >le..</text>
</g>
<g >
<title>memcg_account_kmem (10,101,010 samples, 0.02%)</title><rect x="755.0" y="1861" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="758.04" y="1871.5" ></text>
</g>
<g >
<title>ksys_write (1,242,424,230 samples, 2.73%)</title><rect x="389.1" y="1749" width="32.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="392.08" y="1759.5" >ks..</text>
</g>
<g >
<title>_raw_spin_lock_irqsave (20,202,020 samples, 0.04%)</title><rect x="402.5" y="1605" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="405.46" y="1615.5" ></text>
</g>
<g >
<title>evict (30,303,030 samples, 0.07%)</title><rect x="11.0" y="1733" width="0.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="14.05" y="1743.5" ></text>
</g>
<g >
<title>mptscsih_qcmd (858,585,850 samples, 1.89%)</title><rect x="1139.9" y="1589" width="22.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1142.89" y="1599.5" >m..</text>
</g>
<g >
<title>ext4_da_write_end (60,606,060 samples, 0.13%)</title><rect x="416.4" y="1669" width="1.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="419.36" y="1679.5" ></text>
</g>
<g >
<title>__x64_sys_futex (10,101,010 samples, 0.02%)</title><rect x="620.5" y="1781" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="623.46" y="1791.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (20,202,020 samples, 0.04%)</title><rect x="11.8" y="1445" width="0.6" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="14.84" y="1455.5" ></text>
</g>
<g >
<title>folio_mark_accessed (10,101,010 samples, 0.02%)</title><rect x="1167.7" y="1909" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1170.70" y="1919.5" ></text>
</g>
<g >
<title>std::vector&lt;leveldb::DBImpl::CompactionState::Output, std::allocator&lt;leveldb::DBImpl::CompactionState::Output&gt; &gt;::size (10,101,010 samples, 0.02%)</title><rect x="81.6" y="1845" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="84.62" y="1855.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="1128.1" y="1813" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1131.09" y="1823.5" ></text>
</g>
<g >
<title>crypto_shash_update (10,101,010 samples, 0.02%)</title><rect x="679.0" y="1493" width="0.2" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="681.96" y="1503.5" ></text>
</g>
<g >
<title>leveldb::port::Mutex::Unlock (90,909,090 samples, 0.20%)</title><rect x="697.9" y="1877" width="2.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="700.85" y="1887.5" ></text>
</g>
<g >
<title>__vfprintf_internal (10,101,010 samples, 0.02%)</title><rect x="1006.1" y="2053" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1009.10" y="2063.5" ></text>
</g>
<g >
<title>std::_Deque_iterator&lt;leveldb::DBImpl::Writer*, leveldb::DBImpl::Writer*&amp;, leveldb::DBImpl::Writer**&gt;::operator++ (10,101,010 samples, 0.02%)</title><rect x="693.1" y="1861" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="696.13" y="1871.5" ></text>
</g>
<g >
<title>new_slab (50,505,050 samples, 0.11%)</title><rect x="931.3" y="1765" width="1.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="934.33" y="1775.5" ></text>
</g>
<g >
<title>path_init (10,101,010 samples, 0.02%)</title><rect x="794.7" y="1909" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="797.66" y="1919.5" ></text>
</g>
<g >
<title>leveldb::Block::Iter::value (10,101,010 samples, 0.02%)</title><rect x="77.7" y="1765" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="80.68" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="485" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="495.5" ></text>
</g>
<g >
<title>operator new (10,101,010 samples, 0.02%)</title><rect x="212.8" y="1781" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="215.79" y="1791.5" ></text>
</g>
<g >
<title>do_read_fault (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1605" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="56.29" y="1615.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::size (10,101,010 samples, 0.02%)</title><rect x="598.2" y="1909" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="601.16" y="1919.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1397" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="56.29" y="1407.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;unsigned long, unsigned long&gt;, std::allocator&lt;std::pair&lt;unsigned long, unsigned long&gt; &gt; &gt;::size (10,101,010 samples, 0.02%)</title><rect x="212.5" y="1797" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="215.53" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="810.7" y="2021" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="813.66" y="2031.5" ></text>
</g>
<g >
<title>__import_iovec (10,101,010 samples, 0.02%)</title><rect x="954.4" y="1925" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="957.42" y="1935.5" ></text>
</g>
<g >
<title>std::ostream::write (10,101,010 samples, 0.02%)</title><rect x="229.3" y="1861" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="232.32" y="1871.5" ></text>
</g>
<g >
<title>__gnu_cxx::__aligned_membuf&lt;std::pair&lt;unsigned long const, unsigned long&gt; &gt;::_M_ptr (10,101,010 samples, 0.02%)</title><rect x="165.6" y="1765" width="0.2" height="15.0" fill="rgb(230,117,27)" rx="2" ry="2" />
<text x="168.57" y="1775.5" ></text>
</g>
<g >
<title>aa_file_perm (10,101,010 samples, 0.02%)</title><rect x="954.9" y="1893" width="0.3" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="957.94" y="1903.5" ></text>
</g>
<g >
<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.02%)</title><rect x="22.6" y="1557" width="0.3" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="25.59" y="1567.5" ></text>
</g>
<g >
<title>fput (40,404,040 samples, 0.09%)</title><rect x="1059.4" y="1973" width="1.0" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="1062.36" y="1983.5" ></text>
</g>
<g >
<title>std::basic_filebuf&lt;char, std::char_traits&lt;char&gt; &gt;::underflow (20,202,020 samples, 0.04%)</title><rect x="1182.4" y="2053" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1185.39" y="2063.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_S_do_relocate (20,202,020 samples, 0.04%)</title><rect x="242.7" y="1781" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="245.69" y="1791.5" ></text>
</g>
<g >
<title>do_futex (20,202,020 samples, 0.04%)</title><rect x="619.7" y="1765" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="622.68" y="1775.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (1,303,030,290 samples, 2.87%)</title><rect x="1071.2" y="2053" width="33.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1074.16" y="2063.5" >pt..</text>
</g>
<g >
<title>__fsnotify_parent (40,404,040 samples, 0.09%)</title><rect x="1168.5" y="1925" width="1.0" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="1171.49" y="1935.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (30,303,030 samples, 0.07%)</title><rect x="796.2" y="1941" width="0.8" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="799.23" y="1951.5" ></text>
</g>
<g >
<title>leveldb::Slice::Slice (10,101,010 samples, 0.02%)</title><rect x="673.7" y="1813" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="676.72" y="1823.5" ></text>
</g>
<g >
<title>clear_page_erms (10,101,010 samples, 0.02%)</title><rect x="399.0" y="1541" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="402.05" y="1551.5" ></text>
</g>
<g >
<title>handle_softirqs (10,101,010 samples, 0.02%)</title><rect x="135.7" y="1749" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="138.66" y="1759.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::_M_check_len (30,303,030 samples, 0.07%)</title><rect x="241.9" y="1797" width="0.8" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="244.91" y="1807.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,101,010 samples, 0.02%)</title><rect x="1109.7" y="1989" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1112.72" y="1999.5" ></text>
</g>
<g >
<title>_copy_to_iter (10,101,010 samples, 0.02%)</title><rect x="1120.0" y="1893" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1122.96" y="1903.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (10,101,010 samples, 0.02%)</title><rect x="86.3" y="1813" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="89.34" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (10,101,010 samples, 0.02%)</title><rect x="713.1" y="1093" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1103.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::_M_replace (10,101,010 samples, 0.02%)</title><rect x="652.7" y="1813" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="655.73" y="1823.5" ></text>
</g>
<g >
<title>dquot_file_open (20,202,020 samples, 0.04%)</title><rect x="765.0" y="1845" width="0.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="768.01" y="1855.5" ></text>
</g>
<g >
<title>alloc_fd (10,101,010 samples, 0.02%)</title><rect x="796.8" y="1925" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="799.75" y="1935.5" ></text>
</g>
<g >
<title>__close_nocancel (1,262,626,250 samples, 2.78%)</title><rect x="955.5" y="2053" width="32.8" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="958.47" y="2063.5" >__..</text>
</g>
<g >
<title>vfs_write (1,151,515,140 samples, 2.53%)</title><rect x="391.4" y="1733" width="29.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="394.44" y="1743.5" >vf..</text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="123.6" y="1749" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="126.59" y="1759.5" ></text>
</g>
<g >
<title>evict (10,101,010 samples, 0.02%)</title><rect x="656.9" y="1749" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="659.93" y="1759.5" ></text>
</g>
<g >
<title>asm_common_interrupt (10,101,010 samples, 0.02%)</title><rect x="694.2" y="1845" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="697.18" y="1855.5" ></text>
</g>
<g >
<title>__d_lookup (10,101,010 samples, 0.02%)</title><rect x="794.1" y="1861" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="797.13" y="1871.5" ></text>
</g>
<g >
<title>futex_wait_queue (10,101,010 samples, 0.02%)</title><rect x="808.3" y="1909" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="811.30" y="1919.5" ></text>
</g>
<g >
<title>futex_wait (10,101,010 samples, 0.02%)</title><rect x="682.6" y="1733" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="685.64" y="1743.5" ></text>
</g>
<g >
<title>std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt;::back (10,101,010 samples, 0.02%)</title><rect x="240.6" y="1813" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="243.60" y="1823.5" ></text>
</g>
<g >
<title>leveldb::DBImpl::Get (2,262,626,240 samples, 4.98%)</title><rect x="599.7" y="1909" width="58.8" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="602.74" y="1919.5" >leveld..</text>
</g>
<g >
<title>std::istream::sentry::sentry (30,303,030 samples, 0.07%)</title><rect x="1187.1" y="2053" width="0.8" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1190.11" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (60,606,060 samples, 0.13%)</title><rect x="713.1" y="1829" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="716.07" y="1839.5" ></text>
</g>
<g >
<title>ext4_writepages (30,303,030 samples, 0.07%)</title><rect x="11.8" y="1653" width="0.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="14.84" y="1663.5" ></text>
</g>
<g >
<title>leveldb::PutVarint64 (40,404,040 samples, 0.09%)</title><rect x="214.4" y="1861" width="1.0" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="217.36" y="1871.5" ></text>
</g>
<g >
<title>leveldb::Random::Uniform (10,101,010 samples, 0.02%)</title><rect x="592.1" y="1909" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="595.13" y="1919.5" ></text>
</g>
<g >
<title>inode_needs_update_time (10,101,010 samples, 0.02%)</title><rect x="878.3" y="1877" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="881.34" y="1887.5" ></text>
</g>
<g >
<title>leveldb::InternalKeyComparator::Compare (212,121,210 samples, 0.47%)</title><rect x="631.2" y="1781" width="5.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="634.22" y="1791.5" ></text>
</g>
<g >
<title>leveldb::WriteBatch::WriteBatch (10,101,010 samples, 0.02%)</title><rect x="181.6" y="1861" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="184.57" y="1871.5" ></text>
</g>
<g >
<title>leveldb::Status::operator= (20,202,020 samples, 0.04%)</title><rect x="592.4" y="1909" width="0.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="595.39" y="1919.5" ></text>
</g>
<g >
<title>aa_str_perms (121,212,120 samples, 0.27%)</title><rect x="774.5" y="1797" width="3.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="777.46" y="1807.5" ></text>
</g>
<g >
<title>leveldb::TableBuilder::status (20,202,020 samples, 0.04%)</title><rect x="157.7" y="1829" width="0.5" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="160.70" y="1839.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="807.2" y="2021" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="810.25" y="2031.5" ></text>
</g>
<g >
<title>scsi_queue_rq (60,606,060 samples, 0.13%)</title><rect x="82.7" y="1413" width="1.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="85.67" y="1423.5" ></text>
</g>
<g >
<title>__gnu_cxx::__normal_iterator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;*, std::vector&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt;, std::allocator&lt;std::pair&lt;leveldb::Slice, leveldb::Slice&gt; &gt; &gt; &gt;::__normal_iterator (10,101,010 samples, 0.02%)</title><rect x="207.5" y="1829" width="0.3" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="210.54" y="1839.5" ></text>
</g>
<g >
<title>leveldb::log::Writer::EmitPhysicalRecord (313,131,310 samples, 0.69%)</title><rect x="674.5" y="1845" width="8.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="677.50" y="1855.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,343,434,320 samples, 5.16%)</title><rect x="1110.0" y="2037" width="60.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1112.99" y="2047.5" >entry_..</text>
</g>
<g >
<title>blk_mq_dispatch_plug_list (909,090,900 samples, 2.00%)</title><rect x="1139.4" y="1733" width="23.6" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1142.37" y="1743.5" >b..</text>
</g>
<g >
<title>ext4_do_writepages (121,212,120 samples, 0.27%)</title><rect x="81.9" y="1653" width="3.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="84.88" y="1663.5" ></text>
</g>
<g >
<title>ext4_inode_table (10,101,010 samples, 0.02%)</title><rect x="679.2" y="1541" width="0.3" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="682.23" y="1551.5" ></text>
</g>
</g>
</svg>