Created
March 18, 2026 18:20
-
-
Save benfavre/5a17621b9b35a9ce824b095d119ee18c to your computer and use it in GitHub Desktop.
Flamegraph: PR #91586 hotspot in canary baseline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" standalone="no"?> | |
| <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
| <svg version="1.1" width="1000" height="734" onload="init(evt)" viewBox="0 0 1000 734" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
| <!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> | |
| <!-- NOTES: --> | |
| <defs> | |
| <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > | |
| <stop stop-color="#eeeeee" offset="5%" /> | |
| <stop stop-color="#eeeeb0" offset="95%" /> | |
| </linearGradient> | |
| </defs> | |
| <style type="text/css"> | |
| text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); } | |
| #search, #ignorecase { opacity:0.1; cursor:pointer; } | |
| #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; } | |
| #subtitle { text-anchor:middle; font-color:rgb(160,160,160); } | |
| #title { text-anchor:middle; font-size:17px} | |
| #unzoom { cursor:pointer; } | |
| #frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; } | |
| .hide { display:none; } | |
| .parent { opacity:0.5; } | |
| </style> | |
| <script type="text/ecmascript"> | |
| <![CDATA[ | |
| "use strict"; | |
| var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn; | |
| function init(evt) { | |
| details = document.getElementById("details").firstChild; | |
| searchbtn = document.getElementById("search"); | |
| ignorecaseBtn = document.getElementById("ignorecase"); | |
| unzoombtn = document.getElementById("unzoom"); | |
| matchedtxt = document.getElementById("matched"); | |
| svg = document.getElementsByTagName("svg")[0]; | |
| searching = 0; | |
| currentSearchTerm = null; | |
| // use GET parameters to restore a flamegraphs state. | |
| var params = get_params(); | |
| if (params.x && params.y) | |
| zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]'))); | |
| if (params.s) search(params.s); | |
| } | |
| // event listeners | |
| window.addEventListener("click", function(e) { | |
| var target = find_group(e.target); | |
| if (target) { | |
| if (target.nodeName == "a") { | |
| if (e.ctrlKey === false) return; | |
| e.preventDefault(); | |
| } | |
| if (target.classList.contains("parent")) unzoom(true); | |
| zoom(target); | |
| if (!document.querySelector('.parent')) { | |
| // we have basically done a clearzoom so clear the url | |
| var params = get_params(); | |
| if (params.x) delete params.x; | |
| if (params.y) delete params.y; | |
| history.replaceState(null, null, parse_params(params)); | |
| unzoombtn.classList.add("hide"); | |
| return; | |
| } | |
| // set parameters for zoom state | |
| var el = target.querySelector("rect"); | |
| if (el && el.attributes && el.attributes.y && el.attributes._orig_x) { | |
| var params = get_params() | |
| params.x = el.attributes._orig_x.value; | |
| params.y = el.attributes.y.value; | |
| history.replaceState(null, null, parse_params(params)); | |
| } | |
| } | |
| else if (e.target.id == "unzoom") clearzoom(); | |
| else if (e.target.id == "search") search_prompt(); | |
| else if (e.target.id == "ignorecase") toggle_ignorecase(); | |
| }, false) | |
| // mouse-over for info | |
| // show | |
| window.addEventListener("mouseover", function(e) { | |
| var target = find_group(e.target); | |
| if (target) details.nodeValue = "Function: " + g_to_text(target); | |
| }, false) | |
| // clear | |
| window.addEventListener("mouseout", function(e) { | |
| var target = find_group(e.target); | |
| if (target) details.nodeValue = ' '; | |
| }, false) | |
| // ctrl-F for search | |
| // ctrl-I to toggle case-sensitive search | |
| window.addEventListener("keydown",function (e) { | |
| if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { | |
| e.preventDefault(); | |
| search_prompt(); | |
| } | |
| else if (e.ctrlKey && e.keyCode === 73) { | |
| e.preventDefault(); | |
| toggle_ignorecase(); | |
| } | |
| }, false) | |
| // functions | |
| function get_params() { | |
| var params = {}; | |
| var paramsarr = window.location.search.substr(1).split('&'); | |
| for (var i = 0; i < paramsarr.length; ++i) { | |
| var tmp = paramsarr[i].split("="); | |
| if (!tmp[0] || !tmp[1]) continue; | |
| params[tmp[0]] = decodeURIComponent(tmp[1]); | |
| } | |
| return params; | |
| } | |
| function parse_params(params) { | |
| var uri = "?"; | |
| for (var key in params) { | |
| uri += key + '=' + encodeURIComponent(params[key]) + '&'; | |
| } | |
| if (uri.slice(-1) == "&") | |
| uri = uri.substring(0, uri.length - 1); | |
| if (uri == '?') | |
| uri = window.location.href.split('?')[0]; | |
| return uri; | |
| } | |
| function find_child(node, selector) { | |
| var children = node.querySelectorAll(selector); | |
| if (children.length) return children[0]; | |
| } | |
| function find_group(node) { | |
| var parent = node.parentElement; | |
| if (!parent) return; | |
| if (parent.id == "frames") return node; | |
| return find_group(parent); | |
| } | |
| function orig_save(e, attr, val) { | |
| if (e.attributes["_orig_" + attr] != undefined) return; | |
| if (e.attributes[attr] == undefined) return; | |
| if (val == undefined) val = e.attributes[attr].value; | |
| e.setAttribute("_orig_" + attr, val); | |
| } | |
| function orig_load(e, attr) { | |
| if (e.attributes["_orig_"+attr] == undefined) return; | |
| e.attributes[attr].value = e.attributes["_orig_" + attr].value; | |
| e.removeAttribute("_orig_"+attr); | |
| } | |
| function g_to_text(e) { | |
| var text = find_child(e, "title").firstChild.nodeValue; | |
| return (text) | |
| } | |
| function g_to_func(e) { | |
| var func = g_to_text(e); | |
| // if there's any manipulation we want to do to the function | |
| // name before it's searched, do it here before returning. | |
| return (func); | |
| } | |
| function update_text(e) { | |
| var r = find_child(e, "rect"); | |
| var t = find_child(e, "text"); | |
| var w = parseFloat(r.attributes.width.value) -3; | |
| var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); | |
| t.attributes.x.value = parseFloat(r.attributes.x.value) + 3; | |
| // Smaller than this size won't fit anything | |
| if (w < 2 * 12 * 0.59) { | |
| t.textContent = ""; | |
| return; | |
| } | |
| t.textContent = txt; | |
| var sl = t.getSubStringLength(0, txt.length); | |
| // check if only whitespace or if we can fit the entire string into width w | |
| if (/^ *$/.test(txt) || sl < w) | |
| return; | |
| // this isn't perfect, but gives a good starting point | |
| // and avoids calling getSubStringLength too often | |
| var start = Math.floor((w/sl) * txt.length); | |
| for (var x = start; x > 0; x = x-2) { | |
| if (t.getSubStringLength(0, x + 2) <= w) { | |
| t.textContent = txt.substring(0, x) + ".."; | |
| return; | |
| } | |
| } | |
| t.textContent = ""; | |
| } | |
| // zoom | |
| function zoom_reset(e) { | |
| if (e.attributes != undefined) { | |
| orig_load(e, "x"); | |
| orig_load(e, "width"); | |
| } | |
| if (e.childNodes == undefined) return; | |
| for (var i = 0, c = e.childNodes; i < c.length; i++) { | |
| zoom_reset(c[i]); | |
| } | |
| } | |
| function zoom_child(e, x, ratio) { | |
| if (e.attributes != undefined) { | |
| if (e.attributes.x != undefined) { | |
| orig_save(e, "x"); | |
| e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10; | |
| if (e.tagName == "text") | |
| e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3; | |
| } | |
| if (e.attributes.width != undefined) { | |
| orig_save(e, "width"); | |
| e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio; | |
| } | |
| } | |
| if (e.childNodes == undefined) return; | |
| for (var i = 0, c = e.childNodes; i < c.length; i++) { | |
| zoom_child(c[i], x - 10, ratio); | |
| } | |
| } | |
| function zoom_parent(e) { | |
| if (e.attributes) { | |
| if (e.attributes.x != undefined) { | |
| orig_save(e, "x"); | |
| e.attributes.x.value = 10; | |
| } | |
| if (e.attributes.width != undefined) { | |
| orig_save(e, "width"); | |
| e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2); | |
| } | |
| } | |
| if (e.childNodes == undefined) return; | |
| for (var i = 0, c = e.childNodes; i < c.length; i++) { | |
| zoom_parent(c[i]); | |
| } | |
| } | |
| function zoom(node) { | |
| var attr = find_child(node, "rect").attributes; | |
| var width = parseFloat(attr.width.value); | |
| var xmin = parseFloat(attr.x.value); | |
| var xmax = parseFloat(xmin + width); | |
| var ymin = parseFloat(attr.y.value); | |
| var ratio = (svg.width.baseVal.value - 2 * 10) / width; | |
| // XXX: Workaround for JavaScript float issues (fix me) | |
| var fudge = 0.0001; | |
| unzoombtn.classList.remove("hide"); | |
| var el = document.getElementById("frames").children; | |
| for (var i = 0; i < el.length; i++) { | |
| var e = el[i]; | |
| var a = find_child(e, "rect").attributes; | |
| var ex = parseFloat(a.x.value); | |
| var ew = parseFloat(a.width.value); | |
| var upstack; | |
| // Is it an ancestor | |
| if (0 == 0) { | |
| upstack = parseFloat(a.y.value) > ymin; | |
| } else { | |
| upstack = parseFloat(a.y.value) < ymin; | |
| } | |
| if (upstack) { | |
| // Direct ancestor | |
| if (ex <= xmin && (ex+ew+fudge) >= xmax) { | |
| e.classList.add("parent"); | |
| zoom_parent(e); | |
| update_text(e); | |
| } | |
| // not in current path | |
| else | |
| e.classList.add("hide"); | |
| } | |
| // Children maybe | |
| else { | |
| // no common path | |
| if (ex < xmin || ex + fudge >= xmax) { | |
| e.classList.add("hide"); | |
| } | |
| else { | |
| zoom_child(e, xmin, ratio); | |
| update_text(e); | |
| } | |
| } | |
| } | |
| search(); | |
| } | |
| function unzoom(dont_update_text) { | |
| unzoombtn.classList.add("hide"); | |
| var el = document.getElementById("frames").children; | |
| for(var i = 0; i < el.length; i++) { | |
| el[i].classList.remove("parent"); | |
| el[i].classList.remove("hide"); | |
| zoom_reset(el[i]); | |
| if(!dont_update_text) update_text(el[i]); | |
| } | |
| search(); | |
| } | |
| function clearzoom() { | |
| unzoom(); | |
| // remove zoom state | |
| var params = get_params(); | |
| if (params.x) delete params.x; | |
| if (params.y) delete params.y; | |
| history.replaceState(null, null, parse_params(params)); | |
| } | |
| // search | |
| function toggle_ignorecase() { | |
| ignorecase = !ignorecase; | |
| if (ignorecase) { | |
| ignorecaseBtn.classList.add("show"); | |
| } else { | |
| ignorecaseBtn.classList.remove("show"); | |
| } | |
| reset_search(); | |
| search(); | |
| } | |
| function reset_search() { | |
| var el = document.querySelectorAll("#frames rect"); | |
| for (var i = 0; i < el.length; i++) { | |
| orig_load(el[i], "fill") | |
| } | |
| var params = get_params(); | |
| delete params.s; | |
| history.replaceState(null, null, parse_params(params)); | |
| } | |
| function search_prompt() { | |
| if (!searching) { | |
| var term = prompt("Enter a search term (regexp " + | |
| "allowed, eg: ^ext4_)" | |
| + (ignorecase ? ", ignoring case" : "") | |
| + "\nPress Ctrl-i to toggle case sensitivity", ""); | |
| if (term != null) search(term); | |
| } else { | |
| reset_search(); | |
| searching = 0; | |
| currentSearchTerm = null; | |
| searchbtn.classList.remove("show"); | |
| searchbtn.firstChild.nodeValue = "Search" | |
| matchedtxt.classList.add("hide"); | |
| matchedtxt.firstChild.nodeValue = "" | |
| } | |
| } | |
| function search(term) { | |
| if (term) currentSearchTerm = term; | |
| if (currentSearchTerm === null) return; | |
| var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : ''); | |
| var el = document.getElementById("frames").children; | |
| var matches = new Object(); | |
| var maxwidth = 0; | |
| for (var i = 0; i < el.length; i++) { | |
| var e = el[i]; | |
| var func = g_to_func(e); | |
| var rect = find_child(e, "rect"); | |
| if (func == null || rect == null) | |
| continue; | |
| // Save max width. Only works as we have a root frame | |
| var w = parseFloat(rect.attributes.width.value); | |
| if (w > maxwidth) | |
| maxwidth = w; | |
| if (func.match(re)) { | |
| // highlight | |
| var x = parseFloat(rect.attributes.x.value); | |
| orig_save(rect, "fill"); | |
| rect.attributes.fill.value = "rgb(230,0,230)"; | |
| // remember matches | |
| if (matches[x] == undefined) { | |
| matches[x] = w; | |
| } else { | |
| if (w > matches[x]) { | |
| // overwrite with parent | |
| matches[x] = w; | |
| } | |
| } | |
| searching = 1; | |
| } | |
| } | |
| if (!searching) | |
| return; | |
| var params = get_params(); | |
| params.s = currentSearchTerm; | |
| history.replaceState(null, null, parse_params(params)); | |
| searchbtn.classList.add("show"); | |
| searchbtn.firstChild.nodeValue = "Reset Search"; | |
| // calculate percent matched, excluding vertical overlap | |
| var count = 0; | |
| var lastx = -1; | |
| var lastw = 0; | |
| var keys = Array(); | |
| for (k in matches) { | |
| if (matches.hasOwnProperty(k)) | |
| keys.push(k); | |
| } | |
| // sort the matched frames by their x location | |
| // ascending, then width descending | |
| keys.sort(function(a, b){ | |
| return a - b; | |
| }); | |
| // Step through frames saving only the biggest bottom-up frames | |
| // thanks to the sort order. This relies on the tree property | |
| // where children are always smaller than their parents. | |
| var fudge = 0.0001; // JavaScript floating point | |
| for (var k in keys) { | |
| var x = parseFloat(keys[k]); | |
| var w = matches[keys[k]]; | |
| if (x >= lastx + lastw - fudge) { | |
| count += w; | |
| lastx = x; | |
| lastw = w; | |
| } | |
| } | |
| // display matched percent | |
| matchedtxt.classList.remove("hide"); | |
| var pct = 100 * count / maxwidth; | |
| if (pct != 100) pct = pct.toFixed(1) | |
| matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; | |
| } | |
| ]]> | |
| </script> | |
| <rect x="0.0" y="0" width="1000.0" height="734.0" fill="url(#background)" /> | |
| <text id="title" x="500.00" y="24" >PR #91586: Tracer/OTel overhead (BYPASSED for noop)</text> | |
| <text id="subtitle" x="500.00" y="48" >CPU time in canary baseline attributed to this hotspot</text> | |
| <text id="details" x="10.00" y="717" > </text> | |
| <text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text> | |
| <text id="search" x="890.00" y="24" >Search</text> | |
| <text id="ignorecase" x="974.00" y="24" >ic</text> | |
| <text id="matched" x="890.00" y="717" > </text> | |
| <g id="frames"> | |
| <g > | |
| <title>a (7 μs, 0.51%)</title><rect x="951.5" y="109" width="5.0" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> | |
| <text x="954.46" y="119.5" ></text> | |
| </g> | |
| <g > | |
| <title>require (3 μs, 0.22%)</title><rect x="11.4" y="349" width="2.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="14.43" y="359.5" ></text> | |
| </g> | |
| <g > | |
| <title>e5 (19 μs, 1.38%)</title><rect x="102.8" y="509" width="13.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="105.79" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>readFileSync (2 μs, 0.15%)</title><rect x="956.5" y="77" width="1.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
| <text x="959.45" y="87.5" ></text> | |
| </g> | |
| <g > | |
| <title>t2 (15 μs, 1.09%)</title><rect x="482.5" y="493" width="10.7" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="485.51" y="503.5" ></text> | |
| </g> | |
| <g > | |
| <title>isDomBotUA (2 μs, 0.15%)</title><rect x="792.3" y="541" width="1.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> | |
| <text x="795.29" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>getPagePath (23 μs, 1.68%)</title><rect x="915.1" y="397" width="16.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> | |
| <text x="918.05" y="407.5" ></text> | |
| </g> | |
| <g > | |
| <title>withSpan (89 μs, 6.48%)</title><rect x="430.4" y="589" width="63.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="433.41" y="599.5" >withSpan</text> | |
| </g> | |
| <g > | |
| <title>eR (2 μs, 0.15%)</title><rect x="116.4" y="525" width="1.4" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
| <text x="119.35" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>instantiateModule (4 μs, 0.29%)</title><rect x="965.7" y="189" width="2.9" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> | |
| <text x="968.73" y="199.5" ></text> | |
| </g> | |
| <g > | |
| <title>getTracer (2 μs, 0.15%)</title><rect x="652.4" y="525" width="1.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="655.39" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (145 μs, 10.56%)</title><rect x="506.8" y="541" width="103.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="509.78" y="551.5" >startActiveS..</text> | |
| </g> | |
| <g > | |
| <title>checkInvalidHeaderChar (14 μs, 1.02%)</title><rect x="833.7" y="477" width="10.0" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="836.69" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext (19 μs, 1.38%)</title><rect x="634.5" y="557" width="13.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="637.54" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>requirePage (94 μs, 6.85%)</title><rect x="904.3" y="413" width="67.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> | |
| <text x="907.35" y="423.5" >require..</text> | |
| </g> | |
| <g > | |
| <title>handleRequest (84 μs, 6.12%)</title><rect x="244.8" y="621" width="60.0" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
| <text x="247.83" y="631.5" >handle..</text> | |
| </g> | |
| <g > | |
| <title>runMicrotasks (186 μs, 13.55%)</title><rect x="19.3" y="621" width="132.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="22.28" y="631.5" >runMicrotasks</text> | |
| </g> | |
| <g > | |
| <title>readableStreamFulfillReadRequest (2 μs, 0.15%)</title><rect x="988.6" y="589" width="1.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="991.57" y="599.5" ></text> | |
| </g> | |
| <g > | |
| <title>wrapModuleLoad (51 μs, 3.71%)</title><rect x="935.0" y="365" width="36.4" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" /> | |
| <text x="938.04" y="375.5" >wra..</text> | |
| </g> | |
| <g > | |
| <title>getOrInstantiateModuleFromParent (20 μs, 1.46%)</title><rect x="951.5" y="205" width="14.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
| <text x="954.46" y="215.5" ></text> | |
| </g> | |
| <g > | |
| <title>RegExp: [^\t\x20-\x7e\x80-\xff] (4 μs, 0.29%)</title><rect x="840.8" y="461" width="2.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="843.82" y="471.5" ></text> | |
| </g> | |
| <g > | |
| <title>parseUrl (35 μs, 2.55%)</title><rect x="795.1" y="557" width="25.0" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
| <text x="798.14" y="567.5" >p..</text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (138 μs, 10.05%)</title><rect x="872.9" y="509" width="98.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="875.94" y="519.5" >startActive..</text> | |
| </g> | |
| <g > | |
| <title>onCleanup (6 μs, 0.44%)</title><rect x="745.2" y="621" width="4.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="748.18" y="631.5" ></text> | |
| </g> | |
| <g > | |
| <title>wrapSafe (2 μs, 0.15%)</title><rect x="13.6" y="349" width="1.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="16.57" y="359.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (148 μs, 10.78%)</title><rect x="504.6" y="557" width="105.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="507.64" y="567.5" >with</text> | |
| </g> | |
| <g > | |
| <title>setVaryHeader (54 μs, 3.93%)</title><rect x="821.6" y="557" width="38.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> | |
| <text x="824.55" y="567.5" >set..</text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (136 μs, 9.91%)</title><rect x="874.4" y="493" width="97.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="877.37" y="503.5" >startActive..</text> | |
| </g> | |
| <g > | |
| <title>loadCustomCacheHandlers (2 μs, 0.15%)</title><rect x="783.7" y="541" width="1.4" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" /> | |
| <text x="786.72" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>_getContextManager (3 μs, 0.22%)</title><rect x="244.8" y="573" width="2.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="247.83" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (76 μs, 5.54%)</title><rect x="439.7" y="557" width="54.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="442.69" y="567.5" >with</text> | |
| </g> | |
| <g > | |
| <title>processTicksAndRejections (5 μs, 0.36%)</title><rect x="15.7" y="621" width="3.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="18.71" y="631.5" ></text> | |
| </g> | |
| <g > | |
| <title>enterWith (16 μs, 1.17%)</title><rect x="460.4" y="525" width="11.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="463.39" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>findPageComponents (150 μs, 10.92%)</title><rect x="864.4" y="573" width="107.0" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" /> | |
| <text x="867.38" y="583.5" >findPageCompo..</text> | |
| </g> | |
| <g > | |
| <title>matchAll (128 μs, 9.32%)</title><rect x="328.3" y="525" width="91.4" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" /> | |
| <text x="331.34" y="535.5" >matchAll</text> | |
| </g> | |
| <g > | |
| <title>wrapModuleLoad (9 μs, 0.66%)</title><rect x="942.9" y="269" width="6.4" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" /> | |
| <text x="945.89" y="279.5" ></text> | |
| </g> | |
| <g > | |
| <title>c (9 μs, 0.66%)</title><rect x="942.9" y="349" width="6.4" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" /> | |
| <text x="945.89" y="359.5" ></text> | |
| </g> | |
| <g > | |
| <title>NEXT_ROUTER_SEGMENT_PREFETCH_HEADER (2 μs, 0.15%)</title><rect x="824.4" y="541" width="1.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
| <text x="827.41" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>trace (164 μs, 11.94%)</title><rect x="304.8" y="589" width="117.0" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="307.79" y="599.5" >trace</text> | |
| </g> | |
| <g > | |
| <title>writableStreamDefaultWriterWrite (46 μs, 3.35%)</title><rect x="119.2" y="525" width="32.8" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="122.21" y="535.5" >wr..</text> | |
| </g> | |
| <g > | |
| <title>isBot (5 μs, 0.36%)</title><rect x="791.6" y="557" width="3.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> | |
| <text x="794.57" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>run (50 μs, 3.64%)</title><rect x="457.5" y="541" width="35.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="460.53" y="551.5" >run</text> | |
| </g> | |
| <g > | |
| <title>pipe (49 μs, 3.57%)</title><rect x="209.9" y="541" width="34.9" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" /> | |
| <text x="212.85" y="551.5" >pipe</text> | |
| </g> | |
| <g > | |
| <title>trace (71 μs, 5.17%)</title><rect x="194.2" y="573" width="50.6" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="197.15" y="583.5" >trace</text> | |
| </g> | |
| <g > | |
| <title>readableStreamDefaultControllerEnqueue (46 μs, 3.35%)</title><rect x="119.2" y="557" width="32.8" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" /> | |
| <text x="122.21" y="567.5" >re..</text> | |
| </g> | |
| <g > | |
| <title>RegExp: \/\[[^/]+\](?=\/|$) (2 μs, 0.15%)</title><rect x="337.6" y="493" width="1.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" /> | |
| <text x="340.62" y="503.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.setValue (4 μs, 0.29%)</title><rect x="138.5" y="333" width="2.8" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="141.48" y="343.5" ></text> | |
| </g> | |
| <g > | |
| <title>run (164 μs, 11.94%)</title><rect x="304.8" y="605" width="117.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="307.79" y="615.5" >run</text> | |
| </g> | |
| <g > | |
| <title>trace (157 μs, 11.43%)</title><rect x="498.2" y="589" width="112.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="501.22" y="599.5" >trace</text> | |
| </g> | |
| <g > | |
| <title>eJ (2 μs, 0.15%)</title><rect x="451.8" y="541" width="1.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> | |
| <text x="454.82" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>withPropagatedContext (58 μs, 4.22%)</title><rect x="152.0" y="605" width="41.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="155.04" y="615.5" >wit..</text> | |
| </g> | |
| <g > | |
| <title>loadCustomCacheHandlers (5 μs, 0.36%)</title><rect x="188.4" y="525" width="3.6" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" /> | |
| <text x="191.44" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (75 μs, 5.46%)</title><rect x="251.3" y="573" width="53.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="254.25" y="583.5" >with</text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.setValue (11 μs, 0.80%)</title><rect x="268.4" y="541" width="7.8" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="271.38" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>searchParamsToUrlQuery (3 μs, 0.22%)</title><rect x="818.0" y="525" width="2.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" /> | |
| <text x="820.98" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (2 μs, 0.15%)</title><rect x="988.6" y="445" width="1.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="991.57" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (128 μs, 9.32%)</title><rect x="653.8" y="541" width="91.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="656.82" y="551.5" >startActiv..</text> | |
| </g> | |
| <g > | |
| <title>RegExp: \.[^.]+$ (3 μs, 0.22%)</title><rect x="563.9" y="429" width="2.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="566.88" y="439.5" ></text> | |
| </g> | |
| <g > | |
| <title>getTracerInstance (2 μs, 0.15%)</title><rect x="652.4" y="541" width="1.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> | |
| <text x="655.39" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>t.renderToReadableStream (20 μs, 1.46%)</title><rect x="974.3" y="589" width="14.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="977.30" y="599.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (132 μs, 9.61%)</title><rect x="651.0" y="557" width="94.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="653.96" y="567.5" >with</text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.setValue (5 μs, 0.36%)</title><rect x="869.4" y="541" width="3.5" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="872.37" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (90 μs, 6.55%)</title><rect x="680.9" y="509" width="64.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="683.94" y="519.5" >with</text> | |
| </g> | |
| <g > | |
| <title>loadSource (2 μs, 0.15%)</title><rect x="956.5" y="109" width="1.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> | |
| <text x="959.45" y="119.5" ></text> | |
| </g> | |
| <g > | |
| <title>wrapModuleLoad (8 μs, 0.58%)</title><rect x="10.0" y="637" width="5.7" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" /> | |
| <text x="13.00" y="647.5" ></text> | |
| </g> | |
| <g > | |
| <title>getIsPossibleServerAction (6 μs, 0.44%)</title><rect x="785.1" y="557" width="4.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> | |
| <text x="788.15" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>getOrInstantiateRuntimeModule (28 μs, 2.04%)</title><rect x="950.0" y="333" width="20.0" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="953.03" y="343.5" ></text> | |
| </g> | |
| <g > | |
| <title>join (13 μs, 0.95%)</title><rect x="179.2" y="525" width="9.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> | |
| <text x="182.16" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>renderToResponseImpl (151 μs, 11.00%)</title><rect x="864.4" y="621" width="107.8" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> | |
| <text x="867.38" y="631.5" >renderToRespo..</text> | |
| </g> | |
| <g > | |
| <title>onCleanup (2 μs, 0.15%)</title><rect x="17.9" y="589" width="1.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> | |
| <text x="20.85" y="599.5" ></text> | |
| </g> | |
| <g > | |
| <title>runMicrotasks (1,149 μs, 83.69%)</title><rect x="152.0" y="637" width="820.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="155.04" y="647.5" >runMicrotasks</text> | |
| </g> | |
| <g > | |
| <title>startSpan (8 μs, 0.58%)</title><rect x="278.4" y="477" width="5.7" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="281.38" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>require (9 μs, 0.66%)</title><rect x="942.9" y="301" width="6.4" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="945.89" y="311.5" ></text> | |
| </g> | |
| <g > | |
| <title>eE (83 μs, 6.05%)</title><rect x="57.1" y="525" width="59.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="60.11" y="535.5" >eE</text> | |
| </g> | |
| <g > | |
| <title>lA (101 μs, 7.36%)</title><rect x="421.8" y="605" width="72.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" /> | |
| <text x="424.84" y="615.5" >lA</text> | |
| </g> | |
| <g > | |
| <title>_getContextManager (2 μs, 0.15%)</title><rect x="648.1" y="541" width="1.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="651.11" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>executeUserEntryPoint (8 μs, 0.58%)</title><rect x="10.0" y="653" width="5.7" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> | |
| <text x="13.00" y="663.5" ></text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (20 μs, 1.46%)</title><rect x="596.0" y="413" width="14.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="599.00" y="423.5" ></text> | |
| </g> | |
| <g > | |
| <title>readFileUtf8 (2 μs, 0.15%)</title><rect x="956.5" y="61" width="1.4" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" /> | |
| <text x="959.45" y="71.5" ></text> | |
| </g> | |
| <g > | |
| <title>wrapSafe (10 μs, 0.73%)</title><rect x="958.6" y="109" width="7.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="961.59" y="119.5" ></text> | |
| </g> | |
| <g > | |
| <title>renderToResponseImpl (12 μs, 0.87%)</title><rect x="222.7" y="445" width="8.6" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> | |
| <text x="225.70" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>URL (24 μs, 1.75%)</title><rect x="798.7" y="525" width="17.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
| <text x="801.71" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (23 μs, 1.68%)</title><rect x="135.6" y="397" width="16.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="138.62" y="407.5" ></text> | |
| </g> | |
| <g > | |
| <title>mod.require (7 μs, 0.51%)</title><rect x="10.0" y="381" width="5.0" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="13.00" y="391.5" ></text> | |
| </g> | |
| <g > | |
| <title>decode (19 μs, 1.38%)</title><rect x="378.3" y="445" width="13.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> | |
| <text x="381.30" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>et.preloadCallbacks (72 μs, 5.24%)</title><rect x="538.2" y="461" width="51.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
| <text x="541.19" y="471.5" >et.pr..</text> | |
| </g> | |
| <g > | |
| <title>resolveForCJSWithHooks (2 μs, 0.15%)</title><rect x="12.1" y="205" width="1.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
| <text x="15.14" y="215.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.getValue (2 μs, 0.15%)</title><rect x="267.0" y="541" width="1.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" /> | |
| <text x="269.96" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>getTracer (2 μs, 0.15%)</title><rect x="424.7" y="557" width="1.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="427.70" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>invokePromiseCallback (46 μs, 3.35%)</title><rect x="119.2" y="461" width="32.8" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" /> | |
| <text x="122.21" y="471.5" >in..</text> | |
| </g> | |
| <g > | |
| <title>run (23 μs, 1.68%)</title><rect x="972.2" y="653" width="16.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="975.16" y="663.5" ></text> | |
| </g> | |
| <g > | |
| <title>NextNodeServer.handleCatchallRenderRequest (147 μs, 10.71%)</title><rect x="316.9" y="557" width="104.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> | |
| <text x="319.92" y="567.5" >NextNodeServ..</text> | |
| </g> | |
| <g > | |
| <title>handleResponse (43 μs, 3.13%)</title><rect x="162.7" y="557" width="30.7" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> | |
| <text x="165.75" y="567.5" >ha..</text> | |
| </g> | |
| <g > | |
| <title>queueMicrotask (4 μs, 0.29%)</title><rect x="54.3" y="509" width="2.8" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="57.25" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>active (2 μs, 0.15%)</title><rect x="648.1" y="557" width="1.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="651.11" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>require (56 μs, 4.08%)</title><rect x="931.5" y="397" width="39.9" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="934.47" y="407.5" >req..</text> | |
| </g> | |
| <g > | |
| <title>handleRequestImpl (3 μs, 0.22%)</title><rect x="302.6" y="445" width="2.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" /> | |
| <text x="305.64" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>shouldServeStreamingMetadata (19 μs, 1.38%)</title><rect x="231.3" y="493" width="13.5" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> | |
| <text x="234.27" y="503.5" ></text> | |
| </g> | |
| <g > | |
| <title>match (92 μs, 6.70%)</title><rect x="354.0" y="493" width="65.7" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="357.03" y="503.5" >match</text> | |
| </g> | |
| <g > | |
| <title>active (2 μs, 0.15%)</title><rect x="132.8" y="397" width="1.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="135.77" y="407.5" ></text> | |
| </g> | |
| <g > | |
| <title>processImmediate (191 μs, 13.91%)</title><rect x="15.7" y="653" width="136.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> | |
| <text x="18.71" y="663.5" >processImmediate</text> | |
| </g> | |
| <g > | |
| <title>getIncrementalCache (4 μs, 0.29%)</title><rect x="782.3" y="557" width="2.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> | |
| <text x="785.29" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (2 μs, 0.15%)</title><rect x="988.6" y="429" width="1.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="991.57" y="439.5" ></text> | |
| </g> | |
| <g > | |
| <title>trace (189 μs, 13.77%)</title><rect x="610.3" y="589" width="134.9" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="613.28" y="599.5" >trace</text> | |
| </g> | |
| <g > | |
| <title>RegExp: ^_NEXTSEP_ (4 μs, 0.29%)</title><rect x="416.8" y="445" width="2.9" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> | |
| <text x="419.85" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>writableStreamDefaultControllerProcessWrite (46 μs, 3.35%)</title><rect x="119.2" y="477" width="32.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="122.21" y="487.5" >wr..</text> | |
| </g> | |
| <g > | |
| <title>ts (23 μs, 1.68%)</title><rect x="972.2" y="637" width="16.4" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" /> | |
| <text x="975.16" y="647.5" ></text> | |
| </g> | |
| <g > | |
| <title>getOrInstantiateModuleFromParent (4 μs, 0.29%)</title><rect x="965.7" y="205" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
| <text x="968.73" y="215.5" ></text> | |
| </g> | |
| <g > | |
| <title>getSpanContext (2 μs, 0.15%)</title><rect x="678.8" y="493" width="1.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> | |
| <text x="681.80" y="503.5" ></text> | |
| </g> | |
| <g > | |
| <title>normalizeString (7 μs, 0.51%)</title><rect x="183.4" y="493" width="5.0" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" /> | |
| <text x="186.45" y="503.5" ></text> | |
| </g> | |
| <g > | |
| <title>getRootSpanAttributes (3 μs, 0.22%)</title><rect x="15.7" y="589" width="2.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="18.71" y="599.5" ></text> | |
| </g> | |
| <g > | |
| <title>mod.require (20 μs, 1.46%)</title><rect x="951.5" y="141" width="14.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="954.46" y="151.5" ></text> | |
| </g> | |
| <g > | |
| <title>writableStreamDefaultControllerProcessWrite (2 μs, 0.15%)</title><rect x="988.6" y="525" width="1.4" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> | |
| <text x="991.57" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (2 μs, 0.15%)</title><rect x="988.6" y="397" width="1.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="991.57" y="407.5" ></text> | |
| </g> | |
| <g > | |
| <title>runNextTicks (191 μs, 13.91%)</title><rect x="15.7" y="637" width="136.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="18.71" y="647.5" >runNextTicks</text> | |
| </g> | |
| <g > | |
| <title>RegExp: ^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*: (2 μs, 0.15%)</title><rect x="114.2" y="461" width="1.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
| <text x="117.21" y="471.5" ></text> | |
| </g> | |
| <g > | |
| <title>require (8 μs, 0.58%)</title><rect x="10.0" y="621" width="5.7" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="13.00" y="631.5" ></text> | |
| </g> | |
| <g > | |
| <title>setRootSpanAttribute (2 μs, 0.15%)</title><rect x="862.9" y="605" width="1.5" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="865.95" y="615.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (2 μs, 0.15%)</title><rect x="988.6" y="381" width="1.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="991.57" y="391.5" ></text> | |
| </g> | |
| <g > | |
| <title>getOrInstantiateModuleFromParent (2 μs, 0.15%)</title><rect x="967.2" y="157" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
| <text x="970.16" y="167.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (132 μs, 9.61%)</title><rect x="877.2" y="461" width="94.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="880.23" y="471.5" >with</text> | |
| </g> | |
| <g > | |
| <title>checkIsHttpToken (2 μs, 0.15%)</title><rect x="843.7" y="477" width="1.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="846.68" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>defaultLoadImpl (2 μs, 0.15%)</title><rect x="943.6" y="237" width="1.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> | |
| <text x="946.61" y="247.5" ></text> | |
| </g> | |
| <g > | |
| <title>require (20 μs, 1.46%)</title><rect x="951.5" y="157" width="14.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="954.46" y="167.5" ></text> | |
| </g> | |
| <g > | |
| <title>loadComponentsImpl (101 μs, 7.36%)</title><rect x="899.4" y="429" width="72.0" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" /> | |
| <text x="902.35" y="439.5" >loadComp..</text> | |
| </g> | |
| <g > | |
| <title>startSpan (4 μs, 0.29%)</title><rect x="678.1" y="509" width="2.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="681.08" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (20 μs, 1.46%)</title><rect x="137.8" y="381" width="14.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="140.76" y="391.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (138 μs, 10.05%)</title><rect x="872.9" y="541" width="98.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="875.94" y="551.5" >with</text> | |
| </g> | |
| <g > | |
| <title>r.ReactDOMServer.renderToReadableStream (140 μs, 10.20%)</title><rect x="19.3" y="573" width="99.9" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="22.28" y="583.5" >r.ReactDOMSe..</text> | |
| </g> | |
| <g > | |
| <title>setSpan (2 μs, 0.15%)</title><rect x="875.1" y="477" width="1.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" /> | |
| <text x="878.08" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>startSpan (2 μs, 0.15%)</title><rect x="596.7" y="381" width="1.4" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="599.72" y="391.5" ></text> | |
| </g> | |
| <g > | |
| <title>wrapModuleLoad (8 μs, 0.58%)</title><rect x="10.0" y="509" width="5.7" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" /> | |
| <text x="13.00" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>mod.require (55 μs, 4.01%)</title><rect x="932.2" y="381" width="39.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="935.18" y="391.5" >mod..</text> | |
| </g> | |
| <g > | |
| <title>P (2 μs, 0.15%)</title><rect x="177.0" y="525" width="1.4" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" /> | |
| <text x="180.02" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>handleRequestImpl (164 μs, 11.94%)</title><rect x="304.8" y="621" width="117.0" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" /> | |
| <text x="307.79" y="631.5" >handleRequestI..</text> | |
| </g> | |
| <g > | |
| <title>trace (150 μs, 10.92%)</title><rect x="864.4" y="557" width="107.0" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="867.38" y="567.5" >trace</text> | |
| </g> | |
| <g > | |
| <title>markTransferMode (2 μs, 0.15%)</title><rect x="800.9" y="509" width="1.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> | |
| <text x="803.85" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (133 μs, 9.69%)</title><rect x="650.2" y="573" width="95.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="653.25" y="583.5" >with</text> | |
| </g> | |
| <g > | |
| <title>readFileSync (2 μs, 0.15%)</title><rect x="943.6" y="221" width="1.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
| <text x="946.61" y="231.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (40 μs, 2.91%)</title><rect x="276.2" y="525" width="28.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="279.23" y="535.5" >with</text> | |
| </g> | |
| <g > | |
| <title>getTracer (2 μs, 0.15%)</title><rect x="505.4" y="525" width="1.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
| <text x="508.35" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>mod.require (8 μs, 0.58%)</title><rect x="10.0" y="573" width="5.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="13.00" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>match (133 μs, 9.69%)</title><rect x="324.8" y="541" width="94.9" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
| <text x="327.77" y="551.5" >match</text> | |
| </g> | |
| <g > | |
| <title>eE (15 μs, 1.09%)</title><rect x="977.9" y="573" width="10.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="980.87" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>runMicrotasks (5 μs, 0.36%)</title><rect x="15.7" y="605" width="3.6" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="18.71" y="615.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext (2 μs, 0.15%)</title><rect x="591.7" y="429" width="1.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="594.72" y="439.5" ></text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (2 μs, 0.15%)</title><rect x="988.6" y="413" width="1.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="991.57" y="423.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (15 μs, 1.09%)</title><rect x="141.3" y="349" width="10.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="144.33" y="359.5" ></text> | |
| </g> | |
| <g > | |
| <title>t.createElement (6 μs, 0.44%)</title><rect x="585.3" y="445" width="4.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" /> | |
| <text x="588.29" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>wrapModuleLoad (8 μs, 0.58%)</title><rect x="10.0" y="605" width="5.7" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" /> | |
| <text x="13.00" y="615.5" ></text> | |
| </g> | |
| <g > | |
| <title>transform (46 μs, 3.35%)</title><rect x="119.2" y="605" width="32.8" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="122.21" y="615.5" >tr..</text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.setValue (20 μs, 1.46%)</title><rect x="633.8" y="573" width="14.3" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="636.83" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>isInterceptionRouteAppPath (19 μs, 1.38%)</title><rect x="339.8" y="493" width="13.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="342.76" y="503.5" ></text> | |
| </g> | |
| <g > | |
| <title>aM (6 μs, 0.44%)</title><rect x="52.8" y="525" width="4.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="55.83" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>rz (6 μs, 0.44%)</title><rect x="581.0" y="445" width="4.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" /> | |
| <text x="584.01" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>transformStreamDefaultControllerEnqueue (46 μs, 3.35%)</title><rect x="119.2" y="573" width="32.8" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
| <text x="122.21" y="583.5" >tr..</text> | |
| </g> | |
| <g > | |
| <title>findPageComponentsImpl (107 μs, 7.79%)</title><rect x="895.1" y="445" width="76.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> | |
| <text x="898.07" y="455.5" >findPage..</text> | |
| </g> | |
| <g > | |
| <title>with (79 μs, 5.75%)</title><rect x="437.5" y="573" width="56.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="440.55" y="583.5" >with</text> | |
| </g> | |
| <g > | |
| <title>with (29 μs, 2.11%)</title><rect x="284.1" y="461" width="20.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="287.09" y="471.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext (4 μs, 0.29%)</title><rect x="870.1" y="525" width="2.8" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="873.09" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>write (46 μs, 3.35%)</title><rect x="119.2" y="445" width="32.8" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="122.21" y="455.5" >wr..</text> | |
| </g> | |
| <g > | |
| <title>instantiateRuntimeModule (28 μs, 2.04%)</title><rect x="950.0" y="317" width="20.0" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" /> | |
| <text x="953.03" y="327.5" ></text> | |
| </g> | |
| <g > | |
| <title>wrapModuleLoad (8 μs, 0.58%)</title><rect x="10.0" y="461" width="5.7" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" /> | |
| <text x="13.00" y="471.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (148 μs, 10.78%)</title><rect x="504.6" y="573" width="105.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="507.64" y="583.5" >with</text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (39 μs, 2.84%)</title><rect x="276.9" y="493" width="27.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="279.95" y="503.5" >s..</text> | |
| </g> | |
| <g > | |
| <title>rawMatcher (50 μs, 3.64%)</title><rect x="356.2" y="461" width="35.7" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" /> | |
| <text x="359.18" y="471.5" >raw..</text> | |
| </g> | |
| <g > | |
| <title>appendHeader (27 μs, 1.97%)</title><rect x="825.8" y="541" width="19.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
| <text x="828.83" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>setRootSpanAttribute (6 μs, 0.44%)</title><rect x="493.9" y="605" width="4.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
| <text x="496.93" y="615.5" ></text> | |
| </g> | |
| <g > | |
| <title>wrapModuleLoad (3 μs, 0.22%)</title><rect x="11.4" y="269" width="2.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" /> | |
| <text x="14.43" y="279.5" ></text> | |
| </g> | |
| <g > | |
| <title>eZ (11 μs, 0.80%)</title><rect x="107.8" y="493" width="7.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="110.79" y="503.5" ></text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (40 μs, 2.91%)</title><rect x="276.2" y="509" width="28.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="279.23" y="519.5" >st..</text> | |
| </g> | |
| <g > | |
| <title>addToHead (2 μs, 0.15%)</title><rect x="928.6" y="333" width="1.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
| <text x="931.62" y="343.5" ></text> | |
| </g> | |
| <g > | |
| <title>en (5 μs, 0.36%)</title><rect x="112.1" y="477" width="3.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="115.07" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>queueMicrotask (2 μs, 0.15%)</title><rect x="976.4" y="557" width="1.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
| <text x="979.44" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>trace (19 μs, 1.38%)</title><rect x="217.7" y="461" width="13.6" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="220.71" y="471.5" ></text> | |
| </g> | |
| <g > | |
| <title>toRoute (4 μs, 0.29%)</title><rect x="860.1" y="557" width="2.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> | |
| <text x="863.09" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>setHeader (19 μs, 1.38%)</title><rect x="831.5" y="509" width="13.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
| <text x="834.54" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>parseRelativeUrl (31 μs, 2.26%)</title><rect x="798.0" y="541" width="22.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> | |
| <text x="801.00" y="551.5" >p..</text> | |
| </g> | |
| <g > | |
| <title>mod.require (9 μs, 0.66%)</title><rect x="942.9" y="285" width="6.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="945.89" y="295.5" ></text> | |
| </g> | |
| <g > | |
| <title>validate (93 μs, 6.77%)</title><rect x="353.3" y="509" width="66.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
| <text x="356.32" y="519.5" >validate</text> | |
| </g> | |
| <g > | |
| <title>t3 (28 μs, 2.04%)</title><rect x="473.2" y="509" width="20.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
| <text x="476.23" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>defaultResolveImpl (2 μs, 0.15%)</title><rect x="12.1" y="189" width="1.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
| <text x="15.14" y="199.5" ></text> | |
| </g> | |
| <g > | |
| <title>trace (159 μs, 11.58%)</title><rect x="749.5" y="589" width="113.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="752.46" y="599.5" >trace</text> | |
| </g> | |
| <g > | |
| <title>BaseContext (15 μs, 1.09%)</title><rect x="667.4" y="477" width="10.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="670.38" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>moveToHead (5 μs, 0.36%)</title><rect x="927.9" y="349" width="3.6" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="930.90" y="359.5" ></text> | |
| </g> | |
| <g > | |
| <title>trace (46 μs, 3.35%)</title><rect x="119.2" y="429" width="32.8" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="122.21" y="439.5" >tr..</text> | |
| </g> | |
| <g > | |
| <title>externalRequire (20 μs, 1.46%)</title><rect x="951.5" y="173" width="14.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" /> | |
| <text x="954.46" y="183.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (138 μs, 10.05%)</title><rect x="872.9" y="525" width="98.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="875.94" y="535.5" >with</text> | |
| </g> | |
| <g > | |
| <title>with (143 μs, 10.42%)</title><rect x="508.2" y="509" width="102.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="511.21" y="519.5" >with</text> | |
| </g> | |
| <g > | |
| <title>getIncrementalCache (35 μs, 2.55%)</title><rect x="168.5" y="541" width="24.9" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> | |
| <text x="171.46" y="551.5" >g..</text> | |
| </g> | |
| <g > | |
| <title>trace (60 μs, 4.37%)</title><rect x="262.0" y="557" width="42.8" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="264.96" y="567.5" >trace</text> | |
| </g> | |
| <g > | |
| <title>instantiateModule (28 μs, 2.04%)</title><rect x="950.0" y="301" width="20.0" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> | |
| <text x="953.03" y="311.5" ></text> | |
| </g> | |
| <g > | |
| <title>renderToResponse (22 μs, 1.60%)</title><rect x="215.6" y="477" width="15.7" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" /> | |
| <text x="218.56" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>res.setHeader (23 μs, 1.68%)</title><rect x="828.7" y="525" width="16.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> | |
| <text x="831.69" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>getActiveScopeSpan (3 μs, 0.22%)</title><rect x="648.1" y="573" width="2.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" /> | |
| <text x="651.11" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>instantiateModule (27 μs, 1.97%)</title><rect x="950.7" y="237" width="19.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> | |
| <text x="953.74" y="247.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.setValue (3 μs, 0.22%)</title><rect x="502.5" y="573" width="2.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="505.50" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.setValue (23 μs, 1.68%)</title><rect x="661.7" y="493" width="16.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="664.67" y="503.5" ></text> | |
| </g> | |
| <g > | |
| <title>isHtmlLimitedBotUA (3 μs, 0.22%)</title><rect x="204.1" y="525" width="2.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="207.14" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (144 μs, 10.49%)</title><rect x="507.5" y="525" width="102.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="510.49" y="535.5" >startActiveS..</text> | |
| </g> | |
| <g > | |
| <title>K (58 μs, 4.22%)</title><rect x="152.0" y="621" width="41.4" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" /> | |
| <text x="155.04" y="631.5" >K</text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.setValue (9 μs, 0.66%)</title><rect x="126.3" y="413" width="6.5" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="129.34" y="423.5" ></text> | |
| </g> | |
| <g > | |
| <title>get (19 μs, 1.38%)</title><rect x="917.9" y="365" width="13.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="920.91" y="375.5" ></text> | |
| </g> | |
| <g > | |
| <title>getBotType (3 μs, 0.22%)</title><rect x="204.1" y="541" width="2.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="207.14" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (17 μs, 1.24%)</title><rect x="598.1" y="381" width="12.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="601.14" y="391.5" ></text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (19 μs, 1.38%)</title><rect x="138.5" y="365" width="13.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="141.48" y="375.5" ></text> | |
| </g> | |
| <g > | |
| <title>test (92 μs, 6.70%)</title><rect x="354.0" y="477" width="65.7" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="357.03" y="487.5" >test</text> | |
| </g> | |
| <g > | |
| <title>require (8 μs, 0.58%)</title><rect x="10.0" y="445" width="5.7" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="13.00" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>initializeCacheHandlers (2 μs, 0.15%)</title><rect x="783.7" y="525" width="1.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
| <text x="786.72" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>renderPageComponent (151 μs, 11.00%)</title><rect x="864.4" y="605" width="107.8" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="867.38" y="615.5" >renderPageCom..</text> | |
| </g> | |
| <g > | |
| <title>np (189 μs, 13.77%)</title><rect x="610.3" y="605" width="134.9" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> | |
| <text x="613.28" y="615.5" >np</text> | |
| </g> | |
| <g > | |
| <title>require (8 μs, 0.58%)</title><rect x="10.0" y="589" width="5.7" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="13.00" y="599.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (16 μs, 1.17%)</title><rect x="598.9" y="365" width="11.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="601.86" y="375.5" ></text> | |
| </g> | |
| <g > | |
| <title>getRequestMeta (3 μs, 0.22%)</title><rect x="789.4" y="557" width="2.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="792.43" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>loadRuntimeChunk (9 μs, 0.66%)</title><rect x="942.9" y="333" width="6.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
| <text x="945.89" y="343.5" ></text> | |
| </g> | |
| <g > | |
| <title>renderPageComponent (151 μs, 11.00%)</title><rect x="864.4" y="589" width="107.8" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="867.38" y="599.5" >renderPageCom..</text> | |
| </g> | |
| <g > | |
| <title>active (2 μs, 0.15%)</title><rect x="421.8" y="573" width="1.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="424.84" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>mod.require (3 μs, 0.22%)</title><rect x="11.4" y="333" width="2.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="14.43" y="343.5" ></text> | |
| </g> | |
| <g > | |
| <title>np (189 μs, 13.77%)</title><rect x="610.3" y="621" width="134.9" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> | |
| <text x="613.28" y="631.5" >np</text> | |
| </g> | |
| <g > | |
| <title>readableStreamDefaultControllerEnqueue (2 μs, 0.15%)</title><rect x="988.6" y="605" width="1.4" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" /> | |
| <text x="991.57" y="615.5" ></text> | |
| </g> | |
| <g > | |
| <title>require (7 μs, 0.51%)</title><rect x="10.0" y="397" width="5.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="13.00" y="407.5" ></text> | |
| </g> | |
| <g > | |
| <title>instantiateModule (20 μs, 1.46%)</title><rect x="951.5" y="189" width="14.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> | |
| <text x="954.46" y="199.5" ></text> | |
| </g> | |
| <g > | |
| <title>defaultLoadImpl (2 μs, 0.15%)</title><rect x="956.5" y="93" width="1.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> | |
| <text x="959.45" y="103.5" ></text> | |
| </g> | |
| <g > | |
| <title>l_ (30 μs, 2.18%)</title><rect x="471.8" y="525" width="21.4" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> | |
| <text x="474.81" y="535.5" >l_</text> | |
| </g> | |
| <g > | |
| <title>getSpanContext (2 μs, 0.15%)</title><rect x="596.7" y="365" width="1.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> | |
| <text x="599.72" y="375.5" ></text> | |
| </g> | |
| <g > | |
| <title>getTracePropagationData (3 μs, 0.22%)</title><rect x="421.8" y="589" width="2.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" /> | |
| <text x="424.84" y="599.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.getValue (3 μs, 0.22%)</title><rect x="281.9" y="429" width="2.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" /> | |
| <text x="284.94" y="439.5" ></text> | |
| </g> | |
| <g > | |
| <title>esmImport (2 μs, 0.15%)</title><rect x="967.2" y="173" width="1.4" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="970.16" y="183.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (23 μs, 1.68%)</title><rect x="593.9" y="429" width="16.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="596.86" y="439.5" ></text> | |
| </g> | |
| <g > | |
| <title>startSpan (2 μs, 0.15%)</title><rect x="429.0" y="557" width="1.4" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="431.98" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>mod.require (3 μs, 0.22%)</title><rect x="11.4" y="237" width="2.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="14.43" y="247.5" ></text> | |
| </g> | |
| <g > | |
| <title>isInterceptionRouteAppPath (19 μs, 1.38%)</title><rect x="846.5" y="525" width="13.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> | |
| <text x="849.53" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>wrapModuleLoad (3 μs, 0.22%)</title><rect x="11.4" y="221" width="2.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" /> | |
| <text x="14.43" y="231.5" ></text> | |
| </g> | |
| <g > | |
| <title>e5 (3 μs, 0.22%)</title><rect x="986.4" y="557" width="2.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> | |
| <text x="989.43" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>esmImport (2 μs, 0.15%)</title><rect x="968.6" y="205" width="1.4" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="971.59" y="215.5" ></text> | |
| </g> | |
| <g > | |
| <title>STATIC_STATUS_PAGES (2 μs, 0.15%)</title><rect x="779.4" y="557" width="1.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
| <text x="782.44" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>loadRuntimeChunkPath (9 μs, 0.66%)</title><rect x="942.9" y="317" width="6.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> | |
| <text x="945.89" y="327.5" ></text> | |
| </g> | |
| <g > | |
| <title>isHtmlLimitedBotUA (2 μs, 0.15%)</title><rect x="793.7" y="541" width="1.4" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> | |
| <text x="796.71" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>getOrInstantiateModuleFromParent (27 μs, 1.97%)</title><rect x="950.7" y="253" width="19.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
| <text x="953.74" y="263.5" ></text> | |
| </g> | |
| <g > | |
| <title>pathCouldBeIntercepted (21 μs, 1.53%)</title><rect x="845.1" y="541" width="15.0" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="848.11" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>trace (49 μs, 3.57%)</title><rect x="209.9" y="525" width="34.9" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="212.85" y="535.5" >tr..</text> | |
| </g> | |
| <g > | |
| <title>rV (16 μs, 1.17%)</title><rect x="733.8" y="477" width="11.4" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="736.76" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>mod._resolveFilename (2 μs, 0.15%)</title><rect x="12.1" y="173" width="1.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
| <text x="15.14" y="183.5" ></text> | |
| </g> | |
| <g > | |
| <title>startSpan (9 μs, 0.66%)</title><rect x="424.0" y="589" width="6.4" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="426.98" y="599.5" ></text> | |
| </g> | |
| <g > | |
| <title>loadSource (2 μs, 0.15%)</title><rect x="943.6" y="253" width="1.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> | |
| <text x="946.61" y="263.5" ></text> | |
| </g> | |
| <g > | |
| <title>transform (2 μs, 0.15%)</title><rect x="988.6" y="653" width="1.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
| <text x="991.57" y="663.5" ></text> | |
| </g> | |
| <g > | |
| <title>encode (31 μs, 2.26%)</title><rect x="80.7" y="493" width="22.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" /> | |
| <text x="83.66" y="503.5" >e..</text> | |
| </g> | |
| <g > | |
| <title>rM (16 μs, 1.17%)</title><rect x="569.6" y="445" width="11.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="572.59" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>active (2 μs, 0.15%)</title><rect x="862.9" y="589" width="1.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="865.95" y="599.5" ></text> | |
| </g> | |
| <g > | |
| <title>parse (19 μs, 1.38%)</title><rect x="802.3" y="509" width="13.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="805.28" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.setValue (2 μs, 0.15%)</title><rect x="875.1" y="461" width="1.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="878.08" y="471.5" ></text> | |
| </g> | |
| <g > | |
| <title>mod.require (8 μs, 0.58%)</title><rect x="10.0" y="477" width="5.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="13.00" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.setValue (2 μs, 0.15%)</title><rect x="591.7" y="445" width="1.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="594.72" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>getOrInstantiateModuleFromParent (2 μs, 0.15%)</title><rect x="968.6" y="189" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
| <text x="971.59" y="199.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext (8 μs, 0.58%)</title><rect x="431.8" y="541" width="5.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="434.84" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>require (3 μs, 0.22%)</title><rect x="11.4" y="253" width="2.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="14.43" y="263.5" ></text> | |
| </g> | |
| <g > | |
| <title>#updateContext (2 μs, 0.15%)</title><rect x="799.4" y="509" width="1.5" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" /> | |
| <text x="802.42" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>stripParameterSeparators (39 μs, 2.84%)</title><rect x="391.9" y="461" width="27.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
| <text x="394.86" y="471.5" >s..</text> | |
| </g> | |
| <g > | |
| <title>active (3 μs, 0.22%)</title><rect x="244.8" y="589" width="2.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="247.83" y="599.5" ></text> | |
| </g> | |
| <g > | |
| <title>m (28 μs, 2.04%)</title><rect x="950.0" y="349" width="20.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> | |
| <text x="953.03" y="359.5" ></text> | |
| </g> | |
| <g > | |
| <title>RegExp: \.[^.]+$ (2 μs, 0.15%)</title><rect x="583.9" y="429" width="1.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="586.87" y="439.5" ></text> | |
| </g> | |
| <g > | |
| <title>write (2 μs, 0.15%)</title><rect x="988.6" y="493" width="1.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="991.57" y="503.5" ></text> | |
| </g> | |
| <g > | |
| <title>_getContextManager (2 μs, 0.15%)</title><rect x="862.9" y="573" width="1.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="865.95" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>all (1,373 μs, 100%)</title><rect x="10.0" y="685" width="980.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
| <text x="13.00" y="695.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext (7 μs, 0.51%)</title><rect x="127.8" y="397" width="5.0" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="130.77" y="407.5" ></text> | |
| </g> | |
| <g > | |
| <title>getActiveScopeSpan (4 μs, 0.29%)</title><rect x="132.8" y="413" width="2.8" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" /> | |
| <text x="135.77" y="423.5" ></text> | |
| </g> | |
| <g > | |
| <title>addRequestMeta (3 μs, 0.22%)</title><rect x="322.6" y="541" width="2.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> | |
| <text x="325.63" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>trace (29 μs, 2.11%)</title><rect x="589.6" y="461" width="20.7" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="592.58" y="471.5" ></text> | |
| </g> | |
| <g > | |
| <title>module.exports (2 μs, 0.15%)</title><rect x="968.6" y="221" width="1.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="971.59" y="231.5" ></text> | |
| </g> | |
| <g > | |
| <title>l_ (157 μs, 11.43%)</title><rect x="498.2" y="621" width="112.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> | |
| <text x="501.22" y="631.5" >l_</text> | |
| </g> | |
| <g > | |
| <title>with (90 μs, 6.55%)</title><rect x="680.9" y="493" width="64.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="683.94" y="503.5" >with</text> | |
| </g> | |
| <g > | |
| <title>setSpan (9 μs, 0.66%)</title><rect x="431.1" y="573" width="6.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" /> | |
| <text x="434.12" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>o (44 μs, 3.20%)</title><rect x="162.0" y="573" width="31.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="165.03" y="583.5" >o</text> | |
| </g> | |
| <g > | |
| <title>with (80 μs, 5.83%)</title><rect x="247.7" y="589" width="57.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="250.68" y="599.5" >with</text> | |
| </g> | |
| <g > | |
| <title>trace (58 μs, 4.22%)</title><rect x="152.0" y="589" width="41.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="155.04" y="599.5" >trace</text> | |
| </g> | |
| <g > | |
| <title>invokePromiseCallback (2 μs, 0.15%)</title><rect x="988.6" y="509" width="1.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" /> | |
| <text x="991.57" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>require (8 μs, 0.58%)</title><rect x="10.0" y="493" width="5.7" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="13.00" y="503.5" ></text> | |
| </g> | |
| <g > | |
| <title>getSpan (2 μs, 0.15%)</title><rect x="596.7" y="349" width="1.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="599.72" y="359.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.getValue (2 μs, 0.15%)</title><rect x="134.2" y="381" width="1.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" /> | |
| <text x="137.20" y="391.5" ></text> | |
| </g> | |
| <g > | |
| <title>run (140 μs, 10.20%)</title><rect x="19.3" y="605" width="99.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> | |
| <text x="22.28" y="615.5" >run</text> | |
| </g> | |
| <g > | |
| <title>lP (107 μs, 7.79%)</title><rect x="421.8" y="621" width="76.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> | |
| <text x="424.84" y="631.5" >lP</text> | |
| </g> | |
| <g > | |
| <title>getSpan (2 μs, 0.15%)</title><rect x="134.2" y="397" width="1.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="137.20" y="407.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext (4 μs, 0.29%)</title><rect x="138.5" y="317" width="2.8" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="141.48" y="327.5" ></text> | |
| </g> | |
| <g > | |
| <title>mod.require (8 μs, 0.58%)</title><rect x="10.0" y="525" width="5.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="13.00" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>r.ReactDOMServer.renderToReadableStream (23 μs, 1.68%)</title><rect x="972.2" y="621" width="16.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="975.16" y="631.5" ></text> | |
| </g> | |
| <g > | |
| <title>encodeUtf8String (10 μs, 0.73%)</title><rect x="94.9" y="477" width="7.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="97.94" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>AsyncContextFrame (16 μs, 1.17%)</title><rect x="460.4" y="509" width="11.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="463.39" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>renderImpl (60 μs, 4.37%)</title><rect x="202.0" y="557" width="42.8" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
| <text x="205.00" y="567.5" >rend..</text> | |
| </g> | |
| <g > | |
| <title>encode (6 μs, 0.44%)</title><rect x="982.1" y="541" width="4.3" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" /> | |
| <text x="985.15" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>normalize (7 μs, 0.51%)</title><rect x="183.4" y="509" width="5.0" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> | |
| <text x="186.45" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>mod.require (8 μs, 0.58%)</title><rect x="10.0" y="429" width="5.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="13.00" y="439.5" ></text> | |
| </g> | |
| <g > | |
| <title>nf (157 μs, 11.43%)</title><rect x="498.2" y="605" width="112.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" /> | |
| <text x="501.22" y="615.5" >nf</text> | |
| </g> | |
| <g > | |
| <title>getSpanContext (5 μs, 0.36%)</title><rect x="280.5" y="461" width="3.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> | |
| <text x="283.52" y="471.5" ></text> | |
| </g> | |
| <g > | |
| <title>getGlobal (2 μs, 0.15%)</title><rect x="132.8" y="365" width="1.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" /> | |
| <text x="135.77" y="375.5" ></text> | |
| </g> | |
| <g > | |
| <title>t.renderToReadableStream (108 μs, 7.87%)</title><rect x="42.1" y="541" width="77.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> | |
| <text x="45.12" y="551.5" >t.render..</text> | |
| </g> | |
| <g > | |
| <title>aM (3 μs, 0.22%)</title><rect x="975.7" y="573" width="2.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> | |
| <text x="978.72" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>entries (3 μs, 0.22%)</title><rect x="818.0" y="509" width="2.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> | |
| <text x="820.98" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>renderToResponseWithComponents (159 μs, 11.58%)</title><rect x="749.5" y="605" width="113.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> | |
| <text x="752.46" y="615.5" >renderToRespon..</text> | |
| </g> | |
| <g > | |
| <title>a (2 μs, 0.15%)</title><rect x="491.8" y="477" width="1.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> | |
| <text x="494.79" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>writableStreamDefaultWriterWrite (2 μs, 0.15%)</title><rect x="988.6" y="573" width="1.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" /> | |
| <text x="991.57" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>readableStreamFulfillReadRequest (46 μs, 3.35%)</title><rect x="119.2" y="541" width="32.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> | |
| <text x="122.21" y="551.5" >re..</text> | |
| </g> | |
| <g > | |
| <title>withPropagatedContext (84 μs, 6.12%)</title><rect x="244.8" y="605" width="60.0" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
| <text x="247.83" y="615.5" >withPr..</text> | |
| </g> | |
| <g > | |
| <title>BaseContext (10 μs, 0.73%)</title><rect x="269.1" y="525" width="7.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="272.10" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>writableStreamDefaultControllerWrite (46 μs, 3.35%)</title><rect x="119.2" y="509" width="32.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> | |
| <text x="122.21" y="519.5" >wr..</text> | |
| </g> | |
| <g > | |
| <title>getSpan (3 μs, 0.22%)</title><rect x="281.9" y="445" width="2.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="284.94" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext (3 μs, 0.22%)</title><rect x="502.5" y="557" width="2.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
| <text x="505.50" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>getTracerInstance (2 μs, 0.15%)</title><rect x="505.4" y="541" width="1.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> | |
| <text x="508.35" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>setSpan (23 μs, 1.68%)</title><rect x="661.7" y="509" width="16.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" /> | |
| <text x="664.67" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>writableStreamDefaultControllerAdvanceQueueIfNeeded (2 μs, 0.15%)</title><rect x="988.6" y="541" width="1.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="991.57" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>RegExp: ^/deep/([^/]+?)/([^/]+?)/([^/]+?)/([^/]+?)/([^/]+?)/([^/]+?)/([^/]+?)/([^/]+?)/([^/]+?)/([^/]+?)(?:/)?$ (5 μs, 0.36%)</title><rect x="374.7" y="445" width="3.6" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> | |
| <text x="377.73" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>B (6 μs, 0.44%)</title><rect x="982.1" y="557" width="4.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="985.15" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>runImpl (148 μs, 10.78%)</title><rect x="316.2" y="573" width="105.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" /> | |
| <text x="319.21" y="583.5" >runImpl</text> | |
| </g> | |
| <g > | |
| <title>_getContextManager (2 μs, 0.15%)</title><rect x="132.8" y="381" width="1.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="135.77" y="391.5" ></text> | |
| </g> | |
| <g > | |
| <title>wrapModuleLoad (20 μs, 1.46%)</title><rect x="951.5" y="125" width="14.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" /> | |
| <text x="954.46" y="135.5" ></text> | |
| </g> | |
| <g > | |
| <title>get searchParams (3 μs, 0.22%)</title><rect x="815.8" y="525" width="2.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> | |
| <text x="818.84" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>startSpan (6 μs, 0.44%)</title><rect x="426.1" y="573" width="4.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="429.13" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (40 μs, 2.91%)</title><rect x="276.2" y="541" width="28.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="279.23" y="551.5" >with</text> | |
| </g> | |
| <g > | |
| <title>getTracerInstance (2 μs, 0.15%)</title><rect x="424.7" y="573" width="1.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> | |
| <text x="427.70" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (20 μs, 1.46%)</title><rect x="596.0" y="397" width="14.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="599.00" y="407.5" ></text> | |
| </g> | |
| <g > | |
| <title>startActiveSpan (124 μs, 9.03%)</title><rect x="656.7" y="525" width="88.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
| <text x="659.67" y="535.5" >startActiv..</text> | |
| </g> | |
| <g > | |
| <title>require (3 μs, 0.22%)</title><rect x="11.4" y="301" width="2.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="14.43" y="311.5" ></text> | |
| </g> | |
| <g > | |
| <title>rB (22 μs, 1.60%)</title><rect x="553.9" y="445" width="15.7" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" /> | |
| <text x="556.89" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (2 μs, 0.15%)</title><rect x="988.6" y="461" width="1.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="991.57" y="471.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (132 μs, 9.61%)</title><rect x="877.2" y="477" width="94.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="880.23" y="487.5" >with</text> | |
| </g> | |
| <g > | |
| <title>(root) (1,373 μs, 100.00%)</title><rect x="10.0" y="669" width="980.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" /> | |
| <text x="13.00" y="679.5" >(root)</text> | |
| </g> | |
| <g > | |
| <title>_getContextManager (2 μs, 0.15%)</title><rect x="496.8" y="573" width="1.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
| <text x="499.79" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.getValue (2 μs, 0.15%)</title><rect x="678.8" y="461" width="1.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" /> | |
| <text x="681.80" y="471.5" ></text> | |
| </g> | |
| <g > | |
| <title>getMaybePagePath (22 μs, 1.60%)</title><rect x="915.8" y="381" width="15.7" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> | |
| <text x="918.77" y="391.5" ></text> | |
| </g> | |
| <g > | |
| <title>eZ (2 μs, 0.15%)</title><rect x="987.1" y="541" width="1.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
| <text x="990.14" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>n0 (2 μs, 0.15%)</title><rect x="117.8" y="509" width="1.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" /> | |
| <text x="120.78" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>isBlockedPage (4 μs, 0.29%)</title><rect x="207.0" y="541" width="2.9" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> | |
| <text x="210.00" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>getSpan (2 μs, 0.15%)</title><rect x="678.8" y="477" width="1.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="681.80" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>trace (23 μs, 1.68%)</title><rect x="972.2" y="605" width="16.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="975.16" y="615.5" ></text> | |
| </g> | |
| <g > | |
| <title>enqueue (2 μs, 0.15%)</title><rect x="988.6" y="637" width="1.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" /> | |
| <text x="991.57" y="647.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.getValue (2 μs, 0.15%)</title><rect x="16.4" y="573" width="1.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" /> | |
| <text x="19.42" y="583.5" ></text> | |
| </g> | |
| <g > | |
| <title>encodeUtf8String (2 μs, 0.15%)</title><rect x="985.0" y="525" width="1.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" /> | |
| <text x="988.00" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>esmImport (4 μs, 0.29%)</title><rect x="965.7" y="221" width="2.9" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="968.73" y="231.5" ></text> | |
| </g> | |
| <g > | |
| <title>isDynamicRoute (24 μs, 1.75%)</title><rect x="336.2" y="509" width="17.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" /> | |
| <text x="339.19" y="519.5" ></text> | |
| </g> | |
| <g > | |
| <title>renderToResponseWithComponentsImpl (145 μs, 10.56%)</title><rect x="759.5" y="573" width="103.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="762.45" y="583.5" >renderToResp..</text> | |
| </g> | |
| <g > | |
| <title>require (8 μs, 0.58%)</title><rect x="10.0" y="541" width="5.7" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
| <text x="13.00" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (143 μs, 10.42%)</title><rect x="508.2" y="493" width="102.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="511.21" y="503.5" >with</text> | |
| </g> | |
| <g > | |
| <title>get (4 μs, 0.29%)</title><rect x="566.7" y="429" width="2.9" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="569.74" y="439.5" ></text> | |
| </g> | |
| <g > | |
| <title>esmImport (27 μs, 1.97%)</title><rect x="950.7" y="269" width="19.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> | |
| <text x="953.74" y="279.5" ></text> | |
| </g> | |
| <g > | |
| <title>NextNodeServer.handleCatchallRenderRequest (72 μs, 5.24%)</title><rect x="193.4" y="621" width="51.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> | |
| <text x="196.44" y="631.5" >NextN..</text> | |
| </g> | |
| <g > | |
| <title>setSpan (4 μs, 0.29%)</title><rect x="138.5" y="349" width="2.8" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" /> | |
| <text x="141.48" y="359.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (24 μs, 1.75%)</title><rect x="593.1" y="445" width="17.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="596.15" y="455.5" ></text> | |
| </g> | |
| <g > | |
| <title>getServerActionRequestMetadata (2 μs, 0.15%)</title><rect x="788.0" y="541" width="1.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
| <text x="791.00" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>enqueue (46 μs, 3.35%)</title><rect x="119.2" y="589" width="32.8" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" /> | |
| <text x="122.21" y="599.5" >en..</text> | |
| </g> | |
| <g > | |
| <title>pipeImpl (42 μs, 3.06%)</title><rect x="214.9" y="509" width="29.9" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" /> | |
| <text x="217.85" y="519.5" >pi..</text> | |
| </g> | |
| <g > | |
| <title>wrapSafe (5 μs, 0.36%)</title><rect x="945.7" y="253" width="3.6" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
| <text x="948.75" y="263.5" ></text> | |
| </g> | |
| <g > | |
| <title>writableStreamDefaultControllerWrite (2 μs, 0.15%)</title><rect x="988.6" y="557" width="1.4" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> | |
| <text x="991.57" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>get (5 μs, 0.36%)</title><rect x="453.2" y="541" width="3.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="456.25" y="551.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (23 μs, 1.68%)</title><rect x="135.6" y="413" width="16.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="138.62" y="423.5" ></text> | |
| </g> | |
| <g > | |
| <title>writableStreamDefaultControllerAdvanceQueueIfNeeded (46 μs, 3.35%)</title><rect x="119.2" y="493" width="32.8" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="122.21" y="503.5" >wr..</text> | |
| </g> | |
| <g > | |
| <title>np (121 μs, 8.81%)</title><rect x="523.9" y="477" width="86.4" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> | |
| <text x="526.91" y="487.5" >np</text> | |
| </g> | |
| <g > | |
| <title>wrappedFn (17 μs, 1.24%)</title><rect x="833.0" y="493" width="12.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> | |
| <text x="835.97" y="503.5" ></text> | |
| </g> | |
| <g > | |
| <title>processTicksAndRejections (1,149 μs, 83.69%)</title><rect x="152.0" y="653" width="820.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
| <text x="155.04" y="663.5" >processTicksAndRejections</text> | |
| </g> | |
| <g > | |
| <title>wrapModuleLoad (8 μs, 0.58%)</title><rect x="10.0" y="413" width="5.7" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" /> | |
| <text x="13.00" y="423.5" ></text> | |
| </g> | |
| <g > | |
| <title>trace (140 μs, 10.20%)</title><rect x="19.3" y="557" width="99.9" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="22.28" y="567.5" >trace</text> | |
| </g> | |
| <g > | |
| <title>active (2 μs, 0.15%)</title><rect x="496.8" y="589" width="1.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
| <text x="499.79" y="599.5" ></text> | |
| </g> | |
| <g > | |
| <title>render (72 μs, 5.24%)</title><rect x="193.4" y="605" width="51.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="196.44" y="615.5" >render</text> | |
| </g> | |
| <g > | |
| <title>render (72 μs, 5.24%)</title><rect x="193.4" y="589" width="51.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
| <text x="196.44" y="599.5" >render</text> | |
| </g> | |
| <g > | |
| <title>UNDERSCORE_NOT_FOUND_ROUTE (2 μs, 0.15%)</title><rect x="780.9" y="557" width="1.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> | |
| <text x="783.87" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>nV (2 μs, 0.15%)</title><rect x="117.8" y="525" width="1.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
| <text x="120.78" y="535.5" ></text> | |
| </g> | |
| <g > | |
| <title>removeNode (2 μs, 0.15%)</title><rect x="930.0" y="333" width="1.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> | |
| <text x="933.04" y="343.5" ></text> | |
| </g> | |
| <g > | |
| <title>commonJsRequire (20 μs, 1.46%)</title><rect x="951.5" y="221" width="14.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" /> | |
| <text x="954.46" y="231.5" ></text> | |
| </g> | |
| <g > | |
| <title>trace (2 μs, 0.15%)</title><rect x="988.6" y="477" width="1.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> | |
| <text x="991.57" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>mod.require (3 μs, 0.22%)</title><rect x="11.4" y="285" width="2.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
| <text x="14.43" y="295.5" ></text> | |
| </g> | |
| <g > | |
| <title>removeTrailingSlash (2 μs, 0.15%)</title><rect x="820.1" y="557" width="1.5" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
| <text x="823.12" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (15 μs, 1.09%)</title><rect x="141.3" y="333" width="10.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="144.33" y="343.5" ></text> | |
| </g> | |
| <g > | |
| <title>enqueueMicrotask (2 μs, 0.15%)</title><rect x="55.7" y="493" width="1.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
| <text x="58.68" y="503.5" ></text> | |
| </g> | |
| <g > | |
| <title>BaseContext.self.setValue (9 μs, 0.66%)</title><rect x="431.1" y="557" width="6.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" /> | |
| <text x="434.12" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>module.exports (28 μs, 2.04%)</title><rect x="950.0" y="285" width="20.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
| <text x="953.03" y="295.5" ></text> | |
| </g> | |
| <g > | |
| <title>ts (140 μs, 10.20%)</title><rect x="19.3" y="589" width="99.9" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" /> | |
| <text x="22.28" y="599.5" >ts</text> | |
| </g> | |
| <g > | |
| <title>instantiateModule (2 μs, 0.15%)</title><rect x="968.6" y="173" width="1.4" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> | |
| <text x="971.59" y="183.5" ></text> | |
| </g> | |
| <g > | |
| <title>renderPageComponent (161 μs, 11.73%)</title><rect x="749.5" y="621" width="114.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> | |
| <text x="752.46" y="631.5" >renderPageComp..</text> | |
| </g> | |
| <g > | |
| <title>wrapModuleLoad (8 μs, 0.58%)</title><rect x="10.0" y="557" width="5.7" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" /> | |
| <text x="13.00" y="567.5" ></text> | |
| </g> | |
| <g > | |
| <title>B (31 μs, 2.26%)</title><rect x="80.7" y="509" width="22.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" /> | |
| <text x="83.66" y="519.5" >B</text> | |
| </g> | |
| <g > | |
| <title>wrapModuleLoad (7 μs, 0.51%)</title><rect x="10.0" y="365" width="5.0" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" /> | |
| <text x="13.00" y="375.5" ></text> | |
| </g> | |
| <g > | |
| <title>wrapModuleLoad (3 μs, 0.22%)</title><rect x="11.4" y="317" width="2.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" /> | |
| <text x="14.43" y="327.5" ></text> | |
| </g> | |
| <g > | |
| <title>with (29 μs, 2.11%)</title><rect x="284.1" y="477" width="20.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
| <text x="287.09" y="487.5" ></text> | |
| </g> | |
| <g > | |
| <title>pipe.req.req (22 μs, 1.60%)</title><rect x="215.6" y="493" width="15.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> | |
| <text x="218.56" y="503.5" ></text> | |
| </g> | |
| <g > | |
| <title>transformStreamDefaultControllerEnqueue (2 μs, 0.15%)</title><rect x="988.6" y="621" width="1.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
| <text x="991.57" y="631.5" ></text> | |
| </g> | |
| <g > | |
| <title>instantiateModule (2 μs, 0.15%)</title><rect x="967.2" y="141" width="1.4" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> | |
| <text x="970.16" y="151.5" ></text> | |
| </g> | |
| </g> | |
| </svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment