Last active
April 13, 2020 07:26
-
-
Save stammw/767a022632256c30a75abf22f6866fe8 to your computer and use it in GitHub Desktop.
flamegraph_h3_500G
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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="1286" onload="init(evt)" viewBox="0 0 1200 1286" 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); } | |
| #title { text-anchor:middle; font-size:17px; } | |
| #search { opacity:0.1; cursor:pointer; } | |
| #search:hover, #search.show { opacity:1; } | |
| #subtitle { text-anchor:middle; font-color:rgb(160,160,160); } | |
| #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[var nametype = 'Function:'; | |
| var fontsize = 12; | |
| var fontwidth = 0.59; | |
| var xpad = 10; | |
| var inverted = false; | |
| var searchcolor = 'rgb(230,0,230)'; | |
| var fluiddrawing = true; | |
| var truncate_text_right = false;]]><![CDATA["use strict"; | |
| var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames; | |
| function init(evt) { | |
| details = document.getElementById("details").firstChild; | |
| searchbtn = document.getElementById("search"); | |
| unzoombtn = document.getElementById("unzoom"); | |
| matchedtxt = document.getElementById("matched"); | |
| svg = document.getElementsByTagName("svg")[0]; | |
| frames = document.getElementById("frames"); | |
| searching = 0; | |
| // Use GET parameters to restore a flamegraph's state. | |
| var restore_state = function() { | |
| 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); | |
| }; | |
| if (fluiddrawing) { | |
| // Make width dynamic so the SVG fits its parent's width. | |
| svg.removeAttribute("width"); | |
| // Edge requires us to have a viewBox that gets updated with size changes. | |
| var isEdge = /Edge\/\d./i.test(navigator.userAgent); | |
| if (!isEdge) { | |
| svg.removeAttribute("viewBox"); | |
| } | |
| var update_for_width_change = function() { | |
| if (isEdge) { | |
| svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value; | |
| } | |
| // Keep consistent padding on left and right of frames container. | |
| frames.attributes.width.value = svg.width.baseVal.value - xpad * 2; | |
| // Text truncation needs to be adjusted for the current width. | |
| var el = frames.children; | |
| for(var i = 0; i < el.length; i++) { | |
| update_text(el[i]); | |
| } | |
| // Keep search elements at a fixed distance from right edge. | |
| var svgWidth = svg.width.baseVal.value; | |
| searchbtn.attributes.x.value = svgWidth - xpad - 100; | |
| matchedtxt.attributes.x.value = svgWidth - xpad - 100; | |
| }; | |
| window.addEventListener('resize', function() { | |
| update_for_width_change(); | |
| }); | |
| // This needs to be done asynchronously for Safari to work. | |
| setTimeout(function() { | |
| unzoom(); | |
| update_for_width_change(); | |
| restore_state(); | |
| }, 0); | |
| } else { | |
| restore_state(); | |
| } | |
| } | |
| // 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(); | |
| zoom(target); | |
| // 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") { | |
| 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)); | |
| } | |
| else if (e.target.id == "search") search_prompt(); | |
| }, false) | |
| // mouse-over for info | |
| // show | |
| window.addEventListener("mouseover", function(e) { | |
| var target = find_group(e.target); | |
| if (target) details.nodeValue = nametype + " " + g_to_text(target); | |
| }, false) | |
| // clear | |
| window.addEventListener("mouseout", function(e) { | |
| var target = find_group(e.target); | |
| if (target) details.nodeValue = ' '; | |
| }, false) | |
| // ctrl-F for search | |
| window.addEventListener("keydown",function (e) { | |
| if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { | |
| e.preventDefault(); | |
| search_prompt(); | |
| } | |
| }, false) | |
| // 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]; | |
| return; | |
| } | |
| function find_group(node) { | |
| var parent = node.parentElement; | |
| if (!parent) return; | |
| if (parent.id == "frames") return node; | |
| return find_group(parent); | |
| } | |
| function orig_save(e, attr, val) { | |
| if (e.attributes["_orig_" + attr] != undefined) return; | |
| if (e.attributes[attr] == undefined) return; | |
| if (val == undefined) val = e.attributes[attr].value; | |
| e.setAttribute("_orig_" + attr, val); | |
| } | |
| function orig_load(e, attr) { | |
| if (e.attributes["_orig_"+attr] == undefined) return; | |
| e.attributes[attr].value = e.attributes["_orig_" + attr].value; | |
| e.removeAttribute("_orig_" + attr); | |
| } | |
| function g_to_text(e) { | |
| var text = find_child(e, "title").firstChild.nodeValue; | |
| return (text) | |
| } | |
| function g_to_func(e) { | |
| var func = g_to_text(e); | |
| // if there's any manipulation we want to do to the function | |
| // name before it's searched, do it here before returning. | |
| return (func); | |
| } | |
| function update_text(e) { | |
| var r = find_child(e, "rect"); | |
| var t = find_child(e, "text"); | |
| var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3; | |
| var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); | |
| t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value))); | |
| // Smaller than this size won't fit anything | |
| if (w < 2 * fontsize * fontwidth) { | |
| t.textContent = ""; | |
| return; | |
| } | |
| t.textContent = txt; | |
| // Fit in full text width | |
| if (/^ *\$/.test(txt) || t.getComputedTextLength() < w) | |
| return; | |
| if (truncate_text_right) { | |
| // Truncate the right side of the text. | |
| for (var x = txt.length - 2; x > 0; x--) { | |
| if (t.getSubStringLength(0, x + 2) <= w) { | |
| t.textContent = txt.substring(0, x) + ".."; | |
| return; | |
| } | |
| } | |
| } else { | |
| // Truncate the left side of the text. | |
| for (var x = 2; x < txt.length; x++) { | |
| if (t.getSubStringLength(x - 2, txt.length) <= w) { | |
| t.textContent = ".." + txt.substring(x, txt.length); | |
| 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 = format_percent((parseFloat(e.attributes.x.value) - x) * ratio); | |
| if (e.tagName == "text") { | |
| e.attributes.x.value = format_percent(parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value) + (100 * 3 / frames.attributes.width.value)); | |
| } | |
| } | |
| if (e.attributes.width != undefined) { | |
| orig_save(e, "width"); | |
| e.attributes.width.value = format_percent(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, ratio); | |
| } | |
| } | |
| function zoom_parent(e) { | |
| if (e.attributes) { | |
| if (e.attributes.x != undefined) { | |
| orig_save(e, "x"); | |
| e.attributes.x.value = "0.0%"; | |
| } | |
| if (e.attributes.width != undefined) { | |
| orig_save(e, "width"); | |
| e.attributes.width.value = "100.0%"; | |
| } | |
| } | |
| 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 = xmin + width; | |
| var ymin = parseFloat(attr.y.value); | |
| var ratio = 100 / width; | |
| // XXX: Workaround for JavaScript float issues (fix me) | |
| var fudge = 0.001; | |
| unzoombtn.classList.remove("hide"); | |
| var el = 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); | |
| // Is it an ancestor | |
| if (!inverted) { | |
| var upstack = parseFloat(a.y.value) > ymin; | |
| } else { | |
| var upstack = parseFloat(a.y.value) < ymin; | |
| } | |
| if (upstack) { | |
| // Direct ancestor | |
| if (ex <= xmin && (ex+ew+fudge) >= xmax) { | |
| e.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); | |
| } | |
| } | |
| } | |
| } | |
| function unzoom() { | |
| unzoombtn.classList.add("hide"); | |
| var el = frames.children; | |
| for(var i = 0; i < el.length; i++) { | |
| el[i].classList.remove("parent"); | |
| el[i].classList.remove("hide"); | |
| zoom_reset(el[i]); | |
| update_text(el[i]); | |
| } | |
| } | |
| // search | |
| 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_)", ""); | |
| if (term != null) { | |
| search(term) | |
| } | |
| } else { | |
| reset_search(); | |
| searching = 0; | |
| searchbtn.classList.remove("show"); | |
| searchbtn.firstChild.nodeValue = "Search" | |
| matchedtxt.classList.add("hide"); | |
| matchedtxt.firstChild.nodeValue = "" | |
| } | |
| } | |
| function search(term) { | |
| var re = new RegExp(term); | |
| var el = 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 = searchcolor; | |
| // 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 = term; | |
| 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 + "%"; | |
| } | |
| function format_percent(n) { | |
| return n.toFixed(4) + "%"; | |
| } | |
| ]]></script><rect x="0" y="0" width="100%" height="1286" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="1269.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1090" y="24.00">Search</text><text id="matched" x="1090" y="1269.00"> </text><svg id="frames" x="10" width="1180"><g><title>perf (4 samples, 10.00%)</title><rect x="0.0000%" y="1221" width="10.0000%" height="15" fill="rgb(227,0,7)"/><text x="0.2500%" y="1231.50">perf</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="0.0000%" y="1205" width="10.0000%" height="15" fill="rgb(217,0,24)"/><text x="0.2500%" y="1215.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="0.0000%" y="1189" width="10.0000%" height="15" fill="rgb(221,193,54)"/><text x="0.2500%" y="1199.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="0.0000%" y="1173" width="10.0000%" height="15" fill="rgb(248,212,6)"/><text x="0.2500%" y="1183.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="0.0000%" y="1157" width="10.0000%" height="15" fill="rgb(208,68,35)"/><text x="0.2500%" y="1167.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="0.0000%" y="1141" width="10.0000%" height="15" fill="rgb(232,128,0)"/><text x="0.2500%" y="1151.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="0.0000%" y="1125" width="10.0000%" height="15" fill="rgb(207,160,47)"/><text x="0.2500%" y="1135.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="0.0000%" y="1109" width="10.0000%" height="15" fill="rgb(228,23,34)"/><text x="0.2500%" y="1119.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="0.0000%" y="1093" width="10.0000%" height="15" fill="rgb(218,30,26)"/><text x="0.2500%" y="1103.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="0.0000%" y="1077" width="10.0000%" height="15" fill="rgb(220,122,19)"/><text x="0.2500%" y="1087.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="0.0000%" y="1061" width="10.0000%" height="15" fill="rgb(250,228,42)"/><text x="0.2500%" y="1071.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="0.0000%" y="1045" width="10.0000%" height="15" fill="rgb(240,193,28)"/><text x="0.2500%" y="1055.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="0.0000%" y="1029" width="10.0000%" height="15" fill="rgb(216,20,37)"/><text x="0.2500%" y="1039.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="0.0000%" y="1013" width="10.0000%" height="15" fill="rgb(206,188,39)"/><text x="0.2500%" y="1023.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="10.0000%" y="1205" width="2.5000%" height="15" fill="rgb(217,207,13)"/><text x="10.2500%" y="1215.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="10.0000%" y="1189" width="2.5000%" height="15" fill="rgb(231,73,38)"/><text x="10.2500%" y="1199.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="10.0000%" y="1173" width="2.5000%" height="15" fill="rgb(225,20,46)"/><text x="10.2500%" y="1183.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="10.0000%" y="1157" width="2.5000%" height="15" fill="rgb(210,31,41)"/><text x="10.2500%" y="1167.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="10.0000%" y="1141" width="2.5000%" height="15" fill="rgb(221,200,47)"/><text x="10.2500%" y="1151.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="10.0000%" y="1125" width="2.5000%" height="15" fill="rgb(226,26,5)"/><text x="10.2500%" y="1135.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="10.0000%" y="1109" width="2.5000%" height="15" fill="rgb(249,33,26)"/><text x="10.2500%" y="1119.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="10.0000%" y="1093" width="2.5000%" height="15" fill="rgb(235,183,28)"/><text x="10.2500%" y="1103.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="10.0000%" y="1077" width="2.5000%" height="15" fill="rgb(221,5,38)"/><text x="10.2500%" y="1087.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="10.0000%" y="1061" width="2.5000%" height="15" fill="rgb(247,18,42)"/><text x="10.2500%" y="1071.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="10.0000%" y="1045" width="2.5000%" height="15" fill="rgb(241,131,45)"/><text x="10.2500%" y="1055.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="10.0000%" y="1029" width="2.5000%" height="15" fill="rgb(249,31,29)"/><text x="10.2500%" y="1039.50">[[..</text></g><g><title>__GI___pthread_mutex_lock (1 samples, 2.50%)</title><rect x="12.5000%" y="1189" width="2.5000%" height="15" fill="rgb(225,111,53)"/><text x="12.7500%" y="1199.50">__..</text></g><g><title>std::rt::lang_start_internal (4 samples, 10.00%)</title><rect x="15.0000%" y="1189" width="10.0000%" height="15" fill="rgb(238,160,17)"/><text x="15.2500%" y="1199.50">std::rt::lang_..</text></g><g><title>std::panic::catch_unwind (4 samples, 10.00%)</title><rect x="15.0000%" y="1173" width="10.0000%" height="15" fill="rgb(214,148,48)"/><text x="15.2500%" y="1183.50">std::panic::ca..</text></g><g><title>std::panicking::try (4 samples, 10.00%)</title><rect x="15.0000%" y="1157" width="10.0000%" height="15" fill="rgb(232,36,49)"/><text x="15.2500%" y="1167.50">std::panicking..</text></g><g><title>__rust_maybe_catch_panic (4 samples, 10.00%)</title><rect x="15.0000%" y="1141" width="10.0000%" height="15" fill="rgb(209,103,24)"/><text x="15.2500%" y="1151.50">__rust_maybe_c..</text></g><g><title>std::panicking::try::do_call (4 samples, 10.00%)</title><rect x="15.0000%" y="1125" width="10.0000%" height="15" fill="rgb(229,88,8)"/><text x="15.2500%" y="1135.50">std::panicking..</text></g><g><title>std::rt::lang_start_internal::_{{closure}} (4 samples, 10.00%)</title><rect x="15.0000%" y="1109" width="10.0000%" height="15" fill="rgb(213,181,19)"/><text x="15.2500%" y="1119.50">std::rt::lang_..</text></g><g><title>std::rt::lang_start::_{{closure}} (4 samples, 10.00%)</title><rect x="15.0000%" y="1093" width="10.0000%" height="15" fill="rgb(254,191,54)"/><text x="15.2500%" y="1103.50">std::rt::lang_..</text></g><g><title>server::main (4 samples, 10.00%)</title><rect x="15.0000%" y="1077" width="10.0000%" height="15" fill="rgb(241,83,37)"/><text x="15.2500%" y="1087.50">server::main</text></g><g><title>tokio::runtime::Runtime::block_on (4 samples, 10.00%)</title><rect x="15.0000%" y="1061" width="10.0000%" height="15" fill="rgb(233,36,39)"/><text x="15.2500%" y="1071.50">tokio::runtime..</text></g><g><title>tokio::runtime::handle::Handle::enter (4 samples, 10.00%)</title><rect x="15.0000%" y="1045" width="10.0000%" height="15" fill="rgb(226,3,54)"/><text x="15.2500%" y="1055.50">tokio::runtime..</text></g><g><title>tokio::runtime::context::enter (4 samples, 10.00%)</title><rect x="15.0000%" y="1029" width="10.0000%" height="15" fill="rgb(245,192,40)"/><text x="15.2500%" y="1039.50">tokio::runtime..</text></g><g><title>tokio::runtime::Runtime::block_on::_{{closure}} (4 samples, 10.00%)</title><rect x="15.0000%" y="1013" width="10.0000%" height="15" fill="rgb(238,167,29)"/><text x="15.2500%" y="1023.50">tokio::runtime..</text></g><g><title>tokio::runtime::thread_pool::ThreadPool::block_on (4 samples, 10.00%)</title><rect x="15.0000%" y="997" width="10.0000%" height="15" fill="rgb(232,182,51)"/><text x="15.2500%" y="1007.50">tokio::runtime..</text></g><g><title>tokio::runtime::enter::Enter::block_on (4 samples, 10.00%)</title><rect x="15.0000%" y="981" width="10.0000%" height="15" fill="rgb(231,60,39)"/><text x="15.2500%" y="991.50">tokio::runtime..</text></g><g><title><std::future::GenFuture<T> as core::future::future::Future>::poll (4 samples, 10.00%)</title><rect x="15.0000%" y="965" width="10.0000%" height="15" fill="rgb(208,69,12)"/><text x="15.2500%" y="975.50"><std::future::..</text></g><g><title>server::main::_{{closure}} (4 samples, 10.00%)</title><rect x="15.0000%" y="949" width="10.0000%" height="15" fill="rgb(235,93,37)"/><text x="15.2500%" y="959.50">server::main::..</text></g><g><title>std::future::poll_with_tls_context (4 samples, 10.00%)</title><rect x="15.0000%" y="933" width="10.0000%" height="15" fill="rgb(213,116,39)"/><text x="15.2500%" y="943.50">std::future::p..</text></g><g><title><tokio::future::poll_fn::PollFn<F> as core::future::future::Future>::poll (4 samples, 10.00%)</title><rect x="15.0000%" y="917" width="10.0000%" height="15" fill="rgb(222,207,29)"/><text x="15.2500%" y="927.50"><tokio::future..</text></g><g><title>server::main::_{{closure}}::_{{closure}} (4 samples, 10.00%)</title><rect x="15.0000%" y="901" width="10.0000%" height="15" fill="rgb(206,96,30)"/><text x="15.2500%" y="911.50">server::main::..</text></g><g><title><tokio::future::maybe_done::MaybeDone<Fut> as core::future::future::Future>::poll (4 samples, 10.00%)</title><rect x="15.0000%" y="885" width="10.0000%" height="15" fill="rgb(218,138,4)"/><text x="15.2500%" y="895.50"><tokio::future..</text></g><g><title><std::future::GenFuture<T> as core::future::future::Future>::poll (4 samples, 10.00%)</title><rect x="15.0000%" y="869" width="10.0000%" height="15" fill="rgb(250,191,14)"/><text x="15.2500%" y="879.50"><std::future::..</text></g><g><title>server::server::_{{closure}} (4 samples, 10.00%)</title><rect x="15.0000%" y="853" width="10.0000%" height="15" fill="rgb(239,60,40)"/><text x="15.2500%" y="863.50">server::server..</text></g><g><title>std::future::poll_with_tls_context (4 samples, 10.00%)</title><rect x="15.0000%" y="837" width="10.0000%" height="15" fill="rgb(206,27,48)"/><text x="15.2500%" y="847.50">std::future::p..</text></g><g><title><futures_util::stream::stream::next::Next<St> as core::future::future::Future>::poll (4 samples, 10.00%)</title><rect x="15.0000%" y="821" width="10.0000%" height="15" fill="rgb(225,35,8)"/><text x="15.2500%" y="831.50"><futures_util:..</text></g><g><title>futures_util::stream::stream::StreamExt::poll_next_unpin (4 samples, 10.00%)</title><rect x="15.0000%" y="805" width="10.0000%" height="15" fill="rgb(250,213,24)"/><text x="15.2500%" y="815.50">futures_util::..</text></g><g><title><quinn::endpoint::Incoming<S> as futures_core::stream::Stream>::poll_next (4 samples, 10.00%)</title><rect x="15.0000%" y="789" width="10.0000%" height="15" fill="rgb(247,123,22)"/><text x="15.2500%" y="799.50"><quinn::endpoi..</text></g><g><title>std::sync::mutex::Mutex<T>::lock (4 samples, 10.00%)</title><rect x="15.0000%" y="773" width="10.0000%" height="15" fill="rgb(231,138,38)"/><text x="15.2500%" y="783.50">std::sync::mut..</text></g><g><title>std::sys_common::mutex::Mutex::raw_lock (4 samples, 10.00%)</title><rect x="15.0000%" y="757" width="10.0000%" height="15" fill="rgb(231,145,46)"/><text x="15.2500%" y="767.50">std::sys_commo..</text></g><g><title>std::sys::unix::mutex::Mutex::lock (4 samples, 10.00%)</title><rect x="15.0000%" y="741" width="10.0000%" height="15" fill="rgb(251,118,11)"/><text x="15.2500%" y="751.50">std::sys::unix..</text></g><g><title>__GI___pthread_mutex_lock (4 samples, 10.00%)</title><rect x="15.0000%" y="725" width="10.0000%" height="15" fill="rgb(217,147,25)"/><text x="15.2500%" y="735.50">__GI___pthread..</text></g><g><title>__lll_lock_wait (4 samples, 10.00%)</title><rect x="15.0000%" y="709" width="10.0000%" height="15" fill="rgb(247,81,37)"/><text x="15.2500%" y="719.50">__lll_lock_wait</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="693" width="10.0000%" height="15" fill="rgb(209,12,38)"/><text x="15.2500%" y="703.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="677" width="10.0000%" height="15" fill="rgb(227,1,9)"/><text x="15.2500%" y="687.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="661" width="10.0000%" height="15" fill="rgb(248,47,43)"/><text x="15.2500%" y="671.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="645" width="10.0000%" height="15" fill="rgb(221,10,30)"/><text x="15.2500%" y="655.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="629" width="10.0000%" height="15" fill="rgb(210,229,1)"/><text x="15.2500%" y="639.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="613" width="10.0000%" height="15" fill="rgb(222,148,37)"/><text x="15.2500%" y="623.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="597" width="10.0000%" height="15" fill="rgb(234,67,33)"/><text x="15.2500%" y="607.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="581" width="10.0000%" height="15" fill="rgb(247,98,35)"/><text x="15.2500%" y="591.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="565" width="10.0000%" height="15" fill="rgb(247,138,52)"/><text x="15.2500%" y="575.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="549" width="10.0000%" height="15" fill="rgb(213,79,30)"/><text x="15.2500%" y="559.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="533" width="10.0000%" height="15" fill="rgb(246,177,23)"/><text x="15.2500%" y="543.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="517" width="10.0000%" height="15" fill="rgb(230,62,27)"/><text x="15.2500%" y="527.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="501" width="10.0000%" height="15" fill="rgb(216,154,8)"/><text x="15.2500%" y="511.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="15.0000%" y="485" width="10.0000%" height="15" fill="rgb(244,35,45)"/><text x="15.2500%" y="495.50">[[kernel.kalls..</text></g><g><title>[unknown] (6 samples, 15.00%)</title><rect x="12.5000%" y="1205" width="15.0000%" height="15" fill="rgb(251,115,12)"/><text x="12.7500%" y="1215.50">[unknown]</text></g><g><title>tokio::runtime::context::enter (1 samples, 2.50%)</title><rect x="25.0000%" y="1189" width="2.5000%" height="15" fill="rgb(240,54,50)"/><text x="25.2500%" y="1199.50">to..</text></g><g><title>tokio::runtime::Runtime::block_on::_{{closure}} (1 samples, 2.50%)</title><rect x="25.0000%" y="1173" width="2.5000%" height="15" fill="rgb(233,84,52)"/><text x="25.2500%" y="1183.50">to..</text></g><g><title>tokio::runtime::thread_pool::ThreadPool::block_on (1 samples, 2.50%)</title><rect x="25.0000%" y="1157" width="2.5000%" height="15" fill="rgb(207,117,47)"/><text x="25.2500%" y="1167.50">to..</text></g><g><title>tokio::runtime::enter::Enter::block_on (1 samples, 2.50%)</title><rect x="25.0000%" y="1141" width="2.5000%" height="15" fill="rgb(249,43,39)"/><text x="25.2500%" y="1151.50">to..</text></g><g><title><std::future::GenFuture<T> as core::future::future::Future>::poll (1 samples, 2.50%)</title><rect x="25.0000%" y="1125" width="2.5000%" height="15" fill="rgb(209,38,44)"/><text x="25.2500%" y="1135.50"><s..</text></g><g><title>server::main::_{{closure}} (1 samples, 2.50%)</title><rect x="25.0000%" y="1109" width="2.5000%" height="15" fill="rgb(236,212,23)"/><text x="25.2500%" y="1119.50">se..</text></g><g><title>std::future::poll_with_tls_context (1 samples, 2.50%)</title><rect x="25.0000%" y="1093" width="2.5000%" height="15" fill="rgb(242,79,21)"/><text x="25.2500%" y="1103.50">st..</text></g><g><title><tokio::future::poll_fn::PollFn<F> as core::future::future::Future>::poll (1 samples, 2.50%)</title><rect x="25.0000%" y="1077" width="2.5000%" height="15" fill="rgb(211,96,35)"/><text x="25.2500%" y="1087.50"><t..</text></g><g><title>server::main::_{{closure}}::_{{closure}} (1 samples, 2.50%)</title><rect x="25.0000%" y="1061" width="2.5000%" height="15" fill="rgb(253,215,40)"/><text x="25.2500%" y="1071.50">se..</text></g><g><title><tokio::future::maybe_done::MaybeDone<Fut> as core::future::future::Future>::poll (1 samples, 2.50%)</title><rect x="25.0000%" y="1045" width="2.5000%" height="15" fill="rgb(211,81,21)"/><text x="25.2500%" y="1055.50"><t..</text></g><g><title><std::future::GenFuture<T> as core::future::future::Future>::poll (1 samples, 2.50%)</title><rect x="25.0000%" y="1029" width="2.5000%" height="15" fill="rgb(208,190,38)"/><text x="25.2500%" y="1039.50"><s..</text></g><g><title>server::server::_{{closure}} (1 samples, 2.50%)</title><rect x="25.0000%" y="1013" width="2.5000%" height="15" fill="rgb(235,213,38)"/><text x="25.2500%" y="1023.50">se..</text></g><g><title>quinn::endpoint::Endpoint<S>::builder (1 samples, 2.50%)</title><rect x="25.0000%" y="997" width="2.5000%" height="15" fill="rgb(237,122,38)"/><text x="25.2500%" y="1007.50">qu..</text></g><g><title><quinn::builders::EndpointBuilder<S> as core::default::Default>::default (1 samples, 2.50%)</title><rect x="25.0000%" y="981" width="2.5000%" height="15" fill="rgb(244,218,35)"/><text x="25.2500%" y="991.50"><q..</text></g><g><title><quinn_proto::shared::ClientConfig<S> as core::default::Default>::default (1 samples, 2.50%)</title><rect x="25.0000%" y="965" width="2.5000%" height="15" fill="rgb(240,68,47)"/><text x="25.2500%" y="975.50"><q..</text></g><g><title>quinn_proto::crypto::rustls::<impl quinn_proto::crypto::ClientConfig<quinn_proto::crypto::rustls::TlsSession> for alloc::sync::Arc<rustls::client::ClientConfig>>::new (1 samples, 2.50%)</title><rect x="25.0000%" y="949" width="2.5000%" height="15" fill="rgb(210,16,53)"/><text x="25.2500%" y="959.50">qu..</text></g><g><title>rustls_native_certs::unix::load_native_certs (1 samples, 2.50%)</title><rect x="25.0000%" y="933" width="2.5000%" height="15" fill="rgb(235,124,12)"/><text x="25.2500%" y="943.50">ru..</text></g><g><title>rustls_native_certs::unix::load_file (1 samples, 2.50%)</title><rect x="25.0000%" y="917" width="2.5000%" height="15" fill="rgb(224,169,11)"/><text x="25.2500%" y="927.50">ru..</text></g><g><title>rustls::anchors::RootCertStore::add_pem_file (1 samples, 2.50%)</title><rect x="25.0000%" y="901" width="2.5000%" height="15" fill="rgb(250,166,2)"/><text x="25.2500%" y="911.50">ru..</text></g><g><title>rustls::pemfile::certs (1 samples, 2.50%)</title><rect x="25.0000%" y="885" width="2.5000%" height="15" fill="rgb(242,216,29)"/><text x="25.2500%" y="895.50">ru..</text></g><g><title>rustls::pemfile::extract (1 samples, 2.50%)</title><rect x="25.0000%" y="869" width="2.5000%" height="15" fill="rgb(230,116,27)"/><text x="25.2500%" y="879.50">ru..</text></g><g><title>std::io::BufRead::read_until (1 samples, 2.50%)</title><rect x="25.0000%" y="853" width="2.5000%" height="15" fill="rgb(228,99,48)"/><text x="25.2500%" y="863.50">st..</text></g><g><title>std::io::read_until (1 samples, 2.50%)</title><rect x="25.0000%" y="837" width="2.5000%" height="15" fill="rgb(253,11,6)"/><text x="25.2500%" y="847.50">st..</text></g><g><title>std::memchr::memchr (1 samples, 2.50%)</title><rect x="25.0000%" y="821" width="2.5000%" height="15" fill="rgb(247,143,39)"/><text x="25.2500%" y="831.50">st..</text></g><g><title>std::sys::unix::memchr::memchr (1 samples, 2.50%)</title><rect x="25.0000%" y="805" width="2.5000%" height="15" fill="rgb(236,97,10)"/><text x="25.2500%" y="815.50">st..</text></g><g><title>__memchr_avx2 (1 samples, 2.50%)</title><rect x="25.0000%" y="789" width="2.5000%" height="15" fill="rgb(233,208,19)"/><text x="25.2500%" y="799.50">__..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="27.5000%" y="1189" width="10.0000%" height="15" fill="rgb(216,164,2)"/><text x="27.7500%" y="1199.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="27.5000%" y="1173" width="10.0000%" height="15" fill="rgb(220,129,5)"/><text x="27.7500%" y="1183.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="27.5000%" y="1157" width="10.0000%" height="15" fill="rgb(242,17,10)"/><text x="27.7500%" y="1167.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="27.5000%" y="1141" width="10.0000%" height="15" fill="rgb(242,107,0)"/><text x="27.7500%" y="1151.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="27.5000%" y="1125" width="10.0000%" height="15" fill="rgb(251,28,31)"/><text x="27.7500%" y="1135.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="27.5000%" y="1109" width="10.0000%" height="15" fill="rgb(233,223,10)"/><text x="27.7500%" y="1119.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="27.5000%" y="1093" width="10.0000%" height="15" fill="rgb(215,21,27)"/><text x="27.7500%" y="1103.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="27.5000%" y="1077" width="10.0000%" height="15" fill="rgb(232,23,21)"/><text x="27.7500%" y="1087.50">[[kernel.kalls..</text></g><g><title>__GI___clone (5 samples, 12.50%)</title><rect x="27.5000%" y="1205" width="12.5000%" height="15" fill="rgb(244,5,23)"/><text x="27.7500%" y="1215.50">__GI___clone</text></g><g><title>start_thread (1 samples, 2.50%)</title><rect x="37.5000%" y="1189" width="2.5000%" height="15" fill="rgb(226,81,46)"/><text x="37.7500%" y="1199.50">st..</text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (1 samples, 2.50%)</title><rect x="37.5000%" y="1173" width="2.5000%" height="15" fill="rgb(247,70,30)"/><text x="37.7500%" y="1183.50">st..</text></g><g><title>std::sys_common::thread::start_thread (1 samples, 2.50%)</title><rect x="37.5000%" y="1157" width="2.5000%" height="15" fill="rgb(212,68,19)"/><text x="37.7500%" y="1167.50">st..</text></g><g><title>std::sys::unix::stack_overflow::Handler::new (1 samples, 2.50%)</title><rect x="37.5000%" y="1141" width="2.5000%" height="15" fill="rgb(240,187,13)"/><text x="37.7500%" y="1151.50">st..</text></g><g><title>std::sys::unix::stack_overflow::imp::make_handler (1 samples, 2.50%)</title><rect x="37.5000%" y="1125" width="2.5000%" height="15" fill="rgb(223,113,26)"/><text x="37.7500%" y="1135.50">st..</text></g><g><title>std::sys::unix::stack_overflow::imp::get_stack (1 samples, 2.50%)</title><rect x="37.5000%" y="1109" width="2.5000%" height="15" fill="rgb(206,192,2)"/><text x="37.7500%" y="1119.50">st..</text></g><g><title>std::sys::unix::stack_overflow::imp::get_stackp (1 samples, 2.50%)</title><rect x="37.5000%" y="1093" width="2.5000%" height="15" fill="rgb(241,108,4)"/><text x="37.7500%" y="1103.50">st..</text></g><g><title>__GI___mmap64 (1 samples, 2.50%)</title><rect x="37.5000%" y="1077" width="2.5000%" height="15" fill="rgb(247,173,49)"/><text x="37.7500%" y="1087.50">__..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="1061" width="2.5000%" height="15" fill="rgb(224,114,35)"/><text x="37.7500%" y="1071.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="1045" width="2.5000%" height="15" fill="rgb(245,159,27)"/><text x="37.7500%" y="1055.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="1029" width="2.5000%" height="15" fill="rgb(245,172,44)"/><text x="37.7500%" y="1039.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="1013" width="2.5000%" height="15" fill="rgb(236,23,11)"/><text x="37.7500%" y="1023.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="997" width="2.5000%" height="15" fill="rgb(205,117,38)"/><text x="37.7500%" y="1007.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="981" width="2.5000%" height="15" fill="rgb(237,72,25)"/><text x="37.7500%" y="991.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="965" width="2.5000%" height="15" fill="rgb(244,70,9)"/><text x="37.7500%" y="975.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="949" width="2.5000%" height="15" fill="rgb(217,125,39)"/><text x="37.7500%" y="959.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="933" width="2.5000%" height="15" fill="rgb(235,36,10)"/><text x="37.7500%" y="943.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="917" width="2.5000%" height="15" fill="rgb(251,123,47)"/><text x="37.7500%" y="927.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="901" width="2.5000%" height="15" fill="rgb(221,13,13)"/><text x="37.7500%" y="911.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="885" width="2.5000%" height="15" fill="rgb(238,131,9)"/><text x="37.7500%" y="895.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="869" width="2.5000%" height="15" fill="rgb(211,50,8)"/><text x="37.7500%" y="879.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="853" width="2.5000%" height="15" fill="rgb(245,182,24)"/><text x="37.7500%" y="863.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="37.5000%" y="837" width="2.5000%" height="15" fill="rgb(242,14,37)"/><text x="37.7500%" y="847.50">[[..</text></g><g><title>std::fs::File::open (4 samples, 10.00%)</title><rect x="40.0000%" y="917" width="10.0000%" height="15" fill="rgb(246,228,12)"/><text x="40.2500%" y="927.50">std::fs::File:..</text></g><g><title>std::fs::OpenOptions::open (4 samples, 10.00%)</title><rect x="40.0000%" y="901" width="10.0000%" height="15" fill="rgb(213,55,15)"/><text x="40.2500%" y="911.50">std::fs::OpenO..</text></g><g><title>std::fs::OpenOptions::_open (4 samples, 10.00%)</title><rect x="40.0000%" y="885" width="10.0000%" height="15" fill="rgb(209,9,3)"/><text x="40.2500%" y="895.50">std::fs::OpenO..</text></g><g><title>std::sys::unix::fs::File::open (4 samples, 10.00%)</title><rect x="40.0000%" y="869" width="10.0000%" height="15" fill="rgb(230,59,30)"/><text x="40.2500%" y="879.50">std::sys::unix..</text></g><g><title>std::sys::unix::fs::File::open_c (4 samples, 10.00%)</title><rect x="40.0000%" y="853" width="10.0000%" height="15" fill="rgb(209,121,21)"/><text x="40.2500%" y="863.50">std::sys::unix..</text></g><g><title>std::sys::unix::cvt_r (4 samples, 10.00%)</title><rect x="40.0000%" y="837" width="10.0000%" height="15" fill="rgb(220,109,13)"/><text x="40.2500%" y="847.50">std::sys::unix..</text></g><g><title>std::sys::unix::fs::File::open_c::_{{closure}} (4 samples, 10.00%)</title><rect x="40.0000%" y="821" width="10.0000%" height="15" fill="rgb(232,18,1)"/><text x="40.2500%" y="831.50">std::sys::unix..</text></g><g><title>__libc_open64 (4 samples, 10.00%)</title><rect x="40.0000%" y="805" width="10.0000%" height="15" fill="rgb(215,41,42)"/><text x="40.2500%" y="815.50">__libc_open64</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="789" width="10.0000%" height="15" fill="rgb(224,123,36)"/><text x="40.2500%" y="799.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="773" width="10.0000%" height="15" fill="rgb(240,125,3)"/><text x="40.2500%" y="783.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="757" width="10.0000%" height="15" fill="rgb(205,98,50)"/><text x="40.2500%" y="767.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="741" width="10.0000%" height="15" fill="rgb(205,185,37)"/><text x="40.2500%" y="751.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="725" width="10.0000%" height="15" fill="rgb(238,207,15)"/><text x="40.2500%" y="735.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="709" width="10.0000%" height="15" fill="rgb(213,199,42)"/><text x="40.2500%" y="719.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="693" width="10.0000%" height="15" fill="rgb(235,201,11)"/><text x="40.2500%" y="703.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="677" width="10.0000%" height="15" fill="rgb(207,46,11)"/><text x="40.2500%" y="687.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="661" width="10.0000%" height="15" fill="rgb(241,35,35)"/><text x="40.2500%" y="671.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="645" width="10.0000%" height="15" fill="rgb(243,32,47)"/><text x="40.2500%" y="655.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="629" width="10.0000%" height="15" fill="rgb(247,202,23)"/><text x="40.2500%" y="639.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="613" width="10.0000%" height="15" fill="rgb(219,102,11)"/><text x="40.2500%" y="623.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="597" width="10.0000%" height="15" fill="rgb(243,110,44)"/><text x="40.2500%" y="607.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="581" width="10.0000%" height="15" fill="rgb(222,74,54)"/><text x="40.2500%" y="591.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="565" width="10.0000%" height="15" fill="rgb(216,99,12)"/><text x="40.2500%" y="575.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="549" width="10.0000%" height="15" fill="rgb(226,22,26)"/><text x="40.2500%" y="559.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="533" width="10.0000%" height="15" fill="rgb(217,163,10)"/><text x="40.2500%" y="543.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="517" width="10.0000%" height="15" fill="rgb(213,25,53)"/><text x="40.2500%" y="527.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="501" width="10.0000%" height="15" fill="rgb(252,105,26)"/><text x="40.2500%" y="511.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="485" width="10.0000%" height="15" fill="rgb(220,39,43)"/><text x="40.2500%" y="495.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="40.0000%" y="469" width="10.0000%" height="15" fill="rgb(229,68,48)"/><text x="40.2500%" y="479.50">[[kernel.kalls..</text></g><g><title>server (17 samples, 42.50%)</title><rect x="10.0000%" y="1221" width="42.5000%" height="15" fill="rgb(252,8,32)"/><text x="10.2500%" y="1231.50">server</text></g><g><title>_start (5 samples, 12.50%)</title><rect x="40.0000%" y="1205" width="12.5000%" height="15" fill="rgb(223,20,43)"/><text x="40.2500%" y="1215.50">_start</text></g><g><title>__libc_start_main (5 samples, 12.50%)</title><rect x="40.0000%" y="1189" width="12.5000%" height="15" fill="rgb(229,81,49)"/><text x="40.2500%" y="1199.50">__libc_start_main</text></g><g><title>main (5 samples, 12.50%)</title><rect x="40.0000%" y="1173" width="12.5000%" height="15" fill="rgb(236,28,36)"/><text x="40.2500%" y="1183.50">main</text></g><g><title>std::rt::lang_start_internal (5 samples, 12.50%)</title><rect x="40.0000%" y="1157" width="12.5000%" height="15" fill="rgb(249,185,26)"/><text x="40.2500%" y="1167.50">std::rt::lang_start..</text></g><g><title>std::panic::catch_unwind (5 samples, 12.50%)</title><rect x="40.0000%" y="1141" width="12.5000%" height="15" fill="rgb(249,174,33)"/><text x="40.2500%" y="1151.50">std::panic::catch_u..</text></g><g><title>std::panicking::try (5 samples, 12.50%)</title><rect x="40.0000%" y="1125" width="12.5000%" height="15" fill="rgb(233,201,37)"/><text x="40.2500%" y="1135.50">std::panicking::try</text></g><g><title>__rust_maybe_catch_panic (5 samples, 12.50%)</title><rect x="40.0000%" y="1109" width="12.5000%" height="15" fill="rgb(221,78,26)"/><text x="40.2500%" y="1119.50">__rust_maybe_catch_..</text></g><g><title>std::panicking::try::do_call (5 samples, 12.50%)</title><rect x="40.0000%" y="1093" width="12.5000%" height="15" fill="rgb(250,127,30)"/><text x="40.2500%" y="1103.50">std::panicking::try..</text></g><g><title>std::rt::lang_start_internal::_{{closure}} (5 samples, 12.50%)</title><rect x="40.0000%" y="1077" width="12.5000%" height="15" fill="rgb(230,49,44)"/><text x="40.2500%" y="1087.50">std::rt::lang_start..</text></g><g><title>std::rt::lang_start::_{{closure}} (5 samples, 12.50%)</title><rect x="40.0000%" y="1061" width="12.5000%" height="15" fill="rgb(229,67,23)"/><text x="40.2500%" y="1071.50">std::rt::lang_start..</text></g><g><title>server::main (5 samples, 12.50%)</title><rect x="40.0000%" y="1045" width="12.5000%" height="15" fill="rgb(249,83,47)"/><text x="40.2500%" y="1055.50">server::main</text></g><g><title>tokio::runtime::builder::Builder::build (5 samples, 12.50%)</title><rect x="40.0000%" y="1029" width="12.5000%" height="15" fill="rgb(215,43,3)"/><text x="40.2500%" y="1039.50">tokio::runtime::bui..</text></g><g><title>tokio::runtime::builder::Builder::build_threaded_runtime (5 samples, 12.50%)</title><rect x="40.0000%" y="1013" width="12.5000%" height="15" fill="rgb(238,154,13)"/><text x="40.2500%" y="1023.50">tokio::runtime::bui..</text></g><g><title>core::option::Option<T>::unwrap_or_else (5 samples, 12.50%)</title><rect x="40.0000%" y="997" width="12.5000%" height="15" fill="rgb(219,56,2)"/><text x="40.2500%" y="1007.50">core::option::Optio..</text></g><g><title>core::ops::function::FnOnce::call_once (5 samples, 12.50%)</title><rect x="40.0000%" y="981" width="12.5000%" height="15" fill="rgb(233,0,4)"/><text x="40.2500%" y="991.50">core::ops::function..</text></g><g><title>tokio::loom::std::sys::num_cpus (5 samples, 12.50%)</title><rect x="40.0000%" y="965" width="12.5000%" height="15" fill="rgb(235,30,7)"/><text x="40.2500%" y="975.50">tokio::loom::std::s..</text></g><g><title>num_cpus::get_physical (5 samples, 12.50%)</title><rect x="40.0000%" y="949" width="12.5000%" height="15" fill="rgb(250,79,13)"/><text x="40.2500%" y="959.50">num_cpus::get_physi..</text></g><g><title>num_cpus::get_num_physical_cpus (5 samples, 12.50%)</title><rect x="40.0000%" y="933" width="12.5000%" height="15" fill="rgb(211,146,34)"/><text x="40.2500%" y="943.50">num_cpus::get_num_p..</text></g><g><title>std::io::buffered::BufReader<R>::new (1 samples, 2.50%)</title><rect x="50.0000%" y="917" width="2.5000%" height="15" fill="rgb(228,22,38)"/><text x="50.2500%" y="927.50">st..</text></g><g><title>std::io::buffered::BufReader<R>::with_capacity (1 samples, 2.50%)</title><rect x="50.0000%" y="901" width="2.5000%" height="15" fill="rgb(235,168,5)"/><text x="50.2500%" y="911.50">st..</text></g><g><title>alloc::vec::Vec<T>::with_capacity (1 samples, 2.50%)</title><rect x="50.0000%" y="885" width="2.5000%" height="15" fill="rgb(221,155,16)"/><text x="50.2500%" y="895.50">al..</text></g><g><title>alloc::raw_vec::RawVec<T>::with_capacity (1 samples, 2.50%)</title><rect x="50.0000%" y="869" width="2.5000%" height="15" fill="rgb(215,215,53)"/><text x="50.2500%" y="879.50">al..</text></g><g><title>alloc::raw_vec::RawVec<T,A>::allocate_in (1 samples, 2.50%)</title><rect x="50.0000%" y="853" width="2.5000%" height="15" fill="rgb(223,4,10)"/><text x="50.2500%" y="863.50">al..</text></g><g><title><alloc::alloc::Global as core::alloc::Alloc>::alloc (1 samples, 2.50%)</title><rect x="50.0000%" y="837" width="2.5000%" height="15" fill="rgb(234,103,6)"/><text x="50.2500%" y="847.50"><a..</text></g><g><title>alloc::alloc::alloc (1 samples, 2.50%)</title><rect x="50.0000%" y="821" width="2.5000%" height="15" fill="rgb(227,97,0)"/><text x="50.2500%" y="831.50">al..</text></g><g><title>__GI___libc_malloc (1 samples, 2.50%)</title><rect x="50.0000%" y="805" width="2.5000%" height="15" fill="rgb(234,150,53)"/><text x="50.2500%" y="815.50">__..</text></g><g><title>_int_malloc (1 samples, 2.50%)</title><rect x="50.0000%" y="789" width="2.5000%" height="15" fill="rgb(228,201,54)"/><text x="50.2500%" y="799.50">_i..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="50.0000%" y="773" width="2.5000%" height="15" fill="rgb(222,22,37)"/><text x="50.2500%" y="783.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="50.0000%" y="757" width="2.5000%" height="15" fill="rgb(237,53,32)"/><text x="50.2500%" y="767.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="50.0000%" y="741" width="2.5000%" height="15" fill="rgb(233,25,53)"/><text x="50.2500%" y="751.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="50.0000%" y="725" width="2.5000%" height="15" fill="rgb(210,40,34)"/><text x="50.2500%" y="735.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="50.0000%" y="709" width="2.5000%" height="15" fill="rgb(241,220,44)"/><text x="50.2500%" y="719.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="50.0000%" y="693" width="2.5000%" height="15" fill="rgb(235,28,35)"/><text x="50.2500%" y="703.50">[[..</text></g><g><title><alloc::vec::Vec<u8> as bytes::buf::buf_mut::BufMut>::put_slice (1 samples, 2.50%)</title><rect x="55.0000%" y="1189" width="2.5000%" height="15" fill="rgb(210,56,17)"/><text x="55.2500%" y="1199.50"><a..</text></g><g><title><quinn::endpoint::EndpointDriver<S> as core::future::future::Future>::poll (1 samples, 2.50%)</title><rect x="57.5000%" y="1189" width="2.5000%" height="15" fill="rgb(224,130,29)"/><text x="57.7500%" y="1199.50"><q..</text></g><g><title>quinn::endpoint::EndpointInner<S>::drive_send (1 samples, 2.50%)</title><rect x="57.5000%" y="1173" width="2.5000%" height="15" fill="rgb(235,212,8)"/><text x="57.7500%" y="1183.50">qu..</text></g><g><title>quinn::udp::UdpSocket::poll_send (1 samples, 2.50%)</title><rect x="57.5000%" y="1157" width="2.5000%" height="15" fill="rgb(223,33,50)"/><text x="57.7500%" y="1167.50">qu..</text></g><g><title>quinn::platform::unix::<impl quinn::platform::UdpExt for mio::net::udp::UdpSocket>::send_ext (1 samples, 2.50%)</title><rect x="57.5000%" y="1141" width="2.5000%" height="15" fill="rgb(219,149,13)"/><text x="57.7500%" y="1151.50">qu..</text></g><g><title>__GI___sendmmsg (1 samples, 2.50%)</title><rect x="57.5000%" y="1125" width="2.5000%" height="15" fill="rgb(250,156,29)"/><text x="57.7500%" y="1135.50">__..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="57.5000%" y="1109" width="2.5000%" height="15" fill="rgb(216,193,19)"/><text x="57.7500%" y="1119.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="57.5000%" y="1093" width="2.5000%" height="15" fill="rgb(216,135,14)"/><text x="57.7500%" y="1103.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="57.5000%" y="1077" width="2.5000%" height="15" fill="rgb(241,47,5)"/><text x="57.7500%" y="1087.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="57.5000%" y="1061" width="2.5000%" height="15" fill="rgb(233,42,35)"/><text x="57.7500%" y="1071.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="57.5000%" y="1045" width="2.5000%" height="15" fill="rgb(231,13,6)"/><text x="57.7500%" y="1055.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="57.5000%" y="1029" width="2.5000%" height="15" fill="rgb(207,181,40)"/><text x="57.7500%" y="1039.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="57.5000%" y="1013" width="2.5000%" height="15" fill="rgb(254,173,49)"/><text x="57.7500%" y="1023.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="57.5000%" y="997" width="2.5000%" height="15" fill="rgb(221,1,38)"/><text x="57.7500%" y="1007.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="57.5000%" y="981" width="2.5000%" height="15" fill="rgb(206,124,46)"/><text x="57.7500%" y="991.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="57.5000%" y="965" width="2.5000%" height="15" fill="rgb(249,21,11)"/><text x="57.7500%" y="975.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="57.5000%" y="949" width="2.5000%" height="15" fill="rgb(222,201,40)"/><text x="57.7500%" y="959.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="57.5000%" y="933" width="2.5000%" height="15" fill="rgb(235,61,29)"/><text x="57.7500%" y="943.50">[[..</text></g><g><title>[unknown] (3 samples, 7.50%)</title><rect x="55.0000%" y="1205" width="7.5000%" height="15" fill="rgb(219,207,3)"/><text x="55.2500%" y="1215.50">[unknown]</text></g><g><title>quinn_proto::connection::Connection<S>::process_decrypted_packet (1 samples, 2.50%)</title><rect x="60.0000%" y="1189" width="2.5000%" height="15" fill="rgb(222,56,46)"/><text x="60.2500%" y="1199.50">qu..</text></g><g><title>quinn_proto::connection::Connection<S>::process_early_payload (1 samples, 2.50%)</title><rect x="60.0000%" y="1173" width="2.5000%" height="15" fill="rgb(239,76,54)"/><text x="60.2500%" y="1183.50">qu..</text></g><g><title><quinn_proto::frame::Iter as core::iter::traits::iterator::Iterator>::next (1 samples, 2.50%)</title><rect x="60.0000%" y="1157" width="2.5000%" height="15" fill="rgb(231,124,27)"/><text x="60.2500%" y="1167.50"><q..</text></g><g><title>quinn_proto::frame::Iter::try_next (1 samples, 2.50%)</title><rect x="60.0000%" y="1141" width="2.5000%" height="15" fill="rgb(249,195,6)"/><text x="60.2500%" y="1151.50">qu..</text></g><g><title>__GI___sched_yield (1 samples, 2.50%)</title><rect x="62.5000%" y="421" width="2.5000%" height="15" fill="rgb(237,174,47)"/><text x="62.7500%" y="431.50">__..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="62.5000%" y="405" width="2.5000%" height="15" fill="rgb(206,201,31)"/><text x="62.7500%" y="415.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="62.5000%" y="389" width="2.5000%" height="15" fill="rgb(231,57,52)"/><text x="62.7500%" y="399.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="62.5000%" y="373" width="2.5000%" height="15" fill="rgb(248,177,22)"/><text x="62.7500%" y="383.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="62.5000%" y="357" width="2.5000%" height="15" fill="rgb(215,211,37)"/><text x="62.7500%" y="367.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="62.5000%" y="341" width="2.5000%" height="15" fill="rgb(241,128,51)"/><text x="62.7500%" y="351.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="62.5000%" y="325" width="2.5000%" height="15" fill="rgb(227,165,31)"/><text x="62.7500%" y="335.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="62.5000%" y="309" width="2.5000%" height="15" fill="rgb(228,167,24)"/><text x="62.7500%" y="319.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="62.5000%" y="293" width="2.5000%" height="15" fill="rgb(228,143,12)"/><text x="62.7500%" y="303.50">[[..</text></g><g><title>tokio::runtime::park::Inner::park_condvar (4 samples, 10.00%)</title><rect x="65.0000%" y="421" width="10.0000%" height="15" fill="rgb(249,149,8)"/><text x="65.2500%" y="431.50">tokio::runtime..</text></g><g><title>std::sync::condvar::Condvar::wait (4 samples, 10.00%)</title><rect x="65.0000%" y="405" width="10.0000%" height="15" fill="rgb(243,35,44)"/><text x="65.2500%" y="415.50">std::sync::con..</text></g><g><title>std::sys_common::condvar::Condvar::wait (4 samples, 10.00%)</title><rect x="65.0000%" y="389" width="10.0000%" height="15" fill="rgb(246,89,9)"/><text x="65.2500%" y="399.50">std::sys_commo..</text></g><g><title>std::sys::unix::condvar::Condvar::wait (4 samples, 10.00%)</title><rect x="65.0000%" y="373" width="10.0000%" height="15" fill="rgb(233,213,13)"/><text x="65.2500%" y="383.50">std::sys::unix..</text></g><g><title>__pthread_cond_wait (4 samples, 10.00%)</title><rect x="65.0000%" y="357" width="10.0000%" height="15" fill="rgb(233,141,41)"/><text x="65.2500%" y="367.50">__pthread_cond..</text></g><g><title>__pthread_cond_wait_common (4 samples, 10.00%)</title><rect x="65.0000%" y="341" width="10.0000%" height="15" fill="rgb(239,167,4)"/><text x="65.2500%" y="351.50">__pthread_cond..</text></g><g><title>futex_wait_cancelable (4 samples, 10.00%)</title><rect x="65.0000%" y="325" width="10.0000%" height="15" fill="rgb(209,217,16)"/><text x="65.2500%" y="335.50">futex_wait_can..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="309" width="10.0000%" height="15" fill="rgb(219,88,35)"/><text x="65.2500%" y="319.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="293" width="10.0000%" height="15" fill="rgb(220,193,23)"/><text x="65.2500%" y="303.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="277" width="10.0000%" height="15" fill="rgb(230,90,52)"/><text x="65.2500%" y="287.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="261" width="10.0000%" height="15" fill="rgb(252,106,19)"/><text x="65.2500%" y="271.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="245" width="10.0000%" height="15" fill="rgb(206,74,20)"/><text x="65.2500%" y="255.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="229" width="10.0000%" height="15" fill="rgb(230,138,44)"/><text x="65.2500%" y="239.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="213" width="10.0000%" height="15" fill="rgb(235,182,43)"/><text x="65.2500%" y="223.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="197" width="10.0000%" height="15" fill="rgb(242,16,51)"/><text x="65.2500%" y="207.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="181" width="10.0000%" height="15" fill="rgb(248,9,4)"/><text x="65.2500%" y="191.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="165" width="10.0000%" height="15" fill="rgb(210,31,22)"/><text x="65.2500%" y="175.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="149" width="10.0000%" height="15" fill="rgb(239,54,39)"/><text x="65.2500%" y="159.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="133" width="10.0000%" height="15" fill="rgb(230,99,41)"/><text x="65.2500%" y="143.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="117" width="10.0000%" height="15" fill="rgb(253,106,12)"/><text x="65.2500%" y="127.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="65.0000%" y="101" width="10.0000%" height="15" fill="rgb(213,46,41)"/><text x="65.2500%" y="111.50">[[kernel.kalls..</text></g><g><title><tokio::park::either::Either<A,B> as tokio::park::Park>::park (3 samples, 7.50%)</title><rect x="75.0000%" y="373" width="7.5000%" height="15" fill="rgb(215,133,35)"/><text x="75.2500%" y="383.50"><tokio::pa..</text></g><g><title><tokio::io::driver::Driver as tokio::park::Park>::park (3 samples, 7.50%)</title><rect x="75.0000%" y="357" width="7.5000%" height="15" fill="rgb(213,28,5)"/><text x="75.2500%" y="367.50"><tokio::io..</text></g><g><title>tokio::io::driver::Driver::turn (3 samples, 7.50%)</title><rect x="75.0000%" y="341" width="7.5000%" height="15" fill="rgb(215,77,49)"/><text x="75.2500%" y="351.50">tokio::io:..</text></g><g><title>mio::poll::Poll::poll (3 samples, 7.50%)</title><rect x="75.0000%" y="325" width="7.5000%" height="15" fill="rgb(248,100,22)"/><text x="75.2500%" y="335.50">mio::poll:..</text></g><g><title>mio::poll::Poll::poll1 (3 samples, 7.50%)</title><rect x="75.0000%" y="309" width="7.5000%" height="15" fill="rgb(208,67,9)"/><text x="75.2500%" y="319.50">mio::poll:..</text></g><g><title>mio::poll::Poll::poll2 (3 samples, 7.50%)</title><rect x="75.0000%" y="293" width="7.5000%" height="15" fill="rgb(219,133,21)"/><text x="75.2500%" y="303.50">mio::poll:..</text></g><g><title>mio::sys::unix::epoll::Selector::select (3 samples, 7.50%)</title><rect x="75.0000%" y="277" width="7.5000%" height="15" fill="rgb(246,46,29)"/><text x="75.2500%" y="287.50">mio::sys::..</text></g><g><title>epoll_wait (3 samples, 7.50%)</title><rect x="75.0000%" y="261" width="7.5000%" height="15" fill="rgb(246,185,52)"/><text x="75.2500%" y="271.50">epoll_wait</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="245" width="7.5000%" height="15" fill="rgb(252,136,11)"/><text x="75.2500%" y="255.50">[[kernel.k..</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="229" width="7.5000%" height="15" fill="rgb(219,138,53)"/><text x="75.2500%" y="239.50">[[kernel.k..</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="213" width="7.5000%" height="15" fill="rgb(211,51,23)"/><text x="75.2500%" y="223.50">[[kernel.k..</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="197" width="7.5000%" height="15" fill="rgb(247,221,28)"/><text x="75.2500%" y="207.50">[[kernel.k..</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="181" width="7.5000%" height="15" fill="rgb(251,222,45)"/><text x="75.2500%" y="191.50">[[kernel.k..</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="165" width="7.5000%" height="15" fill="rgb(217,162,53)"/><text x="75.2500%" y="175.50">[[kernel.k..</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="149" width="7.5000%" height="15" fill="rgb(229,93,14)"/><text x="75.2500%" y="159.50">[[kernel.k..</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="133" width="7.5000%" height="15" fill="rgb(209,67,49)"/><text x="75.2500%" y="143.50">[[kernel.k..</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="117" width="7.5000%" height="15" fill="rgb(213,87,29)"/><text x="75.2500%" y="127.50">[[kernel.k..</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="101" width="7.5000%" height="15" fill="rgb(205,151,52)"/><text x="75.2500%" y="111.50">[[kernel.k..</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="85" width="7.5000%" height="15" fill="rgb(253,215,39)"/><text x="75.2500%" y="95.50">[[kernel.k..</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="69" width="7.5000%" height="15" fill="rgb(221,220,41)"/><text x="75.2500%" y="79.50">[[kernel.k..</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="53" width="7.5000%" height="15" fill="rgb(218,133,21)"/><text x="75.2500%" y="63.50">[[kernel.k..</text></g><g><title>[[kernel.kallsyms]] (3 samples, 7.50%)</title><rect x="75.0000%" y="37" width="7.5000%" height="15" fill="rgb(221,193,43)"/><text x="75.2500%" y="47.50">[[kernel.k..</text></g><g><title><tokio::time::driver::Driver<T> as tokio::park::Park>::park (7 samples, 17.50%)</title><rect x="75.0000%" y="389" width="17.5000%" height="15" fill="rgb(240,128,52)"/><text x="75.2500%" y="399.50"><tokio::time::driver::Drive..</text></g><g><title>tokio::io::driver::Driver::turn (4 samples, 10.00%)</title><rect x="82.5000%" y="373" width="10.0000%" height="15" fill="rgb(253,114,12)"/><text x="82.7500%" y="383.50">tokio::io::dri..</text></g><g><title>mio::poll::Poll::poll (4 samples, 10.00%)</title><rect x="82.5000%" y="357" width="10.0000%" height="15" fill="rgb(215,223,47)"/><text x="82.7500%" y="367.50">mio::poll::Pol..</text></g><g><title>mio::poll::Poll::poll1 (4 samples, 10.00%)</title><rect x="82.5000%" y="341" width="10.0000%" height="15" fill="rgb(248,225,23)"/><text x="82.7500%" y="351.50">mio::poll::Pol..</text></g><g><title>mio::poll::Poll::poll2 (4 samples, 10.00%)</title><rect x="82.5000%" y="325" width="10.0000%" height="15" fill="rgb(250,108,0)"/><text x="82.7500%" y="335.50">mio::poll::Pol..</text></g><g><title>mio::sys::unix::epoll::Selector::select (4 samples, 10.00%)</title><rect x="82.5000%" y="309" width="10.0000%" height="15" fill="rgb(228,208,7)"/><text x="82.7500%" y="319.50">mio::sys::unix..</text></g><g><title>epoll_wait (4 samples, 10.00%)</title><rect x="82.5000%" y="293" width="10.0000%" height="15" fill="rgb(244,45,10)"/><text x="82.7500%" y="303.50">epoll_wait</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="277" width="10.0000%" height="15" fill="rgb(207,125,25)"/><text x="82.7500%" y="287.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="261" width="10.0000%" height="15" fill="rgb(210,195,18)"/><text x="82.7500%" y="271.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="245" width="10.0000%" height="15" fill="rgb(249,80,12)"/><text x="82.7500%" y="255.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="229" width="10.0000%" height="15" fill="rgb(221,65,9)"/><text x="82.7500%" y="239.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="213" width="10.0000%" height="15" fill="rgb(235,49,36)"/><text x="82.7500%" y="223.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="197" width="10.0000%" height="15" fill="rgb(225,32,20)"/><text x="82.7500%" y="207.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="181" width="10.0000%" height="15" fill="rgb(215,141,46)"/><text x="82.7500%" y="191.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="165" width="10.0000%" height="15" fill="rgb(250,160,47)"/><text x="82.7500%" y="175.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="149" width="10.0000%" height="15" fill="rgb(216,222,40)"/><text x="82.7500%" y="159.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="133" width="10.0000%" height="15" fill="rgb(234,217,39)"/><text x="82.7500%" y="143.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="117" width="10.0000%" height="15" fill="rgb(207,178,40)"/><text x="82.7500%" y="127.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="101" width="10.0000%" height="15" fill="rgb(221,136,13)"/><text x="82.7500%" y="111.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="85" width="10.0000%" height="15" fill="rgb(249,199,10)"/><text x="82.7500%" y="95.50">[[kernel.kalls..</text></g><g><title>[[kernel.kallsyms]] (4 samples, 10.00%)</title><rect x="82.5000%" y="69" width="10.0000%" height="15" fill="rgb(249,222,13)"/><text x="82.7500%" y="79.50">[[kernel.kalls..</text></g><g><title>tokio::runtime::thread_pool::worker::GenerationGuard::park (13 samples, 32.50%)</title><rect x="62.5000%" y="469" width="32.5000%" height="15" fill="rgb(244,185,38)"/><text x="62.7500%" y="479.50">tokio::runtime::thread_pool::worker::GenerationGuard:..</text></g><g><title><tokio::runtime::park::Parker as tokio::park::Park>::park (13 samples, 32.50%)</title><rect x="62.5000%" y="453" width="32.5000%" height="15" fill="rgb(236,202,9)"/><text x="62.7500%" y="463.50"><tokio::runtime::park::Parker as tokio::park::Park>::..</text></g><g><title>tokio::runtime::park::Inner::park (13 samples, 32.50%)</title><rect x="62.5000%" y="437" width="32.5000%" height="15" fill="rgb(250,229,37)"/><text x="62.7500%" y="447.50">tokio::runtime::park::Inner::park</text></g><g><title>tokio::runtime::park::Inner::park_driver (8 samples, 20.00%)</title><rect x="75.0000%" y="421" width="20.0000%" height="15" fill="rgb(206,174,23)"/><text x="75.2500%" y="431.50">tokio::runtime::park::Inner::pa..</text></g><g><title><tokio::park::either::Either<A,B> as tokio::park::Park>::park (8 samples, 20.00%)</title><rect x="75.0000%" y="405" width="20.0000%" height="15" fill="rgb(211,33,43)"/><text x="75.2500%" y="415.50"><tokio::park::either::Either<A,..</text></g><g><title>core::result::Result<T,E>::map_err (1 samples, 2.50%)</title><rect x="92.5000%" y="389" width="2.5000%" height="15" fill="rgb(245,58,50)"/><text x="92.7500%" y="399.50">co..</text></g><g><title>tokio::runtime::thread_pool::worker::GenerationGuard::transition_from_searching (1 samples, 2.50%)</title><rect x="95.0000%" y="437" width="2.5000%" height="15" fill="rgb(244,68,36)"/><text x="95.2500%" y="447.50">to..</text></g><g><title>tokio::runtime::thread_pool::slice::Set::notify_work (1 samples, 2.50%)</title><rect x="95.0000%" y="421" width="2.5000%" height="15" fill="rgb(232,229,15)"/><text x="95.2500%" y="431.50">to..</text></g><g><title>tokio::runtime::thread_pool::shared::Shared::unpark (1 samples, 2.50%)</title><rect x="95.0000%" y="405" width="2.5000%" height="15" fill="rgb(254,30,23)"/><text x="95.2500%" y="415.50">to..</text></g><g><title>__pthread_cond_signal (1 samples, 2.50%)</title><rect x="95.0000%" y="389" width="2.5000%" height="15" fill="rgb(235,160,14)"/><text x="95.2500%" y="399.50">__..</text></g><g><title>futex_wake (1 samples, 2.50%)</title><rect x="95.0000%" y="373" width="2.5000%" height="15" fill="rgb(212,155,44)"/><text x="95.2500%" y="383.50">fu..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="95.0000%" y="357" width="2.5000%" height="15" fill="rgb(226,2,50)"/><text x="95.2500%" y="367.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="95.0000%" y="341" width="2.5000%" height="15" fill="rgb(234,177,6)"/><text x="95.2500%" y="351.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="95.0000%" y="325" width="2.5000%" height="15" fill="rgb(217,24,9)"/><text x="95.2500%" y="335.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="95.0000%" y="309" width="2.5000%" height="15" fill="rgb(220,13,46)"/><text x="95.2500%" y="319.50">[[..</text></g><g><title>[[kernel.kallsyms]] (1 samples, 2.50%)</title><rect x="95.0000%" y="293" width="2.5000%" height="15" fill="rgb(239,221,27)"/><text x="95.2500%" y="303.50">[[..</text></g><g><title>all (40 samples, 100%)</title><rect x="0.0000%" y="1237" width="100.0000%" height="15" fill="rgb(222,198,25)"/><text x="0.2500%" y="1247.50"></text></g><g><title>tokio-runtime-w (19 samples, 47.50%)</title><rect x="52.5000%" y="1221" width="47.5000%" height="15" fill="rgb(211,99,13)"/><text x="52.7500%" y="1231.50">tokio-runtime-w</text></g><g><title>__GI___clone (15 samples, 37.50%)</title><rect x="62.5000%" y="1205" width="37.5000%" height="15" fill="rgb(232,111,31)"/><text x="62.7500%" y="1215.50">__GI___clone</text></g><g><title>start_thread (15 samples, 37.50%)</title><rect x="62.5000%" y="1189" width="37.5000%" height="15" fill="rgb(245,82,37)"/><text x="62.7500%" y="1199.50">start_thread</text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (15 samples, 37.50%)</title><rect x="62.5000%" y="1173" width="37.5000%" height="15" fill="rgb(227,149,46)"/><text x="62.7500%" y="1183.50">std::sys::unix::thread::Thread::new::thread_start</text></g><g><title>std::sys_common::thread::start_thread (15 samples, 37.50%)</title><rect x="62.5000%" y="1157" width="37.5000%" height="15" fill="rgb(218,36,50)"/><text x="62.7500%" y="1167.50">std::sys_common::thread::start_thread</text></g><g><title><alloc::boxed::Box<F> as core::ops::function::FnOnce<A>>::call_once (15 samples, 37.50%)</title><rect x="62.5000%" y="1141" width="37.5000%" height="15" fill="rgb(226,80,48)"/><text x="62.7500%" y="1151.50"><alloc::boxed::Box<F> as core::ops::function::FnOnce<A>>::cal..</text></g><g><title><alloc::boxed::Box<F> as core::ops::function::FnOnce<A>>::call_once (15 samples, 37.50%)</title><rect x="62.5000%" y="1125" width="37.5000%" height="15" fill="rgb(238,224,15)"/><text x="62.7500%" y="1135.50"><alloc::boxed::Box<F> as core::ops::function::FnOnce<A>>::cal..</text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (15 samples, 37.50%)</title><rect x="62.5000%" y="1109" width="37.5000%" height="15" fill="rgb(241,136,10)"/><text x="62.7500%" y="1119.50">core::ops::function::FnOnce::call_once{{vtable.shim}}</text></g><g><title>std::thread::Builder::spawn_unchecked::_{{closure}} (15 samples, 37.50%)</title><rect x="62.5000%" y="1093" width="37.5000%" height="15" fill="rgb(208,32,45)"/><text x="62.7500%" y="1103.50">std::thread::Builder::spawn_unchecked::_{{closure}}</text></g><g><title>std::panic::catch_unwind (15 samples, 37.50%)</title><rect x="62.5000%" y="1077" width="37.5000%" height="15" fill="rgb(207,135,9)"/><text x="62.7500%" y="1087.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (15 samples, 37.50%)</title><rect x="62.5000%" y="1061" width="37.5000%" height="15" fill="rgb(206,86,44)"/><text x="62.7500%" y="1071.50">std::panicking::try</text></g><g><title>__rust_maybe_catch_panic (15 samples, 37.50%)</title><rect x="62.5000%" y="1045" width="37.5000%" height="15" fill="rgb(245,177,15)"/><text x="62.7500%" y="1055.50">__rust_maybe_catch_panic</text></g><g><title>std::panicking::try::do_call (15 samples, 37.50%)</title><rect x="62.5000%" y="1029" width="37.5000%" height="15" fill="rgb(206,64,50)"/><text x="62.7500%" y="1039.50">std::panicking::try::do_call</text></g><g><title><std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce< (15 samples, 37.50%)</title><rect x="62.5000%" y="1013" width="37.5000%" height="15" fill="rgb(234,36,40)"/><text x="62.7500%" y="1023.50"><std::panic::AssertUnwindSafe<F> as core::ops::function::FnOn..</text></g><g><title>std::thread::Builder::spawn_unchecked::_{{closure}}::_{{closure}} (15 samples, 37.50%)</title><rect x="62.5000%" y="997" width="37.5000%" height="15" fill="rgb(213,64,8)"/><text x="62.7500%" y="1007.50">std::thread::Builder::spawn_unchecked::_{{closure}}::_{{closu..</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (15 samples, 37.50%)</title><rect x="62.5000%" y="981" width="37.5000%" height="15" fill="rgb(210,75,36)"/><text x="62.7500%" y="991.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_thread::_{{closure}} (15 samples, 37.50%)</title><rect x="62.5000%" y="965" width="37.5000%" height="15" fill="rgb(229,88,21)"/><text x="62.7500%" y="975.50">tokio::runtime::blocking::pool::Spawner::spawn_thread::_{{clo..</text></g><g><title>tokio::runtime::handle::Handle::enter (15 samples, 37.50%)</title><rect x="62.5000%" y="949" width="37.5000%" height="15" fill="rgb(252,204,47)"/><text x="62.7500%" y="959.50">tokio::runtime::handle::Handle::enter</text></g><g><title>tokio::runtime::context::enter (15 samples, 37.50%)</title><rect x="62.5000%" y="933" width="37.5000%" height="15" fill="rgb(208,77,27)"/><text x="62.7500%" y="943.50">tokio::runtime::context::enter</text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_thread::_{{closure}}::_{{closure}} (15 samples, 37.50%)</title><rect x="62.5000%" y="917" width="37.5000%" height="15" fill="rgb(221,76,26)"/><text x="62.7500%" y="927.50">tokio::runtime::blocking::pool::Spawner::spawn_thread::_{{clo..</text></g><g><title>tokio::runtime::blocking::pool::Inner::run (15 samples, 37.50%)</title><rect x="62.5000%" y="901" width="37.5000%" height="15" fill="rgb(225,139,18)"/><text x="62.7500%" y="911.50">tokio::runtime::blocking::pool::Inner::run</text></g><g><title>tokio::runtime::blocking::pool::run_task (15 samples, 37.50%)</title><rect x="62.5000%" y="885" width="37.5000%" height="15" fill="rgb(230,137,11)"/><text x="62.7500%" y="895.50">tokio::runtime::blocking::pool::run_task</text></g><g><title>tokio::task::Task<S>::run (15 samples, 37.50%)</title><rect x="62.5000%" y="869" width="37.5000%" height="15" fill="rgb(212,28,1)"/><text x="62.7500%" y="879.50">tokio::task::Task<S>::run</text></g><g><title>tokio::task::raw::RawTask::poll (15 samples, 37.50%)</title><rect x="62.5000%" y="853" width="37.5000%" height="15" fill="rgb(248,164,17)"/><text x="62.7500%" y="863.50">tokio::task::raw::RawTask::poll</text></g><g><title>tokio::task::harness::Harness<T,S>::poll (15 samples, 37.50%)</title><rect x="62.5000%" y="837" width="37.5000%" height="15" fill="rgb(222,171,42)"/><text x="62.7500%" y="847.50">tokio::task::harness::Harness<T,S>::poll</text></g><g><title>tokio::loom::std::causal_cell::CausalCell<T>::with_mut (15 samples, 37.50%)</title><rect x="62.5000%" y="821" width="37.5000%" height="15" fill="rgb(243,84,45)"/><text x="62.7500%" y="831.50">tokio::loom::std::causal_cell::CausalCell<T>::with_mut</text></g><g><title>tokio::task::harness::Harness<T,S>::poll::_{{closure}} (15 samples, 37.50%)</title><rect x="62.5000%" y="805" width="37.5000%" height="15" fill="rgb(252,49,23)"/><text x="62.7500%" y="815.50">tokio::task::harness::Harness<T,S>::poll::_{{closure}}</text></g><g><title>std::panic::catch_unwind (15 samples, 37.50%)</title><rect x="62.5000%" y="789" width="37.5000%" height="15" fill="rgb(215,19,7)"/><text x="62.7500%" y="799.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (15 samples, 37.50%)</title><rect x="62.5000%" y="773" width="37.5000%" height="15" fill="rgb(238,81,41)"/><text x="62.7500%" y="783.50">std::panicking::try</text></g><g><title>__rust_maybe_catch_panic (15 samples, 37.50%)</title><rect x="62.5000%" y="757" width="37.5000%" height="15" fill="rgb(210,199,37)"/><text x="62.7500%" y="767.50">__rust_maybe_catch_panic</text></g><g><title>std::panicking::try::do_call (15 samples, 37.50%)</title><rect x="62.5000%" y="741" width="37.5000%" height="15" fill="rgb(244,192,49)"/><text x="62.7500%" y="751.50">std::panicking::try::do_call</text></g><g><title><std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce< (15 samples, 37.50%)</title><rect x="62.5000%" y="725" width="37.5000%" height="15" fill="rgb(226,211,11)"/><text x="62.7500%" y="735.50"><std::panic::AssertUnwindSafe<F> as core::ops::function::FnOn..</text></g><g><title>core::ops::function::FnOnce::call_once (15 samples, 37.50%)</title><rect x="62.5000%" y="709" width="37.5000%" height="15" fill="rgb(236,162,54)"/><text x="62.7500%" y="719.50">core::ops::function::FnOnce::call_once</text></g><g><title>tokio::task::harness::Harness<T,S>::poll::_{{closure}}::_{{closure}} (15 samples, 37.50%)</title><rect x="62.5000%" y="693" width="37.5000%" height="15" fill="rgb(220,229,9)"/><text x="62.7500%" y="703.50">tokio::task::harness::Harness<T,S>::poll::_{{closure}}::_{{cl..</text></g><g><title>tokio::task::core::Core<T>::poll (15 samples, 37.50%)</title><rect x="62.5000%" y="677" width="37.5000%" height="15" fill="rgb(250,87,22)"/><text x="62.7500%" y="687.50">tokio::task::core::Core<T>::poll</text></g><g><title><tokio::runtime::blocking::task::BlockingTask<T> as core::future::future::Future>::poll (15 samples, 37.50%)</title><rect x="62.5000%" y="661" width="37.5000%" height="15" fill="rgb(239,43,17)"/><text x="62.7500%" y="671.50"><tokio::runtime::blocking::task::BlockingTask<T> as core::fut..</text></g><g><title>tokio::runtime::thread_pool::Workers::spawn::_{{closure}}::_{{closure}} (15 samples, 37.50%)</title><rect x="62.5000%" y="645" width="37.5000%" height="15" fill="rgb(231,177,25)"/><text x="62.7500%" y="655.50">tokio::runtime::thread_pool::Workers::spawn::_{{closure}}::_{..</text></g><g><title>tokio::runtime::thread_pool::worker::Worker::run (15 samples, 37.50%)</title><rect x="62.5000%" y="629" width="37.5000%" height="15" fill="rgb(219,179,1)"/><text x="62.7500%" y="639.50">tokio::runtime::thread_pool::worker::Worker::run</text></g><g><title>tokio::runtime::thread_pool::current::set (15 samples, 37.50%)</title><rect x="62.5000%" y="613" width="37.5000%" height="15" fill="rgb(238,219,53)"/><text x="62.7500%" y="623.50">tokio::runtime::thread_pool::current::set</text></g><g><title>std::thread::local::LocalKey<T>::with (15 samples, 37.50%)</title><rect x="62.5000%" y="597" width="37.5000%" height="15" fill="rgb(232,167,36)"/><text x="62.7500%" y="607.50">std::thread::local::LocalKey<T>::with</text></g><g><title>std::thread::local::LocalKey<T>::try_with (15 samples, 37.50%)</title><rect x="62.5000%" y="581" width="37.5000%" height="15" fill="rgb(244,19,51)"/><text x="62.7500%" y="591.50">std::thread::local::LocalKey<T>::try_with</text></g><g><title>tokio::runtime::thread_pool::current::set::_{{closure}} (15 samples, 37.50%)</title><rect x="62.5000%" y="565" width="37.5000%" height="15" fill="rgb(224,6,22)"/><text x="62.7500%" y="575.50">tokio::runtime::thread_pool::current::set::_{{closure}}</text></g><g><title>tokio::runtime::thread_pool::worker::Worker::run::_{{closure}} (15 samples, 37.50%)</title><rect x="62.5000%" y="549" width="37.5000%" height="15" fill="rgb(224,145,5)"/><text x="62.7500%" y="559.50">tokio::runtime::thread_pool::worker::Worker::run::_{{closure}}</text></g><g><title>std::thread::local::LocalKey<T>::with (15 samples, 37.50%)</title><rect x="62.5000%" y="533" width="37.5000%" height="15" fill="rgb(234,130,49)"/><text x="62.7500%" y="543.50">std::thread::local::LocalKey<T>::with</text></g><g><title>std::thread::local::LocalKey<T>::try_with (15 samples, 37.50%)</title><rect x="62.5000%" y="517" width="37.5000%" height="15" fill="rgb(254,6,2)"/><text x="62.7500%" y="527.50">std::thread::local::LocalKey<T>::try_with</text></g><g><title>tokio::runtime::thread_pool::worker::Worker::run::_{{closure}}::_{{closure}} (15 samples, 37.50%)</title><rect x="62.5000%" y="501" width="37.5000%" height="15" fill="rgb(208,96,46)"/><text x="62.7500%" y="511.50">tokio::runtime::thread_pool::worker::Worker::run::_{{closure}..</text></g><g><title>tokio::runtime::thread_pool::worker::GenerationGuard::run (15 samples, 37.50%)</title><rect x="62.5000%" y="485" width="37.5000%" height="15" fill="rgb(239,3,39)"/><text x="62.7500%" y="495.50">tokio::runtime::thread_pool::worker::GenerationGuard::run</text></g><g><title>tokio::runtime::thread_pool::worker::GenerationGuard::process_available_work (2 samples, 5.00%)</title><rect x="95.0000%" y="469" width="5.0000%" height="15" fill="rgb(233,210,1)"/><text x="95.2500%" y="479.50">tokio:..</text></g><g><title>tokio::runtime::thread_pool::worker::GenerationGuard::run_task (2 samples, 5.00%)</title><rect x="95.0000%" y="453" width="5.0000%" height="15" fill="rgb(244,137,37)"/><text x="95.2500%" y="463.50">tokio:..</text></g><g><title>tokio::task::Task<S>::run (1 samples, 2.50%)</title><rect x="97.5000%" y="437" width="2.5000%" height="15" fill="rgb(240,136,2)"/><text x="97.7500%" y="447.50">to..</text></g><g><title>tokio::task::raw::RawTask::poll (1 samples, 2.50%)</title><rect x="97.5000%" y="421" width="2.5000%" height="15" fill="rgb(239,18,37)"/><text x="97.7500%" y="431.50">to..</text></g><g><title>tokio::task::harness::Harness<T,S>::poll (1 samples, 2.50%)</title><rect x="97.5000%" y="405" width="2.5000%" height="15" fill="rgb(218,185,22)"/><text x="97.7500%" y="415.50">to..</text></g><g><title>tokio::loom::std::causal_cell::CausalCell<T>::with_mut (1 samples, 2.50%)</title><rect x="97.5000%" y="389" width="2.5000%" height="15" fill="rgb(225,218,4)"/><text x="97.7500%" y="399.50">to..</text></g><g><title>tokio::task::harness::Harness<T,S>::poll::_{{closure}} (1 samples, 2.50%)</title><rect x="97.5000%" y="373" width="2.5000%" height="15" fill="rgb(230,182,32)"/><text x="97.7500%" y="383.50">to..</text></g><g><title>std::panic::catch_unwind (1 samples, 2.50%)</title><rect x="97.5000%" y="357" width="2.5000%" height="15" fill="rgb(242,56,43)"/><text x="97.7500%" y="367.50">st..</text></g><g><title>std::panicking::try (1 samples, 2.50%)</title><rect x="97.5000%" y="341" width="2.5000%" height="15" fill="rgb(233,99,24)"/><text x="97.7500%" y="351.50">st..</text></g><g><title>__rust_maybe_catch_panic (1 samples, 2.50%)</title><rect x="97.5000%" y="325" width="2.5000%" height="15" fill="rgb(234,209,42)"/><text x="97.7500%" y="335.50">__..</text></g><g><title>std::panicking::try::do_call (1 samples, 2.50%)</title><rect x="97.5000%" y="309" width="2.5000%" height="15" fill="rgb(227,7,12)"/><text x="97.7500%" y="319.50">st..</text></g><g><title><std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce< (1 samples, 2.50%)</title><rect x="97.5000%" y="293" width="2.5000%" height="15" fill="rgb(245,203,43)"/><text x="97.7500%" y="303.50"><s..</text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 2.50%)</title><rect x="97.5000%" y="277" width="2.5000%" height="15" fill="rgb(238,205,33)"/><text x="97.7500%" y="287.50">co..</text></g><g><title>tokio::task::harness::Harness<T,S>::poll::_{{closure}}::_{{closure}} (1 samples, 2.50%)</title><rect x="97.5000%" y="261" width="2.5000%" height="15" fill="rgb(231,56,7)"/><text x="97.7500%" y="271.50">to..</text></g><g><title>tokio::task::core::Core<T>::poll (1 samples, 2.50%)</title><rect x="97.5000%" y="245" width="2.5000%" height="15" fill="rgb(244,186,29)"/><text x="97.7500%" y="255.50">to..</text></g><g><title><quinn::connection::ConnectionDriver<S> as core::future::future::Future>::poll (1 samples, 2.50%)</title><rect x="97.5000%" y="229" width="2.5000%" height="15" fill="rgb(234,111,31)"/><text x="97.7500%" y="239.50"><q..</text></g><g><title>quinn::connection::ConnectionInner<S>::drive_transmit (1 samples, 2.50%)</title><rect x="97.5000%" y="213" width="2.5000%" height="15" fill="rgb(241,149,10)"/><text x="97.7500%" y="223.50">qu..</text></g><g><title>quinn_proto::connection::Connection<S>::poll_transmit (1 samples, 2.50%)</title><rect x="97.5000%" y="197" width="2.5000%" height="15" fill="rgb(249,206,44)"/><text x="97.7500%" y="207.50">qu..</text></g><g><title>quinn_proto::packet::PartialEncode::finish (1 samples, 2.50%)</title><rect x="97.5000%" y="181" width="2.5000%" height="15" fill="rgb(251,153,30)"/><text x="97.7500%" y="191.50">qu..</text></g><g><title><quinn_proto::crypto::ring::Crypto as quinn_proto::crypto::Keys>::encrypt (1 samples, 2.50%)</title><rect x="97.5000%" y="165" width="2.5000%" height="15" fill="rgb(239,152,38)"/><text x="97.7500%" y="175.50"><q..</text></g><g><title>ring::aead::LessSafeKey::seal_in_place_separate_tag (1 samples, 2.50%)</title><rect x="97.5000%" y="149" width="2.5000%" height="15" fill="rgb(249,139,47)"/><text x="97.7500%" y="159.50">ri..</text></g><g><title>ring::aead::seal_in_place_separate_tag_ (1 samples, 2.50%)</title><rect x="97.5000%" y="133" width="2.5000%" height="15" fill="rgb(244,64,35)"/><text x="97.7500%" y="143.50">ri..</text></g><g><title>ring::aead::chacha20_poly1305::chacha20_poly1305_seal (1 samples, 2.50%)</title><rect x="97.5000%" y="117" width="2.5000%" height="15" fill="rgb(216,46,15)"/><text x="97.7500%" y="127.50">ri..</text></g><g><title>ring::aead::chacha20_poly1305::aead (1 samples, 2.50%)</title><rect x="97.5000%" y="101" width="2.5000%" height="15" fill="rgb(250,74,19)"/><text x="97.7500%" y="111.50">ri..</text></g><g><title>ring::aead::chacha20_poly1305::derive_poly1305_key (1 samples, 2.50%)</title><rect x="97.5000%" y="85" width="2.5000%" height="15" fill="rgb(249,42,33)"/><text x="97.7500%" y="95.50">ri..</text></g><g><title>ring::aead::chacha::Key::encrypt_iv_xor_blocks_in_place (1 samples, 2.50%)</title><rect x="97.5000%" y="69" width="2.5000%" height="15" fill="rgb(242,149,17)"/><text x="97.7500%" y="79.50">ri..</text></g><g><title>ring::aead::chacha::Key::encrypt (1 samples, 2.50%)</title><rect x="97.5000%" y="53" width="2.5000%" height="15" fill="rgb(244,29,21)"/><text x="97.7500%" y="63.50">ri..</text></g><g><title>ChaCha20_ssse3 (1 samples, 2.50%)</title><rect x="97.5000%" y="37" width="2.5000%" height="15" fill="rgb(220,130,37)"/><text x="97.7500%" y="47.50">Ch..</text></g></svg></svg> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Server | |
| sudo perf record --call-graph=dwarf -g target/debug/server \ | |
| -k ~/.local/share/quinn-examples/key.der -c ~/.local/share/quinn-examples/cert.der | |
| # Client | |
| time cargo run --example=h3_client -- --ca ~/.local/share/quinn-examples/cert.der https://localhost/500000000 | |
| # Generate graph | |
| perf script | ../flamegraph/stackcollapse-perf.pl | ./rust-unmangle | ../flamegraph/flamegraph.pl > flame.svg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment