Skip to content

Instantly share code, notes, and snippets.

@Geal

Geal/Cargo.toml Secret

Last active October 8, 2021 14:49
Show Gist options
  • Save Geal/0b9588bdeaa05e1494636e63ef431f96 to your computer and use it in GitHub Desktop.
Save Geal/0b9588bdeaa05e1494636e63ef431f96 to your computer and use it in GitHub Desktop.
[package]
name = "jaeger-test"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
opentelemetry = { git = "https://github.com/open-telemetry/opentelemetry-rust.git", features = ["rt-tokio"] }#, rev = "414b3f459" }
opentelemetry-otlp = { git = "https://github.com/open-telemetry/opentelemetry-rust.git"} #, rev = "414b3f459" }
opentelemetry-jaeger = { git = "https://github.com/open-telemetry/opentelemetry-rust.git", features = ["rt-tokio"]} #, rev = "414b3f459" }
tokio = { version = "1.12.0", features = ["full"] }
tracing = "0.1.29"
tracing-opentelemetry = "0.15.0"
tracing-subscriber = "0.2.25"
tracing-futures = { version = "0.2.5", features = [ "tokio" ] }
futures = "0.3.17"
[patch.crates-io]
opentelemetry = { git = "https://github.com/open-telemetry/opentelemetry-rust.git" }#, rev = "414b3f459" }
opentelemetry-otlp = { git = "https://github.com/open-telemetry/opentelemetry-rust.git"} #, rev = "414b3f459" }
opentelemetry-jaeger = { git = "https://github.com/open-telemetry/opentelemetry-rust.git"} #, rev = "414b3f459" }
[profile.release]
debug = true
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="1670" onload="init(evt)" viewBox="0 0 1200 1670" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--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");
total_samples = parseInt(frames.attributes.total_samples.value);
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["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg: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["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg: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.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
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, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
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 = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
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 = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].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) >= 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 >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
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];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
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 = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg: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.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
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="1670" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="1653.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="1653.00"> </text><svg id="frames" x="10" width="1180" total_samples="229"><g><title>std::rt::lang_start::{{closure}} (19 samples, 8.30%)</title><rect x="0.0000%" y="1573" width="8.2969%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1583.50">std::rt::lan..</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (19 samples, 8.30%)</title><rect x="0.0000%" y="1557" width="8.2969%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1567.50">std::sys_com..</text></g><g><title>core::ops::function::FnOnce::call_once (19 samples, 8.30%)</title><rect x="0.0000%" y="1541" width="8.2969%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1551.50">core::ops::f..</text></g><g><title>jaeger_test::main (19 samples, 8.30%)</title><rect x="0.0000%" y="1525" width="8.2969%" height="15" fill="rgb(248,212,6)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1535.50">jaeger_test:..</text></g><g><title>tokio::runtime::Runtime::block_on (19 samples, 8.30%)</title><rect x="0.0000%" y="1509" width="8.2969%" height="15" fill="rgb(208,68,35)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1519.50">tokio::runti..</text></g><g><title>tokio::runtime::thread_pool::ThreadPool::block_on (19 samples, 8.30%)</title><rect x="0.0000%" y="1493" width="8.2969%" height="15" fill="rgb(232,128,0)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1503.50">tokio::runti..</text></g><g><title>tokio::runtime::enter::Enter::block_on (19 samples, 8.30%)</title><rect x="0.0000%" y="1477" width="8.2969%" height="15" fill="rgb(207,160,47)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1487.50">tokio::runti..</text></g><g><title>tokio::park::thread::CachedParkThread::block_on (19 samples, 8.30%)</title><rect x="0.0000%" y="1461" width="8.2969%" height="15" fill="rgb(228,23,34)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1471.50">tokio::park:..</text></g><g><title>&lt;tokio::park::thread::CachedParkThread as tokio::park::Park&gt;::park (19 samples, 8.30%)</title><rect x="0.0000%" y="1445" width="8.2969%" height="15" fill="rgb(218,30,26)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1455.50">&lt;tokio::park..</text></g><g><title>tokio::park::thread::CachedParkThread::with_current (19 samples, 8.30%)</title><rect x="0.0000%" y="1429" width="8.2969%" height="15" fill="rgb(220,122,19)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1439.50">tokio::park:..</text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (19 samples, 8.30%)</title><rect x="0.0000%" y="1413" width="8.2969%" height="15" fill="rgb(250,228,42)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1423.50">std::thread:..</text></g><g><title>tokio::park::thread::CachedParkThread::with_current::{{closure}} (19 samples, 8.30%)</title><rect x="0.0000%" y="1397" width="8.2969%" height="15" fill="rgb(240,193,28)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1407.50">tokio::park:..</text></g><g><title>&lt;tokio::park::thread::CachedParkThread as tokio::park::Park&gt;::park::{{closure}} (19 samples, 8.30%)</title><rect x="0.0000%" y="1381" width="8.2969%" height="15" fill="rgb(216,20,37)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1391.50">&lt;tokio::park..</text></g><g><title>tokio::park::thread::Inner::park (19 samples, 8.30%)</title><rect x="0.0000%" y="1365" width="8.2969%" height="15" fill="rgb(206,188,39)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1375.50">tokio::park:..</text></g><g><title>tokio::loom::std::parking_lot::Condvar::wait (19 samples, 8.30%)</title><rect x="0.0000%" y="1349" width="8.2969%" height="15" fill="rgb(217,207,13)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1359.50">tokio::loom:..</text></g><g><title>parking_lot::condvar::Condvar::wait (19 samples, 8.30%)</title><rect x="0.0000%" y="1333" width="8.2969%" height="15" fill="rgb(231,73,38)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1343.50">parking_lot:..</text></g><g><title>parking_lot::condvar::Condvar::wait_until_internal (19 samples, 8.30%)</title><rect x="0.0000%" y="1317" width="8.2969%" height="15" fill="rgb(225,20,46)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1327.50">parking_lot:..</text></g><g><title>parking_lot_core::parking_lot::park (19 samples, 8.30%)</title><rect x="0.0000%" y="1301" width="8.2969%" height="15" fill="rgb(210,31,41)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1311.50">parking_lot_..</text></g><g><title>parking_lot_core::parking_lot::with_thread_data (19 samples, 8.30%)</title><rect x="0.0000%" y="1285" width="8.2969%" height="15" fill="rgb(221,200,47)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1295.50">parking_lot_..</text></g><g><title>parking_lot_core::parking_lot::park::{{closure}} (19 samples, 8.30%)</title><rect x="0.0000%" y="1269" width="8.2969%" height="15" fill="rgb(226,26,5)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1279.50">parking_lot_..</text></g><g><title>&lt;parking_lot_core::thread_parker::imp::ThreadParker as parking_lot_core::thread_parker::ThreadParkerT&gt;::park (19 samples, 8.30%)</title><rect x="0.0000%" y="1253" width="8.2969%" height="15" fill="rgb(249,33,26)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1263.50">&lt;parking_lot..</text></g><g><title>parking_lot_core::thread_parker::imp::ThreadParker::futex_wait (19 samples, 8.30%)</title><rect x="0.0000%" y="1237" width="8.2969%" height="15" fill="rgb(235,183,28)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1247.50">parking_lot_..</text></g><g><title>syscall (19 samples, 8.30%)</title><rect x="0.0000%" y="1221" width="8.2969%" height="15" fill="rgb(221,5,38)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1231.50">syscall</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="1205" width="8.2969%" height="15" fill="rgb(247,18,42)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1215.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="1189" width="8.2969%" height="15" fill="rgb(241,131,45)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1199.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="1173" width="8.2969%" height="15" fill="rgb(249,31,29)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1183.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="1157" width="8.2969%" height="15" fill="rgb(225,111,53)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1167.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="1141" width="8.2969%" height="15" fill="rgb(238,160,17)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1151.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="1125" width="8.2969%" height="15" fill="rgb(214,148,48)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1135.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="1109" width="8.2969%" height="15" fill="rgb(232,36,49)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1119.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="1093" width="8.2969%" height="15" fill="rgb(209,103,24)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1103.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="1077" width="8.2969%" height="15" fill="rgb(229,88,8)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1087.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="1061" width="8.2969%" height="15" fill="rgb(213,181,19)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1071.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="1045" width="8.2969%" height="15" fill="rgb(254,191,54)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1055.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="1029" width="8.2969%" height="15" fill="rgb(241,83,37)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1039.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="1013" width="8.2969%" height="15" fill="rgb(233,36,39)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1023.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="0.0000%" y="997" width="8.2969%" height="15" fill="rgb(226,3,54)" fg:x="0" fg:w="19"/><text x="0.2500%" y="1007.50">[unknown]</text></g><g><title>tracing::span::Span::new (1 samples, 0.44%)</title><rect x="8.2969%" y="1397" width="0.4367%" height="15" fill="rgb(245,192,40)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1407.50"></text></g><g><title>tracing_core::dispatcher::get_default (1 samples, 0.44%)</title><rect x="8.2969%" y="1381" width="0.4367%" height="15" fill="rgb(238,167,29)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1391.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1 samples, 0.44%)</title><rect x="8.2969%" y="1365" width="0.4367%" height="15" fill="rgb(232,182,51)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1375.50"></text></g><g><title>tracing_core::dispatcher::get_default::{{closure}} (1 samples, 0.44%)</title><rect x="8.2969%" y="1349" width="0.4367%" height="15" fill="rgb(231,60,39)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1359.50"></text></g><g><title>tracing::span::Span::new::{{closure}} (1 samples, 0.44%)</title><rect x="8.2969%" y="1333" width="0.4367%" height="15" fill="rgb(208,69,12)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1343.50"></text></g><g><title>tracing::span::Span::new_with (1 samples, 0.44%)</title><rect x="8.2969%" y="1317" width="0.4367%" height="15" fill="rgb(235,93,37)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1327.50"></text></g><g><title>tracing::span::Span::make_with (1 samples, 0.44%)</title><rect x="8.2969%" y="1301" width="0.4367%" height="15" fill="rgb(213,116,39)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1311.50"></text></g><g><title>tracing_core::dispatcher::Dispatch::new_span (1 samples, 0.44%)</title><rect x="8.2969%" y="1285" width="0.4367%" height="15" fill="rgb(222,207,29)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1295.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;dyn tracing_core::subscriber::Subscriber+core::marker::Send+core::marker::Sync&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (1 samples, 0.44%)</title><rect x="8.2969%" y="1269" width="0.4367%" height="15" fill="rgb(206,96,30)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1279.50"></text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (1 samples, 0.44%)</title><rect x="8.2969%" y="1253" width="0.4367%" height="15" fill="rgb(218,138,4)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1263.50"></text></g><g><title>&lt;tracing_subscriber::fmt::Subscriber&lt;N,E,F,W&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (1 samples, 0.44%)</title><rect x="8.2969%" y="1237" width="0.4367%" height="15" fill="rgb(250,191,14)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1247.50"></text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (1 samples, 0.44%)</title><rect x="8.2969%" y="1221" width="0.4367%" height="15" fill="rgb(239,60,40)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1231.50"></text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (1 samples, 0.44%)</title><rect x="8.2969%" y="1205" width="0.4367%" height="15" fill="rgb(206,27,48)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1215.50"></text></g><g><title>&lt;tracing_subscriber::fmt::fmt_layer::Layer&lt;S,N,E,W&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::new_span (1 samples, 0.44%)</title><rect x="8.2969%" y="1189" width="0.4367%" height="15" fill="rgb(225,35,8)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1199.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsMut::insert (1 samples, 0.44%)</title><rect x="8.2969%" y="1173" width="0.4367%" height="15" fill="rgb(250,213,24)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1183.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsMut::replace (1 samples, 0.44%)</title><rect x="8.2969%" y="1157" width="0.4367%" height="15" fill="rgb(247,123,22)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1167.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsInner::insert (1 samples, 0.44%)</title><rect x="8.2969%" y="1141" width="0.4367%" height="15" fill="rgb(231,138,38)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1151.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::insert (1 samples, 0.44%)</title><rect x="8.2969%" y="1125" width="0.4367%" height="15" fill="rgb(231,145,46)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1135.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (1 samples, 0.44%)</title><rect x="8.2969%" y="1109" width="0.4367%" height="15" fill="rgb(251,118,11)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1119.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::insert (1 samples, 0.44%)</title><rect x="8.2969%" y="1093" width="0.4367%" height="15" fill="rgb(217,147,25)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1103.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve (1 samples, 0.44%)</title><rect x="8.2969%" y="1077" width="0.4367%" height="15" fill="rgb(247,81,37)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1087.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash (1 samples, 0.44%)</title><rect x="8.2969%" y="1061" width="0.4367%" height="15" fill="rgb(209,12,38)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1071.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::resize (1 samples, 0.44%)</title><rect x="8.2969%" y="1045" width="0.4367%" height="15" fill="rgb(227,1,9)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1055.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::prepare_resize (1 samples, 0.44%)</title><rect x="8.2969%" y="1029" width="0.4367%" height="15" fill="rgb(248,47,43)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1039.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::fallible_with_capacity (1 samples, 0.44%)</title><rect x="8.2969%" y="1013" width="0.4367%" height="15" fill="rgb(221,10,30)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1023.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::new_uninitialized (1 samples, 0.44%)</title><rect x="8.2969%" y="997" width="0.4367%" height="15" fill="rgb(210,229,1)" fg:x="19" fg:w="1"/><text x="8.5469%" y="1007.50"></text></g><g><title>hashbrown::raw::alloc::inner::do_alloc (1 samples, 0.44%)</title><rect x="8.2969%" y="981" width="0.4367%" height="15" fill="rgb(222,148,37)" fg:x="19" fg:w="1"/><text x="8.5469%" y="991.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.44%)</title><rect x="8.2969%" y="965" width="0.4367%" height="15" fill="rgb(234,67,33)" fg:x="19" fg:w="1"/><text x="8.5469%" y="975.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.44%)</title><rect x="8.2969%" y="949" width="0.4367%" height="15" fill="rgb(247,98,35)" fg:x="19" fg:w="1"/><text x="8.5469%" y="959.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.44%)</title><rect x="8.2969%" y="933" width="0.4367%" height="15" fill="rgb(247,138,52)" fg:x="19" fg:w="1"/><text x="8.5469%" y="943.50"></text></g><g><title>__libc_malloc (1 samples, 0.44%)</title><rect x="8.2969%" y="917" width="0.4367%" height="15" fill="rgb(213,79,30)" fg:x="19" fg:w="1"/><text x="8.5469%" y="927.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="8.2969%" y="901" width="0.4367%" height="15" fill="rgb(246,177,23)" fg:x="19" fg:w="1"/><text x="8.5469%" y="911.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.2969%" y="885" width="0.4367%" height="15" fill="rgb(230,62,27)" fg:x="19" fg:w="1"/><text x="8.5469%" y="895.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.2969%" y="869" width="0.4367%" height="15" fill="rgb(216,154,8)" fg:x="19" fg:w="1"/><text x="8.5469%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.2969%" y="853" width="0.4367%" height="15" fill="rgb(244,35,45)" fg:x="19" fg:w="1"/><text x="8.5469%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.2969%" y="837" width="0.4367%" height="15" fill="rgb(251,115,12)" fg:x="19" fg:w="1"/><text x="8.5469%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.2969%" y="821" width="0.4367%" height="15" fill="rgb(240,54,50)" fg:x="19" fg:w="1"/><text x="8.5469%" y="831.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.2969%" y="805" width="0.4367%" height="15" fill="rgb(233,84,52)" fg:x="19" fg:w="1"/><text x="8.5469%" y="815.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.2969%" y="789" width="0.4367%" height="15" fill="rgb(207,117,47)" fg:x="19" fg:w="1"/><text x="8.5469%" y="799.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.2969%" y="773" width="0.4367%" height="15" fill="rgb(249,43,39)" fg:x="19" fg:w="1"/><text x="8.5469%" y="783.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.2969%" y="757" width="0.4367%" height="15" fill="rgb(209,38,44)" fg:x="19" fg:w="1"/><text x="8.5469%" y="767.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.2969%" y="741" width="0.4367%" height="15" fill="rgb(236,212,23)" fg:x="19" fg:w="1"/><text x="8.5469%" y="751.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.2969%" y="725" width="0.4367%" height="15" fill="rgb(242,79,21)" fg:x="19" fg:w="1"/><text x="8.5469%" y="735.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.2969%" y="709" width="0.4367%" height="15" fill="rgb(211,96,35)" fg:x="19" fg:w="1"/><text x="8.5469%" y="719.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.2969%" y="693" width="0.4367%" height="15" fill="rgb(253,215,40)" fg:x="19" fg:w="1"/><text x="8.5469%" y="703.50"></text></g><g><title>[unknown] (21 samples, 9.17%)</title><rect x="0.0000%" y="1589" width="9.1703%" height="15" fill="rgb(211,81,21)" fg:x="0" fg:w="21"/><text x="0.2500%" y="1599.50">[unknown]</text></g><g><title>tokio::park::thread::CachedParkThread::block_on (2 samples, 0.87%)</title><rect x="8.2969%" y="1573" width="0.8734%" height="15" fill="rgb(208,190,38)" fg:x="19" fg:w="2"/><text x="8.5469%" y="1583.50"></text></g><g><title>tokio::coop::budget (2 samples, 0.87%)</title><rect x="8.2969%" y="1557" width="0.8734%" height="15" fill="rgb(235,213,38)" fg:x="19" fg:w="2"/><text x="8.5469%" y="1567.50"></text></g><g><title>tokio::coop::with_budget (2 samples, 0.87%)</title><rect x="8.2969%" y="1541" width="0.8734%" height="15" fill="rgb(237,122,38)" fg:x="19" fg:w="2"/><text x="8.5469%" y="1551.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (2 samples, 0.87%)</title><rect x="8.2969%" y="1525" width="0.8734%" height="15" fill="rgb(244,218,35)" fg:x="19" fg:w="2"/><text x="8.5469%" y="1535.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (2 samples, 0.87%)</title><rect x="8.2969%" y="1509" width="0.8734%" height="15" fill="rgb(240,68,47)" fg:x="19" fg:w="2"/><text x="8.5469%" y="1519.50"></text></g><g><title>tokio::coop::with_budget::{{closure}} (2 samples, 0.87%)</title><rect x="8.2969%" y="1493" width="0.8734%" height="15" fill="rgb(210,16,53)" fg:x="19" fg:w="2"/><text x="8.5469%" y="1503.50"></text></g><g><title>tokio::park::thread::CachedParkThread::block_on::{{closure}} (2 samples, 0.87%)</title><rect x="8.2969%" y="1477" width="0.8734%" height="15" fill="rgb(235,124,12)" fg:x="19" fg:w="2"/><text x="8.5469%" y="1487.50"></text></g><g><title>&lt;core::future::from_generator::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll (2 samples, 0.87%)</title><rect x="8.2969%" y="1461" width="0.8734%" height="15" fill="rgb(224,169,11)" fg:x="19" fg:w="2"/><text x="8.5469%" y="1471.50"></text></g><g><title>jaeger_test::main::{{closure}} (2 samples, 0.87%)</title><rect x="8.2969%" y="1445" width="0.8734%" height="15" fill="rgb(250,166,2)" fg:x="19" fg:w="2"/><text x="8.5469%" y="1455.50"></text></g><g><title>&lt;core::future::from_generator::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll (2 samples, 0.87%)</title><rect x="8.2969%" y="1429" width="0.8734%" height="15" fill="rgb(242,216,29)" fg:x="19" fg:w="2"/><text x="8.5469%" y="1439.50"></text></g><g><title>jaeger_test::run::{{closure}} (2 samples, 0.87%)</title><rect x="8.2969%" y="1413" width="0.8734%" height="15" fill="rgb(230,116,27)" fg:x="19" fg:w="2"/><text x="8.5469%" y="1423.50"></text></g><g><title>tracing_core::event::Event::dispatch (1 samples, 0.44%)</title><rect x="8.7336%" y="1397" width="0.4367%" height="15" fill="rgb(228,99,48)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1407.50"></text></g><g><title>tracing_core::dispatcher::get_default (1 samples, 0.44%)</title><rect x="8.7336%" y="1381" width="0.4367%" height="15" fill="rgb(253,11,6)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1391.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1 samples, 0.44%)</title><rect x="8.7336%" y="1365" width="0.4367%" height="15" fill="rgb(247,143,39)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1375.50"></text></g><g><title>tracing_core::dispatcher::get_default::{{closure}} (1 samples, 0.44%)</title><rect x="8.7336%" y="1349" width="0.4367%" height="15" fill="rgb(236,97,10)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1359.50"></text></g><g><title>tracing_core::event::Event::dispatch::{{closure}} (1 samples, 0.44%)</title><rect x="8.7336%" y="1333" width="0.4367%" height="15" fill="rgb(233,208,19)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1343.50"></text></g><g><title>tracing_core::dispatcher::Dispatch::event (1 samples, 0.44%)</title><rect x="8.7336%" y="1317" width="0.4367%" height="15" fill="rgb(216,164,2)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1327.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;dyn tracing_core::subscriber::Subscriber+core::marker::Send+core::marker::Sync&gt; as tracing_core::subscriber::Subscriber&gt;::event (1 samples, 0.44%)</title><rect x="8.7336%" y="1301" width="0.4367%" height="15" fill="rgb(220,129,5)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1311.50"></text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::event (1 samples, 0.44%)</title><rect x="8.7336%" y="1285" width="0.4367%" height="15" fill="rgb(242,17,10)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1295.50"></text></g><g><title>&lt;tracing_subscriber::fmt::Subscriber&lt;N,E,F,W&gt; as tracing_core::subscriber::Subscriber&gt;::event (1 samples, 0.44%)</title><rect x="8.7336%" y="1269" width="0.4367%" height="15" fill="rgb(242,107,0)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1279.50"></text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::event (1 samples, 0.44%)</title><rect x="8.7336%" y="1253" width="0.4367%" height="15" fill="rgb(251,28,31)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1263.50"></text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::event (1 samples, 0.44%)</title><rect x="8.7336%" y="1237" width="0.4367%" height="15" fill="rgb(233,223,10)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1247.50"></text></g><g><title>&lt;tracing_subscriber::fmt::fmt_layer::Layer&lt;S,N,E,W&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::on_event (1 samples, 0.44%)</title><rect x="8.7336%" y="1221" width="0.4367%" height="15" fill="rgb(215,21,27)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1231.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (1 samples, 0.44%)</title><rect x="8.7336%" y="1205" width="0.4367%" height="15" fill="rgb(232,23,21)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1215.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1 samples, 0.44%)</title><rect x="8.7336%" y="1189" width="0.4367%" height="15" fill="rgb(244,5,23)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1199.50"></text></g><g><title>&lt;tracing_subscriber::fmt::fmt_layer::Layer&lt;S,N,E,W&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::on_event::{{closure}} (1 samples, 0.44%)</title><rect x="8.7336%" y="1173" width="0.4367%" height="15" fill="rgb(226,81,46)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1183.50"></text></g><g><title>&lt;tracing_subscriber::fmt::format::Format&lt;tracing_subscriber::fmt::format::Full,T&gt; as tracing_subscriber::fmt::format::FormatEvent&lt;S,N&gt;&gt;::format_event (1 samples, 0.44%)</title><rect x="8.7336%" y="1157" width="0.4367%" height="15" fill="rgb(247,70,30)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1167.50"></text></g><g><title>tracing_subscriber::fmt::format::Format&lt;F,T&gt;::format_timestamp (1 samples, 0.44%)</title><rect x="8.7336%" y="1141" width="0.4367%" height="15" fill="rgb(212,68,19)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1151.50"></text></g><g><title>&lt;tracing_subscriber::fmt::time::SystemTime as tracing_subscriber::fmt::time::FormatTime&gt;::format_time (1 samples, 0.44%)</title><rect x="8.7336%" y="1125" width="0.4367%" height="15" fill="rgb(240,187,13)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1135.50"></text></g><g><title>chrono::offset::local::Local::now (1 samples, 0.44%)</title><rect x="8.7336%" y="1109" width="0.4367%" height="15" fill="rgb(223,113,26)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1119.50"></text></g><g><title>chrono::sys::Timespec::local (1 samples, 0.44%)</title><rect x="8.7336%" y="1093" width="0.4367%" height="15" fill="rgb(206,192,2)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1103.50"></text></g><g><title>chrono::sys::inner::time_to_local_tm (1 samples, 0.44%)</title><rect x="8.7336%" y="1077" width="0.4367%" height="15" fill="rgb(241,108,4)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1087.50"></text></g><g><title>localtime_r (1 samples, 0.44%)</title><rect x="8.7336%" y="1061" width="0.4367%" height="15" fill="rgb(247,173,49)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1071.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.7336%" y="1045" width="0.4367%" height="15" fill="rgb(224,114,35)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1055.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.7336%" y="1029" width="0.4367%" height="15" fill="rgb(245,159,27)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1039.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.7336%" y="1013" width="0.4367%" height="15" fill="rgb(245,172,44)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.7336%" y="997" width="0.4367%" height="15" fill="rgb(236,23,11)" fg:x="20" fg:w="1"/><text x="8.9836%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.7336%" y="981" width="0.4367%" height="15" fill="rgb(205,117,38)" fg:x="20" fg:w="1"/><text x="8.9836%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.7336%" y="965" width="0.4367%" height="15" fill="rgb(237,72,25)" fg:x="20" fg:w="1"/><text x="8.9836%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.7336%" y="949" width="0.4367%" height="15" fill="rgb(244,70,9)" fg:x="20" fg:w="1"/><text x="8.9836%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.7336%" y="933" width="0.4367%" height="15" fill="rgb(217,125,39)" fg:x="20" fg:w="1"/><text x="8.9836%" y="943.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.7336%" y="917" width="0.4367%" height="15" fill="rgb(235,36,10)" fg:x="20" fg:w="1"/><text x="8.9836%" y="927.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.7336%" y="901" width="0.4367%" height="15" fill="rgb(251,123,47)" fg:x="20" fg:w="1"/><text x="8.9836%" y="911.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.7336%" y="885" width="0.4367%" height="15" fill="rgb(221,13,13)" fg:x="20" fg:w="1"/><text x="8.9836%" y="895.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.7336%" y="869" width="0.4367%" height="15" fill="rgb(238,131,9)" fg:x="20" fg:w="1"/><text x="8.9836%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="8.7336%" y="853" width="0.4367%" height="15" fill="rgb(211,50,8)" fg:x="20" fg:w="1"/><text x="8.9836%" y="863.50"></text></g><g><title>tokio::loom::std::parking_lot::Mutex&lt;T&gt;::lock (3 samples, 1.31%)</title><rect x="9.1703%" y="1221" width="1.3100%" height="15" fill="rgb(245,182,24)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1231.50"></text></g><g><title>lock_api::mutex::Mutex&lt;R,T&gt;::lock (3 samples, 1.31%)</title><rect x="9.1703%" y="1205" width="1.3100%" height="15" fill="rgb(242,14,37)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1215.50"></text></g><g><title>&lt;parking_lot::raw_mutex::RawMutex as lock_api::mutex::RawMutex&gt;::lock (3 samples, 1.31%)</title><rect x="9.1703%" y="1189" width="1.3100%" height="15" fill="rgb(246,228,12)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1199.50"></text></g><g><title>parking_lot::raw_mutex::RawMutex::lock_slow (3 samples, 1.31%)</title><rect x="9.1703%" y="1173" width="1.3100%" height="15" fill="rgb(213,55,15)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1183.50"></text></g><g><title>parking_lot_core::parking_lot::park (3 samples, 1.31%)</title><rect x="9.1703%" y="1157" width="1.3100%" height="15" fill="rgb(209,9,3)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1167.50"></text></g><g><title>parking_lot_core::parking_lot::with_thread_data (3 samples, 1.31%)</title><rect x="9.1703%" y="1141" width="1.3100%" height="15" fill="rgb(230,59,30)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1151.50"></text></g><g><title>parking_lot_core::parking_lot::park::{{closure}} (3 samples, 1.31%)</title><rect x="9.1703%" y="1125" width="1.3100%" height="15" fill="rgb(209,121,21)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1135.50"></text></g><g><title>&lt;parking_lot_core::thread_parker::imp::ThreadParker as parking_lot_core::thread_parker::ThreadParkerT&gt;::park (3 samples, 1.31%)</title><rect x="9.1703%" y="1109" width="1.3100%" height="15" fill="rgb(220,109,13)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1119.50"></text></g><g><title>parking_lot_core::thread_parker::imp::ThreadParker::futex_wait (3 samples, 1.31%)</title><rect x="9.1703%" y="1093" width="1.3100%" height="15" fill="rgb(232,18,1)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1103.50"></text></g><g><title>syscall (3 samples, 1.31%)</title><rect x="9.1703%" y="1077" width="1.3100%" height="15" fill="rgb(215,41,42)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1087.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="1061" width="1.3100%" height="15" fill="rgb(224,123,36)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1071.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="1045" width="1.3100%" height="15" fill="rgb(240,125,3)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1055.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="1029" width="1.3100%" height="15" fill="rgb(205,98,50)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1039.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="1013" width="1.3100%" height="15" fill="rgb(205,185,37)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1023.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="997" width="1.3100%" height="15" fill="rgb(238,207,15)" fg:x="21" fg:w="3"/><text x="9.4203%" y="1007.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="981" width="1.3100%" height="15" fill="rgb(213,199,42)" fg:x="21" fg:w="3"/><text x="9.4203%" y="991.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="965" width="1.3100%" height="15" fill="rgb(235,201,11)" fg:x="21" fg:w="3"/><text x="9.4203%" y="975.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="949" width="1.3100%" height="15" fill="rgb(207,46,11)" fg:x="21" fg:w="3"/><text x="9.4203%" y="959.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="933" width="1.3100%" height="15" fill="rgb(241,35,35)" fg:x="21" fg:w="3"/><text x="9.4203%" y="943.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="917" width="1.3100%" height="15" fill="rgb(243,32,47)" fg:x="21" fg:w="3"/><text x="9.4203%" y="927.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="901" width="1.3100%" height="15" fill="rgb(247,202,23)" fg:x="21" fg:w="3"/><text x="9.4203%" y="911.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="885" width="1.3100%" height="15" fill="rgb(219,102,11)" fg:x="21" fg:w="3"/><text x="9.4203%" y="895.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="869" width="1.3100%" height="15" fill="rgb(243,110,44)" fg:x="21" fg:w="3"/><text x="9.4203%" y="879.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="9.1703%" y="853" width="1.3100%" height="15" fill="rgb(222,74,54)" fg:x="21" fg:w="3"/><text x="9.4203%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.4803%" y="1141" width="0.4367%" height="15" fill="rgb(216,99,12)" fg:x="24" fg:w="1"/><text x="10.7303%" y="1151.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.4803%" y="1125" width="0.4367%" height="15" fill="rgb(226,22,26)" fg:x="24" fg:w="1"/><text x="10.7303%" y="1135.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.4803%" y="1109" width="0.4367%" height="15" fill="rgb(217,163,10)" fg:x="24" fg:w="1"/><text x="10.7303%" y="1119.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.4803%" y="1093" width="0.4367%" height="15" fill="rgb(213,25,53)" fg:x="24" fg:w="1"/><text x="10.7303%" y="1103.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.4803%" y="1077" width="0.4367%" height="15" fill="rgb(252,105,26)" fg:x="24" fg:w="1"/><text x="10.7303%" y="1087.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.4803%" y="1061" width="0.4367%" height="15" fill="rgb(220,39,43)" fg:x="24" fg:w="1"/><text x="10.7303%" y="1071.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.4803%" y="1045" width="0.4367%" height="15" fill="rgb(229,68,48)" fg:x="24" fg:w="1"/><text x="10.7303%" y="1055.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.4803%" y="1029" width="0.4367%" height="15" fill="rgb(252,8,32)" fg:x="24" fg:w="1"/><text x="10.7303%" y="1039.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.4803%" y="1013" width="0.4367%" height="15" fill="rgb(223,20,43)" fg:x="24" fg:w="1"/><text x="10.7303%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.4803%" y="997" width="0.4367%" height="15" fill="rgb(229,81,49)" fg:x="24" fg:w="1"/><text x="10.7303%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.4803%" y="981" width="0.4367%" height="15" fill="rgb(236,28,36)" fg:x="24" fg:w="1"/><text x="10.7303%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.4803%" y="965" width="0.4367%" height="15" fill="rgb(249,185,26)" fg:x="24" fg:w="1"/><text x="10.7303%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.4803%" y="949" width="0.4367%" height="15" fill="rgb(249,174,33)" fg:x="24" fg:w="1"/><text x="10.7303%" y="959.50"></text></g><g><title>_start (5 samples, 2.18%)</title><rect x="9.1703%" y="1589" width="2.1834%" height="15" fill="rgb(233,201,37)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1599.50">_..</text></g><g><title>__libc_start_main (5 samples, 2.18%)</title><rect x="9.1703%" y="1573" width="2.1834%" height="15" fill="rgb(221,78,26)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1583.50">_..</text></g><g><title>main (5 samples, 2.18%)</title><rect x="9.1703%" y="1557" width="2.1834%" height="15" fill="rgb(250,127,30)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1567.50">m..</text></g><g><title>std::rt::lang_start_internal (5 samples, 2.18%)</title><rect x="9.1703%" y="1541" width="2.1834%" height="15" fill="rgb(230,49,44)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1551.50">s..</text></g><g><title>std::panic::catch_unwind (5 samples, 2.18%)</title><rect x="9.1703%" y="1525" width="2.1834%" height="15" fill="rgb(229,67,23)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1535.50">s..</text></g><g><title>std::panicking::try (5 samples, 2.18%)</title><rect x="9.1703%" y="1509" width="2.1834%" height="15" fill="rgb(249,83,47)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1519.50">s..</text></g><g><title>std::panicking::try::do_call (5 samples, 2.18%)</title><rect x="9.1703%" y="1493" width="2.1834%" height="15" fill="rgb(215,43,3)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1503.50">s..</text></g><g><title>std::rt::lang_start_internal::{{closure}} (5 samples, 2.18%)</title><rect x="9.1703%" y="1477" width="2.1834%" height="15" fill="rgb(238,154,13)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1487.50">s..</text></g><g><title>std::panic::catch_unwind (5 samples, 2.18%)</title><rect x="9.1703%" y="1461" width="2.1834%" height="15" fill="rgb(219,56,2)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1471.50">s..</text></g><g><title>std::panicking::try (5 samples, 2.18%)</title><rect x="9.1703%" y="1445" width="2.1834%" height="15" fill="rgb(233,0,4)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1455.50">s..</text></g><g><title>std::panicking::try::do_call (5 samples, 2.18%)</title><rect x="9.1703%" y="1429" width="2.1834%" height="15" fill="rgb(235,30,7)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1439.50">s..</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once (5 samples, 2.18%)</title><rect x="9.1703%" y="1413" width="2.1834%" height="15" fill="rgb(250,79,13)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1423.50">c..</text></g><g><title>std::rt::lang_start::{{closure}} (5 samples, 2.18%)</title><rect x="9.1703%" y="1397" width="2.1834%" height="15" fill="rgb(211,146,34)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1407.50">s..</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (5 samples, 2.18%)</title><rect x="9.1703%" y="1381" width="2.1834%" height="15" fill="rgb(228,22,38)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1391.50">s..</text></g><g><title>core::ops::function::FnOnce::call_once (5 samples, 2.18%)</title><rect x="9.1703%" y="1365" width="2.1834%" height="15" fill="rgb(235,168,5)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1375.50">c..</text></g><g><title>jaeger_test::main (5 samples, 2.18%)</title><rect x="9.1703%" y="1349" width="2.1834%" height="15" fill="rgb(221,155,16)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1359.50">j..</text></g><g><title>tokio::runtime::builder::Builder::build (5 samples, 2.18%)</title><rect x="9.1703%" y="1333" width="2.1834%" height="15" fill="rgb(215,215,53)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1343.50">t..</text></g><g><title>tokio::runtime::builder::Builder::build_threaded_runtime (5 samples, 2.18%)</title><rect x="9.1703%" y="1317" width="2.1834%" height="15" fill="rgb(223,4,10)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1327.50">t..</text></g><g><title>tokio::runtime::thread_pool::worker::Launch::launch (5 samples, 2.18%)</title><rect x="9.1703%" y="1301" width="2.1834%" height="15" fill="rgb(234,103,6)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1311.50">t..</text></g><g><title>tokio::runtime::blocking::pool::spawn_blocking (5 samples, 2.18%)</title><rect x="9.1703%" y="1285" width="2.1834%" height="15" fill="rgb(227,97,0)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1295.50">t..</text></g><g><title>tokio::runtime::handle::Handle::spawn_blocking (5 samples, 2.18%)</title><rect x="9.1703%" y="1269" width="2.1834%" height="15" fill="rgb(234,150,53)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1279.50">t..</text></g><g><title>tokio::runtime::handle::Handle::spawn_blocking_inner (5 samples, 2.18%)</title><rect x="9.1703%" y="1253" width="2.1834%" height="15" fill="rgb(228,201,54)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1263.50">t..</text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn (5 samples, 2.18%)</title><rect x="9.1703%" y="1237" width="2.1834%" height="15" fill="rgb(222,22,37)" fg:x="21" fg:w="5"/><text x="9.4203%" y="1247.50">t..</text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_thread (2 samples, 0.87%)</title><rect x="10.4803%" y="1221" width="0.8734%" height="15" fill="rgb(237,53,32)" fg:x="24" fg:w="2"/><text x="10.7303%" y="1231.50"></text></g><g><title>std::thread::Builder::spawn (2 samples, 0.87%)</title><rect x="10.4803%" y="1205" width="0.8734%" height="15" fill="rgb(233,25,53)" fg:x="24" fg:w="2"/><text x="10.7303%" y="1215.50"></text></g><g><title>std::thread::Builder::spawn_unchecked (2 samples, 0.87%)</title><rect x="10.4803%" y="1189" width="0.8734%" height="15" fill="rgb(210,40,34)" fg:x="24" fg:w="2"/><text x="10.7303%" y="1199.50"></text></g><g><title>std::sys::unix::thread::Thread::new (2 samples, 0.87%)</title><rect x="10.4803%" y="1173" width="0.8734%" height="15" fill="rgb(241,220,44)" fg:x="24" fg:w="2"/><text x="10.7303%" y="1183.50"></text></g><g><title>__pthread_create_2_1 (2 samples, 0.87%)</title><rect x="10.4803%" y="1157" width="0.8734%" height="15" fill="rgb(235,28,35)" fg:x="24" fg:w="2"/><text x="10.7303%" y="1167.50"></text></g><g><title>mmap64 (1 samples, 0.44%)</title><rect x="10.9170%" y="1141" width="0.4367%" height="15" fill="rgb(210,56,17)" fg:x="25" fg:w="1"/><text x="11.1670%" y="1151.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="1125" width="0.4367%" height="15" fill="rgb(224,130,29)" fg:x="25" fg:w="1"/><text x="11.1670%" y="1135.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="1109" width="0.4367%" height="15" fill="rgb(235,212,8)" fg:x="25" fg:w="1"/><text x="11.1670%" y="1119.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="1093" width="0.4367%" height="15" fill="rgb(223,33,50)" fg:x="25" fg:w="1"/><text x="11.1670%" y="1103.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="1077" width="0.4367%" height="15" fill="rgb(219,149,13)" fg:x="25" fg:w="1"/><text x="11.1670%" y="1087.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="1061" width="0.4367%" height="15" fill="rgb(250,156,29)" fg:x="25" fg:w="1"/><text x="11.1670%" y="1071.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="1045" width="0.4367%" height="15" fill="rgb(216,193,19)" fg:x="25" fg:w="1"/><text x="11.1670%" y="1055.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="1029" width="0.4367%" height="15" fill="rgb(216,135,14)" fg:x="25" fg:w="1"/><text x="11.1670%" y="1039.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="1013" width="0.4367%" height="15" fill="rgb(241,47,5)" fg:x="25" fg:w="1"/><text x="11.1670%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="997" width="0.4367%" height="15" fill="rgb(233,42,35)" fg:x="25" fg:w="1"/><text x="11.1670%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="981" width="0.4367%" height="15" fill="rgb(231,13,6)" fg:x="25" fg:w="1"/><text x="11.1670%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="965" width="0.4367%" height="15" fill="rgb(207,181,40)" fg:x="25" fg:w="1"/><text x="11.1670%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="949" width="0.4367%" height="15" fill="rgb(254,173,49)" fg:x="25" fg:w="1"/><text x="11.1670%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="933" width="0.4367%" height="15" fill="rgb(221,1,38)" fg:x="25" fg:w="1"/><text x="11.1670%" y="943.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="917" width="0.4367%" height="15" fill="rgb(206,124,46)" fg:x="25" fg:w="1"/><text x="11.1670%" y="927.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="10.9170%" y="901" width="0.4367%" height="15" fill="rgb(249,21,11)" fg:x="25" fg:w="1"/><text x="11.1670%" y="911.50"></text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="11.3537%" y="1573" width="3.4934%" height="15" fill="rgb(222,201,40)" fg:x="26" fg:w="8"/><text x="11.6037%" y="1583.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="11.3537%" y="1557" width="3.4934%" height="15" fill="rgb(235,61,29)" fg:x="26" fg:w="8"/><text x="11.6037%" y="1567.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="11.3537%" y="1541" width="3.4934%" height="15" fill="rgb(219,207,3)" fg:x="26" fg:w="8"/><text x="11.6037%" y="1551.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="11.3537%" y="1525" width="3.4934%" height="15" fill="rgb(222,56,46)" fg:x="26" fg:w="8"/><text x="11.6037%" y="1535.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="11.3537%" y="1509" width="3.4934%" height="15" fill="rgb(239,76,54)" fg:x="26" fg:w="8"/><text x="11.6037%" y="1519.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="11.3537%" y="1493" width="3.4934%" height="15" fill="rgb(231,124,27)" fg:x="26" fg:w="8"/><text x="11.6037%" y="1503.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="11.3537%" y="1477" width="3.4934%" height="15" fill="rgb(249,195,6)" fg:x="26" fg:w="8"/><text x="11.6037%" y="1487.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="11.3537%" y="1461" width="3.4934%" height="15" fill="rgb(237,174,47)" fg:x="26" fg:w="8"/><text x="11.6037%" y="1471.50">[un..</text></g><g><title>jaeger-test (35 samples, 15.28%)</title><rect x="0.0000%" y="1605" width="15.2838%" height="15" fill="rgb(206,201,31)" fg:x="0" fg:w="35"/><text x="0.2500%" y="1615.50">jaeger-test</text></g><g><title>clone (9 samples, 3.93%)</title><rect x="11.3537%" y="1589" width="3.9301%" height="15" fill="rgb(231,57,52)" fg:x="26" fg:w="9"/><text x="11.6037%" y="1599.50">clone</text></g><g><title>start_thread (1 samples, 0.44%)</title><rect x="14.8472%" y="1573" width="0.4367%" height="15" fill="rgb(248,177,22)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1583.50"></text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (1 samples, 0.44%)</title><rect x="14.8472%" y="1557" width="0.4367%" height="15" fill="rgb(215,211,37)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1567.50"></text></g><g><title>std::sys::unix::stack_overflow::Handler::new (1 samples, 0.44%)</title><rect x="14.8472%" y="1541" width="0.4367%" height="15" fill="rgb(241,128,51)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1551.50"></text></g><g><title>std::sys::unix::stack_overflow::imp::make_handler (1 samples, 0.44%)</title><rect x="14.8472%" y="1525" width="0.4367%" height="15" fill="rgb(227,165,31)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1535.50"></text></g><g><title>std::sys::unix::stack_overflow::imp::get_stack (1 samples, 0.44%)</title><rect x="14.8472%" y="1509" width="0.4367%" height="15" fill="rgb(228,167,24)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1519.50"></text></g><g><title>std::sys::unix::stack_overflow::imp::get_stackp (1 samples, 0.44%)</title><rect x="14.8472%" y="1493" width="0.4367%" height="15" fill="rgb(228,143,12)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1503.50"></text></g><g><title>mmap64 (1 samples, 0.44%)</title><rect x="14.8472%" y="1477" width="0.4367%" height="15" fill="rgb(249,149,8)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1487.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1461" width="0.4367%" height="15" fill="rgb(243,35,44)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1471.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1445" width="0.4367%" height="15" fill="rgb(246,89,9)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1455.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1429" width="0.4367%" height="15" fill="rgb(233,213,13)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1439.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1413" width="0.4367%" height="15" fill="rgb(233,141,41)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1423.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1397" width="0.4367%" height="15" fill="rgb(239,167,4)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1407.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1381" width="0.4367%" height="15" fill="rgb(209,217,16)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1391.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1365" width="0.4367%" height="15" fill="rgb(219,88,35)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1375.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1349" width="0.4367%" height="15" fill="rgb(220,193,23)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1359.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1333" width="0.4367%" height="15" fill="rgb(230,90,52)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1343.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1317" width="0.4367%" height="15" fill="rgb(252,106,19)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1327.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1301" width="0.4367%" height="15" fill="rgb(206,74,20)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1311.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1285" width="0.4367%" height="15" fill="rgb(230,138,44)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1295.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1269" width="0.4367%" height="15" fill="rgb(235,182,43)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1279.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1253" width="0.4367%" height="15" fill="rgb(242,16,51)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1263.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="14.8472%" y="1237" width="0.4367%" height="15" fill="rgb(248,9,4)" fg:x="34" fg:w="1"/><text x="15.0972%" y="1247.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (1 samples, 0.44%)</title><rect x="15.2838%" y="1573" width="0.4367%" height="15" fill="rgb(210,31,22)" fg:x="35" fg:w="1"/><text x="15.5338%" y="1583.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1 samples, 0.44%)</title><rect x="15.2838%" y="1557" width="0.4367%" height="15" fill="rgb(239,54,39)" fg:x="35" fg:w="1"/><text x="15.5338%" y="1567.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (1 samples, 0.44%)</title><rect x="15.2838%" y="1541" width="0.4367%" height="15" fill="rgb(230,99,41)" fg:x="35" fg:w="1"/><text x="15.5338%" y="1551.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_desugared (1 samples, 0.44%)</title><rect x="15.2838%" y="1525" width="0.4367%" height="15" fill="rgb(253,106,12)" fg:x="35" fg:w="1"/><text x="15.5338%" y="1535.50"></text></g><g><title>core::ptr::write (1 samples, 0.44%)</title><rect x="15.2838%" y="1509" width="0.4367%" height="15" fill="rgb(213,46,41)" fg:x="35" fg:w="1"/><text x="15.5338%" y="1519.50"></text></g><g><title>&lt;str as core::fmt::Debug&gt;::fmt (1 samples, 0.44%)</title><rect x="15.7205%" y="1573" width="0.4367%" height="15" fill="rgb(215,133,35)" fg:x="36" fg:w="1"/><text x="15.9705%" y="1583.50"></text></g><g><title>&lt;tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::on_enter (1 samples, 0.44%)</title><rect x="16.1572%" y="1573" width="0.4367%" height="15" fill="rgb(213,28,5)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1583.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsMut::get_mut (1 samples, 0.44%)</title><rect x="16.1572%" y="1557" width="0.4367%" height="15" fill="rgb(215,77,49)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1567.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsInner::get_mut (1 samples, 0.44%)</title><rect x="16.1572%" y="1541" width="0.4367%" height="15" fill="rgb(248,100,22)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1551.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::get_mut (1 samples, 0.44%)</title><rect x="16.1572%" y="1525" width="0.4367%" height="15" fill="rgb(208,67,9)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1535.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get_mut (1 samples, 0.44%)</title><rect x="16.1572%" y="1509" width="0.4367%" height="15" fill="rgb(219,133,21)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1519.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get_inner_mut (1 samples, 0.44%)</title><rect x="16.1572%" y="1493" width="0.4367%" height="15" fill="rgb(246,46,29)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1503.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::get_mut (1 samples, 0.44%)</title><rect x="16.1572%" y="1477" width="0.4367%" height="15" fill="rgb(246,185,52)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1487.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find (1 samples, 0.44%)</title><rect x="16.1572%" y="1461" width="0.4367%" height="15" fill="rgb(252,136,11)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1471.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::iter_hash (1 samples, 0.44%)</title><rect x="16.1572%" y="1445" width="0.4367%" height="15" fill="rgb(219,138,53)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1455.50"></text></g><g><title>hashbrown::raw::RawIterHash&lt;T,A&gt;::new (1 samples, 0.44%)</title><rect x="16.1572%" y="1429" width="0.4367%" height="15" fill="rgb(211,51,23)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1439.50"></text></g><g><title>hashbrown::raw::RawIterHashInner&lt;A&gt;::new (1 samples, 0.44%)</title><rect x="16.1572%" y="1413" width="0.4367%" height="15" fill="rgb(247,221,28)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1423.50"></text></g><g><title>hashbrown::raw::sse2::Group::load (1 samples, 0.44%)</title><rect x="16.1572%" y="1397" width="0.4367%" height="15" fill="rgb(251,222,45)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1407.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_loadu_si128 (1 samples, 0.44%)</title><rect x="16.1572%" y="1381" width="0.4367%" height="15" fill="rgb(217,162,53)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1391.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.44%)</title><rect x="16.1572%" y="1365" width="0.4367%" height="15" fill="rgb(229,93,14)" fg:x="37" fg:w="1"/><text x="16.4072%" y="1375.50"></text></g><g><title>realloc (1 samples, 0.44%)</title><rect x="16.5939%" y="1573" width="0.4367%" height="15" fill="rgb(209,67,49)" fg:x="38" fg:w="1"/><text x="16.8439%" y="1583.50"></text></g><g><title>[[heap]] (5 samples, 2.18%)</title><rect x="15.2838%" y="1589" width="2.1834%" height="15" fill="rgb(213,87,29)" fg:x="35" fg:w="5"/><text x="15.5338%" y="1599.50">[..</text></g><g><title>tokio::time::driver::entry::TimerEntry::poll_elapsed (1 samples, 0.44%)</title><rect x="17.0306%" y="1573" width="0.4367%" height="15" fill="rgb(205,151,52)" fg:x="39" fg:w="1"/><text x="17.2806%" y="1583.50"></text></g><g><title>tokio::time::driver::handle::Handle::is_shutdown (1 samples, 0.44%)</title><rect x="17.0306%" y="1557" width="0.4367%" height="15" fill="rgb(253,215,39)" fg:x="39" fg:w="1"/><text x="17.2806%" y="1567.50"></text></g><g><title>[[vdso]] (1 samples, 0.44%)</title><rect x="17.4672%" y="1589" width="0.4367%" height="15" fill="rgb(221,220,41)" fg:x="40" fg:w="1"/><text x="17.7172%" y="1599.50"></text></g><g><title>&lt;str as core::fmt::Debug&gt;::fmt (1 samples, 0.44%)</title><rect x="17.9039%" y="1573" width="0.4367%" height="15" fill="rgb(218,133,21)" fg:x="41" fg:w="1"/><text x="18.1539%" y="1583.50"></text></g><g><title>core::char::methods::&lt;impl char&gt;::escape_debug_ext (1 samples, 0.44%)</title><rect x="17.9039%" y="1557" width="0.4367%" height="15" fill="rgb(221,193,43)" fg:x="41" fg:w="1"/><text x="18.1539%" y="1567.50"></text></g><g><title>&lt;tracing_subscriber::registry::sharded::Registry as tracing_core::subscriber::Subscriber&gt;::enter (1 samples, 0.44%)</title><rect x="18.3406%" y="1573" width="0.4367%" height="15" fill="rgb(240,128,52)" fg:x="42" fg:w="1"/><text x="18.5906%" y="1583.50"></text></g><g><title>tracing_subscriber::registry::stack::SpanStack::push (1 samples, 0.44%)</title><rect x="18.3406%" y="1557" width="0.4367%" height="15" fill="rgb(253,114,12)" fg:x="42" fg:w="1"/><text x="18.5906%" y="1567.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::any (1 samples, 0.44%)</title><rect x="18.3406%" y="1541" width="0.4367%" height="15" fill="rgb(215,223,47)" fg:x="42" fg:w="1"/><text x="18.5906%" y="1551.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="18.7773%" y="1573" width="0.4367%" height="15" fill="rgb(248,225,23)" fg:x="43" fg:w="1"/><text x="19.0273%" y="1583.50"></text></g><g><title>__libc_malloc (1 samples, 0.44%)</title><rect x="19.2140%" y="1573" width="0.4367%" height="15" fill="rgb(250,108,0)" fg:x="44" fg:w="1"/><text x="19.4640%" y="1583.50"></text></g><g><title>__rdl_alloc (1 samples, 0.44%)</title><rect x="19.6507%" y="1573" width="0.4367%" height="15" fill="rgb(228,208,7)" fg:x="45" fg:w="1"/><text x="19.9007%" y="1583.50"></text></g><g><title>[anon] (6 samples, 2.62%)</title><rect x="17.9039%" y="1589" width="2.6201%" height="15" fill="rgb(244,45,10)" fg:x="41" fg:w="6"/><text x="18.1539%" y="1599.50">[a..</text></g><g><title>parking_lot_core::parking_lot::FairTimeout::gen_u32 (1 samples, 0.44%)</title><rect x="20.0873%" y="1573" width="0.4367%" height="15" fill="rgb(207,125,25)" fg:x="46" fg:w="1"/><text x="20.3373%" y="1583.50"></text></g><g><title>&lt;tracing::instrument::Instrumented&lt;T&gt; as core::future::future::Future&gt;::poll (1 samples, 0.44%)</title><rect x="20.5240%" y="1445" width="0.4367%" height="15" fill="rgb(210,195,18)" fg:x="47" fg:w="1"/><text x="20.7740%" y="1455.50"></text></g><g><title>core::ptr::drop_in_place&lt;tracing::span::Entered&gt; (1 samples, 0.44%)</title><rect x="20.5240%" y="1429" width="0.4367%" height="15" fill="rgb(249,80,12)" fg:x="47" fg:w="1"/><text x="20.7740%" y="1439.50"></text></g><g><title>&lt;tracing::span::Entered as core::ops::drop::Drop&gt;::drop (1 samples, 0.44%)</title><rect x="20.5240%" y="1413" width="0.4367%" height="15" fill="rgb(221,65,9)" fg:x="47" fg:w="1"/><text x="20.7740%" y="1423.50"></text></g><g><title>tracing::span::Span::do_exit (1 samples, 0.44%)</title><rect x="20.5240%" y="1397" width="0.4367%" height="15" fill="rgb(235,49,36)" fg:x="47" fg:w="1"/><text x="20.7740%" y="1407.50"></text></g><g><title>tracing_core::dispatcher::Dispatch::exit (1 samples, 0.44%)</title><rect x="20.5240%" y="1381" width="0.4367%" height="15" fill="rgb(225,32,20)" fg:x="47" fg:w="1"/><text x="20.7740%" y="1391.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;dyn tracing_core::subscriber::Subscriber+core::marker::Send+core::marker::Sync&gt; as tracing_core::subscriber::Subscriber&gt;::exit (1 samples, 0.44%)</title><rect x="20.5240%" y="1365" width="0.4367%" height="15" fill="rgb(215,141,46)" fg:x="47" fg:w="1"/><text x="20.7740%" y="1375.50"></text></g><g><title>&lt;tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::on_exit (1 samples, 0.44%)</title><rect x="20.5240%" y="1349" width="0.4367%" height="15" fill="rgb(250,160,47)" fg:x="47" fg:w="1"/><text x="20.7740%" y="1359.50"></text></g><g><title>std::time::Instant::now (1 samples, 0.44%)</title><rect x="20.5240%" y="1333" width="0.4367%" height="15" fill="rgb(216,222,40)" fg:x="47" fg:w="1"/><text x="20.7740%" y="1343.50"></text></g><g><title>std::sys::unix::time::inner::Instant::now (1 samples, 0.44%)</title><rect x="20.5240%" y="1317" width="0.4367%" height="15" fill="rgb(234,217,39)" fg:x="47" fg:w="1"/><text x="20.7740%" y="1327.50"></text></g><g><title>std::sys::unix::time::inner::now (1 samples, 0.44%)</title><rect x="20.5240%" y="1301" width="0.4367%" height="15" fill="rgb(207,178,40)" fg:x="47" fg:w="1"/><text x="20.7740%" y="1311.50"></text></g><g><title>__clock_gettime (1 samples, 0.44%)</title><rect x="20.5240%" y="1285" width="0.4367%" height="15" fill="rgb(221,136,13)" fg:x="47" fg:w="1"/><text x="20.7740%" y="1295.50"></text></g><g><title>[[vdso]] (1 samples, 0.44%)</title><rect x="20.5240%" y="1269" width="0.4367%" height="15" fill="rgb(249,199,10)" fg:x="47" fg:w="1"/><text x="20.7740%" y="1279.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="20.9607%" y="1157" width="0.4367%" height="15" fill="rgb(249,222,13)" fg:x="48" fg:w="1"/><text x="21.2107%" y="1167.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (5 samples, 2.18%)</title><rect x="20.9607%" y="1333" width="2.1834%" height="15" fill="rgb(244,185,38)" fg:x="48" fg:w="5"/><text x="21.2107%" y="1343.50">a..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (5 samples, 2.18%)</title><rect x="20.9607%" y="1317" width="2.1834%" height="15" fill="rgb(236,202,9)" fg:x="48" fg:w="5"/><text x="21.2107%" y="1327.50">a..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (5 samples, 2.18%)</title><rect x="20.9607%" y="1301" width="2.1834%" height="15" fill="rgb(250,229,37)" fg:x="48" fg:w="5"/><text x="21.2107%" y="1311.50">a..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (5 samples, 2.18%)</title><rect x="20.9607%" y="1285" width="2.1834%" height="15" fill="rgb(206,174,23)" fg:x="48" fg:w="5"/><text x="21.2107%" y="1295.50">a..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (5 samples, 2.18%)</title><rect x="20.9607%" y="1269" width="2.1834%" height="15" fill="rgb(211,33,43)" fg:x="48" fg:w="5"/><text x="21.2107%" y="1279.50">a..</text></g><g><title>alloc::raw_vec::finish_grow (5 samples, 2.18%)</title><rect x="20.9607%" y="1253" width="2.1834%" height="15" fill="rgb(245,58,50)" fg:x="48" fg:w="5"/><text x="21.2107%" y="1263.50">a..</text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (5 samples, 2.18%)</title><rect x="20.9607%" y="1237" width="2.1834%" height="15" fill="rgb(244,68,36)" fg:x="48" fg:w="5"/><text x="21.2107%" y="1247.50">&lt;..</text></g><g><title>alloc::alloc::Global::grow_impl (5 samples, 2.18%)</title><rect x="20.9607%" y="1221" width="2.1834%" height="15" fill="rgb(232,229,15)" fg:x="48" fg:w="5"/><text x="21.2107%" y="1231.50">a..</text></g><g><title>alloc::alloc::realloc (5 samples, 2.18%)</title><rect x="20.9607%" y="1205" width="2.1834%" height="15" fill="rgb(254,30,23)" fg:x="48" fg:w="5"/><text x="21.2107%" y="1215.50">a..</text></g><g><title>realloc (5 samples, 2.18%)</title><rect x="20.9607%" y="1189" width="2.1834%" height="15" fill="rgb(235,160,14)" fg:x="48" fg:w="5"/><text x="21.2107%" y="1199.50">r..</text></g><g><title>[libc-2.33.so] (5 samples, 2.18%)</title><rect x="20.9607%" y="1173" width="2.1834%" height="15" fill="rgb(212,155,44)" fg:x="48" fg:w="5"/><text x="21.2107%" y="1183.50">[..</text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="1157" width="1.7467%" height="15" fill="rgb(226,2,50)" fg:x="49" fg:w="4"/><text x="21.6474%" y="1167.50"></text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="1141" width="1.7467%" height="15" fill="rgb(234,177,6)" fg:x="49" fg:w="4"/><text x="21.6474%" y="1151.50"></text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="1125" width="1.7467%" height="15" fill="rgb(217,24,9)" fg:x="49" fg:w="4"/><text x="21.6474%" y="1135.50"></text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="1109" width="1.7467%" height="15" fill="rgb(220,13,46)" fg:x="49" fg:w="4"/><text x="21.6474%" y="1119.50"></text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="1093" width="1.7467%" height="15" fill="rgb(239,221,27)" fg:x="49" fg:w="4"/><text x="21.6474%" y="1103.50"></text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="1077" width="1.7467%" height="15" fill="rgb(222,198,25)" fg:x="49" fg:w="4"/><text x="21.6474%" y="1087.50"></text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="1061" width="1.7467%" height="15" fill="rgb(211,99,13)" fg:x="49" fg:w="4"/><text x="21.6474%" y="1071.50"></text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="1045" width="1.7467%" height="15" fill="rgb(232,111,31)" fg:x="49" fg:w="4"/><text x="21.6474%" y="1055.50"></text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="1029" width="1.7467%" height="15" fill="rgb(245,82,37)" fg:x="49" fg:w="4"/><text x="21.6474%" y="1039.50"></text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="1013" width="1.7467%" height="15" fill="rgb(227,149,46)" fg:x="49" fg:w="4"/><text x="21.6474%" y="1023.50"></text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="997" width="1.7467%" height="15" fill="rgb(218,36,50)" fg:x="49" fg:w="4"/><text x="21.6474%" y="1007.50"></text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="981" width="1.7467%" height="15" fill="rgb(226,80,48)" fg:x="49" fg:w="4"/><text x="21.6474%" y="991.50"></text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="965" width="1.7467%" height="15" fill="rgb(238,224,15)" fg:x="49" fg:w="4"/><text x="21.6474%" y="975.50"></text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="21.3974%" y="949" width="1.7467%" height="15" fill="rgb(241,136,10)" fg:x="49" fg:w="4"/><text x="21.6474%" y="959.50"></text></g><g><title>&lt;tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::on_close (7 samples, 3.06%)</title><rect x="20.9607%" y="1349" width="3.0568%" height="15" fill="rgb(208,32,45)" fg:x="48" fg:w="7"/><text x="21.2107%" y="1359.50">&lt;tr..</text></g><g><title>opentelemetry::trace::tracer::SpanBuilder::start (2 samples, 0.87%)</title><rect x="23.1441%" y="1333" width="0.8734%" height="15" fill="rgb(207,135,9)" fg:x="53" fg:w="2"/><text x="23.3941%" y="1343.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::tracer::Tracer as opentelemetry::trace::tracer::Tracer&gt;::build (2 samples, 0.87%)</title><rect x="23.1441%" y="1317" width="0.8734%" height="15" fill="rgb(206,86,44)" fg:x="53" fg:w="2"/><text x="23.3941%" y="1327.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (2 samples, 0.87%)</title><rect x="23.1441%" y="1301" width="0.8734%" height="15" fill="rgb(245,177,15)" fg:x="53" fg:w="2"/><text x="23.3941%" y="1311.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::tracer::Tracer as opentelemetry::trace::tracer::Tracer&gt;::build::{{closure}} (2 samples, 0.87%)</title><rect x="23.1441%" y="1285" width="0.8734%" height="15" fill="rgb(206,64,50)" fg:x="53" fg:w="2"/><text x="23.3941%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::into_iter::IntoIter&lt;opentelemetry::common::KeyValue&gt;&gt; (2 samples, 0.87%)</title><rect x="23.1441%" y="1269" width="0.8734%" height="15" fill="rgb(234,36,40)" fg:x="53" fg:w="2"/><text x="23.3941%" y="1279.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.87%)</title><rect x="23.1441%" y="1253" width="0.8734%" height="15" fill="rgb(213,64,8)" fg:x="53" fg:w="2"/><text x="23.3941%" y="1263.50"></text></g><g><title>core::ptr::drop_in_place&lt;&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop::DropGuard&lt;opentelemetry::common::KeyValue,alloc::alloc::Global&gt;&gt; (2 samples, 0.87%)</title><rect x="23.1441%" y="1237" width="0.8734%" height="15" fill="rgb(210,75,36)" fg:x="53" fg:w="2"/><text x="23.3941%" y="1247.50"></text></g><g><title>&lt;&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop::DropGuard&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.87%)</title><rect x="23.1441%" y="1221" width="0.8734%" height="15" fill="rgb(229,88,21)" fg:x="53" fg:w="2"/><text x="23.3941%" y="1231.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;opentelemetry::common::KeyValue&gt;&gt; (2 samples, 0.87%)</title><rect x="23.1441%" y="1205" width="0.8734%" height="15" fill="rgb(252,204,47)" fg:x="53" fg:w="2"/><text x="23.3941%" y="1215.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.87%)</title><rect x="23.1441%" y="1189" width="0.8734%" height="15" fill="rgb(208,77,27)" fg:x="53" fg:w="2"/><text x="23.3941%" y="1199.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (2 samples, 0.87%)</title><rect x="23.1441%" y="1173" width="0.8734%" height="15" fill="rgb(221,76,26)" fg:x="53" fg:w="2"/><text x="23.3941%" y="1183.50"></text></g><g><title>alloc::alloc::dealloc (2 samples, 0.87%)</title><rect x="23.1441%" y="1157" width="0.8734%" height="15" fill="rgb(225,139,18)" fg:x="53" fg:w="2"/><text x="23.3941%" y="1167.50"></text></g><g><title>cfree (2 samples, 0.87%)</title><rect x="23.1441%" y="1141" width="0.8734%" height="15" fill="rgb(230,137,11)" fg:x="53" fg:w="2"/><text x="23.3941%" y="1151.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="23.5808%" y="1125" width="0.4367%" height="15" fill="rgb(212,28,1)" fg:x="54" fg:w="1"/><text x="23.8308%" y="1135.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="23.5808%" y="1109" width="0.4367%" height="15" fill="rgb(248,164,17)" fg:x="54" fg:w="1"/><text x="23.8308%" y="1119.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="1093" width="0.4367%" height="15" fill="rgb(222,171,42)" fg:x="54" fg:w="1"/><text x="23.8308%" y="1103.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="1077" width="0.4367%" height="15" fill="rgb(243,84,45)" fg:x="54" fg:w="1"/><text x="23.8308%" y="1087.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="1061" width="0.4367%" height="15" fill="rgb(252,49,23)" fg:x="54" fg:w="1"/><text x="23.8308%" y="1071.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="1045" width="0.4367%" height="15" fill="rgb(215,19,7)" fg:x="54" fg:w="1"/><text x="23.8308%" y="1055.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="1029" width="0.4367%" height="15" fill="rgb(238,81,41)" fg:x="54" fg:w="1"/><text x="23.8308%" y="1039.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="1013" width="0.4367%" height="15" fill="rgb(210,199,37)" fg:x="54" fg:w="1"/><text x="23.8308%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="997" width="0.4367%" height="15" fill="rgb(244,192,49)" fg:x="54" fg:w="1"/><text x="23.8308%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="981" width="0.4367%" height="15" fill="rgb(226,211,11)" fg:x="54" fg:w="1"/><text x="23.8308%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="965" width="0.4367%" height="15" fill="rgb(236,162,54)" fg:x="54" fg:w="1"/><text x="23.8308%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="949" width="0.4367%" height="15" fill="rgb(220,229,9)" fg:x="54" fg:w="1"/><text x="23.8308%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="933" width="0.4367%" height="15" fill="rgb(250,87,22)" fg:x="54" fg:w="1"/><text x="23.8308%" y="943.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="917" width="0.4367%" height="15" fill="rgb(239,43,17)" fg:x="54" fg:w="1"/><text x="23.8308%" y="927.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="901" width="0.4367%" height="15" fill="rgb(231,177,25)" fg:x="54" fg:w="1"/><text x="23.8308%" y="911.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="23.5808%" y="885" width="0.4367%" height="15" fill="rgb(219,179,1)" fg:x="54" fg:w="1"/><text x="23.8308%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;tracing::instrument::Instrumented&lt;core::future::from_generator::GenFuture&lt;jaeger_test::c::{{closure}}&gt;&gt;&gt; (8 samples, 3.49%)</title><rect x="20.9607%" y="1445" width="3.4934%" height="15" fill="rgb(238,219,53)" fg:x="48" fg:w="8"/><text x="21.2107%" y="1455.50">cor..</text></g><g><title>core::ptr::drop_in_place&lt;tracing::span::Span&gt; (8 samples, 3.49%)</title><rect x="20.9607%" y="1429" width="3.4934%" height="15" fill="rgb(232,167,36)" fg:x="48" fg:w="8"/><text x="21.2107%" y="1439.50">cor..</text></g><g><title>&lt;tracing::span::Span as core::ops::drop::Drop&gt;::drop (8 samples, 3.49%)</title><rect x="20.9607%" y="1413" width="3.4934%" height="15" fill="rgb(244,19,51)" fg:x="48" fg:w="8"/><text x="21.2107%" y="1423.50">&lt;tr..</text></g><g><title>tracing_core::dispatcher::Dispatch::try_close (8 samples, 3.49%)</title><rect x="20.9607%" y="1397" width="3.4934%" height="15" fill="rgb(224,6,22)" fg:x="48" fg:w="8"/><text x="21.2107%" y="1407.50">tra..</text></g><g><title>&lt;alloc::sync::Arc&lt;dyn tracing_core::subscriber::Subscriber+core::marker::Send+core::marker::Sync&gt; as tracing_core::subscriber::Subscriber&gt;::try_close (8 samples, 3.49%)</title><rect x="20.9607%" y="1381" width="3.4934%" height="15" fill="rgb(224,145,5)" fg:x="48" fg:w="8"/><text x="21.2107%" y="1391.50">&lt;al..</text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::try_close (8 samples, 3.49%)</title><rect x="20.9607%" y="1365" width="3.4934%" height="15" fill="rgb(234,130,49)" fg:x="48" fg:w="8"/><text x="21.2107%" y="1375.50">&lt;tr..</text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;tracing_subscriber::registry::sharded::CloseGuard&gt;&gt; (1 samples, 0.44%)</title><rect x="24.0175%" y="1349" width="0.4367%" height="15" fill="rgb(254,6,2)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1359.50"></text></g><g><title>core::ptr::drop_in_place&lt;tracing_subscriber::registry::sharded::CloseGuard&gt; (1 samples, 0.44%)</title><rect x="24.0175%" y="1333" width="0.4367%" height="15" fill="rgb(208,96,46)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1343.50"></text></g><g><title>sharded_slab::pool::Pool&lt;T,C&gt;::clear (1 samples, 0.44%)</title><rect x="24.0175%" y="1317" width="0.4367%" height="15" fill="rgb(239,3,39)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1327.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.44%)</title><rect x="24.0175%" y="1301" width="0.4367%" height="15" fill="rgb(233,210,1)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1311.50"></text></g><g><title>sharded_slab::pool::Pool&lt;T,C&gt;::clear::{{closure}} (1 samples, 0.44%)</title><rect x="24.0175%" y="1285" width="0.4367%" height="15" fill="rgb(244,137,37)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1295.50"></text></g><g><title>sharded_slab::shard::Shard&lt;T,C&gt;::mark_clear_local (1 samples, 0.44%)</title><rect x="24.0175%" y="1269" width="0.4367%" height="15" fill="rgb(240,136,2)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1279.50"></text></g><g><title>sharded_slab::page::Shared&lt;T,C&gt;::mark_clear (1 samples, 0.44%)</title><rect x="24.0175%" y="1253" width="0.4367%" height="15" fill="rgb(239,18,37)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1263.50"></text></g><g><title>sharded_slab::sync::inner::UnsafeCell&lt;T&gt;::with (1 samples, 0.44%)</title><rect x="24.0175%" y="1237" width="0.4367%" height="15" fill="rgb(218,185,22)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1247.50"></text></g><g><title>sharded_slab::page::Shared&lt;T,C&gt;::mark_clear::{{closure}} (1 samples, 0.44%)</title><rect x="24.0175%" y="1221" width="0.4367%" height="15" fill="rgb(225,218,4)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1231.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::try_clear_storage (1 samples, 0.44%)</title><rect x="24.0175%" y="1205" width="0.4367%" height="15" fill="rgb(230,182,32)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1215.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::clear_storage (1 samples, 0.44%)</title><rect x="24.0175%" y="1189" width="0.4367%" height="15" fill="rgb(242,56,43)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1199.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::release_with (1 samples, 0.44%)</title><rect x="24.0175%" y="1173" width="0.4367%" height="15" fill="rgb(233,99,24)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1183.50"></text></g><g><title>sharded_slab::sync::inner::UnsafeCell&lt;T&gt;::with_mut (1 samples, 0.44%)</title><rect x="24.0175%" y="1157" width="0.4367%" height="15" fill="rgb(234,209,42)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1167.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::release_with::{{closure}} (1 samples, 0.44%)</title><rect x="24.0175%" y="1141" width="0.4367%" height="15" fill="rgb(227,7,12)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1151.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::clear_storage::{{closure}} (1 samples, 0.44%)</title><rect x="24.0175%" y="1125" width="0.4367%" height="15" fill="rgb(245,203,43)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1135.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.44%)</title><rect x="24.0175%" y="1109" width="0.4367%" height="15" fill="rgb(238,205,33)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1119.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::clear_storage::{{closure}}::{{closure}} (1 samples, 0.44%)</title><rect x="24.0175%" y="1093" width="0.4367%" height="15" fill="rgb(231,56,7)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1103.50"></text></g><g><title>&lt;tracing_subscriber::registry::sharded::DataInner as sharded_slab::clear::Clear&gt;::clear (1 samples, 0.44%)</title><rect x="24.0175%" y="1077" width="0.4367%" height="15" fill="rgb(244,186,29)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1087.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsInner::clear (1 samples, 0.44%)</title><rect x="24.0175%" y="1061" width="0.4367%" height="15" fill="rgb(234,111,31)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1071.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::clear (1 samples, 0.44%)</title><rect x="24.0175%" y="1045" width="0.4367%" height="15" fill="rgb(241,149,10)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1055.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::clear (1 samples, 0.44%)</title><rect x="24.0175%" y="1029" width="0.4367%" height="15" fill="rgb(249,206,44)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1039.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clear (1 samples, 0.44%)</title><rect x="24.0175%" y="1013" width="0.4367%" height="15" fill="rgb(251,153,30)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1023.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::drop_elements (1 samples, 0.44%)</title><rect x="24.0175%" y="997" width="0.4367%" height="15" fill="rgb(239,152,38)" fg:x="55" fg:w="1"/><text x="24.2675%" y="1007.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (1 samples, 0.44%)</title><rect x="24.0175%" y="981" width="0.4367%" height="15" fill="rgb(249,139,47)" fg:x="55" fg:w="1"/><text x="24.2675%" y="991.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (1 samples, 0.44%)</title><rect x="24.0175%" y="965" width="0.4367%" height="15" fill="rgb(244,64,35)" fg:x="55" fg:w="1"/><text x="24.2675%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;(core::any::TypeId,alloc::boxed::Box&lt;dyn core::any::Any+core::marker::Send+core::marker::Sync&gt;)&gt; (1 samples, 0.44%)</title><rect x="24.0175%" y="949" width="0.4367%" height="15" fill="rgb(216,46,15)" fg:x="55" fg:w="1"/><text x="24.2675%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;dyn core::any::Any+core::marker::Send+core::marker::Sync&gt;&gt; (1 samples, 0.44%)</title><rect x="24.0175%" y="933" width="0.4367%" height="15" fill="rgb(250,74,19)" fg:x="55" fg:w="1"/><text x="24.2675%" y="943.50"></text></g><g><title>cfree (1 samples, 0.44%)</title><rect x="24.0175%" y="917" width="0.4367%" height="15" fill="rgb(249,42,33)" fg:x="55" fg:w="1"/><text x="24.2675%" y="927.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="24.0175%" y="901" width="0.4367%" height="15" fill="rgb(242,149,17)" fg:x="55" fg:w="1"/><text x="24.2675%" y="911.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="24.0175%" y="885" width="0.4367%" height="15" fill="rgb(244,29,21)" fg:x="55" fg:w="1"/><text x="24.2675%" y="895.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="869" width="0.4367%" height="15" fill="rgb(220,130,37)" fg:x="55" fg:w="1"/><text x="24.2675%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="853" width="0.4367%" height="15" fill="rgb(211,67,2)" fg:x="55" fg:w="1"/><text x="24.2675%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="837" width="0.4367%" height="15" fill="rgb(235,68,52)" fg:x="55" fg:w="1"/><text x="24.2675%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="821" width="0.4367%" height="15" fill="rgb(246,142,3)" fg:x="55" fg:w="1"/><text x="24.2675%" y="831.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="805" width="0.4367%" height="15" fill="rgb(241,25,7)" fg:x="55" fg:w="1"/><text x="24.2675%" y="815.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="789" width="0.4367%" height="15" fill="rgb(242,119,39)" fg:x="55" fg:w="1"/><text x="24.2675%" y="799.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="773" width="0.4367%" height="15" fill="rgb(241,98,45)" fg:x="55" fg:w="1"/><text x="24.2675%" y="783.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="757" width="0.4367%" height="15" fill="rgb(254,28,30)" fg:x="55" fg:w="1"/><text x="24.2675%" y="767.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="741" width="0.4367%" height="15" fill="rgb(241,142,54)" fg:x="55" fg:w="1"/><text x="24.2675%" y="751.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="725" width="0.4367%" height="15" fill="rgb(222,85,15)" fg:x="55" fg:w="1"/><text x="24.2675%" y="735.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="709" width="0.4367%" height="15" fill="rgb(210,85,47)" fg:x="55" fg:w="1"/><text x="24.2675%" y="719.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="693" width="0.4367%" height="15" fill="rgb(224,206,25)" fg:x="55" fg:w="1"/><text x="24.2675%" y="703.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="677" width="0.4367%" height="15" fill="rgb(243,201,19)" fg:x="55" fg:w="1"/><text x="24.2675%" y="687.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.0175%" y="661" width="0.4367%" height="15" fill="rgb(236,59,4)" fg:x="55" fg:w="1"/><text x="24.2675%" y="671.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (2 samples, 0.87%)</title><rect x="24.4541%" y="1333" width="0.8734%" height="15" fill="rgb(254,179,45)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1343.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (2 samples, 0.87%)</title><rect x="24.4541%" y="1317" width="0.8734%" height="15" fill="rgb(226,14,10)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1327.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (2 samples, 0.87%)</title><rect x="24.4541%" y="1301" width="0.8734%" height="15" fill="rgb(244,27,41)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1311.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (2 samples, 0.87%)</title><rect x="24.4541%" y="1285" width="0.8734%" height="15" fill="rgb(235,35,32)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1295.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (2 samples, 0.87%)</title><rect x="24.4541%" y="1269" width="0.8734%" height="15" fill="rgb(218,68,31)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1279.50"></text></g><g><title>alloc::raw_vec::finish_grow (2 samples, 0.87%)</title><rect x="24.4541%" y="1253" width="0.8734%" height="15" fill="rgb(207,120,37)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1263.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (2 samples, 0.87%)</title><rect x="24.4541%" y="1237" width="0.8734%" height="15" fill="rgb(227,98,0)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1247.50"></text></g><g><title>alloc::alloc::Global::grow_impl (2 samples, 0.87%)</title><rect x="24.4541%" y="1221" width="0.8734%" height="15" fill="rgb(207,7,3)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1231.50"></text></g><g><title>alloc::alloc::realloc (2 samples, 0.87%)</title><rect x="24.4541%" y="1205" width="0.8734%" height="15" fill="rgb(206,98,19)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1215.50"></text></g><g><title>realloc (2 samples, 0.87%)</title><rect x="24.4541%" y="1189" width="0.8734%" height="15" fill="rgb(217,5,26)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1199.50"></text></g><g><title>[libc-2.33.so] (2 samples, 0.87%)</title><rect x="24.4541%" y="1173" width="0.8734%" height="15" fill="rgb(235,190,38)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1183.50"></text></g><g><title>[unknown] (2 samples, 0.87%)</title><rect x="24.4541%" y="1157" width="0.8734%" height="15" fill="rgb(247,86,24)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1167.50"></text></g><g><title>[unknown] (2 samples, 0.87%)</title><rect x="24.4541%" y="1141" width="0.8734%" height="15" fill="rgb(205,101,16)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1151.50"></text></g><g><title>[unknown] (2 samples, 0.87%)</title><rect x="24.4541%" y="1125" width="0.8734%" height="15" fill="rgb(246,168,33)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1135.50"></text></g><g><title>[unknown] (2 samples, 0.87%)</title><rect x="24.4541%" y="1109" width="0.8734%" height="15" fill="rgb(231,114,1)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1119.50"></text></g><g><title>[unknown] (2 samples, 0.87%)</title><rect x="24.4541%" y="1093" width="0.8734%" height="15" fill="rgb(207,184,53)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1103.50"></text></g><g><title>[unknown] (2 samples, 0.87%)</title><rect x="24.4541%" y="1077" width="0.8734%" height="15" fill="rgb(224,95,51)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1087.50"></text></g><g><title>[unknown] (2 samples, 0.87%)</title><rect x="24.4541%" y="1061" width="0.8734%" height="15" fill="rgb(212,188,45)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1071.50"></text></g><g><title>[unknown] (2 samples, 0.87%)</title><rect x="24.4541%" y="1045" width="0.8734%" height="15" fill="rgb(223,154,38)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1055.50"></text></g><g><title>[unknown] (2 samples, 0.87%)</title><rect x="24.4541%" y="1029" width="0.8734%" height="15" fill="rgb(251,22,52)" fg:x="56" fg:w="2"/><text x="24.7041%" y="1039.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.8908%" y="1013" width="0.4367%" height="15" fill="rgb(229,209,22)" fg:x="57" fg:w="1"/><text x="25.1408%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.8908%" y="997" width="0.4367%" height="15" fill="rgb(234,138,34)" fg:x="57" fg:w="1"/><text x="25.1408%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.8908%" y="981" width="0.4367%" height="15" fill="rgb(212,95,11)" fg:x="57" fg:w="1"/><text x="25.1408%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.8908%" y="965" width="0.4367%" height="15" fill="rgb(240,179,47)" fg:x="57" fg:w="1"/><text x="25.1408%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="24.8908%" y="949" width="0.4367%" height="15" fill="rgb(240,163,11)" fg:x="57" fg:w="1"/><text x="25.1408%" y="959.50"></text></g><g><title>opentelemetry::sdk::trace::evicted_hash_map::EvictedHashMap::insert (1 samples, 0.44%)</title><rect x="25.3275%" y="1269" width="0.4367%" height="15" fill="rgb(236,37,12)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1279.50"></text></g><g><title>alloc::collections::linked_list::LinkedList&lt;T&gt;::push_front (1 samples, 0.44%)</title><rect x="25.3275%" y="1253" width="0.4367%" height="15" fill="rgb(232,164,16)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1263.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.44%)</title><rect x="25.3275%" y="1237" width="0.4367%" height="15" fill="rgb(244,205,15)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1247.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.44%)</title><rect x="25.3275%" y="1221" width="0.4367%" height="15" fill="rgb(223,117,47)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1231.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.44%)</title><rect x="25.3275%" y="1205" width="0.4367%" height="15" fill="rgb(244,107,35)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1215.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.44%)</title><rect x="25.3275%" y="1189" width="0.4367%" height="15" fill="rgb(205,140,8)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1199.50"></text></g><g><title>__libc_malloc (1 samples, 0.44%)</title><rect x="25.3275%" y="1173" width="0.4367%" height="15" fill="rgb(228,84,46)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1183.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="25.3275%" y="1157" width="0.4367%" height="15" fill="rgb(254,188,9)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1167.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="1141" width="0.4367%" height="15" fill="rgb(206,112,54)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1151.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="1125" width="0.4367%" height="15" fill="rgb(216,84,49)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1135.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="1109" width="0.4367%" height="15" fill="rgb(214,194,35)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1119.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="1093" width="0.4367%" height="15" fill="rgb(249,28,3)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1103.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="1077" width="0.4367%" height="15" fill="rgb(222,56,52)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1087.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="1061" width="0.4367%" height="15" fill="rgb(245,217,50)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1071.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="1045" width="0.4367%" height="15" fill="rgb(213,201,24)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1055.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="1029" width="0.4367%" height="15" fill="rgb(248,116,28)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1039.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="1013" width="0.4367%" height="15" fill="rgb(219,72,43)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="997" width="0.4367%" height="15" fill="rgb(209,138,14)" fg:x="58" fg:w="1"/><text x="25.5775%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="981" width="0.4367%" height="15" fill="rgb(222,18,33)" fg:x="58" fg:w="1"/><text x="25.5775%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="965" width="0.4367%" height="15" fill="rgb(213,199,7)" fg:x="58" fg:w="1"/><text x="25.5775%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="949" width="0.4367%" height="15" fill="rgb(250,110,10)" fg:x="58" fg:w="1"/><text x="25.5775%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.3275%" y="933" width="0.4367%" height="15" fill="rgb(248,123,6)" fg:x="58" fg:w="1"/><text x="25.5775%" y="943.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="25.7642%" y="1029" width="0.4367%" height="15" fill="rgb(206,91,31)" fg:x="59" fg:w="1"/><text x="26.0142%" y="1039.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.7642%" y="1013" width="0.4367%" height="15" fill="rgb(211,154,13)" fg:x="59" fg:w="1"/><text x="26.0142%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.7642%" y="997" width="0.4367%" height="15" fill="rgb(225,148,7)" fg:x="59" fg:w="1"/><text x="26.0142%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.7642%" y="981" width="0.4367%" height="15" fill="rgb(220,160,43)" fg:x="59" fg:w="1"/><text x="26.0142%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.7642%" y="965" width="0.4367%" height="15" fill="rgb(213,52,39)" fg:x="59" fg:w="1"/><text x="26.0142%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.7642%" y="949" width="0.4367%" height="15" fill="rgb(243,137,7)" fg:x="59" fg:w="1"/><text x="26.0142%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.7642%" y="933" width="0.4367%" height="15" fill="rgb(230,79,13)" fg:x="59" fg:w="1"/><text x="26.0142%" y="943.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.7642%" y="917" width="0.4367%" height="15" fill="rgb(247,105,23)" fg:x="59" fg:w="1"/><text x="26.0142%" y="927.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.7642%" y="901" width="0.4367%" height="15" fill="rgb(223,179,41)" fg:x="59" fg:w="1"/><text x="26.0142%" y="911.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.7642%" y="885" width="0.4367%" height="15" fill="rgb(218,9,34)" fg:x="59" fg:w="1"/><text x="26.0142%" y="895.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.7642%" y="869" width="0.4367%" height="15" fill="rgb(222,106,8)" fg:x="59" fg:w="1"/><text x="26.0142%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.7642%" y="853" width="0.4367%" height="15" fill="rgb(211,220,0)" fg:x="59" fg:w="1"/><text x="26.0142%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.7642%" y="837" width="0.4367%" height="15" fill="rgb(229,52,16)" fg:x="59" fg:w="1"/><text x="26.0142%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="25.7642%" y="821" width="0.4367%" height="15" fill="rgb(212,155,18)" fg:x="59" fg:w="1"/><text x="26.0142%" y="831.50"></text></g><g><title>opentelemetry::trace::tracer::SpanBuilder::start (4 samples, 1.75%)</title><rect x="25.3275%" y="1333" width="1.7467%" height="15" fill="rgb(242,21,14)" fg:x="58" fg:w="4"/><text x="25.5775%" y="1343.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::tracer::Tracer as opentelemetry::trace::tracer::Tracer&gt;::build (4 samples, 1.75%)</title><rect x="25.3275%" y="1317" width="1.7467%" height="15" fill="rgb(222,19,48)" fg:x="58" fg:w="4"/><text x="25.5775%" y="1327.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (4 samples, 1.75%)</title><rect x="25.3275%" y="1301" width="1.7467%" height="15" fill="rgb(232,45,27)" fg:x="58" fg:w="4"/><text x="25.5775%" y="1311.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::tracer::Tracer as opentelemetry::trace::tracer::Tracer&gt;::build::{{closure}} (4 samples, 1.75%)</title><rect x="25.3275%" y="1285" width="1.7467%" height="15" fill="rgb(249,103,42)" fg:x="58" fg:w="4"/><text x="25.5775%" y="1295.50"></text></g><g><title>opentelemetry::sdk::trace::evicted_hash_map::EvictedHashMap::new (3 samples, 1.31%)</title><rect x="25.7642%" y="1269" width="1.3100%" height="15" fill="rgb(246,81,33)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1279.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V&gt;::with_capacity (3 samples, 1.31%)</title><rect x="25.7642%" y="1253" width="1.3100%" height="15" fill="rgb(252,33,42)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1263.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::with_capacity_and_hasher (3 samples, 1.31%)</title><rect x="25.7642%" y="1237" width="1.3100%" height="15" fill="rgb(209,212,41)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1247.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::with_capacity_and_hasher (3 samples, 1.31%)</title><rect x="25.7642%" y="1221" width="1.3100%" height="15" fill="rgb(207,154,6)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1231.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::with_capacity (3 samples, 1.31%)</title><rect x="25.7642%" y="1205" width="1.3100%" height="15" fill="rgb(223,64,47)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1215.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::with_capacity_in (3 samples, 1.31%)</title><rect x="25.7642%" y="1189" width="1.3100%" height="15" fill="rgb(211,161,38)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1199.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::fallible_with_capacity (3 samples, 1.31%)</title><rect x="25.7642%" y="1173" width="1.3100%" height="15" fill="rgb(219,138,40)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1183.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::fallible_with_capacity (3 samples, 1.31%)</title><rect x="25.7642%" y="1157" width="1.3100%" height="15" fill="rgb(241,228,46)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1167.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::new_uninitialized (3 samples, 1.31%)</title><rect x="25.7642%" y="1141" width="1.3100%" height="15" fill="rgb(223,209,38)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1151.50"></text></g><g><title>hashbrown::raw::alloc::inner::do_alloc (3 samples, 1.31%)</title><rect x="25.7642%" y="1125" width="1.3100%" height="15" fill="rgb(236,164,45)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1135.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (3 samples, 1.31%)</title><rect x="25.7642%" y="1109" width="1.3100%" height="15" fill="rgb(231,15,5)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1119.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (3 samples, 1.31%)</title><rect x="25.7642%" y="1093" width="1.3100%" height="15" fill="rgb(252,35,15)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1103.50"></text></g><g><title>alloc::alloc::alloc (3 samples, 1.31%)</title><rect x="25.7642%" y="1077" width="1.3100%" height="15" fill="rgb(248,181,18)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1087.50"></text></g><g><title>__libc_malloc (3 samples, 1.31%)</title><rect x="25.7642%" y="1061" width="1.3100%" height="15" fill="rgb(233,39,42)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1071.50"></text></g><g><title>[libc-2.33.so] (3 samples, 1.31%)</title><rect x="25.7642%" y="1045" width="1.3100%" height="15" fill="rgb(238,110,33)" fg:x="59" fg:w="3"/><text x="26.0142%" y="1055.50"></text></g><g><title>[unknown] (2 samples, 0.87%)</title><rect x="26.2009%" y="1029" width="0.8734%" height="15" fill="rgb(233,195,10)" fg:x="60" fg:w="2"/><text x="26.4509%" y="1039.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="26.6376%" y="1013" width="0.4367%" height="15" fill="rgb(254,105,3)" fg:x="61" fg:w="1"/><text x="26.8876%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="26.6376%" y="997" width="0.4367%" height="15" fill="rgb(221,225,9)" fg:x="61" fg:w="1"/><text x="26.8876%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="26.6376%" y="981" width="0.4367%" height="15" fill="rgb(224,227,45)" fg:x="61" fg:w="1"/><text x="26.8876%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="26.6376%" y="965" width="0.4367%" height="15" fill="rgb(229,198,43)" fg:x="61" fg:w="1"/><text x="26.8876%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="26.6376%" y="949" width="0.4367%" height="15" fill="rgb(206,209,35)" fg:x="61" fg:w="1"/><text x="26.8876%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="26.6376%" y="933" width="0.4367%" height="15" fill="rgb(245,195,53)" fg:x="61" fg:w="1"/><text x="26.8876%" y="943.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="26.6376%" y="917" width="0.4367%" height="15" fill="rgb(240,92,26)" fg:x="61" fg:w="1"/><text x="26.8876%" y="927.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="26.6376%" y="901" width="0.4367%" height="15" fill="rgb(207,40,23)" fg:x="61" fg:w="1"/><text x="26.8876%" y="911.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="26.6376%" y="885" width="0.4367%" height="15" fill="rgb(223,111,35)" fg:x="61" fg:w="1"/><text x="26.8876%" y="895.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="26.6376%" y="869" width="0.4367%" height="15" fill="rgb(229,147,28)" fg:x="61" fg:w="1"/><text x="26.8876%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="26.6376%" y="853" width="0.4367%" height="15" fill="rgb(211,29,28)" fg:x="61" fg:w="1"/><text x="26.8876%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="26.6376%" y="837" width="0.4367%" height="15" fill="rgb(228,72,33)" fg:x="61" fg:w="1"/><text x="26.8876%" y="847.50"></text></g><g><title>&lt;tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::on_close (7 samples, 3.06%)</title><rect x="24.4541%" y="1349" width="3.0568%" height="15" fill="rgb(205,214,31)" fg:x="56" fg:w="7"/><text x="24.7041%" y="1359.50">&lt;tr..</text></g><g><title>std::time::SystemTime::now (1 samples, 0.44%)</title><rect x="27.0742%" y="1333" width="0.4367%" height="15" fill="rgb(224,111,15)" fg:x="62" fg:w="1"/><text x="27.3242%" y="1343.50"></text></g><g><title>std::sys::unix::time::inner::SystemTime::now (1 samples, 0.44%)</title><rect x="27.0742%" y="1317" width="0.4367%" height="15" fill="rgb(253,21,26)" fg:x="62" fg:w="1"/><text x="27.3242%" y="1327.50"></text></g><g><title>std::sys::unix::time::inner::now (1 samples, 0.44%)</title><rect x="27.0742%" y="1301" width="0.4367%" height="15" fill="rgb(245,139,43)" fg:x="62" fg:w="1"/><text x="27.3242%" y="1311.50"></text></g><g><title>__clock_gettime (1 samples, 0.44%)</title><rect x="27.0742%" y="1285" width="0.4367%" height="15" fill="rgb(252,170,7)" fg:x="62" fg:w="1"/><text x="27.3242%" y="1295.50"></text></g><g><title>[[vdso]] (1 samples, 0.44%)</title><rect x="27.0742%" y="1269" width="0.4367%" height="15" fill="rgb(231,118,14)" fg:x="62" fg:w="1"/><text x="27.3242%" y="1279.50"></text></g><g><title>[[vdso]] (1 samples, 0.44%)</title><rect x="27.0742%" y="1253" width="0.4367%" height="15" fill="rgb(238,83,0)" fg:x="62" fg:w="1"/><text x="27.3242%" y="1263.50"></text></g><g><title>core::ptr::drop_in_place&lt;tracing::instrument::Instrumented&lt;tokio::time::driver::sleep::Sleep&gt;&gt; (8 samples, 3.49%)</title><rect x="24.4541%" y="1445" width="3.4934%" height="15" fill="rgb(221,39,39)" fg:x="56" fg:w="8"/><text x="24.7041%" y="1455.50">cor..</text></g><g><title>core::ptr::drop_in_place&lt;tracing::span::Span&gt; (8 samples, 3.49%)</title><rect x="24.4541%" y="1429" width="3.4934%" height="15" fill="rgb(222,119,46)" fg:x="56" fg:w="8"/><text x="24.7041%" y="1439.50">cor..</text></g><g><title>&lt;tracing::span::Span as core::ops::drop::Drop&gt;::drop (8 samples, 3.49%)</title><rect x="24.4541%" y="1413" width="3.4934%" height="15" fill="rgb(222,165,49)" fg:x="56" fg:w="8"/><text x="24.7041%" y="1423.50">&lt;tr..</text></g><g><title>tracing_core::dispatcher::Dispatch::try_close (8 samples, 3.49%)</title><rect x="24.4541%" y="1397" width="3.4934%" height="15" fill="rgb(219,113,52)" fg:x="56" fg:w="8"/><text x="24.7041%" y="1407.50">tra..</text></g><g><title>&lt;alloc::sync::Arc&lt;dyn tracing_core::subscriber::Subscriber+core::marker::Send+core::marker::Sync&gt; as tracing_core::subscriber::Subscriber&gt;::try_close (8 samples, 3.49%)</title><rect x="24.4541%" y="1381" width="3.4934%" height="15" fill="rgb(214,7,15)" fg:x="56" fg:w="8"/><text x="24.7041%" y="1391.50">&lt;al..</text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::try_close (8 samples, 3.49%)</title><rect x="24.4541%" y="1365" width="3.4934%" height="15" fill="rgb(235,32,4)" fg:x="56" fg:w="8"/><text x="24.7041%" y="1375.50">&lt;tr..</text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;tracing_subscriber::registry::sharded::CloseGuard&gt;&gt; (1 samples, 0.44%)</title><rect x="27.5109%" y="1349" width="0.4367%" height="15" fill="rgb(238,90,54)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1359.50"></text></g><g><title>core::ptr::drop_in_place&lt;tracing_subscriber::registry::sharded::CloseGuard&gt; (1 samples, 0.44%)</title><rect x="27.5109%" y="1333" width="0.4367%" height="15" fill="rgb(213,208,19)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1343.50"></text></g><g><title>sharded_slab::pool::Pool&lt;T,C&gt;::clear (1 samples, 0.44%)</title><rect x="27.5109%" y="1317" width="0.4367%" height="15" fill="rgb(233,156,4)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1327.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.44%)</title><rect x="27.5109%" y="1301" width="0.4367%" height="15" fill="rgb(207,194,5)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1311.50"></text></g><g><title>sharded_slab::pool::Pool&lt;T,C&gt;::clear::{{closure}} (1 samples, 0.44%)</title><rect x="27.5109%" y="1285" width="0.4367%" height="15" fill="rgb(206,111,30)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1295.50"></text></g><g><title>sharded_slab::shard::Shard&lt;T,C&gt;::mark_clear_remote (1 samples, 0.44%)</title><rect x="27.5109%" y="1269" width="0.4367%" height="15" fill="rgb(243,70,54)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1279.50"></text></g><g><title>sharded_slab::page::Shared&lt;T,C&gt;::mark_clear (1 samples, 0.44%)</title><rect x="27.5109%" y="1253" width="0.4367%" height="15" fill="rgb(242,28,8)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1263.50"></text></g><g><title>sharded_slab::sync::inner::UnsafeCell&lt;T&gt;::with (1 samples, 0.44%)</title><rect x="27.5109%" y="1237" width="0.4367%" height="15" fill="rgb(219,106,18)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1247.50"></text></g><g><title>sharded_slab::page::Shared&lt;T,C&gt;::mark_clear::{{closure}} (1 samples, 0.44%)</title><rect x="27.5109%" y="1221" width="0.4367%" height="15" fill="rgb(244,222,10)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1231.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::try_clear_storage (1 samples, 0.44%)</title><rect x="27.5109%" y="1205" width="0.4367%" height="15" fill="rgb(236,179,52)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1215.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::clear_storage (1 samples, 0.44%)</title><rect x="27.5109%" y="1189" width="0.4367%" height="15" fill="rgb(213,23,39)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1199.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::release_with (1 samples, 0.44%)</title><rect x="27.5109%" y="1173" width="0.4367%" height="15" fill="rgb(238,48,10)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1183.50"></text></g><g><title>sharded_slab::sync::inner::UnsafeCell&lt;T&gt;::with_mut (1 samples, 0.44%)</title><rect x="27.5109%" y="1157" width="0.4367%" height="15" fill="rgb(251,196,23)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1167.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::release_with::{{closure}} (1 samples, 0.44%)</title><rect x="27.5109%" y="1141" width="0.4367%" height="15" fill="rgb(250,152,24)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1151.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::clear_storage::{{closure}} (1 samples, 0.44%)</title><rect x="27.5109%" y="1125" width="0.4367%" height="15" fill="rgb(209,150,17)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1135.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.44%)</title><rect x="27.5109%" y="1109" width="0.4367%" height="15" fill="rgb(234,202,34)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1119.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::clear_storage::{{closure}}::{{closure}} (1 samples, 0.44%)</title><rect x="27.5109%" y="1093" width="0.4367%" height="15" fill="rgb(253,148,53)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1103.50"></text></g><g><title>&lt;tracing_subscriber::registry::sharded::DataInner as sharded_slab::clear::Clear&gt;::clear (1 samples, 0.44%)</title><rect x="27.5109%" y="1077" width="0.4367%" height="15" fill="rgb(218,129,16)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1087.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsInner::clear (1 samples, 0.44%)</title><rect x="27.5109%" y="1061" width="0.4367%" height="15" fill="rgb(216,85,19)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1071.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::clear (1 samples, 0.44%)</title><rect x="27.5109%" y="1045" width="0.4367%" height="15" fill="rgb(235,228,7)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1055.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::clear (1 samples, 0.44%)</title><rect x="27.5109%" y="1029" width="0.4367%" height="15" fill="rgb(245,175,0)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1039.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::clear (1 samples, 0.44%)</title><rect x="27.5109%" y="1013" width="0.4367%" height="15" fill="rgb(208,168,36)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1023.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::drop_elements (1 samples, 0.44%)</title><rect x="27.5109%" y="997" width="0.4367%" height="15" fill="rgb(246,171,24)" fg:x="63" fg:w="1"/><text x="27.7609%" y="1007.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (1 samples, 0.44%)</title><rect x="27.5109%" y="981" width="0.4367%" height="15" fill="rgb(215,142,24)" fg:x="63" fg:w="1"/><text x="27.7609%" y="991.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (1 samples, 0.44%)</title><rect x="27.5109%" y="965" width="0.4367%" height="15" fill="rgb(250,187,7)" fg:x="63" fg:w="1"/><text x="27.7609%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;(core::any::TypeId,alloc::boxed::Box&lt;dyn core::any::Any+core::marker::Send+core::marker::Sync&gt;)&gt; (1 samples, 0.44%)</title><rect x="27.5109%" y="949" width="0.4367%" height="15" fill="rgb(228,66,33)" fg:x="63" fg:w="1"/><text x="27.7609%" y="959.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;dyn core::any::Any+core::marker::Send+core::marker::Sync&gt;&gt; (1 samples, 0.44%)</title><rect x="27.5109%" y="933" width="0.4367%" height="15" fill="rgb(234,215,21)" fg:x="63" fg:w="1"/><text x="27.7609%" y="943.50"></text></g><g><title>cfree (1 samples, 0.44%)</title><rect x="27.5109%" y="917" width="0.4367%" height="15" fill="rgb(222,191,20)" fg:x="63" fg:w="1"/><text x="27.7609%" y="927.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="27.5109%" y="901" width="0.4367%" height="15" fill="rgb(245,79,54)" fg:x="63" fg:w="1"/><text x="27.7609%" y="911.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="27.5109%" y="885" width="0.4367%" height="15" fill="rgb(240,10,37)" fg:x="63" fg:w="1"/><text x="27.7609%" y="895.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="27.5109%" y="869" width="0.4367%" height="15" fill="rgb(214,192,32)" fg:x="63" fg:w="1"/><text x="27.7609%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="27.5109%" y="853" width="0.4367%" height="15" fill="rgb(209,36,54)" fg:x="63" fg:w="1"/><text x="27.7609%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="27.5109%" y="837" width="0.4367%" height="15" fill="rgb(220,10,11)" fg:x="63" fg:w="1"/><text x="27.7609%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="27.5109%" y="821" width="0.4367%" height="15" fill="rgb(221,106,17)" fg:x="63" fg:w="1"/><text x="27.7609%" y="831.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="27.5109%" y="805" width="0.4367%" height="15" fill="rgb(251,142,44)" fg:x="63" fg:w="1"/><text x="27.7609%" y="815.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="27.5109%" y="789" width="0.4367%" height="15" fill="rgb(238,13,15)" fg:x="63" fg:w="1"/><text x="27.7609%" y="799.50"></text></g><g><title>tracing_core::span::Attributes::record (2 samples, 0.87%)</title><rect x="27.9476%" y="1269" width="0.8734%" height="15" fill="rgb(208,107,27)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1279.50"></text></g><g><title>tracing_core::field::ValueSet::record (2 samples, 0.87%)</title><rect x="27.9476%" y="1253" width="0.8734%" height="15" fill="rgb(205,136,37)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1263.50"></text></g><g><title>&lt;&amp;T as tracing_core::field::Value&gt;::record (2 samples, 0.87%)</title><rect x="27.9476%" y="1237" width="0.8734%" height="15" fill="rgb(250,205,27)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1247.50"></text></g><g><title>&lt;tracing_opentelemetry::layer::SpanAttributeVisitor as tracing_core::field::Visit&gt;::record_str (2 samples, 0.87%)</title><rect x="27.9476%" y="1221" width="0.8734%" height="15" fill="rgb(210,80,43)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1231.50"></text></g><g><title>&lt;str as alloc::string::ToString&gt;::to_string (2 samples, 0.87%)</title><rect x="27.9476%" y="1205" width="0.8734%" height="15" fill="rgb(247,160,36)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1215.50"></text></g><g><title>&lt;alloc::string::String as core::convert::From&lt;&amp;str&gt;&gt;::from (2 samples, 0.87%)</title><rect x="27.9476%" y="1189" width="0.8734%" height="15" fill="rgb(234,13,49)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1199.50"></text></g><g><title>alloc::str::&lt;impl alloc::borrow::ToOwned for str&gt;::to_owned (2 samples, 0.87%)</title><rect x="27.9476%" y="1173" width="0.8734%" height="15" fill="rgb(234,122,0)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1183.50"></text></g><g><title>alloc::slice::&lt;impl alloc::borrow::ToOwned for [T]&gt;::to_owned (2 samples, 0.87%)</title><rect x="27.9476%" y="1157" width="0.8734%" height="15" fill="rgb(207,146,38)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1167.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec (2 samples, 0.87%)</title><rect x="27.9476%" y="1141" width="0.8734%" height="15" fill="rgb(207,177,25)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1151.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (2 samples, 0.87%)</title><rect x="27.9476%" y="1125" width="0.8734%" height="15" fill="rgb(211,178,42)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1135.50"></text></g><g><title>alloc::slice::hack::to_vec (2 samples, 0.87%)</title><rect x="27.9476%" y="1109" width="0.8734%" height="15" fill="rgb(230,69,54)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1119.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (2 samples, 0.87%)</title><rect x="27.9476%" y="1093" width="0.8734%" height="15" fill="rgb(214,135,41)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1103.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (2 samples, 0.87%)</title><rect x="27.9476%" y="1077" width="0.8734%" height="15" fill="rgb(237,67,25)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1087.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (2 samples, 0.87%)</title><rect x="27.9476%" y="1061" width="0.8734%" height="15" fill="rgb(222,189,50)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1071.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (2 samples, 0.87%)</title><rect x="27.9476%" y="1045" width="0.8734%" height="15" fill="rgb(245,148,34)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1055.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.87%)</title><rect x="27.9476%" y="1029" width="0.8734%" height="15" fill="rgb(222,29,6)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1039.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.87%)</title><rect x="27.9476%" y="1013" width="0.8734%" height="15" fill="rgb(221,189,43)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1023.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.87%)</title><rect x="27.9476%" y="997" width="0.8734%" height="15" fill="rgb(207,36,27)" fg:x="64" fg:w="2"/><text x="28.1976%" y="1007.50"></text></g><g><title>__libc_malloc (2 samples, 0.87%)</title><rect x="27.9476%" y="981" width="0.8734%" height="15" fill="rgb(217,90,24)" fg:x="64" fg:w="2"/><text x="28.1976%" y="991.50"></text></g><g><title>[libc-2.33.so] (2 samples, 0.87%)</title><rect x="27.9476%" y="965" width="0.8734%" height="15" fill="rgb(224,66,35)" fg:x="64" fg:w="2"/><text x="28.1976%" y="975.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="28.3843%" y="949" width="0.4367%" height="15" fill="rgb(221,13,50)" fg:x="65" fg:w="1"/><text x="28.6343%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.3843%" y="933" width="0.4367%" height="15" fill="rgb(236,68,49)" fg:x="65" fg:w="1"/><text x="28.6343%" y="943.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.3843%" y="917" width="0.4367%" height="15" fill="rgb(229,146,28)" fg:x="65" fg:w="1"/><text x="28.6343%" y="927.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.3843%" y="901" width="0.4367%" height="15" fill="rgb(225,31,38)" fg:x="65" fg:w="1"/><text x="28.6343%" y="911.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.3843%" y="885" width="0.4367%" height="15" fill="rgb(250,208,3)" fg:x="65" fg:w="1"/><text x="28.6343%" y="895.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.3843%" y="869" width="0.4367%" height="15" fill="rgb(246,54,23)" fg:x="65" fg:w="1"/><text x="28.6343%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.3843%" y="853" width="0.4367%" height="15" fill="rgb(243,76,11)" fg:x="65" fg:w="1"/><text x="28.6343%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.3843%" y="837" width="0.4367%" height="15" fill="rgb(245,21,50)" fg:x="65" fg:w="1"/><text x="28.6343%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.3843%" y="821" width="0.4367%" height="15" fill="rgb(228,9,43)" fg:x="65" fg:w="1"/><text x="28.6343%" y="831.50"></text></g><g><title>tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt;::parent_context (1 samples, 0.44%)</title><rect x="28.8210%" y="1269" width="0.4367%" height="15" fill="rgb(208,100,47)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1279.50"></text></g><g><title>core::option::Option&lt;T&gt;::and_then (1 samples, 0.44%)</title><rect x="28.8210%" y="1253" width="0.4367%" height="15" fill="rgb(232,26,8)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1263.50"></text></g><g><title>tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt;::parent_context::{{closure}} (1 samples, 0.44%)</title><rect x="28.8210%" y="1237" width="0.4367%" height="15" fill="rgb(216,166,38)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1247.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.44%)</title><rect x="28.8210%" y="1221" width="0.4367%" height="15" fill="rgb(251,202,51)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1231.50"></text></g><g><title>tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt;::parent_context::{{closure}}::{{closure}} (1 samples, 0.44%)</title><rect x="28.8210%" y="1205" width="0.4367%" height="15" fill="rgb(254,216,34)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1215.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::tracer::Tracer as tracing_opentelemetry::tracer::PreSampledTracer&gt;::sampled_context (1 samples, 0.44%)</title><rect x="28.8210%" y="1189" width="0.4367%" height="15" fill="rgb(251,32,27)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1199.50"></text></g><g><title>&lt;opentelemetry::context::Context as opentelemetry::trace::context::TraceContextExt&gt;::with_remote_span_context (1 samples, 0.44%)</title><rect x="28.8210%" y="1173" width="0.4367%" height="15" fill="rgb(208,127,28)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1183.50"></text></g><g><title>opentelemetry::context::Context::with_value (1 samples, 0.44%)</title><rect x="28.8210%" y="1157" width="0.4367%" height="15" fill="rgb(224,137,22)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1167.50"></text></g><g><title>&lt;opentelemetry::context::Context as core::clone::Clone&gt;::clone (1 samples, 0.44%)</title><rect x="28.8210%" y="1141" width="0.4367%" height="15" fill="rgb(254,70,32)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1151.50"></text></g><g><title>&lt;std::collections::hash::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (1 samples, 0.44%)</title><rect x="28.8210%" y="1125" width="0.4367%" height="15" fill="rgb(229,75,37)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1135.50"></text></g><g><title>&lt;hashbrown::map::HashMap&lt;K,V,S&gt; as core::clone::Clone&gt;::clone (1 samples, 0.44%)</title><rect x="28.8210%" y="1109" width="0.4367%" height="15" fill="rgb(252,64,23)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1119.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.44%)</title><rect x="28.8210%" y="1093" width="0.4367%" height="15" fill="rgb(232,162,48)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1103.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::new_uninitialized (1 samples, 0.44%)</title><rect x="28.8210%" y="1077" width="0.4367%" height="15" fill="rgb(246,160,12)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1087.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::new_uninitialized (1 samples, 0.44%)</title><rect x="28.8210%" y="1061" width="0.4367%" height="15" fill="rgb(247,166,0)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1071.50"></text></g><g><title>hashbrown::raw::alloc::inner::do_alloc (1 samples, 0.44%)</title><rect x="28.8210%" y="1045" width="0.4367%" height="15" fill="rgb(249,219,21)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1055.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.44%)</title><rect x="28.8210%" y="1029" width="0.4367%" height="15" fill="rgb(205,209,3)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1039.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.44%)</title><rect x="28.8210%" y="1013" width="0.4367%" height="15" fill="rgb(243,44,1)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1023.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.44%)</title><rect x="28.8210%" y="997" width="0.4367%" height="15" fill="rgb(206,159,16)" fg:x="66" fg:w="1"/><text x="29.0710%" y="1007.50"></text></g><g><title>__libc_malloc (1 samples, 0.44%)</title><rect x="28.8210%" y="981" width="0.4367%" height="15" fill="rgb(244,77,30)" fg:x="66" fg:w="1"/><text x="29.0710%" y="991.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="28.8210%" y="965" width="0.4367%" height="15" fill="rgb(218,69,12)" fg:x="66" fg:w="1"/><text x="29.0710%" y="975.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="28.8210%" y="949" width="0.4367%" height="15" fill="rgb(212,87,7)" fg:x="66" fg:w="1"/><text x="29.0710%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.8210%" y="933" width="0.4367%" height="15" fill="rgb(245,114,25)" fg:x="66" fg:w="1"/><text x="29.0710%" y="943.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.8210%" y="917" width="0.4367%" height="15" fill="rgb(210,61,42)" fg:x="66" fg:w="1"/><text x="29.0710%" y="927.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.8210%" y="901" width="0.4367%" height="15" fill="rgb(211,52,33)" fg:x="66" fg:w="1"/><text x="29.0710%" y="911.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.8210%" y="885" width="0.4367%" height="15" fill="rgb(234,58,33)" fg:x="66" fg:w="1"/><text x="29.0710%" y="895.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.8210%" y="869" width="0.4367%" height="15" fill="rgb(220,115,36)" fg:x="66" fg:w="1"/><text x="29.0710%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.8210%" y="853" width="0.4367%" height="15" fill="rgb(243,153,54)" fg:x="66" fg:w="1"/><text x="29.0710%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.8210%" y="837" width="0.4367%" height="15" fill="rgb(251,47,18)" fg:x="66" fg:w="1"/><text x="29.0710%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.8210%" y="821" width="0.4367%" height="15" fill="rgb(242,102,42)" fg:x="66" fg:w="1"/><text x="29.0710%" y="831.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.8210%" y="805" width="0.4367%" height="15" fill="rgb(234,31,38)" fg:x="66" fg:w="1"/><text x="29.0710%" y="815.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.8210%" y="789" width="0.4367%" height="15" fill="rgb(221,117,51)" fg:x="66" fg:w="1"/><text x="29.0710%" y="799.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.8210%" y="773" width="0.4367%" height="15" fill="rgb(212,20,18)" fg:x="66" fg:w="1"/><text x="29.0710%" y="783.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.8210%" y="757" width="0.4367%" height="15" fill="rgb(245,133,36)" fg:x="66" fg:w="1"/><text x="29.0710%" y="767.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="28.8210%" y="741" width="0.4367%" height="15" fill="rgb(212,6,19)" fg:x="66" fg:w="1"/><text x="29.0710%" y="751.50"></text></g><g><title>&lt;tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::new_span (4 samples, 1.75%)</title><rect x="27.9476%" y="1285" width="1.7467%" height="15" fill="rgb(218,1,36)" fg:x="64" fg:w="4"/><text x="28.1976%" y="1295.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsMut::insert (1 samples, 0.44%)</title><rect x="29.2576%" y="1269" width="0.4367%" height="15" fill="rgb(246,84,54)" fg:x="67" fg:w="1"/><text x="29.5076%" y="1279.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsMut::replace (1 samples, 0.44%)</title><rect x="29.2576%" y="1253" width="0.4367%" height="15" fill="rgb(242,110,6)" fg:x="67" fg:w="1"/><text x="29.5076%" y="1263.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsInner::insert (1 samples, 0.44%)</title><rect x="29.2576%" y="1237" width="0.4367%" height="15" fill="rgb(214,47,5)" fg:x="67" fg:w="1"/><text x="29.5076%" y="1247.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::insert (1 samples, 0.44%)</title><rect x="29.2576%" y="1221" width="0.4367%" height="15" fill="rgb(218,159,25)" fg:x="67" fg:w="1"/><text x="29.5076%" y="1231.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (1 samples, 0.44%)</title><rect x="29.2576%" y="1205" width="0.4367%" height="15" fill="rgb(215,211,28)" fg:x="67" fg:w="1"/><text x="29.5076%" y="1215.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::insert (1 samples, 0.44%)</title><rect x="29.2576%" y="1189" width="0.4367%" height="15" fill="rgb(238,59,32)" fg:x="67" fg:w="1"/><text x="29.5076%" y="1199.50"></text></g><g><title>&lt;&amp;mut W as core::fmt::Write&gt;::write_char (1 samples, 0.44%)</title><rect x="30.1310%" y="1061" width="0.4367%" height="15" fill="rgb(226,82,3)" fg:x="69" fg:w="1"/><text x="30.3810%" y="1071.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_char (1 samples, 0.44%)</title><rect x="30.1310%" y="1045" width="0.4367%" height="15" fill="rgb(240,164,32)" fg:x="69" fg:w="1"/><text x="30.3810%" y="1055.50"></text></g><g><title>alloc::string::String::push (1 samples, 0.44%)</title><rect x="30.1310%" y="1029" width="0.4367%" height="15" fill="rgb(232,46,7)" fg:x="69" fg:w="1"/><text x="30.3810%" y="1039.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.44%)</title><rect x="30.1310%" y="1013" width="0.4367%" height="15" fill="rgb(229,129,53)" fg:x="69" fg:w="1"/><text x="30.3810%" y="1023.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (1 samples, 0.44%)</title><rect x="30.1310%" y="997" width="0.4367%" height="15" fill="rgb(234,188,29)" fg:x="69" fg:w="1"/><text x="30.3810%" y="1007.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.44%)</title><rect x="30.1310%" y="981" width="0.4367%" height="15" fill="rgb(246,141,4)" fg:x="69" fg:w="1"/><text x="30.3810%" y="991.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (1 samples, 0.44%)</title><rect x="30.1310%" y="965" width="0.4367%" height="15" fill="rgb(229,23,39)" fg:x="69" fg:w="1"/><text x="30.3810%" y="975.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (1 samples, 0.44%)</title><rect x="30.1310%" y="949" width="0.4367%" height="15" fill="rgb(206,12,3)" fg:x="69" fg:w="1"/><text x="30.3810%" y="959.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.44%)</title><rect x="30.1310%" y="933" width="0.4367%" height="15" fill="rgb(252,226,20)" fg:x="69" fg:w="1"/><text x="30.3810%" y="943.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (1 samples, 0.44%)</title><rect x="30.1310%" y="917" width="0.4367%" height="15" fill="rgb(216,123,35)" fg:x="69" fg:w="1"/><text x="30.3810%" y="927.50"></text></g><g><title>alloc::alloc::Global::grow_impl (1 samples, 0.44%)</title><rect x="30.1310%" y="901" width="0.4367%" height="15" fill="rgb(212,68,40)" fg:x="69" fg:w="1"/><text x="30.3810%" y="911.50"></text></g><g><title>alloc::alloc::realloc (1 samples, 0.44%)</title><rect x="30.1310%" y="885" width="0.4367%" height="15" fill="rgb(254,125,32)" fg:x="69" fg:w="1"/><text x="30.3810%" y="895.50"></text></g><g><title>realloc (1 samples, 0.44%)</title><rect x="30.1310%" y="869" width="0.4367%" height="15" fill="rgb(253,97,22)" fg:x="69" fg:w="1"/><text x="30.3810%" y="879.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="30.1310%" y="853" width="0.4367%" height="15" fill="rgb(241,101,14)" fg:x="69" fg:w="1"/><text x="30.3810%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="837" width="0.4367%" height="15" fill="rgb(238,103,29)" fg:x="69" fg:w="1"/><text x="30.3810%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="821" width="0.4367%" height="15" fill="rgb(233,195,47)" fg:x="69" fg:w="1"/><text x="30.3810%" y="831.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="805" width="0.4367%" height="15" fill="rgb(246,218,30)" fg:x="69" fg:w="1"/><text x="30.3810%" y="815.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="789" width="0.4367%" height="15" fill="rgb(219,145,47)" fg:x="69" fg:w="1"/><text x="30.3810%" y="799.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="773" width="0.4367%" height="15" fill="rgb(243,12,26)" fg:x="69" fg:w="1"/><text x="30.3810%" y="783.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="757" width="0.4367%" height="15" fill="rgb(214,87,16)" fg:x="69" fg:w="1"/><text x="30.3810%" y="767.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="741" width="0.4367%" height="15" fill="rgb(208,99,42)" fg:x="69" fg:w="1"/><text x="30.3810%" y="751.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="725" width="0.4367%" height="15" fill="rgb(253,99,2)" fg:x="69" fg:w="1"/><text x="30.3810%" y="735.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="709" width="0.4367%" height="15" fill="rgb(220,168,23)" fg:x="69" fg:w="1"/><text x="30.3810%" y="719.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="693" width="0.4367%" height="15" fill="rgb(242,38,24)" fg:x="69" fg:w="1"/><text x="30.3810%" y="703.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="677" width="0.4367%" height="15" fill="rgb(225,182,9)" fg:x="69" fg:w="1"/><text x="30.3810%" y="687.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="661" width="0.4367%" height="15" fill="rgb(243,178,37)" fg:x="69" fg:w="1"/><text x="30.3810%" y="671.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="645" width="0.4367%" height="15" fill="rgb(232,139,19)" fg:x="69" fg:w="1"/><text x="30.3810%" y="655.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="30.1310%" y="629" width="0.4367%" height="15" fill="rgb(225,201,24)" fg:x="69" fg:w="1"/><text x="30.3810%" y="639.50"></text></g><g><title>core::unicode::printable::is_printable (1 samples, 0.44%)</title><rect x="31.0044%" y="1029" width="0.4367%" height="15" fill="rgb(221,47,46)" fg:x="71" fg:w="1"/><text x="31.2544%" y="1039.50"></text></g><g><title>core::unicode::printable::check (1 samples, 0.44%)</title><rect x="31.0044%" y="1013" width="0.4367%" height="15" fill="rgb(249,23,13)" fg:x="71" fg:w="1"/><text x="31.2544%" y="1023.50"></text></g><g><title>core::char::methods::&lt;impl char&gt;::is_grapheme_extended (2 samples, 0.87%)</title><rect x="31.0044%" y="1045" width="0.8734%" height="15" fill="rgb(219,9,5)" fg:x="71" fg:w="2"/><text x="31.2544%" y="1055.50"></text></g><g><title>core::unicode::unicode_data::grapheme_extend::lookup (1 samples, 0.44%)</title><rect x="31.4410%" y="1029" width="0.4367%" height="15" fill="rgb(254,171,16)" fg:x="72" fg:w="1"/><text x="31.6910%" y="1039.50"></text></g><g><title>core::unicode::unicode_data::skip_search (1 samples, 0.44%)</title><rect x="31.4410%" y="1013" width="0.4367%" height="15" fill="rgb(230,171,20)" fg:x="72" fg:w="1"/><text x="31.6910%" y="1023.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::binary_search_by_key (1 samples, 0.44%)</title><rect x="31.4410%" y="997" width="0.4367%" height="15" fill="rgb(210,71,41)" fg:x="72" fg:w="1"/><text x="31.6910%" y="1007.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::binary_search_by (1 samples, 0.44%)</title><rect x="31.4410%" y="981" width="0.4367%" height="15" fill="rgb(206,173,20)" fg:x="72" fg:w="1"/><text x="31.6910%" y="991.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::binary_search_by_key::{{closure}} (1 samples, 0.44%)</title><rect x="31.4410%" y="965" width="0.4367%" height="15" fill="rgb(233,88,34)" fg:x="72" fg:w="1"/><text x="31.6910%" y="975.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::Ord for u32&gt;::cmp (1 samples, 0.44%)</title><rect x="31.4410%" y="949" width="0.4367%" height="15" fill="rgb(223,209,46)" fg:x="72" fg:w="1"/><text x="31.6910%" y="959.50"></text></g><g><title>core::char::methods::&lt;impl char&gt;::escape_debug_ext (6 samples, 2.62%)</title><rect x="30.5677%" y="1061" width="2.6201%" height="15" fill="rgb(250,43,18)" fg:x="70" fg:w="6"/><text x="30.8177%" y="1071.50">co..</text></g><g><title>core::unicode::printable::is_printable (3 samples, 1.31%)</title><rect x="31.8777%" y="1045" width="1.3100%" height="15" fill="rgb(208,13,10)" fg:x="73" fg:w="3"/><text x="32.1277%" y="1055.50"></text></g><g><title>core::unicode::printable::check (3 samples, 1.31%)</title><rect x="31.8777%" y="1029" width="1.3100%" height="15" fill="rgb(212,200,36)" fg:x="73" fg:w="3"/><text x="32.1277%" y="1039.50"></text></g><g><title>&lt;tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::on_enter (1 samples, 0.44%)</title><rect x="33.1878%" y="917" width="0.4367%" height="15" fill="rgb(225,90,30)" fg:x="76" fg:w="1"/><text x="33.4378%" y="927.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsMut::get_mut (1 samples, 0.44%)</title><rect x="33.1878%" y="901" width="0.4367%" height="15" fill="rgb(236,182,39)" fg:x="76" fg:w="1"/><text x="33.4378%" y="911.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsInner::get_mut (1 samples, 0.44%)</title><rect x="33.1878%" y="885" width="0.4367%" height="15" fill="rgb(212,144,35)" fg:x="76" fg:w="1"/><text x="33.4378%" y="895.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::get_mut (1 samples, 0.44%)</title><rect x="33.1878%" y="869" width="0.4367%" height="15" fill="rgb(228,63,44)" fg:x="76" fg:w="1"/><text x="33.4378%" y="879.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get_mut (1 samples, 0.44%)</title><rect x="33.1878%" y="853" width="0.4367%" height="15" fill="rgb(228,109,6)" fg:x="76" fg:w="1"/><text x="33.4378%" y="863.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get_inner_mut (1 samples, 0.44%)</title><rect x="33.1878%" y="837" width="0.4367%" height="15" fill="rgb(238,117,24)" fg:x="76" fg:w="1"/><text x="33.4378%" y="847.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::get_mut (1 samples, 0.44%)</title><rect x="33.1878%" y="821" width="0.4367%" height="15" fill="rgb(242,26,26)" fg:x="76" fg:w="1"/><text x="33.4378%" y="831.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find (1 samples, 0.44%)</title><rect x="33.1878%" y="805" width="0.4367%" height="15" fill="rgb(221,92,48)" fg:x="76" fg:w="1"/><text x="33.4378%" y="815.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="34.4978%" y="789" width="0.4367%" height="15" fill="rgb(209,209,32)" fg:x="79" fg:w="1"/><text x="34.7478%" y="799.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="34.4978%" y="773" width="0.4367%" height="15" fill="rgb(221,70,22)" fg:x="79" fg:w="1"/><text x="34.7478%" y="783.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.4978%" y="757" width="0.4367%" height="15" fill="rgb(248,145,5)" fg:x="79" fg:w="1"/><text x="34.7478%" y="767.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.4978%" y="741" width="0.4367%" height="15" fill="rgb(226,116,26)" fg:x="79" fg:w="1"/><text x="34.7478%" y="751.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.4978%" y="725" width="0.4367%" height="15" fill="rgb(244,5,17)" fg:x="79" fg:w="1"/><text x="34.7478%" y="735.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.4978%" y="709" width="0.4367%" height="15" fill="rgb(252,159,33)" fg:x="79" fg:w="1"/><text x="34.7478%" y="719.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.4978%" y="693" width="0.4367%" height="15" fill="rgb(206,71,0)" fg:x="79" fg:w="1"/><text x="34.7478%" y="703.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.4978%" y="677" width="0.4367%" height="15" fill="rgb(233,118,54)" fg:x="79" fg:w="1"/><text x="34.7478%" y="687.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.4978%" y="661" width="0.4367%" height="15" fill="rgb(234,83,48)" fg:x="79" fg:w="1"/><text x="34.7478%" y="671.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.4978%" y="645" width="0.4367%" height="15" fill="rgb(228,3,54)" fg:x="79" fg:w="1"/><text x="34.7478%" y="655.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.4978%" y="629" width="0.4367%" height="15" fill="rgb(226,155,13)" fg:x="79" fg:w="1"/><text x="34.7478%" y="639.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.4978%" y="613" width="0.4367%" height="15" fill="rgb(241,28,37)" fg:x="79" fg:w="1"/><text x="34.7478%" y="623.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.4978%" y="597" width="0.4367%" height="15" fill="rgb(233,93,10)" fg:x="79" fg:w="1"/><text x="34.7478%" y="607.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.4978%" y="581" width="0.4367%" height="15" fill="rgb(225,113,19)" fg:x="79" fg:w="1"/><text x="34.7478%" y="591.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.4978%" y="565" width="0.4367%" height="15" fill="rgb(241,2,18)" fg:x="79" fg:w="1"/><text x="34.7478%" y="575.50"></text></g><g><title>&lt;tracing_subscriber::fmt::fmt_layer::Layer&lt;S,N,E,W&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::new_span (13 samples, 5.68%)</title><rect x="29.6943%" y="1237" width="5.6769%" height="15" fill="rgb(228,207,21)" fg:x="68" fg:w="13"/><text x="29.9443%" y="1247.50">&lt;tracin..</text></g><g><title>&lt;M as tracing_subscriber::fmt::format::FormatFields&gt;::format_fields (13 samples, 5.68%)</title><rect x="29.6943%" y="1221" width="5.6769%" height="15" fill="rgb(213,211,35)" fg:x="68" fg:w="13"/><text x="29.9443%" y="1231.50">&lt;M as t..</text></g><g><title>&lt;&amp;F as tracing_subscriber::field::RecordFields&gt;::record (13 samples, 5.68%)</title><rect x="29.6943%" y="1205" width="5.6769%" height="15" fill="rgb(209,83,10)" fg:x="68" fg:w="13"/><text x="29.9443%" y="1215.50">&lt;&amp;F as ..</text></g><g><title>tracing_core::span::Attributes::record (13 samples, 5.68%)</title><rect x="29.6943%" y="1189" width="5.6769%" height="15" fill="rgb(209,164,1)" fg:x="68" fg:w="13"/><text x="29.9443%" y="1199.50">tracing..</text></g><g><title>tracing_core::field::ValueSet::record (13 samples, 5.68%)</title><rect x="29.6943%" y="1173" width="5.6769%" height="15" fill="rgb(213,184,43)" fg:x="68" fg:w="13"/><text x="29.9443%" y="1183.50">tracing..</text></g><g><title>&lt;&amp;T as tracing_core::field::Value&gt;::record (13 samples, 5.68%)</title><rect x="29.6943%" y="1157" width="5.6769%" height="15" fill="rgb(231,61,34)" fg:x="68" fg:w="13"/><text x="29.9443%" y="1167.50">&lt;&amp;T as ..</text></g><g><title>&lt;tracing_subscriber::fmt::format::DefaultVisitor as tracing_core::field::Visit&gt;::record_str (13 samples, 5.68%)</title><rect x="29.6943%" y="1141" width="5.6769%" height="15" fill="rgb(235,75,3)" fg:x="68" fg:w="13"/><text x="29.9443%" y="1151.50">&lt;tracin..</text></g><g><title>&lt;tracing_subscriber::fmt::format::DefaultVisitor as tracing_core::field::Visit&gt;::record_debug (13 samples, 5.68%)</title><rect x="29.6943%" y="1125" width="5.6769%" height="15" fill="rgb(220,106,47)" fg:x="68" fg:w="13"/><text x="29.9443%" y="1135.50">&lt;tracin..</text></g><g><title>core::fmt::Write::write_fmt (12 samples, 5.24%)</title><rect x="30.1310%" y="1109" width="5.2402%" height="15" fill="rgb(210,196,33)" fg:x="69" fg:w="12"/><text x="30.3810%" y="1119.50">core::..</text></g><g><title>core::fmt::write (12 samples, 5.24%)</title><rect x="30.1310%" y="1093" width="5.2402%" height="15" fill="rgb(229,154,42)" fg:x="69" fg:w="12"/><text x="30.3810%" y="1103.50">core::..</text></g><g><title>&lt;str as core::fmt::Debug&gt;::fmt (12 samples, 5.24%)</title><rect x="30.1310%" y="1077" width="5.2402%" height="15" fill="rgb(228,114,26)" fg:x="69" fg:w="12"/><text x="30.3810%" y="1087.50">&lt;str a..</text></g><g><title>core::fmt::Formatter::write_str (5 samples, 2.18%)</title><rect x="33.1878%" y="1061" width="2.1834%" height="15" fill="rgb(208,144,1)" fg:x="76" fg:w="5"/><text x="33.4378%" y="1071.50">c..</text></g><g><title>&lt;&amp;mut W as core::fmt::Write&gt;::write_str (5 samples, 2.18%)</title><rect x="33.1878%" y="1045" width="2.1834%" height="15" fill="rgb(239,112,37)" fg:x="76" fg:w="5"/><text x="33.4378%" y="1055.50">&lt;..</text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (5 samples, 2.18%)</title><rect x="33.1878%" y="1029" width="2.1834%" height="15" fill="rgb(210,96,50)" fg:x="76" fg:w="5"/><text x="33.4378%" y="1039.50">&lt;..</text></g><g><title>alloc::string::String::push_str (5 samples, 2.18%)</title><rect x="33.1878%" y="1013" width="2.1834%" height="15" fill="rgb(222,178,2)" fg:x="76" fg:w="5"/><text x="33.4378%" y="1023.50">a..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (5 samples, 2.18%)</title><rect x="33.1878%" y="997" width="2.1834%" height="15" fill="rgb(226,74,18)" fg:x="76" fg:w="5"/><text x="33.4378%" y="1007.50">a..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (5 samples, 2.18%)</title><rect x="33.1878%" y="981" width="2.1834%" height="15" fill="rgb(225,67,54)" fg:x="76" fg:w="5"/><text x="33.4378%" y="991.50">&lt;..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (5 samples, 2.18%)</title><rect x="33.1878%" y="965" width="2.1834%" height="15" fill="rgb(251,92,32)" fg:x="76" fg:w="5"/><text x="33.4378%" y="975.50">a..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (5 samples, 2.18%)</title><rect x="33.1878%" y="949" width="2.1834%" height="15" fill="rgb(228,149,22)" fg:x="76" fg:w="5"/><text x="33.4378%" y="959.50">a..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (5 samples, 2.18%)</title><rect x="33.1878%" y="933" width="2.1834%" height="15" fill="rgb(243,54,13)" fg:x="76" fg:w="5"/><text x="33.4378%" y="943.50">a..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (4 samples, 1.75%)</title><rect x="33.6245%" y="917" width="1.7467%" height="15" fill="rgb(243,180,28)" fg:x="77" fg:w="4"/><text x="33.8745%" y="927.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (4 samples, 1.75%)</title><rect x="33.6245%" y="901" width="1.7467%" height="15" fill="rgb(208,167,24)" fg:x="77" fg:w="4"/><text x="33.8745%" y="911.50"></text></g><g><title>alloc::raw_vec::finish_grow (4 samples, 1.75%)</title><rect x="33.6245%" y="885" width="1.7467%" height="15" fill="rgb(245,73,45)" fg:x="77" fg:w="4"/><text x="33.8745%" y="895.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (4 samples, 1.75%)</title><rect x="33.6245%" y="869" width="1.7467%" height="15" fill="rgb(237,203,48)" fg:x="77" fg:w="4"/><text x="33.8745%" y="879.50"></text></g><g><title>alloc::alloc::Global::grow_impl (4 samples, 1.75%)</title><rect x="33.6245%" y="853" width="1.7467%" height="15" fill="rgb(211,197,16)" fg:x="77" fg:w="4"/><text x="33.8745%" y="863.50"></text></g><g><title>alloc::alloc::realloc (4 samples, 1.75%)</title><rect x="33.6245%" y="837" width="1.7467%" height="15" fill="rgb(243,99,51)" fg:x="77" fg:w="4"/><text x="33.8745%" y="847.50"></text></g><g><title>realloc (4 samples, 1.75%)</title><rect x="33.6245%" y="821" width="1.7467%" height="15" fill="rgb(215,123,29)" fg:x="77" fg:w="4"/><text x="33.8745%" y="831.50"></text></g><g><title>[libc-2.33.so] (4 samples, 1.75%)</title><rect x="33.6245%" y="805" width="1.7467%" height="15" fill="rgb(239,186,37)" fg:x="77" fg:w="4"/><text x="33.8745%" y="815.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.9345%" y="789" width="0.4367%" height="15" fill="rgb(252,136,39)" fg:x="80" fg:w="1"/><text x="35.1845%" y="799.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.9345%" y="773" width="0.4367%" height="15" fill="rgb(223,213,32)" fg:x="80" fg:w="1"/><text x="35.1845%" y="783.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.9345%" y="757" width="0.4367%" height="15" fill="rgb(233,115,5)" fg:x="80" fg:w="1"/><text x="35.1845%" y="767.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.9345%" y="741" width="0.4367%" height="15" fill="rgb(207,226,44)" fg:x="80" fg:w="1"/><text x="35.1845%" y="751.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.9345%" y="725" width="0.4367%" height="15" fill="rgb(208,126,0)" fg:x="80" fg:w="1"/><text x="35.1845%" y="735.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.9345%" y="709" width="0.4367%" height="15" fill="rgb(244,66,21)" fg:x="80" fg:w="1"/><text x="35.1845%" y="719.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.9345%" y="693" width="0.4367%" height="15" fill="rgb(222,97,12)" fg:x="80" fg:w="1"/><text x="35.1845%" y="703.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.9345%" y="677" width="0.4367%" height="15" fill="rgb(219,213,19)" fg:x="80" fg:w="1"/><text x="35.1845%" y="687.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.9345%" y="661" width="0.4367%" height="15" fill="rgb(252,169,30)" fg:x="80" fg:w="1"/><text x="35.1845%" y="671.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.9345%" y="645" width="0.4367%" height="15" fill="rgb(206,32,51)" fg:x="80" fg:w="1"/><text x="35.1845%" y="655.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="34.9345%" y="629" width="0.4367%" height="15" fill="rgb(250,172,42)" fg:x="80" fg:w="1"/><text x="35.1845%" y="639.50"></text></g><g><title>&lt;tracing::instrument::Instrumented&lt;T&gt; as core::future::future::Future&gt;::poll (35 samples, 15.28%)</title><rect x="20.5240%" y="1493" width="15.2838%" height="15" fill="rgb(209,34,43)" fg:x="47" fg:w="35"/><text x="20.7740%" y="1503.50">&lt;tracing::instrument::I..</text></g><g><title>&lt;core::future::from_generator::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll (35 samples, 15.28%)</title><rect x="20.5240%" y="1477" width="15.2838%" height="15" fill="rgb(223,11,35)" fg:x="47" fg:w="35"/><text x="20.7740%" y="1487.50">&lt;core::future::from_gen..</text></g><g><title>jaeger_test::b::{{closure}} (35 samples, 15.28%)</title><rect x="20.5240%" y="1461" width="15.2838%" height="15" fill="rgb(251,219,26)" fg:x="47" fg:w="35"/><text x="20.7740%" y="1471.50">jaeger_test::b::{{closu..</text></g><g><title>tracing::span::Span::new (18 samples, 7.86%)</title><rect x="27.9476%" y="1445" width="7.8603%" height="15" fill="rgb(231,119,3)" fg:x="64" fg:w="18"/><text x="28.1976%" y="1455.50">tracing::sp..</text></g><g><title>tracing_core::dispatcher::get_default (18 samples, 7.86%)</title><rect x="27.9476%" y="1429" width="7.8603%" height="15" fill="rgb(216,97,11)" fg:x="64" fg:w="18"/><text x="28.1976%" y="1439.50">tracing_cor..</text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (18 samples, 7.86%)</title><rect x="27.9476%" y="1413" width="7.8603%" height="15" fill="rgb(223,59,9)" fg:x="64" fg:w="18"/><text x="28.1976%" y="1423.50">std::thread..</text></g><g><title>tracing_core::dispatcher::get_default::{{closure}} (18 samples, 7.86%)</title><rect x="27.9476%" y="1397" width="7.8603%" height="15" fill="rgb(233,93,31)" fg:x="64" fg:w="18"/><text x="28.1976%" y="1407.50">tracing_cor..</text></g><g><title>tracing::span::Span::new::{{closure}} (18 samples, 7.86%)</title><rect x="27.9476%" y="1381" width="7.8603%" height="15" fill="rgb(239,81,33)" fg:x="64" fg:w="18"/><text x="28.1976%" y="1391.50">tracing::sp..</text></g><g><title>tracing::span::Span::new_with (18 samples, 7.86%)</title><rect x="27.9476%" y="1365" width="7.8603%" height="15" fill="rgb(213,120,34)" fg:x="64" fg:w="18"/><text x="28.1976%" y="1375.50">tracing::sp..</text></g><g><title>tracing::span::Span::make_with (18 samples, 7.86%)</title><rect x="27.9476%" y="1349" width="7.8603%" height="15" fill="rgb(243,49,53)" fg:x="64" fg:w="18"/><text x="28.1976%" y="1359.50">tracing::sp..</text></g><g><title>tracing_core::dispatcher::Dispatch::new_span (18 samples, 7.86%)</title><rect x="27.9476%" y="1333" width="7.8603%" height="15" fill="rgb(247,216,33)" fg:x="64" fg:w="18"/><text x="28.1976%" y="1343.50">tracing_cor..</text></g><g><title>&lt;alloc::sync::Arc&lt;dyn tracing_core::subscriber::Subscriber+core::marker::Send+core::marker::Sync&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (18 samples, 7.86%)</title><rect x="27.9476%" y="1317" width="7.8603%" height="15" fill="rgb(226,26,14)" fg:x="64" fg:w="18"/><text x="28.1976%" y="1327.50">&lt;alloc::syn..</text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (18 samples, 7.86%)</title><rect x="27.9476%" y="1301" width="7.8603%" height="15" fill="rgb(215,49,53)" fg:x="64" fg:w="18"/><text x="28.1976%" y="1311.50">&lt;tracing_su..</text></g><g><title>&lt;tracing_subscriber::fmt::Subscriber&lt;N,E,F,W&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (14 samples, 6.11%)</title><rect x="29.6943%" y="1285" width="6.1135%" height="15" fill="rgb(245,162,40)" fg:x="68" fg:w="14"/><text x="29.9443%" y="1295.50">&lt;tracing..</text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (14 samples, 6.11%)</title><rect x="29.6943%" y="1269" width="6.1135%" height="15" fill="rgb(229,68,17)" fg:x="68" fg:w="14"/><text x="29.9443%" y="1279.50">&lt;tracing..</text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (14 samples, 6.11%)</title><rect x="29.6943%" y="1253" width="6.1135%" height="15" fill="rgb(213,182,10)" fg:x="68" fg:w="14"/><text x="29.9443%" y="1263.50">&lt;tracing..</text></g><g><title>&lt;tracing_subscriber::registry::sharded::Registry as tracing_core::subscriber::Subscriber&gt;::new_span (1 samples, 0.44%)</title><rect x="35.3712%" y="1237" width="0.4367%" height="15" fill="rgb(245,125,30)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1247.50"></text></g><g><title>sharded_slab::pool::Pool&lt;T,C&gt;::create_with (1 samples, 0.44%)</title><rect x="35.3712%" y="1221" width="0.4367%" height="15" fill="rgb(232,202,2)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1231.50"></text></g><g><title>sharded_slab::pool::Pool&lt;T,C&gt;::create (1 samples, 0.44%)</title><rect x="35.3712%" y="1205" width="0.4367%" height="15" fill="rgb(237,140,51)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1215.50"></text></g><g><title>sharded_slab::shard::Shard&lt;T,C&gt;::init_with (1 samples, 0.44%)</title><rect x="35.3712%" y="1189" width="0.4367%" height="15" fill="rgb(236,157,25)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1199.50"></text></g><g><title>sharded_slab::page::Shared&lt;T,C&gt;::init_with (1 samples, 0.44%)</title><rect x="35.3712%" y="1173" width="0.4367%" height="15" fill="rgb(219,209,0)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1183.50"></text></g><g><title>sharded_slab::page::Shared&lt;T,C&gt;::allocate (1 samples, 0.44%)</title><rect x="35.3712%" y="1157" width="0.4367%" height="15" fill="rgb(240,116,54)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1167.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::iter::traits::collect::Extend&lt;T&gt;&gt;::extend (1 samples, 0.44%)</title><rect x="35.3712%" y="1141" width="0.4367%" height="15" fill="rgb(216,10,36)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1151.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (1 samples, 0.44%)</title><rect x="35.3712%" y="1125" width="0.4367%" height="15" fill="rgb(222,72,44)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1135.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.44%)</title><rect x="35.3712%" y="1109" width="0.4367%" height="15" fill="rgb(232,159,9)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1119.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (1 samples, 0.44%)</title><rect x="35.3712%" y="1093" width="0.4367%" height="15" fill="rgb(210,39,32)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1103.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.44%)</title><rect x="35.3712%" y="1077" width="0.4367%" height="15" fill="rgb(216,194,45)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1087.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (1 samples, 0.44%)</title><rect x="35.3712%" y="1061" width="0.4367%" height="15" fill="rgb(218,18,35)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1071.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (1 samples, 0.44%)</title><rect x="35.3712%" y="1045" width="0.4367%" height="15" fill="rgb(207,83,51)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1055.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend::{{closure}} (1 samples, 0.44%)</title><rect x="35.3712%" y="1029" width="0.4367%" height="15" fill="rgb(225,63,43)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1039.50"></text></g><g><title>core::ptr::write (1 samples, 0.44%)</title><rect x="35.3712%" y="1013" width="0.4367%" height="15" fill="rgb(207,57,36)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="35.3712%" y="997" width="0.4367%" height="15" fill="rgb(216,99,33)" fg:x="81" fg:w="1"/><text x="35.6212%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="35.3712%" y="981" width="0.4367%" height="15" fill="rgb(225,42,16)" fg:x="81" fg:w="1"/><text x="35.6212%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="35.3712%" y="965" width="0.4367%" height="15" fill="rgb(220,201,45)" fg:x="81" fg:w="1"/><text x="35.6212%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="35.3712%" y="949" width="0.4367%" height="15" fill="rgb(225,33,4)" fg:x="81" fg:w="1"/><text x="35.6212%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="35.3712%" y="933" width="0.4367%" height="15" fill="rgb(224,33,50)" fg:x="81" fg:w="1"/><text x="35.6212%" y="943.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="35.3712%" y="917" width="0.4367%" height="15" fill="rgb(246,198,51)" fg:x="81" fg:w="1"/><text x="35.6212%" y="927.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="35.3712%" y="901" width="0.4367%" height="15" fill="rgb(205,22,4)" fg:x="81" fg:w="1"/><text x="35.6212%" y="911.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="35.3712%" y="885" width="0.4367%" height="15" fill="rgb(206,3,8)" fg:x="81" fg:w="1"/><text x="35.6212%" y="895.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="35.3712%" y="869" width="0.4367%" height="15" fill="rgb(251,23,15)" fg:x="81" fg:w="1"/><text x="35.6212%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="35.3712%" y="853" width="0.4367%" height="15" fill="rgb(252,88,28)" fg:x="81" fg:w="1"/><text x="35.6212%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="35.3712%" y="837" width="0.4367%" height="15" fill="rgb(212,127,14)" fg:x="81" fg:w="1"/><text x="35.6212%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="35.3712%" y="821" width="0.4367%" height="15" fill="rgb(247,145,37)" fg:x="81" fg:w="1"/><text x="35.6212%" y="831.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="35.3712%" y="805" width="0.4367%" height="15" fill="rgb(209,117,53)" fg:x="81" fg:w="1"/><text x="35.6212%" y="815.50"></text></g><g><title>&lt;tracing::instrument::Instrumented&lt;T&gt; as core::future::future::Future&gt;::poll (36 samples, 15.72%)</title><rect x="20.5240%" y="1509" width="15.7205%" height="15" fill="rgb(212,90,42)" fg:x="47" fg:w="36"/><text x="20.7740%" y="1519.50">&lt;tracing::instrument::In..</text></g><g><title>core::ptr::drop_in_place&lt;tracing::span::Entered&gt; (1 samples, 0.44%)</title><rect x="35.8079%" y="1493" width="0.4367%" height="15" fill="rgb(218,164,37)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1503.50"></text></g><g><title>&lt;tracing::span::Entered as core::ops::drop::Drop&gt;::drop (1 samples, 0.44%)</title><rect x="35.8079%" y="1477" width="0.4367%" height="15" fill="rgb(246,65,34)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1487.50"></text></g><g><title>tracing::span::Span::do_exit (1 samples, 0.44%)</title><rect x="35.8079%" y="1461" width="0.4367%" height="15" fill="rgb(231,100,33)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1471.50"></text></g><g><title>tracing_core::dispatcher::Dispatch::exit (1 samples, 0.44%)</title><rect x="35.8079%" y="1445" width="0.4367%" height="15" fill="rgb(228,126,14)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1455.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;dyn tracing_core::subscriber::Subscriber+core::marker::Send+core::marker::Sync&gt; as tracing_core::subscriber::Subscriber&gt;::exit (1 samples, 0.44%)</title><rect x="35.8079%" y="1429" width="0.4367%" height="15" fill="rgb(215,173,21)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1439.50"></text></g><g><title>&lt;tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::on_exit (1 samples, 0.44%)</title><rect x="35.8079%" y="1413" width="0.4367%" height="15" fill="rgb(210,6,40)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1423.50"></text></g><g><title>tracing_subscriber::layer::context::Context&lt;S&gt;::span (1 samples, 0.44%)</title><rect x="35.8079%" y="1397" width="0.4367%" height="15" fill="rgb(212,48,18)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1407.50"></text></g><g><title>tracing_subscriber::registry::LookupSpan::span (1 samples, 0.44%)</title><rect x="35.8079%" y="1381" width="0.4367%" height="15" fill="rgb(230,214,11)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1391.50"></text></g><g><title>&lt;tracing_subscriber::fmt::Subscriber&lt;N,E,F,W&gt; as tracing_subscriber::registry::LookupSpan&gt;::span_data (1 samples, 0.44%)</title><rect x="35.8079%" y="1365" width="0.4367%" height="15" fill="rgb(254,105,39)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1375.50"></text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_subscriber::registry::LookupSpan&gt;::span_data (1 samples, 0.44%)</title><rect x="35.8079%" y="1349" width="0.4367%" height="15" fill="rgb(245,158,5)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1359.50"></text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_subscriber::registry::LookupSpan&gt;::span_data (1 samples, 0.44%)</title><rect x="35.8079%" y="1333" width="0.4367%" height="15" fill="rgb(249,208,11)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1343.50"></text></g><g><title>&lt;tracing_subscriber::registry::sharded::Registry as tracing_subscriber::registry::LookupSpan&gt;::span_data (1 samples, 0.44%)</title><rect x="35.8079%" y="1317" width="0.4367%" height="15" fill="rgb(210,39,28)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1327.50"></text></g><g><title>tracing_subscriber::registry::sharded::Registry::get (1 samples, 0.44%)</title><rect x="35.8079%" y="1301" width="0.4367%" height="15" fill="rgb(211,56,53)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1311.50"></text></g><g><title>sharded_slab::pool::Pool&lt;T,C&gt;::get (1 samples, 0.44%)</title><rect x="35.8079%" y="1285" width="0.4367%" height="15" fill="rgb(226,201,30)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1295.50"></text></g><g><title>sharded_slab::shard::Shard&lt;T,C&gt;::with_slot (1 samples, 0.44%)</title><rect x="35.8079%" y="1269" width="0.4367%" height="15" fill="rgb(239,101,34)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1279.50"></text></g><g><title>sharded_slab::page::indices (1 samples, 0.44%)</title><rect x="35.8079%" y="1253" width="0.4367%" height="15" fill="rgb(226,209,5)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1263.50"></text></g><g><title>sharded_slab::page::Addr&lt;C&gt;::index (1 samples, 0.44%)</title><rect x="35.8079%" y="1237" width="0.4367%" height="15" fill="rgb(250,105,47)" fg:x="82" fg:w="1"/><text x="36.0579%" y="1247.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.44%)</title><rect x="36.2445%" y="1349" width="0.4367%" height="15" fill="rgb(230,72,3)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1359.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (1 samples, 0.44%)</title><rect x="36.2445%" y="1333" width="0.4367%" height="15" fill="rgb(232,218,39)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1343.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.44%)</title><rect x="36.2445%" y="1317" width="0.4367%" height="15" fill="rgb(248,166,6)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1327.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (1 samples, 0.44%)</title><rect x="36.2445%" y="1301" width="0.4367%" height="15" fill="rgb(247,89,20)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1311.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (1 samples, 0.44%)</title><rect x="36.2445%" y="1285" width="0.4367%" height="15" fill="rgb(248,130,54)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1295.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.44%)</title><rect x="36.2445%" y="1269" width="0.4367%" height="15" fill="rgb(234,196,4)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1279.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (1 samples, 0.44%)</title><rect x="36.2445%" y="1253" width="0.4367%" height="15" fill="rgb(250,143,31)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1263.50"></text></g><g><title>alloc::alloc::Global::grow_impl (1 samples, 0.44%)</title><rect x="36.2445%" y="1237" width="0.4367%" height="15" fill="rgb(211,110,34)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1247.50"></text></g><g><title>alloc::alloc::realloc (1 samples, 0.44%)</title><rect x="36.2445%" y="1221" width="0.4367%" height="15" fill="rgb(215,124,48)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1231.50"></text></g><g><title>realloc (1 samples, 0.44%)</title><rect x="36.2445%" y="1205" width="0.4367%" height="15" fill="rgb(216,46,13)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1215.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="36.2445%" y="1189" width="0.4367%" height="15" fill="rgb(205,184,25)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1199.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="1173" width="0.4367%" height="15" fill="rgb(228,1,10)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1183.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="1157" width="0.4367%" height="15" fill="rgb(213,116,27)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1167.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="1141" width="0.4367%" height="15" fill="rgb(241,95,50)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1151.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="1125" width="0.4367%" height="15" fill="rgb(238,48,32)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1135.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="1109" width="0.4367%" height="15" fill="rgb(235,113,49)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1119.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="1093" width="0.4367%" height="15" fill="rgb(205,127,43)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1103.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="1077" width="0.4367%" height="15" fill="rgb(250,162,2)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1087.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="1061" width="0.4367%" height="15" fill="rgb(220,13,41)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1071.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="1045" width="0.4367%" height="15" fill="rgb(249,221,25)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1055.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="1029" width="0.4367%" height="15" fill="rgb(215,208,19)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1039.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="1013" width="0.4367%" height="15" fill="rgb(236,175,2)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="997" width="0.4367%" height="15" fill="rgb(241,52,2)" fg:x="83" fg:w="1"/><text x="36.4945%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="981" width="0.4367%" height="15" fill="rgb(248,140,14)" fg:x="83" fg:w="1"/><text x="36.4945%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.2445%" y="965" width="0.4367%" height="15" fill="rgb(253,22,42)" fg:x="83" fg:w="1"/><text x="36.4945%" y="975.50"></text></g><g><title>core::ptr::drop_in_place&lt;opentelemetry::sdk::trace::span::Span&gt; (1 samples, 0.44%)</title><rect x="36.6812%" y="1349" width="0.4367%" height="15" fill="rgb(234,61,47)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1359.50"></text></g><g><title>opentelemetry::sdk::trace::span::Span::ensure_ended_and_exported (1 samples, 0.44%)</title><rect x="36.6812%" y="1333" width="0.4367%" height="15" fill="rgb(208,226,15)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1343.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::span_processor::BatchSpanProcessor&lt;R&gt; as opentelemetry::sdk::trace::span_processor::SpanProcessor&gt;::on_end (1 samples, 0.44%)</title><rect x="36.6812%" y="1317" width="0.4367%" height="15" fill="rgb(217,221,4)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1327.50"></text></g><g><title>&lt;tokio::sync::mpsc::bounded::Sender&lt;opentelemetry::sdk::trace::span_processor::BatchMessage&gt; as opentelemetry::sdk::trace::runtime::TrySend&gt;::try_send (1 samples, 0.44%)</title><rect x="36.6812%" y="1301" width="0.4367%" height="15" fill="rgb(212,174,34)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1311.50"></text></g><g><title>tokio::sync::mpsc::bounded::Sender&lt;T&gt;::try_send (1 samples, 0.44%)</title><rect x="36.6812%" y="1285" width="0.4367%" height="15" fill="rgb(253,83,4)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1295.50"></text></g><g><title>tokio::sync::mpsc::chan::Tx&lt;T,S&gt;::send (1 samples, 0.44%)</title><rect x="36.6812%" y="1269" width="0.4367%" height="15" fill="rgb(250,195,49)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1279.50"></text></g><g><title>tokio::sync::mpsc::chan::Chan&lt;T,S&gt;::send (1 samples, 0.44%)</title><rect x="36.6812%" y="1253" width="0.4367%" height="15" fill="rgb(241,192,25)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1263.50"></text></g><g><title>tokio::sync::mpsc::list::Tx&lt;T&gt;::push (1 samples, 0.44%)</title><rect x="36.6812%" y="1237" width="0.4367%" height="15" fill="rgb(208,124,10)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1247.50"></text></g><g><title>tokio::sync::mpsc::block::Block&lt;T&gt;::write (1 samples, 0.44%)</title><rect x="36.6812%" y="1221" width="0.4367%" height="15" fill="rgb(222,33,0)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1231.50"></text></g><g><title>tokio::loom::std::unsafe_cell::UnsafeCell&lt;T&gt;::with_mut (1 samples, 0.44%)</title><rect x="36.6812%" y="1205" width="0.4367%" height="15" fill="rgb(234,209,28)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1215.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="36.6812%" y="1189" width="0.4367%" height="15" fill="rgb(224,11,23)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1199.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.6812%" y="1173" width="0.4367%" height="15" fill="rgb(232,99,1)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1183.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.6812%" y="1157" width="0.4367%" height="15" fill="rgb(237,95,45)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1167.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.6812%" y="1141" width="0.4367%" height="15" fill="rgb(208,109,11)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1151.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.6812%" y="1125" width="0.4367%" height="15" fill="rgb(216,190,48)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1135.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.6812%" y="1109" width="0.4367%" height="15" fill="rgb(251,171,36)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1119.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="36.6812%" y="1093" width="0.4367%" height="15" fill="rgb(230,62,22)" fg:x="84" fg:w="1"/><text x="36.9312%" y="1103.50"></text></g><g><title>core::ptr::drop_in_place&lt;tracing::instrument::Instrumented&lt;core::future::from_generator::GenFuture&lt;jaeger_test::b::{{closure}}&gt;&gt;&gt; (3 samples, 1.31%)</title><rect x="36.2445%" y="1461" width="1.3100%" height="15" fill="rgb(225,114,35)" fg:x="83" fg:w="3"/><text x="36.4945%" y="1471.50"></text></g><g><title>core::ptr::drop_in_place&lt;tracing::span::Span&gt; (3 samples, 1.31%)</title><rect x="36.2445%" y="1445" width="1.3100%" height="15" fill="rgb(215,118,42)" fg:x="83" fg:w="3"/><text x="36.4945%" y="1455.50"></text></g><g><title>&lt;tracing::span::Span as core::ops::drop::Drop&gt;::drop (3 samples, 1.31%)</title><rect x="36.2445%" y="1429" width="1.3100%" height="15" fill="rgb(243,119,21)" fg:x="83" fg:w="3"/><text x="36.4945%" y="1439.50"></text></g><g><title>tracing_core::dispatcher::Dispatch::try_close (3 samples, 1.31%)</title><rect x="36.2445%" y="1413" width="1.3100%" height="15" fill="rgb(252,177,53)" fg:x="83" fg:w="3"/><text x="36.4945%" y="1423.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;dyn tracing_core::subscriber::Subscriber+core::marker::Send+core::marker::Sync&gt; as tracing_core::subscriber::Subscriber&gt;::try_close (3 samples, 1.31%)</title><rect x="36.2445%" y="1397" width="1.3100%" height="15" fill="rgb(237,209,29)" fg:x="83" fg:w="3"/><text x="36.4945%" y="1407.50"></text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::try_close (3 samples, 1.31%)</title><rect x="36.2445%" y="1381" width="1.3100%" height="15" fill="rgb(212,65,23)" fg:x="83" fg:w="3"/><text x="36.4945%" y="1391.50"></text></g><g><title>&lt;tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::on_close (3 samples, 1.31%)</title><rect x="36.2445%" y="1365" width="1.3100%" height="15" fill="rgb(230,222,46)" fg:x="83" fg:w="3"/><text x="36.4945%" y="1375.50"></text></g><g><title>opentelemetry::trace::tracer::SpanBuilder::start (1 samples, 0.44%)</title><rect x="37.1179%" y="1349" width="0.4367%" height="15" fill="rgb(215,135,32)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1359.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::tracer::Tracer as opentelemetry::trace::tracer::Tracer&gt;::build (1 samples, 0.44%)</title><rect x="37.1179%" y="1333" width="0.4367%" height="15" fill="rgb(246,101,22)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1343.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.44%)</title><rect x="37.1179%" y="1317" width="0.4367%" height="15" fill="rgb(206,107,13)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1327.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::tracer::Tracer as opentelemetry::trace::tracer::Tracer&gt;::build::{{closure}} (1 samples, 0.44%)</title><rect x="37.1179%" y="1301" width="0.4367%" height="15" fill="rgb(250,100,44)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1311.50"></text></g><g><title>opentelemetry::sdk::trace::evicted_hash_map::EvictedHashMap::new (1 samples, 0.44%)</title><rect x="37.1179%" y="1285" width="0.4367%" height="15" fill="rgb(231,147,38)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1295.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V&gt;::with_capacity (1 samples, 0.44%)</title><rect x="37.1179%" y="1269" width="0.4367%" height="15" fill="rgb(229,8,40)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1279.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::with_capacity_and_hasher (1 samples, 0.44%)</title><rect x="37.1179%" y="1253" width="0.4367%" height="15" fill="rgb(221,135,30)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1263.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::with_capacity_and_hasher (1 samples, 0.44%)</title><rect x="37.1179%" y="1237" width="0.4367%" height="15" fill="rgb(249,193,18)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1247.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::with_capacity (1 samples, 0.44%)</title><rect x="37.1179%" y="1221" width="0.4367%" height="15" fill="rgb(209,133,39)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1231.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::with_capacity_in (1 samples, 0.44%)</title><rect x="37.1179%" y="1205" width="0.4367%" height="15" fill="rgb(232,100,14)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1215.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::fallible_with_capacity (1 samples, 0.44%)</title><rect x="37.1179%" y="1189" width="0.4367%" height="15" fill="rgb(224,185,1)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1199.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::fallible_with_capacity (1 samples, 0.44%)</title><rect x="37.1179%" y="1173" width="0.4367%" height="15" fill="rgb(223,139,8)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1183.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::new_uninitialized (1 samples, 0.44%)</title><rect x="37.1179%" y="1157" width="0.4367%" height="15" fill="rgb(232,213,38)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1167.50"></text></g><g><title>hashbrown::raw::alloc::inner::do_alloc (1 samples, 0.44%)</title><rect x="37.1179%" y="1141" width="0.4367%" height="15" fill="rgb(207,94,22)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1151.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.44%)</title><rect x="37.1179%" y="1125" width="0.4367%" height="15" fill="rgb(219,183,54)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1135.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.44%)</title><rect x="37.1179%" y="1109" width="0.4367%" height="15" fill="rgb(216,185,54)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1119.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.44%)</title><rect x="37.1179%" y="1093" width="0.4367%" height="15" fill="rgb(254,217,39)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1103.50"></text></g><g><title>__libc_malloc (1 samples, 0.44%)</title><rect x="37.1179%" y="1077" width="0.4367%" height="15" fill="rgb(240,178,23)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1087.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="37.1179%" y="1061" width="0.4367%" height="15" fill="rgb(218,11,47)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1071.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.1179%" y="1045" width="0.4367%" height="15" fill="rgb(218,51,51)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1055.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.1179%" y="1029" width="0.4367%" height="15" fill="rgb(238,126,27)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1039.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.1179%" y="1013" width="0.4367%" height="15" fill="rgb(249,202,22)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.1179%" y="997" width="0.4367%" height="15" fill="rgb(254,195,49)" fg:x="85" fg:w="1"/><text x="37.3679%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.1179%" y="981" width="0.4367%" height="15" fill="rgb(208,123,14)" fg:x="85" fg:w="1"/><text x="37.3679%" y="991.50"></text></g><g><title>opentelemetry::trace::tracer::SpanBuilder::start (1 samples, 0.44%)</title><rect x="37.5546%" y="1365" width="0.4367%" height="15" fill="rgb(224,200,8)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1375.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::tracer::Tracer as opentelemetry::trace::tracer::Tracer&gt;::build (1 samples, 0.44%)</title><rect x="37.5546%" y="1349" width="0.4367%" height="15" fill="rgb(217,61,36)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1359.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.44%)</title><rect x="37.5546%" y="1333" width="0.4367%" height="15" fill="rgb(206,35,45)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1343.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::tracer::Tracer as opentelemetry::trace::tracer::Tracer&gt;::build::{{closure}} (1 samples, 0.44%)</title><rect x="37.5546%" y="1317" width="0.4367%" height="15" fill="rgb(217,65,33)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1327.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::into_iter::IntoIter&lt;opentelemetry::common::KeyValue&gt;&gt; (1 samples, 0.44%)</title><rect x="37.5546%" y="1301" width="0.4367%" height="15" fill="rgb(222,158,48)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1311.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.44%)</title><rect x="37.5546%" y="1285" width="0.4367%" height="15" fill="rgb(254,2,54)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1295.50"></text></g><g><title>core::ptr::drop_in_place&lt;&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop::DropGuard&lt;opentelemetry::common::KeyValue,alloc::alloc::Global&gt;&gt; (1 samples, 0.44%)</title><rect x="37.5546%" y="1269" width="0.4367%" height="15" fill="rgb(250,143,38)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1279.50"></text></g><g><title>&lt;&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop::DropGuard&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.44%)</title><rect x="37.5546%" y="1253" width="0.4367%" height="15" fill="rgb(248,25,0)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1263.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;opentelemetry::common::KeyValue&gt;&gt; (1 samples, 0.44%)</title><rect x="37.5546%" y="1237" width="0.4367%" height="15" fill="rgb(206,152,27)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1247.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.44%)</title><rect x="37.5546%" y="1221" width="0.4367%" height="15" fill="rgb(240,77,30)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1231.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.44%)</title><rect x="37.5546%" y="1205" width="0.4367%" height="15" fill="rgb(231,5,3)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1215.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.44%)</title><rect x="37.5546%" y="1189" width="0.4367%" height="15" fill="rgb(207,226,32)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1199.50"></text></g><g><title>cfree (1 samples, 0.44%)</title><rect x="37.5546%" y="1173" width="0.4367%" height="15" fill="rgb(222,207,47)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1183.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="37.5546%" y="1157" width="0.4367%" height="15" fill="rgb(229,115,45)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1167.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="37.5546%" y="1141" width="0.4367%" height="15" fill="rgb(224,191,6)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1151.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="1125" width="0.4367%" height="15" fill="rgb(230,227,24)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1135.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="1109" width="0.4367%" height="15" fill="rgb(228,80,19)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1119.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="1093" width="0.4367%" height="15" fill="rgb(247,229,0)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1103.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="1077" width="0.4367%" height="15" fill="rgb(237,194,15)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1087.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="1061" width="0.4367%" height="15" fill="rgb(219,203,20)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1071.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="1045" width="0.4367%" height="15" fill="rgb(234,128,8)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1055.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="1029" width="0.4367%" height="15" fill="rgb(248,202,8)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1039.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="1013" width="0.4367%" height="15" fill="rgb(206,104,37)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="997" width="0.4367%" height="15" fill="rgb(223,8,27)" fg:x="86" fg:w="1"/><text x="37.8046%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="981" width="0.4367%" height="15" fill="rgb(216,217,28)" fg:x="86" fg:w="1"/><text x="37.8046%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="965" width="0.4367%" height="15" fill="rgb(249,199,1)" fg:x="86" fg:w="1"/><text x="37.8046%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="949" width="0.4367%" height="15" fill="rgb(240,85,17)" fg:x="86" fg:w="1"/><text x="37.8046%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="933" width="0.4367%" height="15" fill="rgb(206,108,45)" fg:x="86" fg:w="1"/><text x="37.8046%" y="943.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.5546%" y="917" width="0.4367%" height="15" fill="rgb(245,210,41)" fg:x="86" fg:w="1"/><text x="37.8046%" y="927.50"></text></g><g><title>&lt;futures_util::future::join_all::JoinAll&lt;F&gt; as core::future::future::Future&gt;::poll (41 samples, 17.90%)</title><rect x="20.5240%" y="1541" width="17.9039%" height="15" fill="rgb(206,13,37)" fg:x="47" fg:w="41"/><text x="20.7740%" y="1551.50">&lt;futures_util::future::join_..</text></g><g><title>&lt;futures_util::future::maybe_done::MaybeDone&lt;Fut&gt; as core::future::future::Future&gt;::poll (41 samples, 17.90%)</title><rect x="20.5240%" y="1525" width="17.9039%" height="15" fill="rgb(250,61,18)" fg:x="47" fg:w="41"/><text x="20.7740%" y="1535.50">&lt;futures_util::future::maybe..</text></g><g><title>core::pin::Pin&lt;P&gt;::set (5 samples, 2.18%)</title><rect x="36.2445%" y="1509" width="2.1834%" height="15" fill="rgb(235,172,48)" fg:x="83" fg:w="5"/><text x="36.4945%" y="1519.50">c..</text></g><g><title>core::ptr::drop_in_place&lt;futures_util::future::maybe_done::MaybeDone&lt;tracing::instrument::Instrumented&lt;tracing::instrument::Instrumented&lt;core::future::from_generator::GenFuture&lt;jaeger_test::b::{{closure}}&gt;&gt;&gt;&gt;&gt; (5 samples, 2.18%)</title><rect x="36.2445%" y="1493" width="2.1834%" height="15" fill="rgb(249,201,17)" fg:x="83" fg:w="5"/><text x="36.4945%" y="1503.50">c..</text></g><g><title>core::ptr::drop_in_place&lt;tracing::instrument::Instrumented&lt;tracing::instrument::Instrumented&lt;core::future::from_generator::GenFuture&lt;jaeger_test::b::{{closure}}&gt;&gt;&gt;&gt; (5 samples, 2.18%)</title><rect x="36.2445%" y="1477" width="2.1834%" height="15" fill="rgb(219,208,6)" fg:x="83" fg:w="5"/><text x="36.4945%" y="1487.50">c..</text></g><g><title>core::ptr::drop_in_place&lt;tracing::span::Span&gt; (2 samples, 0.87%)</title><rect x="37.5546%" y="1461" width="0.8734%" height="15" fill="rgb(248,31,23)" fg:x="86" fg:w="2"/><text x="37.8046%" y="1471.50"></text></g><g><title>&lt;tracing::span::Span as core::ops::drop::Drop&gt;::drop (2 samples, 0.87%)</title><rect x="37.5546%" y="1445" width="0.8734%" height="15" fill="rgb(245,15,42)" fg:x="86" fg:w="2"/><text x="37.8046%" y="1455.50"></text></g><g><title>tracing_core::dispatcher::Dispatch::try_close (2 samples, 0.87%)</title><rect x="37.5546%" y="1429" width="0.8734%" height="15" fill="rgb(222,217,39)" fg:x="86" fg:w="2"/><text x="37.8046%" y="1439.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;dyn tracing_core::subscriber::Subscriber+core::marker::Send+core::marker::Sync&gt; as tracing_core::subscriber::Subscriber&gt;::try_close (2 samples, 0.87%)</title><rect x="37.5546%" y="1413" width="0.8734%" height="15" fill="rgb(210,219,27)" fg:x="86" fg:w="2"/><text x="37.8046%" y="1423.50"></text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::try_close (2 samples, 0.87%)</title><rect x="37.5546%" y="1397" width="0.8734%" height="15" fill="rgb(252,166,36)" fg:x="86" fg:w="2"/><text x="37.8046%" y="1407.50"></text></g><g><title>&lt;tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::on_close (2 samples, 0.87%)</title><rect x="37.5546%" y="1381" width="0.8734%" height="15" fill="rgb(245,132,34)" fg:x="86" fg:w="2"/><text x="37.8046%" y="1391.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsMut::remove (1 samples, 0.44%)</title><rect x="37.9913%" y="1365" width="0.4367%" height="15" fill="rgb(236,54,3)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1375.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsInner::remove (1 samples, 0.44%)</title><rect x="37.9913%" y="1349" width="0.4367%" height="15" fill="rgb(241,173,43)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1359.50"></text></g><g><title>core::option::Option&lt;T&gt;::and_then (1 samples, 0.44%)</title><rect x="37.9913%" y="1333" width="0.4367%" height="15" fill="rgb(215,190,9)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1343.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsInner::remove::{{closure}} (1 samples, 0.44%)</title><rect x="37.9913%" y="1317" width="0.4367%" height="15" fill="rgb(242,101,16)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1327.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.44%)</title><rect x="37.9913%" y="1301" width="0.4367%" height="15" fill="rgb(223,190,21)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1311.50"></text></g><g><title>tracing_subscriber::registry::extensions::ExtensionsInner::remove::{{closure}}::{{closure}} (1 samples, 0.44%)</title><rect x="37.9913%" y="1285" width="0.4367%" height="15" fill="rgb(215,228,25)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1295.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.44%)</title><rect x="37.9913%" y="1269" width="0.4367%" height="15" fill="rgb(225,36,22)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1279.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.44%)</title><rect x="37.9913%" y="1253" width="0.4367%" height="15" fill="rgb(251,106,46)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1263.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.44%)</title><rect x="37.9913%" y="1237" width="0.4367%" height="15" fill="rgb(208,90,1)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1247.50"></text></g><g><title>cfree (1 samples, 0.44%)</title><rect x="37.9913%" y="1221" width="0.4367%" height="15" fill="rgb(243,10,4)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1231.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="37.9913%" y="1205" width="0.4367%" height="15" fill="rgb(212,137,27)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1215.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="37.9913%" y="1189" width="0.4367%" height="15" fill="rgb(231,220,49)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1199.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.9913%" y="1173" width="0.4367%" height="15" fill="rgb(237,96,20)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1183.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.9913%" y="1157" width="0.4367%" height="15" fill="rgb(239,229,30)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1167.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.9913%" y="1141" width="0.4367%" height="15" fill="rgb(219,65,33)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1151.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.9913%" y="1125" width="0.4367%" height="15" fill="rgb(243,134,7)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1135.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.9913%" y="1109" width="0.4367%" height="15" fill="rgb(216,177,54)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1119.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.9913%" y="1093" width="0.4367%" height="15" fill="rgb(211,160,20)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1103.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.9913%" y="1077" width="0.4367%" height="15" fill="rgb(239,85,39)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1087.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.9913%" y="1061" width="0.4367%" height="15" fill="rgb(232,125,22)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1071.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="37.9913%" y="1045" width="0.4367%" height="15" fill="rgb(244,57,34)" fg:x="87" fg:w="1"/><text x="38.2413%" y="1055.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="38.4279%" y="1381" width="0.4367%" height="15" fill="rgb(214,203,32)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1391.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.4279%" y="1365" width="0.4367%" height="15" fill="rgb(207,58,43)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1375.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.4279%" y="1349" width="0.4367%" height="15" fill="rgb(215,193,15)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1359.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.4279%" y="1333" width="0.4367%" height="15" fill="rgb(232,15,44)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1343.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.4279%" y="1317" width="0.4367%" height="15" fill="rgb(212,3,48)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1327.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.4279%" y="1301" width="0.4367%" height="15" fill="rgb(218,128,7)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1311.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.4279%" y="1285" width="0.4367%" height="15" fill="rgb(226,216,39)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1295.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.4279%" y="1269" width="0.4367%" height="15" fill="rgb(243,47,51)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1279.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.4279%" y="1253" width="0.4367%" height="15" fill="rgb(241,183,40)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1263.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.4279%" y="1237" width="0.4367%" height="15" fill="rgb(231,217,32)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1247.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.4279%" y="1221" width="0.4367%" height="15" fill="rgb(229,61,38)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1231.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.4279%" y="1205" width="0.4367%" height="15" fill="rgb(225,210,5)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1215.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.4279%" y="1189" width="0.4367%" height="15" fill="rgb(231,79,45)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1199.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.4279%" y="1173" width="0.4367%" height="15" fill="rgb(224,100,7)" fg:x="88" fg:w="1"/><text x="38.6779%" y="1183.50"></text></g><g><title>alloc::alloc::exchange_malloc (2 samples, 0.87%)</title><rect x="38.4279%" y="1541" width="0.8734%" height="15" fill="rgb(241,198,18)" fg:x="88" fg:w="2"/><text x="38.6779%" y="1551.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.87%)</title><rect x="38.4279%" y="1525" width="0.8734%" height="15" fill="rgb(252,97,53)" fg:x="88" fg:w="2"/><text x="38.6779%" y="1535.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.87%)</title><rect x="38.4279%" y="1509" width="0.8734%" height="15" fill="rgb(220,88,7)" fg:x="88" fg:w="2"/><text x="38.6779%" y="1519.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.87%)</title><rect x="38.4279%" y="1493" width="0.8734%" height="15" fill="rgb(213,176,14)" fg:x="88" fg:w="2"/><text x="38.6779%" y="1503.50"></text></g><g><title>__rdl_alloc (2 samples, 0.87%)</title><rect x="38.4279%" y="1477" width="0.8734%" height="15" fill="rgb(246,73,7)" fg:x="88" fg:w="2"/><text x="38.6779%" y="1487.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (2 samples, 0.87%)</title><rect x="38.4279%" y="1461" width="0.8734%" height="15" fill="rgb(245,64,36)" fg:x="88" fg:w="2"/><text x="38.6779%" y="1471.50"></text></g><g><title>std::sys::unix::alloc::aligned_malloc (2 samples, 0.87%)</title><rect x="38.4279%" y="1445" width="0.8734%" height="15" fill="rgb(245,80,10)" fg:x="88" fg:w="2"/><text x="38.6779%" y="1455.50"></text></g><g><title>posix_memalign (2 samples, 0.87%)</title><rect x="38.4279%" y="1429" width="0.8734%" height="15" fill="rgb(232,107,50)" fg:x="88" fg:w="2"/><text x="38.6779%" y="1439.50"></text></g><g><title>[libc-2.33.so] (2 samples, 0.87%)</title><rect x="38.4279%" y="1413" width="0.8734%" height="15" fill="rgb(253,3,0)" fg:x="88" fg:w="2"/><text x="38.6779%" y="1423.50"></text></g><g><title>[libc-2.33.so] (2 samples, 0.87%)</title><rect x="38.4279%" y="1397" width="0.8734%" height="15" fill="rgb(212,99,53)" fg:x="88" fg:w="2"/><text x="38.6779%" y="1407.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.8646%" y="1381" width="0.4367%" height="15" fill="rgb(249,111,54)" fg:x="89" fg:w="1"/><text x="39.1146%" y="1391.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.8646%" y="1365" width="0.4367%" height="15" fill="rgb(249,55,30)" fg:x="89" fg:w="1"/><text x="39.1146%" y="1375.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.8646%" y="1349" width="0.4367%" height="15" fill="rgb(237,47,42)" fg:x="89" fg:w="1"/><text x="39.1146%" y="1359.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.8646%" y="1333" width="0.4367%" height="15" fill="rgb(211,20,18)" fg:x="89" fg:w="1"/><text x="39.1146%" y="1343.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.8646%" y="1317" width="0.4367%" height="15" fill="rgb(231,203,46)" fg:x="89" fg:w="1"/><text x="39.1146%" y="1327.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.8646%" y="1301" width="0.4367%" height="15" fill="rgb(237,142,3)" fg:x="89" fg:w="1"/><text x="39.1146%" y="1311.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.8646%" y="1285" width="0.4367%" height="15" fill="rgb(241,107,1)" fg:x="89" fg:w="1"/><text x="39.1146%" y="1295.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.8646%" y="1269" width="0.4367%" height="15" fill="rgb(229,83,13)" fg:x="89" fg:w="1"/><text x="39.1146%" y="1279.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.8646%" y="1253" width="0.4367%" height="15" fill="rgb(241,91,40)" fg:x="89" fg:w="1"/><text x="39.1146%" y="1263.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.8646%" y="1237" width="0.4367%" height="15" fill="rgb(225,3,45)" fg:x="89" fg:w="1"/><text x="39.1146%" y="1247.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.8646%" y="1221" width="0.4367%" height="15" fill="rgb(244,223,14)" fg:x="89" fg:w="1"/><text x="39.1146%" y="1231.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.8646%" y="1205" width="0.4367%" height="15" fill="rgb(224,124,37)" fg:x="89" fg:w="1"/><text x="39.1146%" y="1215.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="38.8646%" y="1189" width="0.4367%" height="15" fill="rgb(251,171,30)" fg:x="89" fg:w="1"/><text x="39.1146%" y="1199.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="39.3013%" y="1013" width="0.4367%" height="15" fill="rgb(236,46,54)" fg:x="90" fg:w="1"/><text x="39.5513%" y="1023.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="39.3013%" y="997" width="0.4367%" height="15" fill="rgb(245,213,5)" fg:x="90" fg:w="1"/><text x="39.5513%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.3013%" y="981" width="0.4367%" height="15" fill="rgb(230,144,27)" fg:x="90" fg:w="1"/><text x="39.5513%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.3013%" y="965" width="0.4367%" height="15" fill="rgb(220,86,6)" fg:x="90" fg:w="1"/><text x="39.5513%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.3013%" y="949" width="0.4367%" height="15" fill="rgb(240,20,13)" fg:x="90" fg:w="1"/><text x="39.5513%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.3013%" y="933" width="0.4367%" height="15" fill="rgb(217,89,34)" fg:x="90" fg:w="1"/><text x="39.5513%" y="943.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.3013%" y="917" width="0.4367%" height="15" fill="rgb(229,13,5)" fg:x="90" fg:w="1"/><text x="39.5513%" y="927.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.3013%" y="901" width="0.4367%" height="15" fill="rgb(244,67,35)" fg:x="90" fg:w="1"/><text x="39.5513%" y="911.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.3013%" y="885" width="0.4367%" height="15" fill="rgb(221,40,2)" fg:x="90" fg:w="1"/><text x="39.5513%" y="895.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.3013%" y="869" width="0.4367%" height="15" fill="rgb(237,157,21)" fg:x="90" fg:w="1"/><text x="39.5513%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.3013%" y="853" width="0.4367%" height="15" fill="rgb(222,94,11)" fg:x="90" fg:w="1"/><text x="39.5513%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.3013%" y="837" width="0.4367%" height="15" fill="rgb(249,113,6)" fg:x="90" fg:w="1"/><text x="39.5513%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.3013%" y="821" width="0.4367%" height="15" fill="rgb(238,137,36)" fg:x="90" fg:w="1"/><text x="39.5513%" y="831.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.3013%" y="805" width="0.4367%" height="15" fill="rgb(210,102,26)" fg:x="90" fg:w="1"/><text x="39.5513%" y="815.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.3013%" y="789" width="0.4367%" height="15" fill="rgb(218,30,30)" fg:x="90" fg:w="1"/><text x="39.5513%" y="799.50"></text></g><g><title>&lt;tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::new_span (2 samples, 0.87%)</title><rect x="39.3013%" y="1381" width="0.8734%" height="15" fill="rgb(214,67,26)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1391.50"></text></g><g><title>tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt;::parent_context (2 samples, 0.87%)</title><rect x="39.3013%" y="1365" width="0.8734%" height="15" fill="rgb(251,9,53)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1375.50"></text></g><g><title>core::option::Option&lt;T&gt;::and_then (2 samples, 0.87%)</title><rect x="39.3013%" y="1349" width="0.8734%" height="15" fill="rgb(228,204,25)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1359.50"></text></g><g><title>tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt;::parent_context::{{closure}} (2 samples, 0.87%)</title><rect x="39.3013%" y="1333" width="0.8734%" height="15" fill="rgb(207,153,8)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1343.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (2 samples, 0.87%)</title><rect x="39.3013%" y="1317" width="0.8734%" height="15" fill="rgb(242,9,16)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1327.50"></text></g><g><title>tracing_opentelemetry::layer::OpenTelemetryLayer&lt;S,T&gt;::parent_context::{{closure}}::{{closure}} (2 samples, 0.87%)</title><rect x="39.3013%" y="1301" width="0.8734%" height="15" fill="rgb(217,211,10)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1311.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::tracer::Tracer as tracing_opentelemetry::tracer::PreSampledTracer&gt;::sampled_context (2 samples, 0.87%)</title><rect x="39.3013%" y="1285" width="0.8734%" height="15" fill="rgb(219,228,52)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1295.50"></text></g><g><title>&lt;opentelemetry::context::Context as opentelemetry::trace::context::TraceContextExt&gt;::with_remote_span_context (2 samples, 0.87%)</title><rect x="39.3013%" y="1269" width="0.8734%" height="15" fill="rgb(231,92,29)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1279.50"></text></g><g><title>opentelemetry::context::Context::with_value (2 samples, 0.87%)</title><rect x="39.3013%" y="1253" width="0.8734%" height="15" fill="rgb(232,8,23)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1263.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::insert (2 samples, 0.87%)</title><rect x="39.3013%" y="1237" width="0.8734%" height="15" fill="rgb(216,211,34)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1247.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (2 samples, 0.87%)</title><rect x="39.3013%" y="1221" width="0.8734%" height="15" fill="rgb(236,151,0)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1231.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::insert (2 samples, 0.87%)</title><rect x="39.3013%" y="1205" width="0.8734%" height="15" fill="rgb(209,168,3)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1215.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve (2 samples, 0.87%)</title><rect x="39.3013%" y="1189" width="0.8734%" height="15" fill="rgb(208,129,28)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1199.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash (2 samples, 0.87%)</title><rect x="39.3013%" y="1173" width="0.8734%" height="15" fill="rgb(229,78,22)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1183.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::resize (2 samples, 0.87%)</title><rect x="39.3013%" y="1157" width="0.8734%" height="15" fill="rgb(228,187,13)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1167.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::prepare_resize (2 samples, 0.87%)</title><rect x="39.3013%" y="1141" width="0.8734%" height="15" fill="rgb(240,119,24)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1151.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::fallible_with_capacity (2 samples, 0.87%)</title><rect x="39.3013%" y="1125" width="0.8734%" height="15" fill="rgb(209,194,42)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1135.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::new_uninitialized (2 samples, 0.87%)</title><rect x="39.3013%" y="1109" width="0.8734%" height="15" fill="rgb(247,200,46)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1119.50"></text></g><g><title>hashbrown::raw::alloc::inner::do_alloc (2 samples, 0.87%)</title><rect x="39.3013%" y="1093" width="0.8734%" height="15" fill="rgb(218,76,16)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1103.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.87%)</title><rect x="39.3013%" y="1077" width="0.8734%" height="15" fill="rgb(225,21,48)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1087.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.87%)</title><rect x="39.3013%" y="1061" width="0.8734%" height="15" fill="rgb(239,223,50)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1071.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.87%)</title><rect x="39.3013%" y="1045" width="0.8734%" height="15" fill="rgb(244,45,21)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1055.50"></text></g><g><title>__libc_malloc (2 samples, 0.87%)</title><rect x="39.3013%" y="1029" width="0.8734%" height="15" fill="rgb(232,33,43)" fg:x="90" fg:w="2"/><text x="39.5513%" y="1039.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.7380%" y="1013" width="0.4367%" height="15" fill="rgb(209,8,3)" fg:x="91" fg:w="1"/><text x="39.9880%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.7380%" y="997" width="0.4367%" height="15" fill="rgb(214,25,53)" fg:x="91" fg:w="1"/><text x="39.9880%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="39.7380%" y="981" width="0.4367%" height="15" fill="rgb(254,186,54)" fg:x="91" fg:w="1"/><text x="39.9880%" y="991.50"></text></g><g><title>&lt;tracing_subscriber::fmt::fmt_layer::Layer&lt;S,N,E,W&gt; as tracing_subscriber::layer::Layer&lt;S&gt;&gt;::new_span (1 samples, 0.44%)</title><rect x="40.1747%" y="1333" width="0.4367%" height="15" fill="rgb(208,174,49)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1343.50"></text></g><g><title>&lt;M as tracing_subscriber::fmt::format::FormatFields&gt;::format_fields (1 samples, 0.44%)</title><rect x="40.1747%" y="1317" width="0.4367%" height="15" fill="rgb(233,191,51)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1327.50"></text></g><g><title>&lt;&amp;F as tracing_subscriber::field::RecordFields&gt;::record (1 samples, 0.44%)</title><rect x="40.1747%" y="1301" width="0.4367%" height="15" fill="rgb(222,134,10)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1311.50"></text></g><g><title>tracing_core::span::Attributes::record (1 samples, 0.44%)</title><rect x="40.1747%" y="1285" width="0.4367%" height="15" fill="rgb(230,226,20)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1295.50"></text></g><g><title>tracing_core::field::ValueSet::record (1 samples, 0.44%)</title><rect x="40.1747%" y="1269" width="0.4367%" height="15" fill="rgb(251,111,25)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1279.50"></text></g><g><title>&lt;&amp;T as tracing_core::field::Value&gt;::record (1 samples, 0.44%)</title><rect x="40.1747%" y="1253" width="0.4367%" height="15" fill="rgb(224,40,46)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1263.50"></text></g><g><title>tracing_core::field::Visit::record_f64 (1 samples, 0.44%)</title><rect x="40.1747%" y="1237" width="0.4367%" height="15" fill="rgb(236,108,47)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1247.50"></text></g><g><title>&lt;tracing_subscriber::fmt::format::DefaultVisitor as tracing_core::field::Visit&gt;::record_debug (1 samples, 0.44%)</title><rect x="40.1747%" y="1221" width="0.4367%" height="15" fill="rgb(234,93,0)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1231.50"></text></g><g><title>core::fmt::Write::write_fmt (1 samples, 0.44%)</title><rect x="40.1747%" y="1205" width="0.4367%" height="15" fill="rgb(224,213,32)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1215.50"></text></g><g><title>core::fmt::write (1 samples, 0.44%)</title><rect x="40.1747%" y="1189" width="0.4367%" height="15" fill="rgb(251,11,48)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1199.50"></text></g><g><title>core::fmt::float::float_to_decimal_common_shortest (1 samples, 0.44%)</title><rect x="40.1747%" y="1173" width="0.4367%" height="15" fill="rgb(236,173,5)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1183.50"></text></g><g><title>core::fmt::Formatter::write_formatted_parts (1 samples, 0.44%)</title><rect x="40.1747%" y="1157" width="0.4367%" height="15" fill="rgb(230,95,12)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1167.50"></text></g><g><title>&lt;&amp;mut W as core::fmt::Write&gt;::write_str (1 samples, 0.44%)</title><rect x="40.1747%" y="1141" width="0.4367%" height="15" fill="rgb(232,209,1)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1151.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (1 samples, 0.44%)</title><rect x="40.1747%" y="1125" width="0.4367%" height="15" fill="rgb(232,6,1)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1135.50"></text></g><g><title>alloc::string::String::push_str (1 samples, 0.44%)</title><rect x="40.1747%" y="1109" width="0.4367%" height="15" fill="rgb(210,224,50)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1119.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (1 samples, 0.44%)</title><rect x="40.1747%" y="1093" width="0.4367%" height="15" fill="rgb(228,127,35)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1103.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (1 samples, 0.44%)</title><rect x="40.1747%" y="1077" width="0.4367%" height="15" fill="rgb(245,102,45)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1087.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (1 samples, 0.44%)</title><rect x="40.1747%" y="1061" width="0.4367%" height="15" fill="rgb(214,1,49)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1071.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (1 samples, 0.44%)</title><rect x="40.1747%" y="1045" width="0.4367%" height="15" fill="rgb(226,163,40)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1055.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.44%)</title><rect x="40.1747%" y="1029" width="0.4367%" height="15" fill="rgb(239,212,28)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1039.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (1 samples, 0.44%)</title><rect x="40.1747%" y="1013" width="0.4367%" height="15" fill="rgb(220,20,13)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1023.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (1 samples, 0.44%)</title><rect x="40.1747%" y="997" width="0.4367%" height="15" fill="rgb(210,164,35)" fg:x="92" fg:w="1"/><text x="40.4247%" y="1007.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.44%)</title><rect x="40.1747%" y="981" width="0.4367%" height="15" fill="rgb(248,109,41)" fg:x="92" fg:w="1"/><text x="40.4247%" y="991.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (1 samples, 0.44%)</title><rect x="40.1747%" y="965" width="0.4367%" height="15" fill="rgb(238,23,50)" fg:x="92" fg:w="1"/><text x="40.4247%" y="975.50"></text></g><g><title>alloc::alloc::Global::grow_impl (1 samples, 0.44%)</title><rect x="40.1747%" y="949" width="0.4367%" height="15" fill="rgb(211,48,49)" fg:x="92" fg:w="1"/><text x="40.4247%" y="959.50"></text></g><g><title>alloc::alloc::realloc (1 samples, 0.44%)</title><rect x="40.1747%" y="933" width="0.4367%" height="15" fill="rgb(223,36,21)" fg:x="92" fg:w="1"/><text x="40.4247%" y="943.50"></text></g><g><title>realloc (1 samples, 0.44%)</title><rect x="40.1747%" y="917" width="0.4367%" height="15" fill="rgb(207,123,46)" fg:x="92" fg:w="1"/><text x="40.4247%" y="927.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="40.1747%" y="901" width="0.4367%" height="15" fill="rgb(240,218,32)" fg:x="92" fg:w="1"/><text x="40.4247%" y="911.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (1 samples, 0.44%)</title><rect x="40.6114%" y="1141" width="0.4367%" height="15" fill="rgb(252,5,43)" fg:x="93" fg:w="1"/><text x="40.8614%" y="1151.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend::{{closure}} (1 samples, 0.44%)</title><rect x="40.6114%" y="1125" width="0.4367%" height="15" fill="rgb(252,84,19)" fg:x="93" fg:w="1"/><text x="40.8614%" y="1135.50"></text></g><g><title>core::ptr::write (1 samples, 0.44%)</title><rect x="40.6114%" y="1109" width="0.4367%" height="15" fill="rgb(243,152,39)" fg:x="93" fg:w="1"/><text x="40.8614%" y="1119.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="40.6114%" y="1093" width="0.4367%" height="15" fill="rgb(234,160,15)" fg:x="93" fg:w="1"/><text x="40.8614%" y="1103.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="40.6114%" y="1077" width="0.4367%" height="15" fill="rgb(237,34,20)" fg:x="93" fg:w="1"/><text x="40.8614%" y="1087.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="40.6114%" y="1061" width="0.4367%" height="15" fill="rgb(229,97,13)" fg:x="93" fg:w="1"/><text x="40.8614%" y="1071.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="40.6114%" y="1045" width="0.4367%" height="15" fill="rgb(234,71,50)" fg:x="93" fg:w="1"/><text x="40.8614%" y="1055.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="40.6114%" y="1029" width="0.4367%" height="15" fill="rgb(253,155,4)" fg:x="93" fg:w="1"/><text x="40.8614%" y="1039.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="40.6114%" y="1013" width="0.4367%" height="15" fill="rgb(222,185,37)" fg:x="93" fg:w="1"/><text x="40.8614%" y="1023.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="40.6114%" y="997" width="0.4367%" height="15" fill="rgb(251,177,13)" fg:x="93" fg:w="1"/><text x="40.8614%" y="1007.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="40.6114%" y="981" width="0.4367%" height="15" fill="rgb(250,179,40)" fg:x="93" fg:w="1"/><text x="40.8614%" y="991.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="40.6114%" y="965" width="0.4367%" height="15" fill="rgb(242,44,2)" fg:x="93" fg:w="1"/><text x="40.8614%" y="975.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="40.6114%" y="949" width="0.4367%" height="15" fill="rgb(216,177,13)" fg:x="93" fg:w="1"/><text x="40.8614%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="40.6114%" y="933" width="0.4367%" height="15" fill="rgb(216,106,43)" fg:x="93" fg:w="1"/><text x="40.8614%" y="943.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="40.6114%" y="917" width="0.4367%" height="15" fill="rgb(216,183,2)" fg:x="93" fg:w="1"/><text x="40.8614%" y="927.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="40.6114%" y="901" width="0.4367%" height="15" fill="rgb(249,75,3)" fg:x="93" fg:w="1"/><text x="40.8614%" y="911.50"></text></g><g><title>&lt;core::future::from_generator::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll (48 samples, 20.96%)</title><rect x="20.5240%" y="1573" width="20.9607%" height="15" fill="rgb(219,67,39)" fg:x="47" fg:w="48"/><text x="20.7740%" y="1583.50">&lt;core::future::from_generator::Ge..</text></g><g><title>jaeger_test::a::{{closure}} (48 samples, 20.96%)</title><rect x="20.5240%" y="1557" width="20.9607%" height="15" fill="rgb(253,228,2)" fg:x="47" fg:w="48"/><text x="20.7740%" y="1567.50">jaeger_test::a::{{closure}}</text></g><g><title>tracing::span::Span::new (5 samples, 2.18%)</title><rect x="39.3013%" y="1541" width="2.1834%" height="15" fill="rgb(235,138,27)" fg:x="90" fg:w="5"/><text x="39.5513%" y="1551.50">t..</text></g><g><title>tracing_core::dispatcher::get_default (5 samples, 2.18%)</title><rect x="39.3013%" y="1525" width="2.1834%" height="15" fill="rgb(236,97,51)" fg:x="90" fg:w="5"/><text x="39.5513%" y="1535.50">t..</text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (5 samples, 2.18%)</title><rect x="39.3013%" y="1509" width="2.1834%" height="15" fill="rgb(240,80,30)" fg:x="90" fg:w="5"/><text x="39.5513%" y="1519.50">s..</text></g><g><title>tracing_core::dispatcher::get_default::{{closure}} (5 samples, 2.18%)</title><rect x="39.3013%" y="1493" width="2.1834%" height="15" fill="rgb(230,178,19)" fg:x="90" fg:w="5"/><text x="39.5513%" y="1503.50">t..</text></g><g><title>tracing::span::Span::new::{{closure}} (5 samples, 2.18%)</title><rect x="39.3013%" y="1477" width="2.1834%" height="15" fill="rgb(210,190,27)" fg:x="90" fg:w="5"/><text x="39.5513%" y="1487.50">t..</text></g><g><title>tracing::span::Span::new_with (5 samples, 2.18%)</title><rect x="39.3013%" y="1461" width="2.1834%" height="15" fill="rgb(222,107,31)" fg:x="90" fg:w="5"/><text x="39.5513%" y="1471.50">t..</text></g><g><title>tracing::span::Span::make_with (5 samples, 2.18%)</title><rect x="39.3013%" y="1445" width="2.1834%" height="15" fill="rgb(216,127,34)" fg:x="90" fg:w="5"/><text x="39.5513%" y="1455.50">t..</text></g><g><title>tracing_core::dispatcher::Dispatch::new_span (5 samples, 2.18%)</title><rect x="39.3013%" y="1429" width="2.1834%" height="15" fill="rgb(234,116,52)" fg:x="90" fg:w="5"/><text x="39.5513%" y="1439.50">t..</text></g><g><title>&lt;alloc::sync::Arc&lt;dyn tracing_core::subscriber::Subscriber+core::marker::Send+core::marker::Sync&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (5 samples, 2.18%)</title><rect x="39.3013%" y="1413" width="2.1834%" height="15" fill="rgb(222,124,15)" fg:x="90" fg:w="5"/><text x="39.5513%" y="1423.50">&lt;..</text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (5 samples, 2.18%)</title><rect x="39.3013%" y="1397" width="2.1834%" height="15" fill="rgb(231,179,28)" fg:x="90" fg:w="5"/><text x="39.5513%" y="1407.50">&lt;..</text></g><g><title>&lt;tracing_subscriber::fmt::Subscriber&lt;N,E,F,W&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (3 samples, 1.31%)</title><rect x="40.1747%" y="1381" width="1.3100%" height="15" fill="rgb(226,93,45)" fg:x="92" fg:w="3"/><text x="40.4247%" y="1391.50"></text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (3 samples, 1.31%)</title><rect x="40.1747%" y="1365" width="1.3100%" height="15" fill="rgb(215,8,51)" fg:x="92" fg:w="3"/><text x="40.4247%" y="1375.50"></text></g><g><title>&lt;tracing_subscriber::layer::layered::Layered&lt;L,S&gt; as tracing_core::subscriber::Subscriber&gt;::new_span (3 samples, 1.31%)</title><rect x="40.1747%" y="1349" width="1.3100%" height="15" fill="rgb(223,106,5)" fg:x="92" fg:w="3"/><text x="40.4247%" y="1359.50"></text></g><g><title>&lt;tracing_subscriber::registry::sharded::Registry as tracing_core::subscriber::Subscriber&gt;::new_span (2 samples, 0.87%)</title><rect x="40.6114%" y="1333" width="0.8734%" height="15" fill="rgb(250,191,5)" fg:x="93" fg:w="2"/><text x="40.8614%" y="1343.50"></text></g><g><title>sharded_slab::pool::Pool&lt;T,C&gt;::create_with (2 samples, 0.87%)</title><rect x="40.6114%" y="1317" width="0.8734%" height="15" fill="rgb(242,132,44)" fg:x="93" fg:w="2"/><text x="40.8614%" y="1327.50"></text></g><g><title>sharded_slab::pool::Pool&lt;T,C&gt;::create (2 samples, 0.87%)</title><rect x="40.6114%" y="1301" width="0.8734%" height="15" fill="rgb(251,152,29)" fg:x="93" fg:w="2"/><text x="40.8614%" y="1311.50"></text></g><g><title>sharded_slab::shard::Shard&lt;T,C&gt;::init_with (2 samples, 0.87%)</title><rect x="40.6114%" y="1285" width="0.8734%" height="15" fill="rgb(218,179,5)" fg:x="93" fg:w="2"/><text x="40.8614%" y="1295.50"></text></g><g><title>sharded_slab::page::Shared&lt;T,C&gt;::init_with (2 samples, 0.87%)</title><rect x="40.6114%" y="1269" width="0.8734%" height="15" fill="rgb(227,67,19)" fg:x="93" fg:w="2"/><text x="40.8614%" y="1279.50"></text></g><g><title>sharded_slab::page::Shared&lt;T,C&gt;::allocate (2 samples, 0.87%)</title><rect x="40.6114%" y="1253" width="0.8734%" height="15" fill="rgb(233,119,31)" fg:x="93" fg:w="2"/><text x="40.8614%" y="1263.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::iter::traits::collect::Extend&lt;T&gt;&gt;::extend (2 samples, 0.87%)</title><rect x="40.6114%" y="1237" width="0.8734%" height="15" fill="rgb(241,120,22)" fg:x="93" fg:w="2"/><text x="40.8614%" y="1247.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (2 samples, 0.87%)</title><rect x="40.6114%" y="1221" width="0.8734%" height="15" fill="rgb(224,102,30)" fg:x="93" fg:w="2"/><text x="40.8614%" y="1231.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (2 samples, 0.87%)</title><rect x="40.6114%" y="1205" width="0.8734%" height="15" fill="rgb(210,164,37)" fg:x="93" fg:w="2"/><text x="40.8614%" y="1215.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (2 samples, 0.87%)</title><rect x="40.6114%" y="1189" width="0.8734%" height="15" fill="rgb(226,191,16)" fg:x="93" fg:w="2"/><text x="40.8614%" y="1199.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (2 samples, 0.87%)</title><rect x="40.6114%" y="1173" width="0.8734%" height="15" fill="rgb(214,40,45)" fg:x="93" fg:w="2"/><text x="40.8614%" y="1183.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (2 samples, 0.87%)</title><rect x="40.6114%" y="1157" width="0.8734%" height="15" fill="rgb(244,29,26)" fg:x="93" fg:w="2"/><text x="40.8614%" y="1167.50"></text></g><g><title>core::ops::function::FnMut::call_mut (1 samples, 0.44%)</title><rect x="41.0480%" y="1141" width="0.4367%" height="15" fill="rgb(216,16,5)" fg:x="94" fg:w="1"/><text x="41.2980%" y="1151.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::new (1 samples, 0.44%)</title><rect x="41.0480%" y="1125" width="0.4367%" height="15" fill="rgb(249,76,35)" fg:x="94" fg:w="1"/><text x="41.2980%" y="1135.50"></text></g><g><title>&lt;tracing_subscriber::registry::sharded::DataInner as core::default::Default&gt;::default (1 samples, 0.44%)</title><rect x="41.0480%" y="1109" width="0.4367%" height="15" fill="rgb(207,11,44)" fg:x="94" fg:w="1"/><text x="41.2980%" y="1119.50"></text></g><g><title>std::sync::rwlock::RwLock&lt;T&gt;::new (1 samples, 0.44%)</title><rect x="41.0480%" y="1093" width="0.4367%" height="15" fill="rgb(228,190,49)" fg:x="94" fg:w="1"/><text x="41.2980%" y="1103.50"></text></g><g><title>std::sys_common::rwlock::MovableRWLock::new (1 samples, 0.44%)</title><rect x="41.0480%" y="1077" width="0.4367%" height="15" fill="rgb(214,173,12)" fg:x="94" fg:w="1"/><text x="41.2980%" y="1087.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;T&gt; as core::convert::From&lt;T&gt;&gt;::from (1 samples, 0.44%)</title><rect x="41.0480%" y="1061" width="0.4367%" height="15" fill="rgb(218,26,35)" fg:x="94" fg:w="1"/><text x="41.2980%" y="1071.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (1 samples, 0.44%)</title><rect x="41.0480%" y="1045" width="0.4367%" height="15" fill="rgb(220,200,19)" fg:x="94" fg:w="1"/><text x="41.2980%" y="1055.50"></text></g><g><title>alloc::alloc::exchange_malloc (1 samples, 0.44%)</title><rect x="41.0480%" y="1029" width="0.4367%" height="15" fill="rgb(239,95,49)" fg:x="94" fg:w="1"/><text x="41.2980%" y="1039.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.44%)</title><rect x="41.0480%" y="1013" width="0.4367%" height="15" fill="rgb(235,85,53)" fg:x="94" fg:w="1"/><text x="41.2980%" y="1023.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.44%)</title><rect x="41.0480%" y="997" width="0.4367%" height="15" fill="rgb(233,133,31)" fg:x="94" fg:w="1"/><text x="41.2980%" y="1007.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.44%)</title><rect x="41.0480%" y="981" width="0.4367%" height="15" fill="rgb(218,25,20)" fg:x="94" fg:w="1"/><text x="41.2980%" y="991.50"></text></g><g><title>__libc_malloc (1 samples, 0.44%)</title><rect x="41.0480%" y="965" width="0.4367%" height="15" fill="rgb(252,210,38)" fg:x="94" fg:w="1"/><text x="41.2980%" y="975.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="41.0480%" y="949" width="0.4367%" height="15" fill="rgb(242,134,21)" fg:x="94" fg:w="1"/><text x="41.2980%" y="959.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="41.0480%" y="933" width="0.4367%" height="15" fill="rgb(213,28,48)" fg:x="94" fg:w="1"/><text x="41.2980%" y="943.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="41.0480%" y="917" width="0.4367%" height="15" fill="rgb(250,196,2)" fg:x="94" fg:w="1"/><text x="41.2980%" y="927.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="41.0480%" y="901" width="0.4367%" height="15" fill="rgb(227,5,17)" fg:x="94" fg:w="1"/><text x="41.2980%" y="911.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="41.0480%" y="885" width="0.4367%" height="15" fill="rgb(221,226,24)" fg:x="94" fg:w="1"/><text x="41.2980%" y="895.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="41.0480%" y="869" width="0.4367%" height="15" fill="rgb(211,5,48)" fg:x="94" fg:w="1"/><text x="41.2980%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="41.0480%" y="853" width="0.4367%" height="15" fill="rgb(219,150,6)" fg:x="94" fg:w="1"/><text x="41.2980%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="41.0480%" y="837" width="0.4367%" height="15" fill="rgb(251,46,16)" fg:x="94" fg:w="1"/><text x="41.2980%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="41.0480%" y="821" width="0.4367%" height="15" fill="rgb(220,204,40)" fg:x="94" fg:w="1"/><text x="41.2980%" y="831.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="41.0480%" y="805" width="0.4367%" height="15" fill="rgb(211,85,2)" fg:x="94" fg:w="1"/><text x="41.2980%" y="815.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="41.0480%" y="789" width="0.4367%" height="15" fill="rgb(229,17,7)" fg:x="94" fg:w="1"/><text x="41.2980%" y="799.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="41.0480%" y="773" width="0.4367%" height="15" fill="rgb(239,72,28)" fg:x="94" fg:w="1"/><text x="41.2980%" y="783.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="41.0480%" y="757" width="0.4367%" height="15" fill="rgb(230,47,54)" fg:x="94" fg:w="1"/><text x="41.2980%" y="767.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="41.0480%" y="741" width="0.4367%" height="15" fill="rgb(214,50,8)" fg:x="94" fg:w="1"/><text x="41.2980%" y="751.50"></text></g><g><title>&lt;opentelemetry::context::Context as opentelemetry::trace::context::TraceContextExt&gt;::has_active_span (1 samples, 0.44%)</title><rect x="41.4847%" y="1573" width="0.4367%" height="15" fill="rgb(216,198,43)" fg:x="95" fg:w="1"/><text x="41.7347%" y="1583.50"></text></g><g><title>opentelemetry::context::Context::get (1 samples, 0.44%)</title><rect x="41.4847%" y="1557" width="0.4367%" height="15" fill="rgb(234,20,35)" fg:x="95" fg:w="1"/><text x="41.7347%" y="1567.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::get (1 samples, 0.44%)</title><rect x="41.4847%" y="1541" width="0.4367%" height="15" fill="rgb(254,45,19)" fg:x="95" fg:w="1"/><text x="41.7347%" y="1551.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get (1 samples, 0.44%)</title><rect x="41.4847%" y="1525" width="0.4367%" height="15" fill="rgb(219,14,44)" fg:x="95" fg:w="1"/><text x="41.7347%" y="1535.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::get_inner (1 samples, 0.44%)</title><rect x="41.4847%" y="1509" width="0.4367%" height="15" fill="rgb(217,220,26)" fg:x="95" fg:w="1"/><text x="41.7347%" y="1519.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::get (1 samples, 0.44%)</title><rect x="41.4847%" y="1493" width="0.4367%" height="15" fill="rgb(213,158,28)" fg:x="95" fg:w="1"/><text x="41.7347%" y="1503.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::find (1 samples, 0.44%)</title><rect x="41.4847%" y="1477" width="0.4367%" height="15" fill="rgb(252,51,52)" fg:x="95" fg:w="1"/><text x="41.7347%" y="1487.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::iter_hash (1 samples, 0.44%)</title><rect x="41.4847%" y="1461" width="0.4367%" height="15" fill="rgb(246,89,16)" fg:x="95" fg:w="1"/><text x="41.7347%" y="1471.50"></text></g><g><title>hashbrown::raw::RawIterHash&lt;T,A&gt;::new (1 samples, 0.44%)</title><rect x="41.4847%" y="1445" width="0.4367%" height="15" fill="rgb(216,158,49)" fg:x="95" fg:w="1"/><text x="41.7347%" y="1455.50"></text></g><g><title>hashbrown::raw::RawIterHashInner&lt;A&gt;::new (1 samples, 0.44%)</title><rect x="41.4847%" y="1429" width="0.4367%" height="15" fill="rgb(236,107,19)" fg:x="95" fg:w="1"/><text x="41.7347%" y="1439.50"></text></g><g><title>hashbrown::raw::RawTableInner&lt;A&gt;::probe_seq (1 samples, 0.44%)</title><rect x="41.4847%" y="1413" width="0.4367%" height="15" fill="rgb(228,185,30)" fg:x="95" fg:w="1"/><text x="41.7347%" y="1423.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::tracer::Tracer as opentelemetry::trace::tracer::Tracer&gt;::build (1 samples, 0.44%)</title><rect x="41.9214%" y="1573" width="0.4367%" height="15" fill="rgb(246,134,8)" fg:x="96" fg:w="1"/><text x="42.1714%" y="1583.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.44%)</title><rect x="41.9214%" y="1557" width="0.4367%" height="15" fill="rgb(214,143,50)" fg:x="96" fg:w="1"/><text x="42.1714%" y="1567.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::tracer::Tracer as opentelemetry::trace::tracer::Tracer&gt;::build::{{closure}} (1 samples, 0.44%)</title><rect x="41.9214%" y="1541" width="0.4367%" height="15" fill="rgb(228,75,8)" fg:x="96" fg:w="1"/><text x="42.1714%" y="1551.50"></text></g><g><title>[[vdso]] (1 samples, 0.44%)</title><rect x="42.3581%" y="1573" width="0.4367%" height="15" fill="rgb(207,175,4)" fg:x="97" fg:w="1"/><text x="42.6081%" y="1583.50"></text></g><g><title>[[vdso]] (1 samples, 0.44%)</title><rect x="42.3581%" y="1557" width="0.4367%" height="15" fill="rgb(205,108,24)" fg:x="97" fg:w="1"/><text x="42.6081%" y="1567.50"></text></g><g><title>[unknown] (10 samples, 4.37%)</title><rect x="42.7948%" y="1573" width="4.3668%" height="15" fill="rgb(244,120,49)" fg:x="98" fg:w="10"/><text x="43.0448%" y="1583.50">[unkn..</text></g><g><title>[unknown] (10 samples, 4.37%)</title><rect x="42.7948%" y="1557" width="4.3668%" height="15" fill="rgb(223,47,38)" fg:x="98" fg:w="10"/><text x="43.0448%" y="1567.50">[unkn..</text></g><g><title>[unknown] (10 samples, 4.37%)</title><rect x="42.7948%" y="1541" width="4.3668%" height="15" fill="rgb(229,179,11)" fg:x="98" fg:w="10"/><text x="43.0448%" y="1551.50">[unkn..</text></g><g><title>[unknown] (10 samples, 4.37%)</title><rect x="42.7948%" y="1525" width="4.3668%" height="15" fill="rgb(231,122,1)" fg:x="98" fg:w="10"/><text x="43.0448%" y="1535.50">[unkn..</text></g><g><title>[unknown] (9 samples, 3.93%)</title><rect x="43.2314%" y="1509" width="3.9301%" height="15" fill="rgb(245,119,9)" fg:x="99" fg:w="9"/><text x="43.4814%" y="1519.50">[unk..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="43.6681%" y="1493" width="3.4934%" height="15" fill="rgb(241,163,25)" fg:x="100" fg:w="8"/><text x="43.9181%" y="1503.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="43.6681%" y="1477" width="3.4934%" height="15" fill="rgb(217,214,3)" fg:x="100" fg:w="8"/><text x="43.9181%" y="1487.50">[un..</text></g><g><title>[unknown] (7 samples, 3.06%)</title><rect x="44.1048%" y="1461" width="3.0568%" height="15" fill="rgb(240,86,28)" fg:x="101" fg:w="7"/><text x="44.3548%" y="1471.50">[un..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="44.9782%" y="1445" width="2.1834%" height="15" fill="rgb(215,47,9)" fg:x="103" fg:w="5"/><text x="45.2282%" y="1455.50">[..</text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="45.4148%" y="1429" width="1.7467%" height="15" fill="rgb(252,25,45)" fg:x="104" fg:w="4"/><text x="45.6648%" y="1439.50"></text></g><g><title>[unknown] (3 samples, 1.31%)</title><rect x="45.8515%" y="1413" width="1.3100%" height="15" fill="rgb(251,164,9)" fg:x="105" fg:w="3"/><text x="46.1015%" y="1423.50"></text></g><g><title>[unknown] (2 samples, 0.87%)</title><rect x="46.2882%" y="1397" width="0.8734%" height="15" fill="rgb(233,194,0)" fg:x="106" fg:w="2"/><text x="46.5382%" y="1407.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="46.7249%" y="1381" width="0.4367%" height="15" fill="rgb(249,111,24)" fg:x="107" fg:w="1"/><text x="46.9749%" y="1391.50"></text></g><g><title>__libc_malloc (1 samples, 0.44%)</title><rect x="47.1616%" y="1573" width="0.4367%" height="15" fill="rgb(250,223,3)" fg:x="108" fg:w="1"/><text x="47.4116%" y="1583.50"></text></g><g><title>core::fmt::num::imp::&lt;impl core::fmt::Display for i64&gt;::fmt (1 samples, 0.44%)</title><rect x="47.5983%" y="1573" width="0.4367%" height="15" fill="rgb(236,178,37)" fg:x="109" fg:w="1"/><text x="47.8483%" y="1583.50"></text></g><g><title>core::fmt::num::imp::fmt_u64 (1 samples, 0.44%)</title><rect x="47.5983%" y="1557" width="0.4367%" height="15" fill="rgb(241,158,50)" fg:x="109" fg:w="1"/><text x="47.8483%" y="1567.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::offset (1 samples, 0.44%)</title><rect x="47.5983%" y="1541" width="0.4367%" height="15" fill="rgb(213,121,41)" fg:x="109" fg:w="1"/><text x="47.8483%" y="1551.50"></text></g><g><title>core::unicode::printable::is_printable (1 samples, 0.44%)</title><rect x="47.5983%" y="1525" width="0.4367%" height="15" fill="rgb(240,92,3)" fg:x="109" fg:w="1"/><text x="47.8483%" y="1535.50"></text></g><g><title>core::unicode::printable::check (1 samples, 0.44%)</title><rect x="47.5983%" y="1509" width="0.4367%" height="15" fill="rgb(205,123,3)" fg:x="109" fg:w="1"/><text x="47.8483%" y="1519.50"></text></g><g><title>core::unicode::printable::is_printable (2 samples, 0.87%)</title><rect x="48.0349%" y="1573" width="0.8734%" height="15" fill="rgb(205,97,47)" fg:x="110" fg:w="2"/><text x="48.2849%" y="1583.50"></text></g><g><title>core::unicode::printable::check (2 samples, 0.87%)</title><rect x="48.0349%" y="1557" width="0.8734%" height="15" fill="rgb(247,152,14)" fg:x="110" fg:w="2"/><text x="48.2849%" y="1567.50"></text></g><g><title>opentelemetry::sdk::trace::evicted_hash_map::EvictedHashMap::insert (1 samples, 0.44%)</title><rect x="48.9083%" y="1573" width="0.4367%" height="15" fill="rgb(248,195,53)" fg:x="112" fg:w="1"/><text x="49.1583%" y="1583.50"></text></g><g><title>std::collections::hash::map::VacantEntry&lt;K,V&gt;::insert (1 samples, 0.44%)</title><rect x="48.9083%" y="1557" width="0.4367%" height="15" fill="rgb(226,201,16)" fg:x="112" fg:w="1"/><text x="49.1583%" y="1567.50"></text></g><g><title>hashbrown::rustc_entry::RustcVacantEntry&lt;K,V,A&gt;::insert (1 samples, 0.44%)</title><rect x="48.9083%" y="1541" width="0.4367%" height="15" fill="rgb(205,98,0)" fg:x="112" fg:w="1"/><text x="49.1583%" y="1551.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::insert_no_grow (1 samples, 0.44%)</title><rect x="48.9083%" y="1525" width="0.4367%" height="15" fill="rgb(214,191,48)" fg:x="112" fg:w="1"/><text x="49.1583%" y="1535.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::write (1 samples, 0.44%)</title><rect x="48.9083%" y="1509" width="0.4367%" height="15" fill="rgb(237,112,39)" fg:x="112" fg:w="1"/><text x="49.1583%" y="1519.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::write (1 samples, 0.44%)</title><rect x="48.9083%" y="1493" width="0.4367%" height="15" fill="rgb(247,203,27)" fg:x="112" fg:w="1"/><text x="49.1583%" y="1503.50"></text></g><g><title>core::ptr::write (1 samples, 0.44%)</title><rect x="48.9083%" y="1477" width="0.4367%" height="15" fill="rgb(235,124,28)" fg:x="112" fg:w="1"/><text x="49.1583%" y="1487.50"></text></g><g><title>realloc (1 samples, 0.44%)</title><rect x="49.3450%" y="1573" width="0.4367%" height="15" fill="rgb(208,207,46)" fg:x="113" fg:w="1"/><text x="49.5950%" y="1583.50"></text></g><g><title>[unknown] (68 samples, 29.69%)</title><rect x="20.5240%" y="1589" width="29.6943%" height="15" fill="rgb(234,176,4)" fg:x="47" fg:w="68"/><text x="20.7740%" y="1599.50">[unknown]</text></g><g><title>tokio::runtime::thread_pool::worker::Context::run (1 samples, 0.44%)</title><rect x="49.7817%" y="1573" width="0.4367%" height="15" fill="rgb(230,133,28)" fg:x="114" fg:w="1"/><text x="50.0317%" y="1583.50"></text></g><g><title>tokio::runtime::thread_pool::worker::Core::steal_work (1 samples, 0.44%)</title><rect x="49.7817%" y="1557" width="0.4367%" height="15" fill="rgb(211,137,40)" fg:x="114" fg:w="1"/><text x="50.0317%" y="1567.50"></text></g><g><title>parking_lot_core::parking_lot::park::{{closure}} (15 samples, 6.55%)</title><rect x="50.2183%" y="1253" width="6.5502%" height="15" fill="rgb(254,35,13)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1263.50">parking_l..</text></g><g><title>&lt;parking_lot_core::thread_parker::imp::ThreadParker as parking_lot_core::thread_parker::ThreadParkerT&gt;::park (15 samples, 6.55%)</title><rect x="50.2183%" y="1237" width="6.5502%" height="15" fill="rgb(225,49,51)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1247.50">&lt;parking_..</text></g><g><title>parking_lot_core::thread_parker::imp::ThreadParker::futex_wait (15 samples, 6.55%)</title><rect x="50.2183%" y="1221" width="6.5502%" height="15" fill="rgb(251,10,15)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1231.50">parking_l..</text></g><g><title>syscall (15 samples, 6.55%)</title><rect x="50.2183%" y="1205" width="6.5502%" height="15" fill="rgb(228,207,15)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1215.50">syscall</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="1189" width="6.5502%" height="15" fill="rgb(241,99,19)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1199.50">[unknown]</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="1173" width="6.5502%" height="15" fill="rgb(207,104,49)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1183.50">[unknown]</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="1157" width="6.5502%" height="15" fill="rgb(234,99,18)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1167.50">[unknown]</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="1141" width="6.5502%" height="15" fill="rgb(213,191,49)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1151.50">[unknown]</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="1125" width="6.5502%" height="15" fill="rgb(210,226,19)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1135.50">[unknown]</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="1109" width="6.5502%" height="15" fill="rgb(229,97,18)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1119.50">[unknown]</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="1093" width="6.5502%" height="15" fill="rgb(211,167,15)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1103.50">[unknown]</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="1077" width="6.5502%" height="15" fill="rgb(210,169,34)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1087.50">[unknown]</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="1061" width="6.5502%" height="15" fill="rgb(241,121,31)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1071.50">[unknown]</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="1045" width="6.5502%" height="15" fill="rgb(232,40,11)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1055.50">[unknown]</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="1029" width="6.5502%" height="15" fill="rgb(205,86,26)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1039.50">[unknown]</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="1013" width="6.5502%" height="15" fill="rgb(231,126,28)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1023.50">[unknown]</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="997" width="6.5502%" height="15" fill="rgb(219,221,18)" fg:x="115" fg:w="15"/><text x="50.4683%" y="1007.50">[unknown]</text></g><g><title>[unknown] (15 samples, 6.55%)</title><rect x="50.2183%" y="981" width="6.5502%" height="15" fill="rgb(211,40,0)" fg:x="115" fg:w="15"/><text x="50.4683%" y="991.50">[unknown]</text></g><g><title>tokio::loom::std::parking_lot::Mutex&lt;T&gt;::lock (16 samples, 6.99%)</title><rect x="50.2183%" y="1349" width="6.9869%" height="15" fill="rgb(239,85,43)" fg:x="115" fg:w="16"/><text x="50.4683%" y="1359.50">tokio::lo..</text></g><g><title>lock_api::mutex::Mutex&lt;R,T&gt;::lock (16 samples, 6.99%)</title><rect x="50.2183%" y="1333" width="6.9869%" height="15" fill="rgb(231,55,21)" fg:x="115" fg:w="16"/><text x="50.4683%" y="1343.50">lock_api:..</text></g><g><title>&lt;parking_lot::raw_mutex::RawMutex as lock_api::mutex::RawMutex&gt;::lock (16 samples, 6.99%)</title><rect x="50.2183%" y="1317" width="6.9869%" height="15" fill="rgb(225,184,43)" fg:x="115" fg:w="16"/><text x="50.4683%" y="1327.50">&lt;parking_..</text></g><g><title>parking_lot::raw_mutex::RawMutex::lock_slow (16 samples, 6.99%)</title><rect x="50.2183%" y="1301" width="6.9869%" height="15" fill="rgb(251,158,41)" fg:x="115" fg:w="16"/><text x="50.4683%" y="1311.50">parking_l..</text></g><g><title>parking_lot_core::parking_lot::park (16 samples, 6.99%)</title><rect x="50.2183%" y="1285" width="6.9869%" height="15" fill="rgb(234,159,37)" fg:x="115" fg:w="16"/><text x="50.4683%" y="1295.50">parking_l..</text></g><g><title>parking_lot_core::parking_lot::with_thread_data (16 samples, 6.99%)</title><rect x="50.2183%" y="1269" width="6.9869%" height="15" fill="rgb(216,204,22)" fg:x="115" fg:w="16"/><text x="50.4683%" y="1279.50">parking_l..</text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1 samples, 0.44%)</title><rect x="56.7686%" y="1253" width="0.4367%" height="15" fill="rgb(214,17,3)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1263.50"></text></g><g><title>parking_lot_core::parking_lot::with_thread_data::THREAD_DATA::__getit (1 samples, 0.44%)</title><rect x="56.7686%" y="1237" width="0.4367%" height="15" fill="rgb(212,111,17)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1247.50"></text></g><g><title>std::thread::local::fast::Key&lt;T&gt;::get (1 samples, 0.44%)</title><rect x="56.7686%" y="1221" width="0.4367%" height="15" fill="rgb(221,157,24)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1231.50"></text></g><g><title>std::thread::local::fast::Key&lt;T&gt;::try_initialize (1 samples, 0.44%)</title><rect x="56.7686%" y="1205" width="0.4367%" height="15" fill="rgb(252,16,13)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1215.50"></text></g><g><title>std::thread::local::lazy::LazyKeyInner&lt;T&gt;::initialize (1 samples, 0.44%)</title><rect x="56.7686%" y="1189" width="0.4367%" height="15" fill="rgb(221,62,2)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1199.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.44%)</title><rect x="56.7686%" y="1173" width="0.4367%" height="15" fill="rgb(247,87,22)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1183.50"></text></g><g><title>parking_lot_core::parking_lot::with_thread_data::THREAD_DATA::__init (1 samples, 0.44%)</title><rect x="56.7686%" y="1157" width="0.4367%" height="15" fill="rgb(215,73,9)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1167.50"></text></g><g><title>parking_lot_core::parking_lot::ThreadData::new (1 samples, 0.44%)</title><rect x="56.7686%" y="1141" width="0.4367%" height="15" fill="rgb(207,175,33)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1151.50"></text></g><g><title>parking_lot_core::parking_lot::grow_hashtable (1 samples, 0.44%)</title><rect x="56.7686%" y="1125" width="0.4367%" height="15" fill="rgb(243,129,54)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1135.50"></text></g><g><title>parking_lot_core::parking_lot::get_hashtable (1 samples, 0.44%)</title><rect x="56.7686%" y="1109" width="0.4367%" height="15" fill="rgb(227,119,45)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1119.50"></text></g><g><title>parking_lot_core::parking_lot::create_hashtable (1 samples, 0.44%)</title><rect x="56.7686%" y="1093" width="0.4367%" height="15" fill="rgb(205,109,36)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1103.50"></text></g><g><title>parking_lot_core::parking_lot::HashTable::new (1 samples, 0.44%)</title><rect x="56.7686%" y="1077" width="0.4367%" height="15" fill="rgb(205,6,39)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1087.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1 samples, 0.44%)</title><rect x="56.7686%" y="1061" width="0.4367%" height="15" fill="rgb(221,32,16)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1071.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.44%)</title><rect x="56.7686%" y="1045" width="0.4367%" height="15" fill="rgb(228,144,50)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1055.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.44%)</title><rect x="56.7686%" y="1029" width="0.4367%" height="15" fill="rgb(229,201,53)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1039.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.44%)</title><rect x="56.7686%" y="1013" width="0.4367%" height="15" fill="rgb(249,153,27)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1023.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.44%)</title><rect x="56.7686%" y="997" width="0.4367%" height="15" fill="rgb(227,106,25)" fg:x="130" fg:w="1"/><text x="57.0186%" y="1007.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.44%)</title><rect x="56.7686%" y="981" width="0.4367%" height="15" fill="rgb(230,65,29)" fg:x="130" fg:w="1"/><text x="57.0186%" y="991.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.44%)</title><rect x="56.7686%" y="965" width="0.4367%" height="15" fill="rgb(221,57,46)" fg:x="130" fg:w="1"/><text x="57.0186%" y="975.50"></text></g><g><title>__rdl_alloc (1 samples, 0.44%)</title><rect x="56.7686%" y="949" width="0.4367%" height="15" fill="rgb(229,161,17)" fg:x="130" fg:w="1"/><text x="57.0186%" y="959.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (1 samples, 0.44%)</title><rect x="56.7686%" y="933" width="0.4367%" height="15" fill="rgb(222,213,11)" fg:x="130" fg:w="1"/><text x="57.0186%" y="943.50"></text></g><g><title>std::sys::unix::alloc::aligned_malloc (1 samples, 0.44%)</title><rect x="56.7686%" y="917" width="0.4367%" height="15" fill="rgb(235,35,13)" fg:x="130" fg:w="1"/><text x="57.0186%" y="927.50"></text></g><g><title>posix_memalign (1 samples, 0.44%)</title><rect x="56.7686%" y="901" width="0.4367%" height="15" fill="rgb(233,158,34)" fg:x="130" fg:w="1"/><text x="57.0186%" y="911.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="56.7686%" y="885" width="0.4367%" height="15" fill="rgb(215,151,48)" fg:x="130" fg:w="1"/><text x="57.0186%" y="895.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="56.7686%" y="869" width="0.4367%" height="15" fill="rgb(229,84,14)" fg:x="130" fg:w="1"/><text x="57.0186%" y="879.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="56.7686%" y="853" width="0.4367%" height="15" fill="rgb(229,68,14)" fg:x="130" fg:w="1"/><text x="57.0186%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="56.7686%" y="837" width="0.4367%" height="15" fill="rgb(243,106,26)" fg:x="130" fg:w="1"/><text x="57.0186%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="56.7686%" y="821" width="0.4367%" height="15" fill="rgb(206,45,38)" fg:x="130" fg:w="1"/><text x="57.0186%" y="831.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="56.7686%" y="805" width="0.4367%" height="15" fill="rgb(226,6,15)" fg:x="130" fg:w="1"/><text x="57.0186%" y="815.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="56.7686%" y="789" width="0.4367%" height="15" fill="rgb(232,22,54)" fg:x="130" fg:w="1"/><text x="57.0186%" y="799.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="56.7686%" y="773" width="0.4367%" height="15" fill="rgb(229,222,32)" fg:x="130" fg:w="1"/><text x="57.0186%" y="783.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="56.7686%" y="757" width="0.4367%" height="15" fill="rgb(228,62,29)" fg:x="130" fg:w="1"/><text x="57.0186%" y="767.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="56.7686%" y="741" width="0.4367%" height="15" fill="rgb(251,103,34)" fg:x="130" fg:w="1"/><text x="57.0186%" y="751.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="56.7686%" y="725" width="0.4367%" height="15" fill="rgb(233,12,30)" fg:x="130" fg:w="1"/><text x="57.0186%" y="735.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="56.7686%" y="709" width="0.4367%" height="15" fill="rgb(238,52,0)" fg:x="130" fg:w="1"/><text x="57.0186%" y="719.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="56.7686%" y="693" width="0.4367%" height="15" fill="rgb(223,98,5)" fg:x="130" fg:w="1"/><text x="57.0186%" y="703.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="56.7686%" y="677" width="0.4367%" height="15" fill="rgb(228,75,37)" fg:x="130" fg:w="1"/><text x="57.0186%" y="687.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="56.7686%" y="661" width="0.4367%" height="15" fill="rgb(205,115,49)" fg:x="130" fg:w="1"/><text x="57.0186%" y="671.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="56.7686%" y="645" width="0.4367%" height="15" fill="rgb(250,154,43)" fg:x="130" fg:w="1"/><text x="57.0186%" y="655.50"></text></g><g><title>&lt;parking_lot::raw_mutex::RawMutex as lock_api::mutex::RawMutex&gt;::lock (1 samples, 0.44%)</title><rect x="57.2052%" y="917" width="0.4367%" height="15" fill="rgb(226,43,29)" fg:x="131" fg:w="1"/><text x="57.4552%" y="927.50"></text></g><g><title>tokio::runtime::park::Inner::park_condvar (40 samples, 17.47%)</title><rect x="57.2052%" y="981" width="17.4672%" height="15" fill="rgb(249,228,39)" fg:x="131" fg:w="40"/><text x="57.4552%" y="991.50">tokio::runtime::park::Inner..</text></g><g><title>tokio::loom::std::parking_lot::Condvar::wait (40 samples, 17.47%)</title><rect x="57.2052%" y="965" width="17.4672%" height="15" fill="rgb(216,79,43)" fg:x="131" fg:w="40"/><text x="57.4552%" y="975.50">tokio::loom::std::parking_l..</text></g><g><title>parking_lot::condvar::Condvar::wait (40 samples, 17.47%)</title><rect x="57.2052%" y="949" width="17.4672%" height="15" fill="rgb(228,95,12)" fg:x="131" fg:w="40"/><text x="57.4552%" y="959.50">parking_lot::condvar::Condv..</text></g><g><title>parking_lot::condvar::Condvar::wait_until_internal (40 samples, 17.47%)</title><rect x="57.2052%" y="933" width="17.4672%" height="15" fill="rgb(249,221,15)" fg:x="131" fg:w="40"/><text x="57.4552%" y="943.50">parking_lot::condvar::Condv..</text></g><g><title>parking_lot_core::parking_lot::park (39 samples, 17.03%)</title><rect x="57.6419%" y="917" width="17.0306%" height="15" fill="rgb(233,34,13)" fg:x="132" fg:w="39"/><text x="57.8919%" y="927.50">parking_lot_core::parking_..</text></g><g><title>parking_lot_core::parking_lot::with_thread_data (39 samples, 17.03%)</title><rect x="57.6419%" y="901" width="17.0306%" height="15" fill="rgb(214,103,39)" fg:x="132" fg:w="39"/><text x="57.8919%" y="911.50">parking_lot_core::parking_..</text></g><g><title>parking_lot_core::parking_lot::park::{{closure}} (39 samples, 17.03%)</title><rect x="57.6419%" y="885" width="17.0306%" height="15" fill="rgb(251,126,39)" fg:x="132" fg:w="39"/><text x="57.8919%" y="895.50">parking_lot_core::parking_..</text></g><g><title>&lt;parking_lot_core::thread_parker::imp::ThreadParker as parking_lot_core::thread_parker::ThreadParkerT&gt;::park (39 samples, 17.03%)</title><rect x="57.6419%" y="869" width="17.0306%" height="15" fill="rgb(214,216,36)" fg:x="132" fg:w="39"/><text x="57.8919%" y="879.50">&lt;parking_lot_core::thread_..</text></g><g><title>parking_lot_core::thread_parker::imp::ThreadParker::futex_wait (39 samples, 17.03%)</title><rect x="57.6419%" y="853" width="17.0306%" height="15" fill="rgb(220,221,8)" fg:x="132" fg:w="39"/><text x="57.8919%" y="863.50">parking_lot_core::thread_p..</text></g><g><title>syscall (39 samples, 17.03%)</title><rect x="57.6419%" y="837" width="17.0306%" height="15" fill="rgb(240,216,3)" fg:x="132" fg:w="39"/><text x="57.8919%" y="847.50">syscall</text></g><g><title>[unknown] (39 samples, 17.03%)</title><rect x="57.6419%" y="821" width="17.0306%" height="15" fill="rgb(232,218,17)" fg:x="132" fg:w="39"/><text x="57.8919%" y="831.50">[unknown]</text></g><g><title>[unknown] (39 samples, 17.03%)</title><rect x="57.6419%" y="805" width="17.0306%" height="15" fill="rgb(229,163,45)" fg:x="132" fg:w="39"/><text x="57.8919%" y="815.50">[unknown]</text></g><g><title>[unknown] (39 samples, 17.03%)</title><rect x="57.6419%" y="789" width="17.0306%" height="15" fill="rgb(231,110,42)" fg:x="132" fg:w="39"/><text x="57.8919%" y="799.50">[unknown]</text></g><g><title>[unknown] (36 samples, 15.72%)</title><rect x="58.9520%" y="773" width="15.7205%" height="15" fill="rgb(208,170,48)" fg:x="135" fg:w="36"/><text x="59.2020%" y="783.50">[unknown]</text></g><g><title>[unknown] (35 samples, 15.28%)</title><rect x="59.3886%" y="757" width="15.2838%" height="15" fill="rgb(239,116,25)" fg:x="136" fg:w="35"/><text x="59.6386%" y="767.50">[unknown]</text></g><g><title>[unknown] (35 samples, 15.28%)</title><rect x="59.3886%" y="741" width="15.2838%" height="15" fill="rgb(219,200,50)" fg:x="136" fg:w="35"/><text x="59.6386%" y="751.50">[unknown]</text></g><g><title>[unknown] (33 samples, 14.41%)</title><rect x="60.2620%" y="725" width="14.4105%" height="15" fill="rgb(245,200,0)" fg:x="138" fg:w="33"/><text x="60.5120%" y="735.50">[unknown]</text></g><g><title>[unknown] (33 samples, 14.41%)</title><rect x="60.2620%" y="709" width="14.4105%" height="15" fill="rgb(245,119,33)" fg:x="138" fg:w="33"/><text x="60.5120%" y="719.50">[unknown]</text></g><g><title>[unknown] (33 samples, 14.41%)</title><rect x="60.2620%" y="693" width="14.4105%" height="15" fill="rgb(231,125,12)" fg:x="138" fg:w="33"/><text x="60.5120%" y="703.50">[unknown]</text></g><g><title>[unknown] (33 samples, 14.41%)</title><rect x="60.2620%" y="677" width="14.4105%" height="15" fill="rgb(216,96,41)" fg:x="138" fg:w="33"/><text x="60.5120%" y="687.50">[unknown]</text></g><g><title>[unknown] (33 samples, 14.41%)</title><rect x="60.2620%" y="661" width="14.4105%" height="15" fill="rgb(248,43,45)" fg:x="138" fg:w="33"/><text x="60.5120%" y="671.50">[unknown]</text></g><g><title>[unknown] (33 samples, 14.41%)</title><rect x="60.2620%" y="645" width="14.4105%" height="15" fill="rgb(217,222,7)" fg:x="138" fg:w="33"/><text x="60.5120%" y="655.50">[unknown]</text></g><g><title>[unknown] (33 samples, 14.41%)</title><rect x="60.2620%" y="629" width="14.4105%" height="15" fill="rgb(233,28,6)" fg:x="138" fg:w="33"/><text x="60.5120%" y="639.50">[unknown]</text></g><g><title>[unknown] (33 samples, 14.41%)</title><rect x="60.2620%" y="613" width="14.4105%" height="15" fill="rgb(231,218,15)" fg:x="138" fg:w="33"/><text x="60.5120%" y="623.50">[unknown]</text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="74.6725%" y="837" width="0.4367%" height="15" fill="rgb(226,171,48)" fg:x="171" fg:w="1"/><text x="74.9225%" y="847.50"></text></g><g><title>tokio::io::driver::Driver::turn (23 samples, 10.04%)</title><rect x="74.6725%" y="901" width="10.0437%" height="15" fill="rgb(235,201,9)" fg:x="171" fg:w="23"/><text x="74.9225%" y="911.50">tokio::io::driv..</text></g><g><title>mio::poll::Poll::poll (23 samples, 10.04%)</title><rect x="74.6725%" y="885" width="10.0437%" height="15" fill="rgb(217,80,15)" fg:x="171" fg:w="23"/><text x="74.9225%" y="895.50">mio::poll::Poll..</text></g><g><title>mio::sys::unix::selector::epoll::Selector::select (23 samples, 10.04%)</title><rect x="74.6725%" y="869" width="10.0437%" height="15" fill="rgb(219,152,8)" fg:x="171" fg:w="23"/><text x="74.9225%" y="879.50">mio::sys::unix:..</text></g><g><title>epoll_wait (23 samples, 10.04%)</title><rect x="74.6725%" y="853" width="10.0437%" height="15" fill="rgb(243,107,38)" fg:x="171" fg:w="23"/><text x="74.9225%" y="863.50">epoll_wait</text></g><g><title>[unknown] (22 samples, 9.61%)</title><rect x="75.1092%" y="837" width="9.6070%" height="15" fill="rgb(231,17,5)" fg:x="172" fg:w="22"/><text x="75.3592%" y="847.50">[unknown]</text></g><g><title>[unknown] (22 samples, 9.61%)</title><rect x="75.1092%" y="821" width="9.6070%" height="15" fill="rgb(209,25,54)" fg:x="172" fg:w="22"/><text x="75.3592%" y="831.50">[unknown]</text></g><g><title>[unknown] (21 samples, 9.17%)</title><rect x="75.5459%" y="805" width="9.1703%" height="15" fill="rgb(219,0,2)" fg:x="173" fg:w="21"/><text x="75.7959%" y="815.50">[unknown]</text></g><g><title>[unknown] (21 samples, 9.17%)</title><rect x="75.5459%" y="789" width="9.1703%" height="15" fill="rgb(246,9,5)" fg:x="173" fg:w="21"/><text x="75.7959%" y="799.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="76.4192%" y="773" width="8.2969%" height="15" fill="rgb(226,159,4)" fg:x="175" fg:w="19"/><text x="76.6692%" y="783.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="76.4192%" y="757" width="8.2969%" height="15" fill="rgb(219,175,34)" fg:x="175" fg:w="19"/><text x="76.6692%" y="767.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="76.4192%" y="741" width="8.2969%" height="15" fill="rgb(236,10,46)" fg:x="175" fg:w="19"/><text x="76.6692%" y="751.50">[unknown]</text></g><g><title>[unknown] (19 samples, 8.30%)</title><rect x="76.4192%" y="725" width="8.2969%" height="15" fill="rgb(240,211,16)" fg:x="175" fg:w="19"/><text x="76.6692%" y="735.50">[unknown]</text></g><g><title>[unknown] (18 samples, 7.86%)</title><rect x="76.8559%" y="709" width="7.8603%" height="15" fill="rgb(205,3,43)" fg:x="176" fg:w="18"/><text x="77.1059%" y="719.50">[unknown]</text></g><g><title>[unknown] (18 samples, 7.86%)</title><rect x="76.8559%" y="693" width="7.8603%" height="15" fill="rgb(245,7,22)" fg:x="176" fg:w="18"/><text x="77.1059%" y="703.50">[unknown]</text></g><g><title>[unknown] (18 samples, 7.86%)</title><rect x="76.8559%" y="677" width="7.8603%" height="15" fill="rgb(239,132,32)" fg:x="176" fg:w="18"/><text x="77.1059%" y="687.50">[unknown]</text></g><g><title>[unknown] (18 samples, 7.86%)</title><rect x="76.8559%" y="661" width="7.8603%" height="15" fill="rgb(228,202,34)" fg:x="176" fg:w="18"/><text x="77.1059%" y="671.50">[unknown]</text></g><g><title>[unknown] (17 samples, 7.42%)</title><rect x="77.2926%" y="645" width="7.4236%" height="15" fill="rgb(254,200,22)" fg:x="177" fg:w="17"/><text x="77.5426%" y="655.50">[unknown]</text></g><g><title>[unknown] (17 samples, 7.42%)</title><rect x="77.2926%" y="629" width="7.4236%" height="15" fill="rgb(219,10,39)" fg:x="177" fg:w="17"/><text x="77.5426%" y="639.50">[unknown]</text></g><g><title>[unknown] (17 samples, 7.42%)</title><rect x="77.2926%" y="613" width="7.4236%" height="15" fill="rgb(226,210,39)" fg:x="177" fg:w="17"/><text x="77.5426%" y="623.50">[unknown]</text></g><g><title>core::task::wake::Waker::wake (1 samples, 0.44%)</title><rect x="85.1528%" y="869" width="0.4367%" height="15" fill="rgb(208,219,16)" fg:x="195" fg:w="1"/><text x="85.4028%" y="879.50"></text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::wake_by_val (1 samples, 0.44%)</title><rect x="85.1528%" y="853" width="0.4367%" height="15" fill="rgb(216,158,51)" fg:x="195" fg:w="1"/><text x="85.4028%" y="863.50"></text></g><g><title>&lt;str as core::fmt::Debug&gt;::fmt (1 samples, 0.44%)</title><rect x="85.1528%" y="837" width="0.4367%" height="15" fill="rgb(233,14,44)" fg:x="195" fg:w="1"/><text x="85.4028%" y="847.50"></text></g><g><title>&lt;core::str::iter::CharIndices as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.44%)</title><rect x="85.1528%" y="821" width="0.4367%" height="15" fill="rgb(237,97,39)" fg:x="195" fg:w="1"/><text x="85.4028%" y="831.50"></text></g><g><title>&lt;core::str::iter::Chars as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.44%)</title><rect x="85.1528%" y="805" width="0.4367%" height="15" fill="rgb(218,198,43)" fg:x="195" fg:w="1"/><text x="85.4028%" y="815.50"></text></g><g><title>core::str::validations::next_code_point (1 samples, 0.44%)</title><rect x="85.1528%" y="789" width="0.4367%" height="15" fill="rgb(231,104,20)" fg:x="195" fg:w="1"/><text x="85.4028%" y="799.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.44%)</title><rect x="85.1528%" y="773" width="0.4367%" height="15" fill="rgb(254,36,13)" fg:x="195" fg:w="1"/><text x="85.4028%" y="783.50"></text></g><g><title>&lt;tokio::runtime::park::Parker as tokio::park::Park&gt;::park (66 samples, 28.82%)</title><rect x="57.2052%" y="1013" width="28.8210%" height="15" fill="rgb(248,14,50)" fg:x="131" fg:w="66"/><text x="57.4552%" y="1023.50">&lt;tokio::runtime::park::Parker as tokio::park::..</text></g><g><title>tokio::runtime::park::Inner::park (66 samples, 28.82%)</title><rect x="57.2052%" y="997" width="28.8210%" height="15" fill="rgb(217,107,29)" fg:x="131" fg:w="66"/><text x="57.4552%" y="1007.50">tokio::runtime::park::Inner::park</text></g><g><title>tokio::runtime::park::Inner::park_driver (26 samples, 11.35%)</title><rect x="74.6725%" y="981" width="11.3537%" height="15" fill="rgb(251,169,33)" fg:x="171" fg:w="26"/><text x="74.9225%" y="991.50">tokio::runtime::p..</text></g><g><title>&lt;tokio::runtime::driver::Driver as tokio::park::Park&gt;::park (26 samples, 11.35%)</title><rect x="74.6725%" y="965" width="11.3537%" height="15" fill="rgb(217,108,32)" fg:x="171" fg:w="26"/><text x="74.9225%" y="975.50">&lt;tokio::runtime::..</text></g><g><title>&lt;tokio::park::either::Either&lt;A,B&gt; as tokio::park::Park&gt;::park (26 samples, 11.35%)</title><rect x="74.6725%" y="949" width="11.3537%" height="15" fill="rgb(219,66,42)" fg:x="171" fg:w="26"/><text x="74.9225%" y="959.50">&lt;tokio::park::eit..</text></g><g><title>&lt;tokio::time::driver::Driver&lt;P&gt; as tokio::park::Park&gt;::park (26 samples, 11.35%)</title><rect x="74.6725%" y="933" width="11.3537%" height="15" fill="rgb(206,180,7)" fg:x="171" fg:w="26"/><text x="74.9225%" y="943.50">&lt;tokio::time::dri..</text></g><g><title>tokio::time::driver::Driver&lt;P&gt;::park_internal (26 samples, 11.35%)</title><rect x="74.6725%" y="917" width="11.3537%" height="15" fill="rgb(208,226,31)" fg:x="171" fg:w="26"/><text x="74.9225%" y="927.50">tokio::time::driv..</text></g><g><title>tokio::time::driver::&lt;impl tokio::time::driver::handle::Handle&gt;::process (3 samples, 1.31%)</title><rect x="84.7162%" y="901" width="1.3100%" height="15" fill="rgb(218,26,49)" fg:x="194" fg:w="3"/><text x="84.9662%" y="911.50"></text></g><g><title>tokio::time::driver::&lt;impl tokio::time::driver::handle::Handle&gt;::process_at_time (3 samples, 1.31%)</title><rect x="84.7162%" y="885" width="1.3100%" height="15" fill="rgb(233,197,48)" fg:x="194" fg:w="3"/><text x="84.9662%" y="895.50"></text></g><g><title>tokio::time::driver::wheel::Wheel::poll (1 samples, 0.44%)</title><rect x="85.5895%" y="869" width="0.4367%" height="15" fill="rgb(252,181,51)" fg:x="196" fg:w="1"/><text x="85.8395%" y="879.50"></text></g><g><title>tokio::time::driver::wheel::Wheel::process_expiration (1 samples, 0.44%)</title><rect x="85.5895%" y="853" width="0.4367%" height="15" fill="rgb(253,90,19)" fg:x="196" fg:w="1"/><text x="85.8395%" y="863.50"></text></g><g><title>tokio::util::linked_list::LinkedList&lt;L,&lt;L as tokio::util::linked_list::Link&gt;::Target&gt;::pop_back (1 samples, 0.44%)</title><rect x="85.5895%" y="837" width="0.4367%" height="15" fill="rgb(215,171,30)" fg:x="196" fg:w="1"/><text x="85.8395%" y="847.50"></text></g><g><title>tokio::runtime::thread_pool::worker::Context::park (67 samples, 29.26%)</title><rect x="57.2052%" y="1045" width="29.2576%" height="15" fill="rgb(214,222,9)" fg:x="131" fg:w="67"/><text x="57.4552%" y="1055.50">tokio::runtime::thread_pool::worker::Context::p..</text></g><g><title>tokio::runtime::thread_pool::worker::Context::park_timeout (67 samples, 29.26%)</title><rect x="57.2052%" y="1029" width="29.2576%" height="15" fill="rgb(223,3,22)" fg:x="131" fg:w="67"/><text x="57.4552%" y="1039.50">tokio::runtime::thread_pool::worker::Context::p..</text></g><g><title>core::result::Result&lt;T,E&gt;::expect (1 samples, 0.44%)</title><rect x="86.0262%" y="1013" width="0.4367%" height="15" fill="rgb(225,196,46)" fg:x="197" fg:w="1"/><text x="86.2762%" y="1023.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (1 samples, 0.44%)</title><rect x="86.4629%" y="549" width="0.4367%" height="15" fill="rgb(209,110,37)" fg:x="198" fg:w="1"/><text x="86.7129%" y="559.50"></text></g><g><title>&lt;core::future::from_generator::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll (1 samples, 0.44%)</title><rect x="86.4629%" y="533" width="0.4367%" height="15" fill="rgb(249,89,12)" fg:x="198" fg:w="1"/><text x="86.7129%" y="543.50"></text></g><g><title>&lt;opentelemetry_jaeger::exporter::uploader::AsyncUploader&lt;R&gt; as opentelemetry_jaeger::exporter::uploader::Uploader&gt;::upload::{{closure}} (1 samples, 0.44%)</title><rect x="86.4629%" y="517" width="0.4367%" height="15" fill="rgb(226,27,33)" fg:x="198" fg:w="1"/><text x="86.7129%" y="527.50"></text></g><g><title>&lt;core::future::from_generator::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll (1 samples, 0.44%)</title><rect x="86.4629%" y="501" width="0.4367%" height="15" fill="rgb(213,82,22)" fg:x="198" fg:w="1"/><text x="86.7129%" y="511.50"></text></g><g><title>opentelemetry_jaeger::exporter::agent::AgentAsyncClientUdp&lt;R&gt;::emit_batch::{{closure}} (1 samples, 0.44%)</title><rect x="86.4629%" y="485" width="0.4367%" height="15" fill="rgb(248,140,0)" fg:x="198" fg:w="1"/><text x="86.7129%" y="495.50"></text></g><g><title>opentelemetry_jaeger::exporter::agent::serialize_batch (1 samples, 0.44%)</title><rect x="86.4629%" y="469" width="0.4367%" height="15" fill="rgb(228,106,3)" fg:x="198" fg:w="1"/><text x="86.7129%" y="479.50"></text></g><g><title>&lt;C as opentelemetry_jaeger::exporter::thrift::agent::TAgentSyncClient&gt;::emit_batch (1 samples, 0.44%)</title><rect x="86.4629%" y="453" width="0.4367%" height="15" fill="rgb(209,23,37)" fg:x="198" fg:w="1"/><text x="86.7129%" y="463.50"></text></g><g><title>opentelemetry_jaeger::exporter::thrift::agent::AgentEmitBatchArgs::write_to_out_protocol (1 samples, 0.44%)</title><rect x="86.4629%" y="437" width="0.4367%" height="15" fill="rgb(241,93,50)" fg:x="198" fg:w="1"/><text x="86.7129%" y="447.50"></text></g><g><title>opentelemetry_jaeger::exporter::thrift::jaeger::Batch::write_to_out_protocol (1 samples, 0.44%)</title><rect x="86.4629%" y="421" width="0.4367%" height="15" fill="rgb(253,46,43)" fg:x="198" fg:w="1"/><text x="86.7129%" y="431.50"></text></g><g><title>opentelemetry_jaeger::exporter::thrift::jaeger::Span::write_to_out_protocol (1 samples, 0.44%)</title><rect x="86.4629%" y="405" width="0.4367%" height="15" fill="rgb(226,206,43)" fg:x="198" fg:w="1"/><text x="86.7129%" y="415.50"></text></g><g><title>opentelemetry_jaeger::exporter::thrift::jaeger::Tag::write_to_out_protocol (1 samples, 0.44%)</title><rect x="86.4629%" y="389" width="0.4367%" height="15" fill="rgb(217,54,7)" fg:x="198" fg:w="1"/><text x="86.7129%" y="399.50"></text></g><g><title>&lt;thrift::protocol::compact::TCompactOutputProtocol&lt;T&gt; as thrift::protocol::TOutputProtocol&gt;::write_field_begin (1 samples, 0.44%)</title><rect x="86.4629%" y="373" width="0.4367%" height="15" fill="rgb(223,5,52)" fg:x="198" fg:w="1"/><text x="86.7129%" y="383.50"></text></g><g><title>thrift::protocol::compact::type_to_u8 (1 samples, 0.44%)</title><rect x="86.4629%" y="357" width="0.4367%" height="15" fill="rgb(206,52,46)" fg:x="198" fg:w="1"/><text x="86.7129%" y="367.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.44%)</title><rect x="86.8996%" y="517" width="0.4367%" height="15" fill="rgb(253,136,11)" fg:x="199" fg:w="1"/><text x="87.1496%" y="527.50"></text></g><g><title>opentelemetry_jaeger::exporter::thrift::&lt;impl core::convert::From&lt;opentelemetry::common::KeyValue&gt; for opentelemetry_jaeger::exporter::thrift::jaeger::Tag&gt;::from (1 samples, 0.44%)</title><rect x="86.8996%" y="501" width="0.4367%" height="15" fill="rgb(208,106,33)" fg:x="199" fg:w="1"/><text x="87.1496%" y="511.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.44%)</title><rect x="86.8996%" y="485" width="0.4367%" height="15" fill="rgb(206,54,4)" fg:x="199" fg:w="1"/><text x="87.1496%" y="495.50"></text></g><g><title>opentelemetry::common::&lt;impl core::convert::From&lt;opentelemetry::common::Key&gt; for alloc::string::String&gt;::from (1 samples, 0.44%)</title><rect x="86.8996%" y="469" width="0.4367%" height="15" fill="rgb(213,3,15)" fg:x="199" fg:w="1"/><text x="87.1496%" y="479.50"></text></g><g><title>alloc::borrow::Cow&lt;B&gt;::into_owned (1 samples, 0.44%)</title><rect x="86.8996%" y="453" width="0.4367%" height="15" fill="rgb(252,211,39)" fg:x="199" fg:w="1"/><text x="87.1496%" y="463.50"></text></g><g><title>alloc::str::&lt;impl alloc::borrow::ToOwned for str&gt;::to_owned (1 samples, 0.44%)</title><rect x="86.8996%" y="437" width="0.4367%" height="15" fill="rgb(223,6,36)" fg:x="199" fg:w="1"/><text x="87.1496%" y="447.50"></text></g><g><title>alloc::slice::&lt;impl alloc::borrow::ToOwned for [T]&gt;::to_owned (1 samples, 0.44%)</title><rect x="86.8996%" y="421" width="0.4367%" height="15" fill="rgb(252,169,45)" fg:x="199" fg:w="1"/><text x="87.1496%" y="431.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec (1 samples, 0.44%)</title><rect x="86.8996%" y="405" width="0.4367%" height="15" fill="rgb(212,48,26)" fg:x="199" fg:w="1"/><text x="87.1496%" y="415.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.44%)</title><rect x="86.8996%" y="389" width="0.4367%" height="15" fill="rgb(251,102,48)" fg:x="199" fg:w="1"/><text x="87.1496%" y="399.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.44%)</title><rect x="86.8996%" y="373" width="0.4367%" height="15" fill="rgb(243,208,16)" fg:x="199" fg:w="1"/><text x="87.1496%" y="383.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.44%)</title><rect x="86.8996%" y="357" width="0.4367%" height="15" fill="rgb(219,96,24)" fg:x="199" fg:w="1"/><text x="87.1496%" y="367.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.44%)</title><rect x="86.8996%" y="341" width="0.4367%" height="15" fill="rgb(219,33,29)" fg:x="199" fg:w="1"/><text x="87.1496%" y="351.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.44%)</title><rect x="86.8996%" y="325" width="0.4367%" height="15" fill="rgb(223,176,5)" fg:x="199" fg:w="1"/><text x="87.1496%" y="335.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.44%)</title><rect x="86.8996%" y="309" width="0.4367%" height="15" fill="rgb(228,140,14)" fg:x="199" fg:w="1"/><text x="87.1496%" y="319.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.44%)</title><rect x="86.8996%" y="293" width="0.4367%" height="15" fill="rgb(217,179,31)" fg:x="199" fg:w="1"/><text x="87.1496%" y="303.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.44%)</title><rect x="86.8996%" y="277" width="0.4367%" height="15" fill="rgb(230,9,30)" fg:x="199" fg:w="1"/><text x="87.1496%" y="287.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.44%)</title><rect x="86.8996%" y="261" width="0.4367%" height="15" fill="rgb(230,136,20)" fg:x="199" fg:w="1"/><text x="87.1496%" y="271.50"></text></g><g><title>__libc_malloc (1 samples, 0.44%)</title><rect x="86.8996%" y="245" width="0.4367%" height="15" fill="rgb(215,210,22)" fg:x="199" fg:w="1"/><text x="87.1496%" y="255.50"></text></g><g><title>&lt;opentelemetry::sdk::trace::evicted_hash_map::EvictedHashMap as core::iter::traits::collect::IntoIterator&gt;::into_iter (1 samples, 0.44%)</title><rect x="87.3362%" y="517" width="0.4367%" height="15" fill="rgb(218,43,5)" fg:x="200" fg:w="1"/><text x="87.5862%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::linked_list::LinkedList&lt;opentelemetry::common::Key&gt;&gt; (1 samples, 0.44%)</title><rect x="87.3362%" y="501" width="0.4367%" height="15" fill="rgb(216,11,5)" fg:x="200" fg:w="1"/><text x="87.5862%" y="511.50"></text></g><g><title>&lt;alloc::collections::linked_list::LinkedList&lt;T&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.44%)</title><rect x="87.3362%" y="485" width="0.4367%" height="15" fill="rgb(209,82,29)" fg:x="200" fg:w="1"/><text x="87.5862%" y="495.50"></text></g><g><title>core::mem::drop (1 samples, 0.44%)</title><rect x="87.3362%" y="469" width="0.4367%" height="15" fill="rgb(244,115,12)" fg:x="200" fg:w="1"/><text x="87.5862%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;alloc::collections::linked_list::Node&lt;opentelemetry::common::Key&gt;&gt;&gt; (1 samples, 0.44%)</title><rect x="87.3362%" y="453" width="0.4367%" height="15" fill="rgb(222,82,18)" fg:x="200" fg:w="1"/><text x="87.5862%" y="463.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.44%)</title><rect x="87.3362%" y="437" width="0.4367%" height="15" fill="rgb(249,227,8)" fg:x="200" fg:w="1"/><text x="87.5862%" y="447.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.44%)</title><rect x="87.3362%" y="421" width="0.4367%" height="15" fill="rgb(253,141,45)" fg:x="200" fg:w="1"/><text x="87.5862%" y="431.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.44%)</title><rect x="87.3362%" y="405" width="0.4367%" height="15" fill="rgb(234,184,4)" fg:x="200" fg:w="1"/><text x="87.5862%" y="415.50"></text></g><g><title>cfree (1 samples, 0.44%)</title><rect x="87.3362%" y="389" width="0.4367%" height="15" fill="rgb(218,194,23)" fg:x="200" fg:w="1"/><text x="87.5862%" y="399.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="87.3362%" y="373" width="0.4367%" height="15" fill="rgb(235,66,41)" fg:x="200" fg:w="1"/><text x="87.5862%" y="383.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_mut_ptr (1 samples, 0.44%)</title><rect x="87.7729%" y="421" width="0.4367%" height="15" fill="rgb(245,217,1)" fg:x="201" fg:w="1"/><text x="88.0229%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (1 samples, 0.44%)</title><rect x="88.2096%" y="421" width="0.4367%" height="15" fill="rgb(229,91,1)" fg:x="202" fg:w="1"/><text x="88.4596%" y="431.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.44%)</title><rect x="88.2096%" y="405" width="0.4367%" height="15" fill="rgb(207,101,30)" fg:x="202" fg:w="1"/><text x="88.4596%" y="415.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (1 samples, 0.44%)</title><rect x="88.2096%" y="389" width="0.4367%" height="15" fill="rgb(223,82,49)" fg:x="202" fg:w="1"/><text x="88.4596%" y="399.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (1 samples, 0.44%)</title><rect x="88.2096%" y="373" width="0.4367%" height="15" fill="rgb(218,167,17)" fg:x="202" fg:w="1"/><text x="88.4596%" y="383.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.44%)</title><rect x="88.2096%" y="357" width="0.4367%" height="15" fill="rgb(208,103,14)" fg:x="202" fg:w="1"/><text x="88.4596%" y="367.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (1 samples, 0.44%)</title><rect x="88.2096%" y="341" width="0.4367%" height="15" fill="rgb(238,20,8)" fg:x="202" fg:w="1"/><text x="88.4596%" y="351.50"></text></g><g><title>alloc::alloc::Global::grow_impl (1 samples, 0.44%)</title><rect x="88.2096%" y="325" width="0.4367%" height="15" fill="rgb(218,80,54)" fg:x="202" fg:w="1"/><text x="88.4596%" y="335.50"></text></g><g><title>alloc::alloc::realloc (1 samples, 0.44%)</title><rect x="88.2096%" y="309" width="0.4367%" height="15" fill="rgb(240,144,17)" fg:x="202" fg:w="1"/><text x="88.4596%" y="319.50"></text></g><g><title>realloc (1 samples, 0.44%)</title><rect x="88.2096%" y="293" width="0.4367%" height="15" fill="rgb(245,27,50)" fg:x="202" fg:w="1"/><text x="88.4596%" y="303.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="88.2096%" y="277" width="0.4367%" height="15" fill="rgb(251,51,7)" fg:x="202" fg:w="1"/><text x="88.4596%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="88.2096%" y="261" width="0.4367%" height="15" fill="rgb(245,217,29)" fg:x="202" fg:w="1"/><text x="88.4596%" y="271.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="88.2096%" y="245" width="0.4367%" height="15" fill="rgb(221,176,29)" fg:x="202" fg:w="1"/><text x="88.4596%" y="255.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="88.2096%" y="229" width="0.4367%" height="15" fill="rgb(212,180,24)" fg:x="202" fg:w="1"/><text x="88.4596%" y="239.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="88.2096%" y="213" width="0.4367%" height="15" fill="rgb(254,24,2)" fg:x="202" fg:w="1"/><text x="88.4596%" y="223.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (10 samples, 4.37%)</title><rect x="87.7729%" y="517" width="4.3668%" height="15" fill="rgb(230,100,2)" fg:x="201" fg:w="10"/><text x="88.0229%" y="527.50">core:..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (10 samples, 4.37%)</title><rect x="87.7729%" y="501" width="4.3668%" height="15" fill="rgb(219,142,25)" fg:x="201" fg:w="10"/><text x="88.0229%" y="511.50">&lt;allo..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (10 samples, 4.37%)</title><rect x="87.7729%" y="485" width="4.3668%" height="15" fill="rgb(240,73,43)" fg:x="201" fg:w="10"/><text x="88.0229%" y="495.50">&lt;allo..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (10 samples, 4.37%)</title><rect x="87.7729%" y="469" width="4.3668%" height="15" fill="rgb(214,114,15)" fg:x="201" fg:w="10"/><text x="88.0229%" y="479.50">&lt;allo..</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (10 samples, 4.37%)</title><rect x="87.7729%" y="453" width="4.3668%" height="15" fill="rgb(207,130,4)" fg:x="201" fg:w="10"/><text x="88.0229%" y="463.50">&lt;allo..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_desugared (10 samples, 4.37%)</title><rect x="87.7729%" y="437" width="4.3668%" height="15" fill="rgb(221,25,40)" fg:x="201" fg:w="10"/><text x="88.0229%" y="447.50">alloc..</text></g><g><title>core::ptr::drop_in_place&lt;core::iter::adapters::map::Map&lt;opentelemetry::sdk::trace::evicted_hash_map::IntoIter,opentelemetry_jaeger::exporter::build_span_tags::{{closure}}&gt;&gt; (8 samples, 3.49%)</title><rect x="88.6463%" y="421" width="3.4934%" height="15" fill="rgb(241,184,7)" fg:x="203" fg:w="8"/><text x="88.8963%" y="431.50">cor..</text></g><g><title>core::ptr::drop_in_place&lt;opentelemetry::sdk::trace::evicted_hash_map::IntoIter&gt; (8 samples, 3.49%)</title><rect x="88.6463%" y="405" width="3.4934%" height="15" fill="rgb(235,159,4)" fg:x="203" fg:w="8"/><text x="88.8963%" y="415.50">cor..</text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::IntoIter&lt;opentelemetry::common::Key,opentelemetry::common::Value&gt;&gt; (8 samples, 3.49%)</title><rect x="88.6463%" y="389" width="3.4934%" height="15" fill="rgb(214,87,48)" fg:x="203" fg:w="8"/><text x="88.8963%" y="399.50">cor..</text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::IntoIter&lt;opentelemetry::common::Key,opentelemetry::common::Value&gt;&gt; (8 samples, 3.49%)</title><rect x="88.6463%" y="373" width="3.4934%" height="15" fill="rgb(246,198,24)" fg:x="203" fg:w="8"/><text x="88.8963%" y="383.50">cor..</text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawIntoIter&lt;(opentelemetry::common::Key,opentelemetry::common::Value)&gt;&gt; (8 samples, 3.49%)</title><rect x="88.6463%" y="357" width="3.4934%" height="15" fill="rgb(209,66,40)" fg:x="203" fg:w="8"/><text x="88.8963%" y="367.50">cor..</text></g><g><title>&lt;hashbrown::raw::RawIntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (8 samples, 3.49%)</title><rect x="88.6463%" y="341" width="3.4934%" height="15" fill="rgb(233,147,39)" fg:x="203" fg:w="8"/><text x="88.8963%" y="351.50">&lt;ha..</text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (8 samples, 3.49%)</title><rect x="88.6463%" y="325" width="3.4934%" height="15" fill="rgb(231,145,52)" fg:x="203" fg:w="8"/><text x="88.8963%" y="335.50">&lt;al..</text></g><g><title>alloc::alloc::dealloc (8 samples, 3.49%)</title><rect x="88.6463%" y="309" width="3.4934%" height="15" fill="rgb(206,20,26)" fg:x="203" fg:w="8"/><text x="88.8963%" y="319.50">all..</text></g><g><title>cfree (8 samples, 3.49%)</title><rect x="88.6463%" y="293" width="3.4934%" height="15" fill="rgb(238,220,4)" fg:x="203" fg:w="8"/><text x="88.8963%" y="303.50">cfr..</text></g><g><title>[libc-2.33.so] (8 samples, 3.49%)</title><rect x="88.6463%" y="277" width="3.4934%" height="15" fill="rgb(252,195,42)" fg:x="203" fg:w="8"/><text x="88.8963%" y="287.50">[li..</text></g><g><title>[libc-2.33.so] (8 samples, 3.49%)</title><rect x="88.6463%" y="261" width="3.4934%" height="15" fill="rgb(209,10,6)" fg:x="203" fg:w="8"/><text x="88.8963%" y="271.50">[li..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="88.6463%" y="245" width="3.4934%" height="15" fill="rgb(229,3,52)" fg:x="203" fg:w="8"/><text x="88.8963%" y="255.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="88.6463%" y="229" width="3.4934%" height="15" fill="rgb(253,49,37)" fg:x="203" fg:w="8"/><text x="88.8963%" y="239.50">[un..</text></g><g><title>[unknown] (7 samples, 3.06%)</title><rect x="89.0830%" y="213" width="3.0568%" height="15" fill="rgb(240,103,49)" fg:x="204" fg:w="7"/><text x="89.3330%" y="223.50">[un..</text></g><g><title>[unknown] (7 samples, 3.06%)</title><rect x="89.0830%" y="197" width="3.0568%" height="15" fill="rgb(250,182,30)" fg:x="204" fg:w="7"/><text x="89.3330%" y="207.50">[un..</text></g><g><title>[unknown] (7 samples, 3.06%)</title><rect x="89.0830%" y="181" width="3.0568%" height="15" fill="rgb(248,8,30)" fg:x="204" fg:w="7"/><text x="89.3330%" y="191.50">[un..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="89.9563%" y="165" width="2.1834%" height="15" fill="rgb(237,120,30)" fg:x="206" fg:w="5"/><text x="90.2063%" y="175.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="89.9563%" y="149" width="2.1834%" height="15" fill="rgb(221,146,34)" fg:x="206" fg:w="5"/><text x="90.2063%" y="159.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="89.9563%" y="133" width="2.1834%" height="15" fill="rgb(242,55,13)" fg:x="206" fg:w="5"/><text x="90.2063%" y="143.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="89.9563%" y="117" width="2.1834%" height="15" fill="rgb(242,112,31)" fg:x="206" fg:w="5"/><text x="90.2063%" y="127.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="89.9563%" y="101" width="2.1834%" height="15" fill="rgb(249,192,27)" fg:x="206" fg:w="5"/><text x="90.2063%" y="111.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="89.9563%" y="85" width="2.1834%" height="15" fill="rgb(208,204,44)" fg:x="206" fg:w="5"/><text x="90.2063%" y="95.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="89.9563%" y="69" width="2.1834%" height="15" fill="rgb(208,93,54)" fg:x="206" fg:w="5"/><text x="90.2063%" y="79.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="89.9563%" y="53" width="2.1834%" height="15" fill="rgb(242,1,31)" fg:x="206" fg:w="5"/><text x="90.2063%" y="63.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="89.9563%" y="37" width="2.1834%" height="15" fill="rgb(241,83,25)" fg:x="206" fg:w="5"/><text x="90.2063%" y="47.50">[..</text></g><g><title>&lt;core::future::from_generator::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll (14 samples, 6.11%)</title><rect x="86.4629%" y="677" width="6.1135%" height="15" fill="rgb(205,169,50)" fg:x="198" fg:w="14"/><text x="86.7129%" y="687.50">&lt;core::f..</text></g><g><title>opentelemetry::sdk::trace::span_processor::export_with_timeout::{{closure}} (14 samples, 6.11%)</title><rect x="86.4629%" y="661" width="6.1135%" height="15" fill="rgb(239,186,37)" fg:x="198" fg:w="14"/><text x="86.7129%" y="671.50">opentele..</text></g><g><title>&lt;futures_util::future::select::Select&lt;A,B&gt; as core::future::future::Future&gt;::poll (14 samples, 6.11%)</title><rect x="86.4629%" y="645" width="6.1135%" height="15" fill="rgb(205,221,10)" fg:x="198" fg:w="14"/><text x="86.7129%" y="655.50">&lt;futures..</text></g><g><title>futures_util::future::future::FutureExt::poll_unpin (14 samples, 6.11%)</title><rect x="86.4629%" y="629" width="6.1135%" height="15" fill="rgb(218,196,15)" fg:x="198" fg:w="14"/><text x="86.7129%" y="639.50">futures_..</text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (14 samples, 6.11%)</title><rect x="86.4629%" y="613" width="6.1135%" height="15" fill="rgb(218,196,35)" fg:x="198" fg:w="14"/><text x="86.7129%" y="623.50">&lt;core::p..</text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (14 samples, 6.11%)</title><rect x="86.4629%" y="597" width="6.1135%" height="15" fill="rgb(233,63,24)" fg:x="198" fg:w="14"/><text x="86.7129%" y="607.50">&lt;core::p..</text></g><g><title>&lt;core::future::from_generator::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll (14 samples, 6.11%)</title><rect x="86.4629%" y="581" width="6.1135%" height="15" fill="rgb(225,8,4)" fg:x="198" fg:w="14"/><text x="86.7129%" y="591.50">&lt;core::f..</text></g><g><title>&lt;opentelemetry_jaeger::exporter::Exporter as opentelemetry::sdk::export::trace::SpanExporter&gt;::export::{{closure}} (14 samples, 6.11%)</title><rect x="86.4629%" y="565" width="6.1135%" height="15" fill="rgb(234,105,35)" fg:x="198" fg:w="14"/><text x="86.7129%" y="575.50">&lt;opentel..</text></g><g><title>opentelemetry_jaeger::exporter::convert_otel_span_into_jaeger_span (13 samples, 5.68%)</title><rect x="86.8996%" y="549" width="5.6769%" height="15" fill="rgb(236,21,32)" fg:x="199" fg:w="13"/><text x="87.1496%" y="559.50">opentel..</text></g><g><title>opentelemetry_jaeger::exporter::build_span_tags (13 samples, 5.68%)</title><rect x="86.8996%" y="533" width="5.6769%" height="15" fill="rgb(228,109,6)" fg:x="199" fg:w="13"/><text x="87.1496%" y="543.50">opentel..</text></g><g><title>opentelemetry::common::KeyValue::new (1 samples, 0.44%)</title><rect x="92.1397%" y="517" width="0.4367%" height="15" fill="rgb(229,215,31)" fg:x="211" fg:w="1"/><text x="92.3897%" y="527.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (1 samples, 0.44%)</title><rect x="92.1397%" y="501" width="0.4367%" height="15" fill="rgb(221,52,54)" fg:x="211" fg:w="1"/><text x="92.3897%" y="511.50"></text></g><g><title>&lt;futures_util::stream::stream::next::Next&lt;St&gt; as core::future::future::Future&gt;::poll (1 samples, 0.44%)</title><rect x="92.5764%" y="677" width="0.4367%" height="15" fill="rgb(252,129,43)" fg:x="212" fg:w="1"/><text x="92.8264%" y="687.50"></text></g><g><title>futures_util::stream::stream::StreamExt::poll_next_unpin (1 samples, 0.44%)</title><rect x="92.5764%" y="661" width="0.4367%" height="15" fill="rgb(248,183,27)" fg:x="212" fg:w="1"/><text x="92.8264%" y="671.50"></text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.44%)</title><rect x="92.5764%" y="645" width="0.4367%" height="15" fill="rgb(250,0,22)" fg:x="212" fg:w="1"/><text x="92.8264%" y="655.50"></text></g><g><title>&lt;futures_util::stream::select::Select&lt;St1,St2&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.44%)</title><rect x="92.5764%" y="629" width="0.4367%" height="15" fill="rgb(213,166,10)" fg:x="212" fg:w="1"/><text x="92.8264%" y="639.50"></text></g><g><title>&lt;futures_util::stream::select_with_strategy::SelectWithStrategy&lt;St1,St2,Clos,State&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.44%)</title><rect x="92.5764%" y="613" width="0.4367%" height="15" fill="rgb(207,163,36)" fg:x="212" fg:w="1"/><text x="92.8264%" y="623.50"></text></g><g><title>futures_util::stream::select_with_strategy::poll_inner (1 samples, 0.44%)</title><rect x="92.5764%" y="597" width="0.4367%" height="15" fill="rgb(208,122,22)" fg:x="212" fg:w="1"/><text x="92.8264%" y="607.50"></text></g><g><title>&lt;futures_util::stream::stream::fuse::Fuse&lt;S&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.44%)</title><rect x="92.5764%" y="581" width="0.4367%" height="15" fill="rgb(207,104,49)" fg:x="212" fg:w="1"/><text x="92.8264%" y="591.50"></text></g><g><title>&lt;tokio_stream::wrappers::mpsc_bounded::ReceiverStream&lt;T&gt; as futures_core::stream::Stream&gt;::poll_next (1 samples, 0.44%)</title><rect x="92.5764%" y="565" width="0.4367%" height="15" fill="rgb(248,211,50)" fg:x="212" fg:w="1"/><text x="92.8264%" y="575.50"></text></g><g><title>tokio::sync::mpsc::bounded::Receiver&lt;T&gt;::poll_recv (1 samples, 0.44%)</title><rect x="92.5764%" y="549" width="0.4367%" height="15" fill="rgb(217,13,45)" fg:x="212" fg:w="1"/><text x="92.8264%" y="559.50"></text></g><g><title>tokio::sync::mpsc::chan::Rx&lt;T,S&gt;::recv (1 samples, 0.44%)</title><rect x="92.5764%" y="533" width="0.4367%" height="15" fill="rgb(211,216,49)" fg:x="212" fg:w="1"/><text x="92.8264%" y="543.50"></text></g><g><title>tokio::loom::std::unsafe_cell::UnsafeCell&lt;T&gt;::with_mut (1 samples, 0.44%)</title><rect x="92.5764%" y="517" width="0.4367%" height="15" fill="rgb(221,58,53)" fg:x="212" fg:w="1"/><text x="92.8264%" y="527.50"></text></g><g><title>tokio::sync::mpsc::chan::Rx&lt;T,S&gt;::recv::{{closure}} (1 samples, 0.44%)</title><rect x="92.5764%" y="501" width="0.4367%" height="15" fill="rgb(220,112,41)" fg:x="212" fg:w="1"/><text x="92.8264%" y="511.50"></text></g><g><title>&lt;opentelemetry_jaeger::exporter::transport::buffer::TBufferChannel as std::io::Write&gt;::write (1 samples, 0.44%)</title><rect x="92.5764%" y="485" width="0.4367%" height="15" fill="rgb(236,38,28)" fg:x="212" fg:w="1"/><text x="92.8264%" y="495.50"></text></g><g><title>tokio::runtime::thread_pool::worker::Context::run_task (16 samples, 6.99%)</title><rect x="86.4629%" y="1045" width="6.9869%" height="15" fill="rgb(227,195,22)" fg:x="198" fg:w="16"/><text x="86.7129%" y="1055.50">tokio::ru..</text></g><g><title>tokio::coop::budget (16 samples, 6.99%)</title><rect x="86.4629%" y="1029" width="6.9869%" height="15" fill="rgb(214,55,33)" fg:x="198" fg:w="16"/><text x="86.7129%" y="1039.50">tokio::co..</text></g><g><title>tokio::coop::with_budget (16 samples, 6.99%)</title><rect x="86.4629%" y="1013" width="6.9869%" height="15" fill="rgb(248,80,13)" fg:x="198" fg:w="16"/><text x="86.7129%" y="1023.50">tokio::co..</text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (16 samples, 6.99%)</title><rect x="86.4629%" y="997" width="6.9869%" height="15" fill="rgb(238,52,6)" fg:x="198" fg:w="16"/><text x="86.7129%" y="1007.50">std::thre..</text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (16 samples, 6.99%)</title><rect x="86.4629%" y="981" width="6.9869%" height="15" fill="rgb(224,198,47)" fg:x="198" fg:w="16"/><text x="86.7129%" y="991.50">std::thre..</text></g><g><title>tokio::coop::with_budget::{{closure}} (16 samples, 6.99%)</title><rect x="86.4629%" y="965" width="6.9869%" height="15" fill="rgb(233,171,20)" fg:x="198" fg:w="16"/><text x="86.7129%" y="975.50">tokio::co..</text></g><g><title>tokio::runtime::thread_pool::worker::Context::run_task::{{closure}} (16 samples, 6.99%)</title><rect x="86.4629%" y="949" width="6.9869%" height="15" fill="rgb(241,30,25)" fg:x="198" fg:w="16"/><text x="86.7129%" y="959.50">tokio::ru..</text></g><g><title>tokio::runtime::task::LocalNotified&lt;S&gt;::run (16 samples, 6.99%)</title><rect x="86.4629%" y="933" width="6.9869%" height="15" fill="rgb(207,171,38)" fg:x="198" fg:w="16"/><text x="86.7129%" y="943.50">tokio::ru..</text></g><g><title>tokio::runtime::task::raw::RawTask::poll (16 samples, 6.99%)</title><rect x="86.4629%" y="917" width="6.9869%" height="15" fill="rgb(234,70,1)" fg:x="198" fg:w="16"/><text x="86.7129%" y="927.50">tokio::ru..</text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::poll (16 samples, 6.99%)</title><rect x="86.4629%" y="901" width="6.9869%" height="15" fill="rgb(232,178,18)" fg:x="198" fg:w="16"/><text x="86.7129%" y="911.50">tokio::ru..</text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::poll_inner (16 samples, 6.99%)</title><rect x="86.4629%" y="885" width="6.9869%" height="15" fill="rgb(241,78,40)" fg:x="198" fg:w="16"/><text x="86.7129%" y="895.50">tokio::ru..</text></g><g><title>tokio::runtime::task::harness::poll_future (16 samples, 6.99%)</title><rect x="86.4629%" y="869" width="6.9869%" height="15" fill="rgb(222,35,25)" fg:x="198" fg:w="16"/><text x="86.7129%" y="879.50">tokio::ru..</text></g><g><title>std::panic::catch_unwind (16 samples, 6.99%)</title><rect x="86.4629%" y="853" width="6.9869%" height="15" fill="rgb(207,92,16)" fg:x="198" fg:w="16"/><text x="86.7129%" y="863.50">std::pani..</text></g><g><title>std::panicking::try (16 samples, 6.99%)</title><rect x="86.4629%" y="837" width="6.9869%" height="15" fill="rgb(216,59,51)" fg:x="198" fg:w="16"/><text x="86.7129%" y="847.50">std::pani..</text></g><g><title>std::panicking::try::do_call (16 samples, 6.99%)</title><rect x="86.4629%" y="821" width="6.9869%" height="15" fill="rgb(213,80,28)" fg:x="198" fg:w="16"/><text x="86.7129%" y="831.50">std::pani..</text></g><g><title>&lt;std::panic::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (16 samples, 6.99%)</title><rect x="86.4629%" y="805" width="6.9869%" height="15" fill="rgb(220,93,7)" fg:x="198" fg:w="16"/><text x="86.7129%" y="815.50">&lt;std::pan..</text></g><g><title>tokio::runtime::task::harness::poll_future::{{closure}} (16 samples, 6.99%)</title><rect x="86.4629%" y="789" width="6.9869%" height="15" fill="rgb(225,24,44)" fg:x="198" fg:w="16"/><text x="86.7129%" y="799.50">tokio::ru..</text></g><g><title>tokio::runtime::task::core::CoreStage&lt;T&gt;::poll (16 samples, 6.99%)</title><rect x="86.4629%" y="773" width="6.9869%" height="15" fill="rgb(243,74,40)" fg:x="198" fg:w="16"/><text x="86.7129%" y="783.50">tokio::ru..</text></g><g><title>tokio::loom::std::unsafe_cell::UnsafeCell&lt;T&gt;::with_mut (16 samples, 6.99%)</title><rect x="86.4629%" y="757" width="6.9869%" height="15" fill="rgb(228,39,7)" fg:x="198" fg:w="16"/><text x="86.7129%" y="767.50">tokio::lo..</text></g><g><title>tokio::runtime::task::core::CoreStage&lt;T&gt;::poll::{{closure}} (16 samples, 6.99%)</title><rect x="86.4629%" y="741" width="6.9869%" height="15" fill="rgb(227,79,8)" fg:x="198" fg:w="16"/><text x="86.7129%" y="751.50">tokio::ru..</text></g><g><title>&lt;core::pin::Pin&lt;P&gt; as core::future::future::Future&gt;::poll (16 samples, 6.99%)</title><rect x="86.4629%" y="725" width="6.9869%" height="15" fill="rgb(236,58,11)" fg:x="198" fg:w="16"/><text x="86.7129%" y="735.50">&lt;core::pi..</text></g><g><title>&lt;core::future::from_generator::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll (16 samples, 6.99%)</title><rect x="86.4629%" y="709" width="6.9869%" height="15" fill="rgb(249,63,35)" fg:x="198" fg:w="16"/><text x="86.7129%" y="719.50">&lt;core::fu..</text></g><g><title>opentelemetry::sdk::trace::span_processor::BatchSpanProcessor&lt;R&gt;::new::{{closure}} (16 samples, 6.99%)</title><rect x="86.4629%" y="693" width="6.9869%" height="15" fill="rgb(252,114,16)" fg:x="198" fg:w="16"/><text x="86.7129%" y="703.50">opentelem..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.44%)</title><rect x="93.0131%" y="677" width="0.4367%" height="15" fill="rgb(254,151,24)" fg:x="213" fg:w="1"/><text x="93.2631%" y="687.50"></text></g><g><title>core::ptr::write (1 samples, 0.44%)</title><rect x="93.0131%" y="661" width="0.4367%" height="15" fill="rgb(253,54,39)" fg:x="213" fg:w="1"/><text x="93.2631%" y="671.50"></text></g><g><title>[libc-2.33.so] (1 samples, 0.44%)</title><rect x="93.0131%" y="645" width="0.4367%" height="15" fill="rgb(243,25,45)" fg:x="213" fg:w="1"/><text x="93.2631%" y="655.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="93.0131%" y="629" width="0.4367%" height="15" fill="rgb(234,134,9)" fg:x="213" fg:w="1"/><text x="93.2631%" y="639.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="93.0131%" y="613" width="0.4367%" height="15" fill="rgb(227,166,31)" fg:x="213" fg:w="1"/><text x="93.2631%" y="623.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="93.0131%" y="597" width="0.4367%" height="15" fill="rgb(245,143,41)" fg:x="213" fg:w="1"/><text x="93.2631%" y="607.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="93.0131%" y="581" width="0.4367%" height="15" fill="rgb(238,181,32)" fg:x="213" fg:w="1"/><text x="93.2631%" y="591.50"></text></g><g><title>[unknown] (1 samples, 0.44%)</title><rect x="93.0131%" y="565" width="0.4367%" height="15" fill="rgb(224,113,18)" fg:x="213" fg:w="1"/><text x="93.2631%" y="575.50"></text></g><g><title>std::panic::catch_unwind (100 samples, 43.67%)</title><rect x="50.2183%" y="1477" width="43.6681%" height="15" fill="rgb(240,229,28)" fg:x="115" fg:w="100"/><text x="50.4683%" y="1487.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (100 samples, 43.67%)</title><rect x="50.2183%" y="1461" width="43.6681%" height="15" fill="rgb(250,185,3)" fg:x="115" fg:w="100"/><text x="50.4683%" y="1471.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (100 samples, 43.67%)</title><rect x="50.2183%" y="1445" width="43.6681%" height="15" fill="rgb(212,59,25)" fg:x="115" fg:w="100"/><text x="50.4683%" y="1455.50">std::panicking::try::do_call</text></g><g><title>&lt;std::panic::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (100 samples, 43.67%)</title><rect x="50.2183%" y="1429" width="43.6681%" height="15" fill="rgb(221,87,20)" fg:x="115" fg:w="100"/><text x="50.4683%" y="1439.50">&lt;std::panic::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::ca..</text></g><g><title>std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}} (100 samples, 43.67%)</title><rect x="50.2183%" y="1413" width="43.6681%" height="15" fill="rgb(213,74,28)" fg:x="115" fg:w="100"/><text x="50.4683%" y="1423.50">std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (100 samples, 43.67%)</title><rect x="50.2183%" y="1397" width="43.6681%" height="15" fill="rgb(224,132,34)" fg:x="115" fg:w="100"/><text x="50.4683%" y="1407.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>tokio::runtime::blocking::pool::Spawner::spawn_thread::{{closure}} (100 samples, 43.67%)</title><rect x="50.2183%" y="1381" width="43.6681%" height="15" fill="rgb(222,101,24)" fg:x="115" fg:w="100"/><text x="50.4683%" y="1391.50">tokio::runtime::blocking::pool::Spawner::spawn_thread::{{closure}}</text></g><g><title>tokio::runtime::blocking::pool::Inner::run (100 samples, 43.67%)</title><rect x="50.2183%" y="1365" width="43.6681%" height="15" fill="rgb(254,142,4)" fg:x="115" fg:w="100"/><text x="50.4683%" y="1375.50">tokio::runtime::blocking::pool::Inner::run</text></g><g><title>tokio::runtime::task::UnownedTask&lt;S&gt;::run (84 samples, 36.68%)</title><rect x="57.2052%" y="1349" width="36.6812%" height="15" fill="rgb(230,229,49)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1359.50">tokio::runtime::task::UnownedTask&lt;S&gt;::run</text></g><g><title>tokio::runtime::task::raw::RawTask::poll (84 samples, 36.68%)</title><rect x="57.2052%" y="1333" width="36.6812%" height="15" fill="rgb(238,70,47)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1343.50">tokio::runtime::task::raw::RawTask::poll</text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::poll (84 samples, 36.68%)</title><rect x="57.2052%" y="1317" width="36.6812%" height="15" fill="rgb(231,160,17)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1327.50">tokio::runtime::task::harness::Harness&lt;T,S&gt;::poll</text></g><g><title>tokio::runtime::task::harness::Harness&lt;T,S&gt;::poll_inner (84 samples, 36.68%)</title><rect x="57.2052%" y="1301" width="36.6812%" height="15" fill="rgb(218,68,53)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1311.50">tokio::runtime::task::harness::Harness&lt;T,S&gt;::poll_inner</text></g><g><title>tokio::runtime::task::harness::poll_future (84 samples, 36.68%)</title><rect x="57.2052%" y="1285" width="36.6812%" height="15" fill="rgb(236,111,10)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1295.50">tokio::runtime::task::harness::poll_future</text></g><g><title>std::panic::catch_unwind (84 samples, 36.68%)</title><rect x="57.2052%" y="1269" width="36.6812%" height="15" fill="rgb(224,34,41)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1279.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (84 samples, 36.68%)</title><rect x="57.2052%" y="1253" width="36.6812%" height="15" fill="rgb(241,118,19)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1263.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (84 samples, 36.68%)</title><rect x="57.2052%" y="1237" width="36.6812%" height="15" fill="rgb(238,129,25)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1247.50">std::panicking::try::do_call</text></g><g><title>&lt;std::panic::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (84 samples, 36.68%)</title><rect x="57.2052%" y="1221" width="36.6812%" height="15" fill="rgb(238,22,31)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1231.50">&lt;std::panic::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnO..</text></g><g><title>tokio::runtime::task::harness::poll_future::{{closure}} (84 samples, 36.68%)</title><rect x="57.2052%" y="1205" width="36.6812%" height="15" fill="rgb(222,174,48)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1215.50">tokio::runtime::task::harness::poll_future::{{closure}}</text></g><g><title>tokio::runtime::task::core::CoreStage&lt;T&gt;::poll (84 samples, 36.68%)</title><rect x="57.2052%" y="1189" width="36.6812%" height="15" fill="rgb(206,152,40)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1199.50">tokio::runtime::task::core::CoreStage&lt;T&gt;::poll</text></g><g><title>tokio::loom::std::unsafe_cell::UnsafeCell&lt;T&gt;::with_mut (84 samples, 36.68%)</title><rect x="57.2052%" y="1173" width="36.6812%" height="15" fill="rgb(218,99,54)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1183.50">tokio::loom::std::unsafe_cell::UnsafeCell&lt;T&gt;::with_mut</text></g><g><title>tokio::runtime::task::core::CoreStage&lt;T&gt;::poll::{{closure}} (84 samples, 36.68%)</title><rect x="57.2052%" y="1157" width="36.6812%" height="15" fill="rgb(220,174,26)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1167.50">tokio::runtime::task::core::CoreStage&lt;T&gt;::poll::{{closure}}</text></g><g><title>&lt;tokio::runtime::blocking::task::BlockingTask&lt;T&gt; as core::future::future::Future&gt;::poll (84 samples, 36.68%)</title><rect x="57.2052%" y="1141" width="36.6812%" height="15" fill="rgb(245,116,9)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1151.50">&lt;tokio::runtime::blocking::task::BlockingTask&lt;T&gt; as core::fu..</text></g><g><title>tokio::runtime::thread_pool::worker::Launch::launch::{{closure}} (84 samples, 36.68%)</title><rect x="57.2052%" y="1125" width="36.6812%" height="15" fill="rgb(209,72,35)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1135.50">tokio::runtime::thread_pool::worker::Launch::launch::{{closu..</text></g><g><title>tokio::runtime::thread_pool::worker::run (84 samples, 36.68%)</title><rect x="57.2052%" y="1109" width="36.6812%" height="15" fill="rgb(226,126,21)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1119.50">tokio::runtime::thread_pool::worker::run</text></g><g><title>tokio::macros::scoped_tls::ScopedKey&lt;T&gt;::set (84 samples, 36.68%)</title><rect x="57.2052%" y="1093" width="36.6812%" height="15" fill="rgb(227,192,1)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1103.50">tokio::macros::scoped_tls::ScopedKey&lt;T&gt;::set</text></g><g><title>tokio::runtime::thread_pool::worker::run::{{closure}} (84 samples, 36.68%)</title><rect x="57.2052%" y="1077" width="36.6812%" height="15" fill="rgb(237,180,29)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1087.50">tokio::runtime::thread_pool::worker::run::{{closure}}</text></g><g><title>tokio::runtime::thread_pool::worker::Context::run (84 samples, 36.68%)</title><rect x="57.2052%" y="1061" width="36.6812%" height="15" fill="rgb(230,197,35)" fg:x="131" fg:w="84"/><text x="57.4552%" y="1071.50">tokio::runtime::thread_pool::worker::Context::run</text></g><g><title>tokio::runtime::thread_pool::worker::Core::steal_work (1 samples, 0.44%)</title><rect x="93.4498%" y="1045" width="0.4367%" height="15" fill="rgb(246,193,31)" fg:x="214" fg:w="1"/><text x="93.6998%" y="1055.50"></text></g><g><title>tokio::runtime::queue::Steal&lt;T&gt;::steal_into (1 samples, 0.44%)</title><rect x="93.4498%" y="1029" width="0.4367%" height="15" fill="rgb(241,36,4)" fg:x="214" fg:w="1"/><text x="93.6998%" y="1039.50"></text></g><g><title>tokio::runtime::queue::Steal&lt;T&gt;::steal_into2 (1 samples, 0.44%)</title><rect x="93.4498%" y="1013" width="0.4367%" height="15" fill="rgb(241,130,17)" fg:x="214" fg:w="1"/><text x="93.6998%" y="1023.50"></text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="93.8865%" y="1381" width="2.1834%" height="15" fill="rgb(206,137,32)" fg:x="215" fg:w="5"/><text x="94.1365%" y="1391.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="93.8865%" y="1365" width="2.1834%" height="15" fill="rgb(237,228,51)" fg:x="215" fg:w="5"/><text x="94.1365%" y="1375.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="93.8865%" y="1349" width="2.1834%" height="15" fill="rgb(243,6,42)" fg:x="215" fg:w="5"/><text x="94.1365%" y="1359.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="93.8865%" y="1333" width="2.1834%" height="15" fill="rgb(251,74,28)" fg:x="215" fg:w="5"/><text x="94.1365%" y="1343.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="93.8865%" y="1317" width="2.1834%" height="15" fill="rgb(218,20,49)" fg:x="215" fg:w="5"/><text x="94.1365%" y="1327.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="93.8865%" y="1301" width="2.1834%" height="15" fill="rgb(238,28,14)" fg:x="215" fg:w="5"/><text x="94.1365%" y="1311.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="93.8865%" y="1285" width="2.1834%" height="15" fill="rgb(229,40,46)" fg:x="215" fg:w="5"/><text x="94.1365%" y="1295.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="93.8865%" y="1269" width="2.1834%" height="15" fill="rgb(244,195,20)" fg:x="215" fg:w="5"/><text x="94.1365%" y="1279.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="93.8865%" y="1253" width="2.1834%" height="15" fill="rgb(253,56,35)" fg:x="215" fg:w="5"/><text x="94.1365%" y="1263.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="93.8865%" y="1237" width="2.1834%" height="15" fill="rgb(210,149,44)" fg:x="215" fg:w="5"/><text x="94.1365%" y="1247.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="93.8865%" y="1221" width="2.1834%" height="15" fill="rgb(240,135,12)" fg:x="215" fg:w="5"/><text x="94.1365%" y="1231.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="93.8865%" y="1205" width="2.1834%" height="15" fill="rgb(251,24,50)" fg:x="215" fg:w="5"/><text x="94.1365%" y="1215.50">[..</text></g><g><title>[unknown] (4 samples, 1.75%)</title><rect x="94.3231%" y="1189" width="1.7467%" height="15" fill="rgb(243,200,47)" fg:x="216" fg:w="4"/><text x="94.5731%" y="1199.50"></text></g><g><title>clone (113 samples, 49.34%)</title><rect x="50.2183%" y="1589" width="49.3450%" height="15" fill="rgb(224,166,26)" fg:x="115" fg:w="113"/><text x="50.4683%" y="1599.50">clone</text></g><g><title>start_thread (113 samples, 49.34%)</title><rect x="50.2183%" y="1573" width="49.3450%" height="15" fill="rgb(233,0,47)" fg:x="115" fg:w="113"/><text x="50.4683%" y="1583.50">start_thread</text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (113 samples, 49.34%)</title><rect x="50.2183%" y="1557" width="49.3450%" height="15" fill="rgb(253,80,5)" fg:x="115" fg:w="113"/><text x="50.4683%" y="1567.50">std::sys::unix::thread::Thread::new::thread_start</text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (113 samples, 49.34%)</title><rect x="50.2183%" y="1541" width="49.3450%" height="15" fill="rgb(214,133,25)" fg:x="115" fg:w="113"/><text x="50.4683%" y="1551.50">&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once</text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (113 samples, 49.34%)</title><rect x="50.2183%" y="1525" width="49.3450%" height="15" fill="rgb(209,27,14)" fg:x="115" fg:w="113"/><text x="50.4683%" y="1535.50">&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once</text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (113 samples, 49.34%)</title><rect x="50.2183%" y="1509" width="49.3450%" height="15" fill="rgb(219,102,51)" fg:x="115" fg:w="113"/><text x="50.4683%" y="1519.50">core::ops::function::FnOnce::call_once{{vtable.shim}}</text></g><g><title>std::thread::Builder::spawn_unchecked::{{closure}} (113 samples, 49.34%)</title><rect x="50.2183%" y="1493" width="49.3450%" height="15" fill="rgb(237,18,16)" fg:x="115" fg:w="113"/><text x="50.4683%" y="1503.50">std::thread::Builder::spawn_unchecked::{{closure}}</text></g><g><title>std::sys::unix::thread::guard::current (13 samples, 5.68%)</title><rect x="93.8865%" y="1477" width="5.6769%" height="15" fill="rgb(241,85,17)" fg:x="215" fg:w="13"/><text x="94.1365%" y="1487.50">std::sy..</text></g><g><title>pthread_getattr_np (13 samples, 5.68%)</title><rect x="93.8865%" y="1461" width="5.6769%" height="15" fill="rgb(236,90,42)" fg:x="215" fg:w="13"/><text x="94.1365%" y="1471.50">pthread..</text></g><g><title>__libc_malloc (13 samples, 5.68%)</title><rect x="93.8865%" y="1445" width="5.6769%" height="15" fill="rgb(249,57,21)" fg:x="215" fg:w="13"/><text x="94.1365%" y="1455.50">__libc_..</text></g><g><title>[libc-2.33.so] (13 samples, 5.68%)</title><rect x="93.8865%" y="1429" width="5.6769%" height="15" fill="rgb(243,12,36)" fg:x="215" fg:w="13"/><text x="94.1365%" y="1439.50">[libc-2..</text></g><g><title>[libc-2.33.so] (13 samples, 5.68%)</title><rect x="93.8865%" y="1413" width="5.6769%" height="15" fill="rgb(253,128,47)" fg:x="215" fg:w="13"/><text x="94.1365%" y="1423.50">[libc-2..</text></g><g><title>[libc-2.33.so] (13 samples, 5.68%)</title><rect x="93.8865%" y="1397" width="5.6769%" height="15" fill="rgb(207,33,20)" fg:x="215" fg:w="13"/><text x="94.1365%" y="1407.50">[libc-2..</text></g><g><title>mmap64 (8 samples, 3.49%)</title><rect x="96.0699%" y="1381" width="3.4934%" height="15" fill="rgb(233,215,35)" fg:x="220" fg:w="8"/><text x="96.3199%" y="1391.50">mma..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="96.0699%" y="1365" width="3.4934%" height="15" fill="rgb(249,188,52)" fg:x="220" fg:w="8"/><text x="96.3199%" y="1375.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="96.0699%" y="1349" width="3.4934%" height="15" fill="rgb(225,12,32)" fg:x="220" fg:w="8"/><text x="96.3199%" y="1359.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="96.0699%" y="1333" width="3.4934%" height="15" fill="rgb(247,98,14)" fg:x="220" fg:w="8"/><text x="96.3199%" y="1343.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="96.0699%" y="1317" width="3.4934%" height="15" fill="rgb(247,219,48)" fg:x="220" fg:w="8"/><text x="96.3199%" y="1327.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="96.0699%" y="1301" width="3.4934%" height="15" fill="rgb(253,60,48)" fg:x="220" fg:w="8"/><text x="96.3199%" y="1311.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="96.0699%" y="1285" width="3.4934%" height="15" fill="rgb(245,15,52)" fg:x="220" fg:w="8"/><text x="96.3199%" y="1295.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="96.0699%" y="1269" width="3.4934%" height="15" fill="rgb(220,133,28)" fg:x="220" fg:w="8"/><text x="96.3199%" y="1279.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="96.0699%" y="1253" width="3.4934%" height="15" fill="rgb(217,180,4)" fg:x="220" fg:w="8"/><text x="96.3199%" y="1263.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="96.0699%" y="1237" width="3.4934%" height="15" fill="rgb(251,24,1)" fg:x="220" fg:w="8"/><text x="96.3199%" y="1247.50">[un..</text></g><g><title>[unknown] (8 samples, 3.49%)</title><rect x="96.0699%" y="1221" width="3.4934%" height="15" fill="rgb(212,185,49)" fg:x="220" fg:w="8"/><text x="96.3199%" y="1231.50">[un..</text></g><g><title>[unknown] (6 samples, 2.62%)</title><rect x="96.9432%" y="1205" width="2.6201%" height="15" fill="rgb(215,175,22)" fg:x="222" fg:w="6"/><text x="97.1932%" y="1215.50">[u..</text></g><g><title>[unknown] (6 samples, 2.62%)</title><rect x="96.9432%" y="1189" width="2.6201%" height="15" fill="rgb(250,205,14)" fg:x="222" fg:w="6"/><text x="97.1932%" y="1199.50">[u..</text></g><g><title>[unknown] (6 samples, 2.62%)</title><rect x="96.9432%" y="1173" width="2.6201%" height="15" fill="rgb(225,211,22)" fg:x="222" fg:w="6"/><text x="97.1932%" y="1183.50">[u..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="97.3799%" y="1157" width="2.1834%" height="15" fill="rgb(251,179,42)" fg:x="223" fg:w="5"/><text x="97.6299%" y="1167.50">[..</text></g><g><title>[unknown] (5 samples, 2.18%)</title><rect x="97.3799%" y="1141" width="2.1834%" height="15" fill="rgb(208,216,51)" fg:x="223" fg:w="5"/><text x="97.6299%" y="1151.50">[..</text></g><g><title>all (229 samples, 100%)</title><rect x="0.0000%" y="1621" width="100.0000%" height="15" fill="rgb(235,36,11)" fg:x="0" fg:w="229"/><text x="0.2500%" y="1631.50"></text></g><g><title>tokio-runtime-w (194 samples, 84.72%)</title><rect x="15.2838%" y="1605" width="84.7162%" height="15" fill="rgb(213,189,28)" fg:x="35" fg:w="194"/><text x="15.5338%" y="1615.50">tokio-runtime-w</text></g><g><title>sharded_slab::pool::Pool&lt;T,C&gt;::get (1 samples, 0.44%)</title><rect x="99.5633%" y="1589" width="0.4367%" height="15" fill="rgb(227,203,42)" fg:x="228" fg:w="1"/><text x="99.8133%" y="1599.50"></text></g><g><title>sharded_slab::shard::Shard&lt;T,C&gt;::with_slot (1 samples, 0.44%)</title><rect x="99.5633%" y="1573" width="0.4367%" height="15" fill="rgb(244,72,36)" fg:x="228" fg:w="1"/><text x="99.8133%" y="1583.50"></text></g><g><title>sharded_slab::page::Shared&lt;T,C&gt;::with_slot (1 samples, 0.44%)</title><rect x="99.5633%" y="1557" width="0.4367%" height="15" fill="rgb(213,53,17)" fg:x="228" fg:w="1"/><text x="99.8133%" y="1567.50"></text></g><g><title>sharded_slab::sync::inner::UnsafeCell&lt;T&gt;::with (1 samples, 0.44%)</title><rect x="99.5633%" y="1541" width="0.4367%" height="15" fill="rgb(207,167,3)" fg:x="228" fg:w="1"/><text x="99.8133%" y="1551.50"></text></g><g><title>sharded_slab::page::Shared&lt;T,C&gt;::with_slot::{{closure}} (1 samples, 0.44%)</title><rect x="99.5633%" y="1525" width="0.4367%" height="15" fill="rgb(216,98,30)" fg:x="228" fg:w="1"/><text x="99.8133%" y="1535.50"></text></g><g><title>sharded_slab::pool::Pool&lt;T,C&gt;::get::{{closure}} (1 samples, 0.44%)</title><rect x="99.5633%" y="1509" width="0.4367%" height="15" fill="rgb(236,123,15)" fg:x="228" fg:w="1"/><text x="99.8133%" y="1519.50"></text></g><g><title>sharded_slab::page::slot::Slot&lt;T,C&gt;::get (1 samples, 0.44%)</title><rect x="99.5633%" y="1493" width="0.4367%" height="15" fill="rgb(248,81,50)" fg:x="228" fg:w="1"/><text x="99.8133%" y="1503.50"></text></g><g><title>core::sync::atomic::AtomicUsize::compare_exchange (1 samples, 0.44%)</title><rect x="99.5633%" y="1477" width="0.4367%" height="15" fill="rgb(214,120,4)" fg:x="228" fg:w="1"/><text x="99.8133%" y="1487.50"></text></g><g><title>core::sync::atomic::atomic_compare_exchange (1 samples, 0.44%)</title><rect x="99.5633%" y="1461" width="0.4367%" height="15" fill="rgb(208,179,34)" fg:x="228" fg:w="1"/><text x="99.8133%" y="1471.50"></text></g></svg></svg>
use futures::stream::{self, StreamExt};
use opentelemetry::global;
use opentelemetry::trace::Tracer;
use tracing::{error, event, instrument::WithSubscriber, span, Instrument, Level};
use tracing_subscriber::layer::SubscriberExt;
use tracing_subscriber::Registry;
const delay: u64 = 10;
const query: &'static str = "query ExampleQuery($topProductsFirst: Int) {
me {
id
}
topProducts(first: $topProductsFirst) {
name
price
inStock
}
topProducts(first: $topProductsFirst) {
name
price
inStock
}
}
";
#[tokio::main]
async fn main() -> Result<(), opentelemetry::trace::TraceError> {
let subscriber = tracing_subscriber::fmt::fmt().finish();
let tracer = opentelemetry_jaeger::new_pipeline()
.with_service_name("jaeger-perf-test")
.install_batch(opentelemetry::runtime::Tokio)?;
let telemetry = tracing_opentelemetry::layer().with_tracer(tracer);
let subscriber = subscriber.with(telemetry);
run().with_subscriber(subscriber).await;
global::shutdown_tracer_provider(); // export remaining spans
Ok(())
}
async fn run() {
let mut s = stream::repeat(()).enumerate();
while let Some((i, _)) = s.next().instrument(tracing::info_span!("stream")).await {
event!(Level::INFO, count = i);
a(i).instrument(tracing::info_span!("a", query))
.instrument(tracing::info_span!("aa"))
.await;
}
}
async fn a(i: usize) {
let f1 = format!("1: got {}", i);
let f2 = format!("2: got {}", i);
let f3 = format!("3: got {}", i);
let f4 = format!("4: got {}", i);
let f5 = format!("5: got {}", i);
let v = vec![
b(f1.as_str(), 2)
.instrument(tracing::info_span!("b", factor = 0.5))
.instrument(tracing::info_span!("bb")),
b(f2.as_str(), 3)
.instrument(tracing::info_span!("b", factor = 0.3))
.instrument(tracing::info_span!("bb")),
b(f3.as_str(), 4)
.instrument(tracing::info_span!("b", factor = 0.25))
.instrument(tracing::info_span!("bb")),
b(f4.as_str(), 1)
.instrument(tracing::info_span!("b", factor = 1))
.instrument(tracing::info_span!("bb")),
b(f5.as_str(), 1)
.instrument(tracing::info_span!("b", factor = 1))
.instrument(tracing::info_span!("bb")),
];
futures::future::join_all(v).await;
}
async fn b(s: &str, div: u64) {
tokio::time::sleep(std::time::Duration::from_millis(delay / div))
.instrument(tracing::info_span!("wait", query))
.await;
c(s).instrument(tracing::info_span!("c", query)).await;
}
async fn c(s: &str) {
let t = std::time::SystemTime::now()
.duration_since(std::time::SystemTime::UNIX_EPOCH)
.unwrap()
.as_secs();
println!("{}: {}", t, s);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment